]> git.saurik.com Git - bison.git/blame_incremental - ChangeLog
* bootstrap: Adjust to today's change to gnulib-tool by invoking
[bison.git] / ChangeLog
... / ...
CommitLineData
12006-07-20 Paul Eggert <eggert@cs.ucla.edu>
2
3 * bootstrap: Adjust to today's change to gnulib-tool by invoking
4 it with --assume-autoconf='latest-stable'.
5
62006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
7
8 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
9 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
10 YYSTYPE' and `{'.
11 * src/muscle_tab.h (muscle_grow): Replace the header comments with
12 those from muscle_tab.c since the old ones are misleading.
13
142006-07-13 Akim Demaille <akim@epita.fr>
15
16 Support %define "KEY" {VALUE}.
17 * src/scan-code.h, src/scan-code.l (translate_action)
18 (translate_rule_action, translate_symbol_action, translate_code):
19 Return char *, not const char *.
20 * src/parse-gram.y (declaration): Rename as...
21 (prologue_declaration): this.
22 (string_content): Remove this nonterminal, use STRING.
23 (braceless, content, content.opt): New nonterminal.
24 Use them.
25 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
26 as value.
27 * src/scan-gram.l (getargs.h): Don't include it.
28
292006-07-12 Paul Eggert <eggert@cs.ucla.edu>
30
31 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
32 rather than a for-loop that declares a local bool variable. This
33 should work around a compatibility problem with a Cray x1e C++
34 compiler reported by Hung Nguyen in
35 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
36 The for-loop was introduced in the 2004-11-17 change but I don't
37 know why it was needed.
38
392006-07-12 Akim Demaille <akim@epita.fr>
40
41 * data/c.m4: Comment changes.
42
432006-07-10 Akim Demaille <akim@lrde.epita.fr>
44
45 * src/complain.c (error_message, ERROR_MESSAGE): New.
46 To factor...
47 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
48 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
49
502006-07-09 Paul Eggert <eggert@cs.ucla.edu>
51
52 * NEWS: Instead of %union, you can define and use your own union type
53 YYSTYPE if your grammar contains at least one <type> tag.
54 Your YYSTYPE need not be a macro; it can be a typedef.
55 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
56 (Union Decl, Decl Summary): Document this.
57 * data/glr.c (YYSTYPE): Implement this.
58 * data/glr.cc (YYSTYPE): Likewise.
59 * data/lalr1.cc (YYSTYPE): Likewise.
60 * data/yacc.c (YYSTYPE): Likewise.
61 * src/output.c (prepare): Output tag_seen_flag.
62 * src/parse-gram.y (declaration, grammar_declaration):
63 Use 'union_seen' rather than 'typed' to determine whether
64 %union has been seen, since grammars can now be typed without
65 %union.
66 (symbol_declaration, type.opt, symbol_def):
67 Keep track of whether a tag has been seen.
68 * src/reader.c (union_seen, tag_seen): New vars.
69 (typed): remove.
70 * src/reader.h (union_seen, tag_seen, typed): Likewise.
71 * src/scan-code.l (untyped_var_seen): New variable.
72 (handle_action_dollar): Adjust to above changes.
73 (handle_action_dollar, handle_action_at):
74 Improve overflow checking for outlandish numbers.
75 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
76 avoid new diagnostics generated by above changes.
77 * tests/regression.at (YYSTYPE typedef): Add test to check
78 for type tags without %union.
79
80 * src/symlist.c (symbol_list_length): Return int, not unsigned
81 int, since callers expect int. This may need to get revisited
82 once we have proper integer overflow checking.
83
84 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
85 object is now static.
86
87 * src/getargs.c (flags_argmatch): Return void, not int,
88 to pacify ./configure --enable-gcc-warnings.
89
90 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
91 since last_string is already defined to FLEX_PREFIX (last_string).
92
932006-07-09 Akim Demaille <akim@lrde.epita.fr>
94
95 Implement --warnings/-W.
96 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
97 replaced by...
98 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
99 Adjust callers.
100 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
101 (warnings_args, warnings_types): New.
102 (getargs, short_options, long_options): Accept -W/--warnings.
103 Sort the options by alphabetical order, upper case letter right
104 before its lower case.
105
1062006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
107
108 Change %merge result type clash warnings to errors. Discussed at
109 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
110 * src/reader.c (record_merge_function_type): Use complain_at.
111 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
112 declared later): Update test case results.
113
1142006-07-09 Akim Demaille <akim@lrde.epita.fr>
115
116 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
117 to be in alphabetical order.
118 (trace_args): Spelling fixes.
119
1202006-07-09 Paul Eggert <eggert@cs.ucla.edu>
121
122 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
123 so they don't collide with user-defined macros.
124 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
125 this was never guaranteed, and now that we're using gnulib stdint,
126 which defines int_fast16_t to long int, the problem is exposed.
127
1282006-07-08 Paul Eggert <eggert@cs.ucla.edu>
129
130 * data/c.m4 (b4_basename): Simplify a bit, since we don't
131 need the full POSIX semantics (and weren't implementing them
132 anyway).
133
134 Adjust to Autoconf 2.60 and today's gnulib.
135 * bootstrap (gnulib_modules): Add stdint.
136 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
137 no longer copies it.
138 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
139 since stdint needs the former and wcwidth (which is now required
140 by mbswidth) needs the latter.
141 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
142 work around a compatibility glitch between gettext 0.14.6 and
143 Autoconf 2.60.
144 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
145 Do not check for uintptr_t, since new stdint module does the right
146 thing.
147 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
148 Add stdint.h, stdint_.h, wcwidth.h.
149 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
150 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
151 stdint.m4, wchar_t.m4, wcwidth.m4.
152 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
153 usual order for ../lib/*.h files.
154 (file_name_split): Use last_component, not base_name, to adjust
155 to gnulib changes.
156 * src/parse-gram.h: Include <strverscmp.h> in the usual order
157 for ../lib/*.h files.
158 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
159 Define unconditionally, since we now assume the stdint module.
160 * src/scan-skel.l: Include <dirname.h>.
161 (BASE_QPUTS): Use last_component, not base_name.
162 * src/system.h: Include <unlocked-io.h> in the usual order
163 for ../lib/*.h files. Include <stdint.h> unconditionally,
164 since we now use the stdint module.
165 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
166 HAVE_UINTPTR_T, since we now use the stdint module.
167 (base_name): Remove decl, since files now include <dirname.h>
168 to get the decl.
169
1702006-07-08 Akim Demaille <akim@lrde.epita.fr>
171
172 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
173 New, default to 1.
174 * data/yacc.c, data/glr.c, data/location.cc: Use them.
175 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
176 default.
177 * tests/calc.at: Adjust.
178
1792006-07-08 Akim Demaille <akim@lrde.epita.fr>
180
181 * data/c.m4 (b4_basename): New.
182 (b4_syncline): Also output the location of its invocation (from
183 the skeleton).
184 (b4_user_action, b4_define_user_action, b4_user_actions)
185 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
186 (b4_user_stype): New.
187 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
188
1892006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
190
191 In the grammar file, the first column is 1 not 0 on the first line as
192 on every other line.
193 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
194 * tests/input.at (Torturing the Scanner): Update output.
195
196 * src/scan-gram.l (scanner_cursor): Declare it static.
197
1982006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
199
200 In warnings, say "previous declaration" rather than "first
201 declaration".
202 * src/symtab.c (redeclaration): Do that here.
203 * src/reader.c (record_merge_function_type): In the case of a result
204 type clash, report the previous declaration rather than the very first
205 one in the grammar file.
206 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
207 declared later): Add a third declaration to check this behavior.
208 * tests/input.at (Incompatible Aliases): Update output.
209
2102006-06-27 Akim Demaille <akim@epita.fr>
211
212 * doc/Doxyfile.in: New.
213 * doc/Makefile.am: Use it.
214 * src/lalr.h, src/symtab.h: Initial doxygenation.
215
2162006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
217
218 Don't miss %merge result type warnings just because the LHS types are
219 declared after the %merge. This continues the effort of the previous
220 patch.
221 * src/reader.c (get_merge_function): Don't set the merger type yet.
222 (record_merge_function_type): New function for setting the merger type
223 and checking for clashes.
224 (grammar_current_rule_merge_set): Set the location of the %merge for
225 the current rule.
226 (packgram): Invoke record_merge_function_type for each rule now that
227 all symbol type declarations have been parsed.
228 * src/reader.h (merger_list.type_declaration_location): New member
229 storing the location of the first %merge from which the type for this
230 merging function was derived.
231 * src/symlist.h (symbol_list.merger_declaration_location): New member
232 storing the location of a rule's %merge, if any.
233 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
234 declared later): New test to catch the error fixed by the above patch.
235
2362006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
237
238 Get action warnings (grammar_rule_check) right even when symbol
239 declarations appear after the rules. Discussed at
240 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
241 and
242 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
243 Don't mistake the type of $$ in a midrule to be that of its parent
244 rule's $$.
245 * src/reader.c (grammar_current_rule_end): Don't invoke
246 grammar_rule_check yet since not all symbol declarations may have been
247 parsed yet.
248 (grammar_midrule_action): Likewise.
249 Don't record whether the midrule's $$ has been used yet since actions
250 haven't been translated yet.
251 Record the midrule's parent rule and its RHS index within the parent
252 rule.
253 (grammar_current_rule_action_append): Don't translate the action yet
254 since not all symbol declarations may have been parsed yet and, thus,
255 warnings about types for $$, $n, @$, and @n can't be reported yet.
256 (packgram): Translate the action and invoke grammar_rule_check now that
257 all symbol declarations have been parsed.
258 * src/scan-code.l (handle_action_dollar): Now that this is invoked
259 after parsing the entire grammar file, the symbol list here in the case
260 of a midrule is actually the midrule's empty RHS, so reference its
261 parent rule's RHS where necessary.
262 On the other hand, now that you can already know it's a midrule, you
263 aren't forced to think $$ has the same type as its parent rule's $$.
264 (handle_action_at): In the case of a midrule, reference the parent rule
265 where necessary.
266 * src/symlist.c (symbol_list_new): Initialize new midrule-related
267 members.
268 (symbol_list_length): Now that this is invoked after all rules have
269 been parsed, a NULL symbol (rather than a NULL symbol list node)
270 terminates a rule. symbol_list_print already does this correctly.
271 * src/symlist.h (symbol_list.midrule_parent_rule,
272 symbol_list.midrule_parent_rhs_index): New members so that midrules can
273 remember their relationships with their parents.
274 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
275 fixed by the above patch.
276 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
277 implementing...
278 (Unused values): ... this old test case and...
279 (Unused values before symbol declarations): ... this new test case.
280 This one is the same as `Unused values' except that all symbol
281 declarations appear after the rules in order to catch the rest of the
282 errors fixed by the above patch.
283
2842006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
285
286 More cleanup.
287 * src/reader.c (current_rule): Declare it static since it's no longer
288 used outside this file.
289 (grammar_current_rule_action_append): Remove redundant arguments from
290 translate_rule_action invocation.
291 * src/reader.h (current_rule): Remove this unused extern.
292 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
293 * src/scan-code.l (translate_rule_action): Likewise.
294
2952006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
296
297 Clean up yesterday's patch.
298 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
299 to...
300 * src/reader.c (grammar_current_rule_action_append): ... here for
301 consistency with grammar_current_rule_symbol_append.
302 * tests/regression.at (Braced code in declaration in rules section):
303 Make yyerror and yylex static as usual.
304
3052006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
306
307 Fix bug that mistakes braced code in a declaration in the rules section
308 to be a rule action. Mentioned at
309 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
310 * src/scan-gram.l: Move midrule action detection from the start of the
311 scanning of any braced code to...
312 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
313 action. For readability, use $2 and @2 rather than the equivalent
314 global variables.
315 * tests/regression.at (Braced code in declaration in rules section):
316 New test to catch the error fixed by the above patch.
317
318 Work on code readability some.
319 * src/scan-code.l (current_rule): Get rid of this misleading and
320 redundant declaration: it's actually extern'ed in reader.h.
321 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
322 translate_action): Add a rule argument and use it instead of the global
323 current_rule.
324 (translate_rule_action): This already receives current_rule through an
325 argument, so pass it on to translate_action instead of assigning
326 current_rule to current_rule.
327 (translate_symbol_action, translate_code): Pass rule = NULL to
328 translate_action.
329
3302006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
331
332 Rename %before-definitions to %start-header and %after-definitions to
333 %end-header. Don't use these declarations to separate pre-prologue
334 blocks from post-prologue blocks. Add new order-independent
335 declarations %before-header and %after-header as alternatives to the
336 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
337 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
338 * NEWS (2.3+): Update for these changes.
339 * data/glr.c (b4_before_definitions): Update to...
340 (b4_start_header): ... this.
341 (b4_after_definitions): Update to...
342 (b4_end_header): ... this.
343 * data/glr.cc: Likewise.
344 * data/lalr1.cc: Likewise.
345 * data/yacc.c: Likewise.
346 * doc/bison.texinfo (The prologue): Update names, and replace remaining
347 prologue blocks with %*-header declarations.
348 (Calc++ Parser): Likewise.
349 (Bison Declaration Summary): Update names.
350 (Bison Symbols): Update description.
351 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
352 (PERCENT_END_HEADER): ... this.
353 (PERCENT_BEFORE_DEFINITIONS): Update to...
354 (PERCENT_START_HEADER): ... this.
355 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
356 (declaration): Update token names and m4 macro names.
357 When parsing %end-header and %start-header, invoke translate_code
358 before muscle_code_grow, and no longer set global booleans to remember
359 whether these declarations have been seen.
360 Parse new %after-header and %before-header.
361 * src/reader.c (before_definitions, after_definitions): Remove.
362 (prologue_augment): Accept a new bool argument to specify whether to
363 augment the pre-prologue or post-prologue.
364 * src/reader.h (before_definitions, after_definitions): Remove these
365 extern's.
366 (prologue_augment): Add new bool argument.
367 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
368 (PERCENT_END_HEADER): ... this.
369 (PERCENT_BEFORE_DEFINITIONS): Update to...
370 (PERCENT_START_HEADER): ... this.
371 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
372 * tests/actions.at (Printers and Destructors): Update names.
373
3742006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
375
376 Add comparison operators for C++ location classes. Discussed at
377 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
378 * data/c++.m4 (b4_define_location_comparison): New boolean %define
379 declaration indicating whether filename_type has an operator==. If
380 filename_type is `std::string', it defaults to `1', `0' otherwise.
381 * data/location.cc: Iff b4_define_location_comparison is `1', add
382 operator== and operator!= for class position and for class location.
383
384 Some minor fixes.
385 * src/scan-action.l: Remove unused file.
386 * src/symtab.c (symbol_printer_set): Use printer_location not
387 destructor_location.
388 * src/symtab.h (struct symbol): Replace incorrect source comment for
389 printer members.
390 * tests/input.at (Incompatible Aliases): Update output with correct
391 printer location.
392
3932006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
394
395 Don't put the pre-prologue in the header file. For the yacc.c code
396 file and the glr.c header and code files, move the pre-prologue before
397 the token definitions. Add new %before-definitions and
398 %after-definitions to declare code that will go in both the header file
399 and code file. Discussed at
400 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
401 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
402 and
403 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
404 * NEWS (2.3+): Describe these changes.
405 * data/glr.c (b4_pre_prologue): Move from within to before...
406 (b4_shared_declarations): ... this.
407 Add new b4_before_definitions before b4_token_enums.
408 Add new b4_after_definitions at the end.
409 * data/glr.cc (b4_pre_prologue): Replace with...
410 (b4_before_definitions): ... this in the header file.
411 (b4_after_definitions): New near the end of the header file.
412 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
413 code file right before including the header file.
414 (b4_before_definitions): New in the previous position of
415 b4_pre_prologue in the header file.
416 (b4_after_definitions): New near the end of the header file.
417 * data/yacc.c: Clean up some m4 quoting especially in the header file.
418 (b4_token_enums_defines): In the code file, move to right before
419 YYSTYPE for consistency with the header file.
420 (b4_before_definitions): New right before b4_token_enums_defines in
421 both the header and code file.
422 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
423 header and code file.
424 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
425 of prologues for %union dependencies.
426 (Bison Declaration Summary): In %defines description, mention the
427 effect of %before-definitions and %after-definitions on the header
428 file.
429 (Calc++ Parser): Forward declare driver in a %before-definitions rather
430 than in the pre-prologue so that make check succeeds.
431 (Bison Symbols): Add entries for %before-definitions and
432 %after-definitions.
433 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
434 %before-definitions.
435 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
436 (declaration): Parse those declarations and append to
437 b4_before_definitions and b4_after_definitions, respectively.
438 * src/reader.c (before_definitions, after_definitions): New bools to
439 track whether those declarations have been seen.
440 (prologue_augment): Add to the post-prologue if %union,
441 %before-definitions, or %after-definitions has been seen.
442 * src/reader.h (before_definitions, after_definitions): New extern's.
443 * src/scan-gram.l: Scan the new declarations.
444 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
445 prologue block in a %before-definitions or a %after-definitions based
446 on whether the %union is declared.
447 * tests/regression.at (Early token definitions with --yacc, Early token
448 definitions without --yacc): Move tests for token definitions into the
449 post-prologue since token names are no longer defined in the
450 pre-prologue.
451
4522006-06-20 Akim Demaille <akim@epita.fr>
453
454 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
455 (symbol_get): Use it.
456 * src/parse-gram.y: Use it.
457
4582006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
459
460 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
461 build succeeds when configured with --enable-gcc-warnings.
462
4632006-06-19 Paul Eggert <eggert@cs.ucla.edu>
464
465 * src/parse-gram.y (char_name): New function.
466 (CHAR, STRING, string_content): For %printer, properly escape.
467 (ID): Prefer fputs to fprintf.
468 (id): Reindent to be consistent with other rules.
469 Properly quote char.
470
471 The Translation Project changed its way of publishing translations
472 to maintainers. I haven't received any responses to my request
473 for supporting the old way, or for documenting the new way. I
474 have modified 'bootstrap' to use screen scraping
475 (in this case, HTML scraping). This is unreliable and inelegant,
476 but I don't see any better way. Yuck.
477 * bootstrap (TP_URL, WGET_COMMAND): New vars.
478 (get_translations): New function, which uses HTML scraping to
479 deduce locations of latest translations.
480 Use this function to grab both bison and bison-runtime .po files.
481 Don't bother priming the pump for the runtime-po domain any more,
482 as it's now translated better than bison is.
483
4842006-06-19 Akim Demaille <akim@epita.fr>
485
486 * src/scan-gram.l: No longer "parse" things after `%union' until
487 `{'. Rather, return a single "%union" token.
488 No longer make symbols: return strings, and leave the conversion
489 to symbols to the parser.
490 (SC_PRE_CODE, token_type): Remove.
491 * src/parse-gram.y (%union): New field `character'.
492 Sort tokens.
493 (CHAR): New token.
494 (ID, ID_COLON): Now that the scanner no longer makes them
495 identifiers, adjust all uses to invoke symbol_get.
496 (id_colon): New, wraps the conversion from string to symbol.
497 (%union): Accept a possible union_name.
498 (symbol): Now can be a char.
499 * data/c.m4 (b4_union_name): Leave a default value.
500 * data/glr.c, data/yacc.c: Use it.
501
5022006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
503
504 For associating token numbers with token names for "yacc.c", don't use
505 #define statements unless `--yacc' is specified; always use enum
506 yytokentype. Most important discussions start at:
507 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
508 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
509 and
510 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
511 * NEWS (2.3+): Mention.
512 * data/c.m4 (b4_yacc_if): New.
513 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
514 token #define's.
515 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
516 on token name definitions.
517 * src/getargs.c (usage): Capitalize `Yacc' in English.
518 * src/output.c (prepare): Define b4_yacc_flag.
519 * tests/regression.at (Early token definitions): Test that tokens names
520 are defined before the pre-prologue not just before the post-prologue.
521 Remove this test case and copy to...
522 (Early token definitions with --yacc): ... this to test #define's.
523 (Early token definitions without --yacc): ... and this to test enums.
524
5252006-06-11 Paul Eggert <eggert@cs.ucla.edu>
526
527 * NEWS: Reword the post-2.3 change to not be so optimistic about
528 removing the old "look-ahead" spelling.
529 Update previous look-ahead/lookahead change reports.
530 * REFERENCES: look-ahead -> lookahead (since that's
531 what he actually wrote).
532 * doc/refcard.tex: look ahead -> lookahead,
533 look-ahead -> lookahead
534
5352006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
536
537 For consistency, use `lookahead' instead of `look-ahead' or
538 `look_ahead'. Discussed starting at
539 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
540 and then at
541 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
542 * NEWS: For the next release, note the change to `--report'.
543 * TODO, doc/bison.1: Update English.
544 * doc/bison.texinfo: Update English.
545 (Understanding Your Parser, Bison Options): Document as
546 `--report=lookahead' rather than `--report=look-ahead'.
547 * src/conflicts.c: Update English in comments.
548 (lookahead_set): Rename from look_ahead_set.
549 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
550 (resolve_sr_conflict): Rename local look_ahead_tokens to
551 lookahead_tokens, and update other uses.
552 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
553 count_rr_conflicts, conflicts_free): Update uses.
554 * src/getargs.c (report_args): Move "lookahead" before alternate
555 spellings.
556 (report_types): Update uses.
557 (usage): For `--report' usage description, state `lookahead' spelling
558 rather than `look-ahead'.
559 * src/getargs.h (report.report_lookahead_tokens): Rename from
560 report_look_ahead_tokens.
561 * src/lalr.c: Update English in comments.
562 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
563 (state_lookahead_tokens_count): Rename from
564 state_look_ahead_tokens_count.
565 Rename local n_look_ahead_tokens to n_lookahead_tokens.
566 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
567 Rename local n_look_ahead_tokens to n_lookahead_tokens.
568 Update other uses.
569 Update English in output.
570 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
571 * src/print.c: Update English in comments.
572 (lookahead_set): Rename from look_ahead_set.
573 (print_reduction): Rename argument lookahead_token from
574 look_ahead_token.
575 (print_core, state_default_rule, print_reductions, print_results):
576 Update uses.
577 * src/print_graph.c: Update English in comments.
578 (print_core): Update uses.
579 * src/state.c: Update English in comments.
580 (reductions_new): Update uses.
581 (state_rule_lookahead_tokens_print): Rename from
582 state_rule_look_ahead_tokens_print, and update other uses.
583 * src/state.h: Update English in comments.
584 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
585 (state_rule_lookahead_tokens_print): Rename from
586 state_rule_look_ahead_tokens_print.
587 * src/tables.c: Update English in comments.
588 (conflict_row, action_row): Update uses.
589 * tests/glr-regression.at
590 (Incorrect lookahead during deterministic GLR,
591 Incorrect lookahead during nondeterministic GLR): Rename
592 print_look_ahead to print_lookahead.
593 * tests/torture.at: Update English in comments.
594 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
595 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
596 (Many lookahead tokens): Update uses.
597 * data/glr.c: Update English in comments.
598 * lalr1.cc: Likewise.
599 * yacc.c: Likewise.
600 * src/conflicts.h: Likewise.
601 * src/lalr.h: Likewise.
602 * src/main.c: Likewise.
603 * src/output.c: Likewise.
604 * src/parse-gram.c: Likewise.
605 * src/tables.h: Likewise.
606 * tests/calc.at: Likewise.
607
6082006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
609
610 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
611
6122006-06-07 Paul Eggert <eggert@cs.ucla.edu>
613
614 * TODO: Add request from Nelson H. F. Beebe to be able to install
615 Bison without installing the yacc script.
616
6172006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
618
619 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
620 and yytext if they're already #define'd.
621 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
622 * src/scan-code-c.c: ... here.
623 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
624 <config.h>.
625
6262006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
627
628 Get Bison to build again when configured with --enable-gcc-warnings.
629 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
630 missing #include's.
631 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
632 loc argument as it shadows a global.
633 * src/scan-gram.l: Remove stray comma that prevents boundary_set
634 invocation.
635
636 * src/.cvsignore: Add scan-code.c.
637
6382006-06-07 Akim Demaille <akim@epita.fr>
639
640 * src/scan-gram.l: Move the "add a trailing ; to actions" code
641 to...
642 * src/scan-code.l: here.
643 * tests/input.at (Torturing the Scanner): Fix another location
644 error.
645
6462006-06-07 Akim Demaille <akim@epita.fr>
647
648 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
649
6502006-06-06 Akim Demaille <akim@epita.fr>
651
652 Extract the parsing of user actions from the grammar scanner.
653 As a consequence, the relation between the grammar scanner and
654 parser is much simpler. We can also split "composite tokens" back
655 into simple tokens.
656 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
657 * src/scan-gram.l (add_column_width, adjust_location): Move to and
658 rename as...
659 * src/location.h, src/location.c (add_column_width)
660 (location_compute): these.
661 Fix the column count: the initial column is 0.
662 (location_print): Be robust to ending column being 0.
663 * src/location.h (boundary_set): New.
664 * src/main.c: Adjust to scanner_free being renamed as
665 gram_scanner_free.
666 * src/output.c: Include scan-code.h.
667 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
668 Use boundary_set.
669 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
670 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
671 which is now, again, a separate token.
672 Adjust all dependencies.
673 Whereever actions with $ and @ are used, use translate_code.
674 (action): Remove this nonterminal which is now useless.
675 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
676 (grammar_current_rule_action_append): Use translate_code.
677 (packgram): Bound check ruleno, itemno, and rule_length.
678 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
679 (last_string, last_braced_code_loc, max_left_semantic_context)
680 (scanner_initialize, scanner_free, scanner_last_string_free)
681 (gram_out, gram_lineno, YY_DECL_): Move to...
682 * src/scan-gram.h: this new file.
683 (YY_DECL): Rename as...
684 (GRAM_DECL): this.
685 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
686 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
687 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
688 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
689 Move these declarations, and...
690 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
691 these to...
692 * src/flex-scanner.h: this new file.
693 * src/scan-gram.l (rule_length, rule_length_overflow)
694 (increment_rule_length): Remove.
695 (last_braced_code_loc): Rename as...
696 (gram_last_braced_code_loc): this.
697 Adjust to the changes of the parser.
698 Move all the handling of $ and @ into...
699 * src/scan-code.l: here.
700 * src/scan-gram.l (handle_dollar, handle_at): Remove.
701 (handle_action_dollar, handle_action_at): Move to...
702 * src/scan-code.l: here.
703 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
704 scan-code.h, scan-code-c.c, scan-gram.h.
705 (EXTRA_bison_SOURCES): Add scan-code.l.
706 (BUILT_SOURCES): Add scan-code.c.
707 (yacc): Be robust to white spaces.
708
709 * tests/conflicts.at, tests/input.at, tests/reduce.at,
710 * tests/regression.at: Adjust the column numbers.
711 * tests/regression.at: Adjust the error message.
712
7132006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
714
715 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
716 Use Akim's wording from
717 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
718
7192006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
720
721 Between Bison releases, manually append `+' to the previous Bison
722 release number, and use that as a signal to automatically print the
723 ChangeLog's CVS Id keyword from --version. Discussed starting at
724 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
725 * ChangeLog: Add Id header.
726 * configure.ac (AC_INIT): Append `+' to `2.3'.
727 * src/.cvsignore: Add revision.c.
728 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
729 (BUILT_SOURCES): Add revision.c.
730 (revision.c): New target rule. This file defines a new global variable
731 named revision. It initializes it with either the Id from ChangeLog
732 or, if VERSION doesn't contain `+', with the empty string.
733 * src/getargs.c (version): Print the value of revision.
734 * src/revision.h: Extern revision.
735
7362006-06-05 Paul Eggert <eggert@cs.ucla.edu>
737
738 * NEWS: Version 2.3.
739 * configure.ac (AC_INIT): Likewise.
740
7412006-05-30 Paul Eggert <eggert@cs.ucla.edu>
742
743 * data/glr.c (YYRECOVERING): Define to be a function-like macro
744 with no arguments, not as an object-like macro. This is for
745 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
746 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
747 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
748 Document this.
749
7502006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
751
752 * src/getargs.c (usage): Back out yesterday's modification of the
753 --help output so that we don't have to wait for translation before
754 releasing 2.3.
755
7562006-05-29 Paul Eggert <eggert@cs.ucla.edu>
757
758 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
759 Problem reported by Akim Demaille.
760
7612006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
762
763 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
764
7652006-05-26 Paul Eggert <eggert@cs.ucla.edu>
766
767 * data/yacc.c (yy_reduce_print): Omit trailing white space in
768 generated source code. Problem reported by Frans Englich in
769 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
770
7712006-05-22 Paul Eggert <eggert@cs.ucla.edu>
772
773 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
774 shell, not within 'make', so that 'make' by an ordinary builder
775 (using GNU make) does not worry about configuring gzip. This also
776 works around a bug reported independently by Keith Thompson and by
777 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
778 stderr rather than stdout, messing up the build logs.
779
7802006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
781
782 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
783 to make sure that YYID will never be unused. This fixes a 'make
784 maintainer-check' failure caused by the recent changes to the 'Trivial
785 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
786 not used.
787 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
788
7892006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
790
791 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
792 state before an empty RHS is always resolved here. Only the location
793 of that state is guaranteed to be resolved, and that's enough. This
794 fixes the remaining bug reported by Derek M. Jones in
795 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
796 * tests/glr-regression.at (Uninitialized location when reporting
797 ambiguity): Test the above case.
798 Also, the embedded comments in this test case claim it checks the case
799 of an empty RHS that has inherited the initial location. However, the
800 corresponding LHS was already resolved, so yyresolveLocations didn't
801 actually have reason to modify it. Fix this by forcing
802 nondeterministic operation at the beginning of the parse.
803
8042006-05-20 Paul Eggert <eggert@cs.ucla.edu>
805
806 * data/c.m4 (b4_yy_symbol_print_generate):
807 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
808 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
809 of the bugs reported today by Derek M Jones in
810 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
811 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
812 defined to be a type name without parens or brackets.
813 (Location Type): Similarly for YYLTYPE.
814 * tests/regression.at (Trivial grammars): Put in a test for this
815 bug that will be caught by 'make maintainer-check' (though not,
816 alas, by 'make check' unless your compiler is picky).
817
8182006-05-19 Paul Eggert <eggert@cs.ucla.edu>
819
820 * NEWS: Version 2.2.
821 * configure.ac (AC_INIT): Likewise.
822
8232006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
824
825 * data/glr.c (yyreportTree): Make room in yystates for the state
826 preceding the RHS. This fixes the segmentation fault reported by Derek
827 M. Jones in
828 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
829 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
830 to the user. Reported for yyreportTree by Derek M. Jones later in the
831 same thread.
832 * THANKS: Add Derek M. Jones.
833 Update my email address.
834 Fix typo in Steve Murphy's name.
835
8362006-05-14 Paul Eggert <eggert@cs.ucla.edu>
837
838 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
839 checking against YYLAST that caused the parser to miss a potential
840 alternative in its diagnostic.
841 Problem reported by Maria Jose Moron Fernandez in
842 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
843 * data/lalr1.cc (yysyntax_error_): Likewise.
844 * data/yacc.c (yysyntax_error): Likewise.
845 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
846 tokens, in case we run into an older C compiler.
847 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
848 Use them to check for the off-by-one error fixed above.
849
850 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
851 YYSIZE_T, not size_t.
852 * tests/regression.at (Trivial grammars): New test, to catch
853 the error fixed by the above patch.
854
8552006-05-14 Akim Demaille <akim@lrde.epita.fr>
856
857 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
858 scheme.
859 Reported by Steve Murphy.
860
8612006-05-14 Akim Demaille <akim@lrde.epita.fr>
862
863 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
864 * data/glr.cc: b4_location_flag is now b4_locations_flag.
865
8662006-05-14 Akim Demaille <akim@lrde.epita.fr>
867
868 Implement --trace=m4.
869 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
870 * src/output.c (output_skeleton): When set, pass -dV to m4.
871
872 Factor the handling of flags in m4.
873 * src/output.c (prepare): Rename the muscle names debug, defines,
874 error_verbose to debug_flag, defines_flag, error_verbose_flag.
875 * data/c.m4: Adjust.
876 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
877 Use b4_define_flag_if to define other b4_FLAG_if macros.
878 (b4_location_if): As a consequence, rename as...
879 (b4_locations_if): this, for consistency.
880 Adjust all the skeletons.
881
8822006-05-14 Akim Demaille <akim@lrde.epita.fr>
883
884 * etc/bench.pm: Shorten bench names.
885
8862006-05-14 Akim Demaille <akim@lrde.epita.fr>
887
888 * src/output.h, src/output.c (error_verbose): Move to...
889 * src/getargs.h, src/getargs.c: here.
890 Sort the flags.
891 Adjust dependencies.
892
8932006-05-13 Paul Eggert <eggert@cs.ucla.edu>
894
895 * data/c.m4 (b4_copyright): Put the special exception for Bison
896 skeletons here, so we don't have to put it in each skeleton. All
897 uses changed. Suggested by Akim Demaille. Also, wrap the
898 copyright notice, in case it is longer than 80 columns. Replace
899 comma by newline after title.
900
9012006-05-11 Paul Eggert <eggert@cs.ucla.edu>
902
903 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
904 incompatibility, not a bug. Mention that it wasn't fixed as of
905 flex 2.5.33.
906
9072006-05-11 Akim Demaille <akim@lrde.epita.fr>
908
909 * examples/extexi: Enforce the precedence of concatenation over
910 >>.
911 Reported by Tommy Nordgren.
912
9132006-05-11 Akim Demaille <akim@lrde.epita.fr>
914
915 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
916 with the member "token".
917 Reported by Martin Nylin.
918
9192006-05-08 Paul Eggert <eggert@cs.ucla.edu>
920
921 * data/glr.c: Switch to Bison 2.2 special-exception language in
922 the copyright notice. Use more-regular format for titles and
923 copyright notices.
924 * data/glr.cc: Likewise.
925 * data/location.cc: Likewise.
926 * data/yacc.cc: Likewise.
927 * doc/bison.texinfo (Conditions): Document this.
928 * NEWS: likewise. Upgrade version to 2.2.
929
9302006-04-27 Akim Demaille <akim@lrde.epita.fr>
931
932 * data/glr.cc: Remove dead code.
933
9342006-04-25 Paul Eggert <eggert@cs.ucla.edu>
935
936 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
937 that variable and the line breaks the bootstrap. Problem reported
938 by Juan M. Guerrero.
939
9402006-04-24 Akim Demaille <akim@lrde.epita.fr>
941
942 * doc/bison.texinfo (Multiple start-symbols): New.
943
9442006-04-24 Akim Demaille <akim@lrde.epita.fr>
945
946 * etc/README, etc/bench.pl: New.
947
9482006-04-03 Akim Demaille <akim@lrde.epita.fr>
949
950 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
951 rule.
952 Reported by Mickael Labau.
953 * tests/input.at (Torturing the Scanner): Test it.
954
9552006-03-16 Paul Eggert <eggert@cs.ucla.edu>
956
957 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
958 Problem reported by Bob Rossi.
959
9602006-03-13 Paul Eggert <eggert@cs.ucla.edu>
961
962 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
963 and didn't really work.
964 For the index, use @ifnotinfo, not @iftex.
965 Minor cleanups of spacing and terminology.
966
9672006-03-12 Akim Demaille <akim@lrde.epita.fr>
968
969 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
970 of AT_NAME_PREFIX when %name-prefix is not used.
971
9722006-03-12 Akim Demaille <akim@lrde.epita.fr>
973
974 Apply --prefix to C++ skeletons too: they change the namespace.
975 The test suite already exercize these cases.
976 * data/c++.m4 (b4_namespace): New.
977 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
978 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
979 * data/yacc.c, data/glr.c: Remove a useless `[]'.
980 * doc/bison.texinfo: Document it.
981 (Option Cross Key): Use @multitable in all formats. It looks
982 nicer, even in TeX outputs.
983 (Rules): Use the same code whatever the output type is.
984 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
985 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
986 * tests/calc.at: Use it, instead of hard coding `yy'.
987
9882006-03-10 Akim Demaille <akim@lrde.epita.fr>
989
990 * TODO: Remove dead items.
991
9922006-03-10 Akim Demaille <akim@lrde.epita.fr>
993
994 * doc/FAQ: Remove, merged into...
995 * doc/bison.texinfo (FAQ): this.
996 * doc/Makefile.am (EXTRA_DIST): Adjust.
997
9982006-03-10 Akim Demaille <akim@lrde.epita.fr>
999
1000 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
1001 even if empty.
1002 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
1003 * doc/bison.texinfo (Calc++ Scanner): Use it.
1004
10052006-03-09 Paul Eggert <eggert@cs.ucla.edu>
1006
1007 Fix two nits reported by twlevo, plus one more that I discovered.
1008
1009 * src/assoc.h (assoc_to_string): Give a name to the arg, as
1010 this is the usual Bison style.
1011 * src/location.h (location_print): Likewise.
1012
1013 * src/reader.h (token_name): Likewise.
1014
10152006-03-08 Paul Eggert <eggert@cs.ucla.edu>
1016
1017 Fix some nits reported by twlevo.
1018 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
1019 and "POSIX". Use more-modern syntax for URLs. Mention C++
1020 and ask for Java. Don't hardwire OS version numbers. Add
1021 copyright notice.
1022 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
1023 * src/conflicts.c (solved_conflicts_obstack): Now static.
1024
10252006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1026
1027 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
1028 page. Say "you can use it" not "you may use it" as on the web page;
1029 we're describing capabilities not granting permission.
1030
10312006-03-06 Paul Eggert <eggert@cs.ucla.edu>
1032
1033 * data/glr.c (yyresolveLocations): Rename local variables to avoid
1034 shadowing warnings. Use usual patter for iterating through RHS.
1035 * tests/glr-regression.at
1036 (Uninitialized location when reporting ambiguity):
1037 Modify yylex so that it uses its argument, rather than trying
1038 to rely on ARGSUSED (which doesn't work for gcc with warnings).
1039 const char -> char const.
1040
1041 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
1042 Don't use tabs inside commands; it messes up 'ps'.
1043 Problem reported by twlevo.
1044
10452006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
1046
1047 * tests/glr-regression.at (Uninitialized location when reporting
1048 ambiguity): New test case.
1049 * data/glr.c (yyresolveLocations): New function, which uses
1050 YYLLOC_DEFAULT.
1051 (yyresolveValue): Invoke yyresolveLocations before reporting an
1052 ambiguity.
1053 * doc/bison.texinfo (Default Action for Locations): Note
1054 YYLLOC_DEFAULT's usage for ambiguity locations.
1055 (GLR Semantic Actions): Cross-reference those notes.
1056
10572006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
1058
1059 * tests/glr-regression.at (Leaked semantic values when reporting
1060 ambiguity): Remove unnecessary union and type declarations.
1061 (Leaked lookahead after nondeterministic parse syntax error): New test
1062 case.
1063 * data/glr.c (yyparse): Check for zero stacks remaining before
1064 attempting to shift the lookahead so that you don't lose it.
1065
10662006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1067
1068 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
1069 * tests/glr-regression.at (Leaked semantic values when reporting
1070 ambiguity): New test case.
1071 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
1072 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
1073 now unnecessary yystackp parameter.
1074 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
1075 destructors can be called.
1076
1077 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
1078 in existing testcases.
1079
10802006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1081
1082 Don't leak semantic values for parent RHS when a user action cuts the
1083 parser, and clean up related code a bit.
1084 * tests/glr-regression.at (Leaked merged semantic value if user action
1085 cuts parse): Rename to...
1086 (Leaked semantic values if user action cuts parse): ... this. Add check
1087 for leaked parent RHS values.
1088 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
1089 between an unresolved state (non-empty chain of semantic options) and
1090 an incomplete one (signaled by an empty chain).
1091 (yyresolveStates): Document the interface. Move all manipulation of a
1092 successfully or unsuccessfully resolved yyGLRState to...
1093 (yyresolveValue): ... here so that yyresolveValue always leaves a
1094 yyGLRState with consistent data and thus is easier to understand.
1095 Remove the yyvalp and yylocp parameters since they are always just
1096 taken from the yys parameter. When reporting a discarded merged value
1097 in debugging output, note that it is incompletely merged. Document the
1098 interface.
1099 (yyresolveAction): If resolving any of the RHS states fails, destroy
1100 them all rather than leaking them. Thus, as long as user actions are
1101 written to clean up the RHS correctly, yyresolveAction always cleans up
1102 the RHS of a semantic option. Document the interface.
1103
11042006-02-27 Paul Eggert <eggert@cs.ucla.edu>
1105
1106 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
1107 led to a segmentation fault in GNU Pascal. Problem reported
1108 by Waldek Hebisch.
1109
11102006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
1111
1112 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
1113 mid-rule action inside a nonterminal symbol in order to declare a
1114 destructor for its semantic value.
1115
11162006-02-16 Paul Eggert <eggert@cs.ucla.edu>
1117
1118 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
1119 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
1120 __cplusplus && ! defined _STDLIB_H && !
1121 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
1122 defined free))]: Include <stdlib.h> rather than rolling our own
1123 declarations of malloc and free, to avoid problems with
1124 incompatible declarations (using 'throw') C++'s stdlib.h. This
1125 should fix Debian bug 340012
1126 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
1127 reported by Guillaume Melquiond.
1128
11292006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1130
1131 * NEWS: Clarify symbols versus types in unused-value warnings.
1132
1133 * configure.ac (AC_INIT): Bump version number.
1134
11352006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1136
1137 * NEWS: Version 2.1a.
1138 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
1139 since C99 requires this.
1140
11412006-02-11 Paul Eggert <eggert@cs.ucla.edu>
1142
1143 * m4/c-working.m4: New file.
1144 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
1145
11462006-02-10 Paul Eggert <eggert@cs.ucla.edu>
1147
1148 * Makefile.maint: Merge from coreutils.
1149
11502006-02-09 Paul Eggert <eggert@cs.ucla.edu>
1151
1152 More portability fixes for problems summarized by Nelson H. F. Beebe.
1153
1154 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
1155 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
1156 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
1157 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
1158 messes up because C++ code is compiled in 32-bit mode but linked
1159 in 64-bit mode.
1160
11612006-02-08 Paul Eggert <eggert@cs.ucla.edu>
1162
1163 More portability fixes for problems summarized by Nelson H. F. Beebe.
1164
1165 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
1166 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
1167
1168 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
1169 nodist_PROGRAMS, since we don't need to actually compile the
1170 example if we're just doing a plain 'make'. This avoids bothering
1171 the installer unnecessarily about problems due to weird C++
1172 compilers.
1173
11742006-02-06 Paul Eggert <eggert@cs.ucla.edu>
1175
1176 More portability fixes for problems summarized by Nelson H. F. Beebe.
1177
1178 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
1179 than #include "...", and compile with -I'.'. The old method was
1180 not portable, according to Posix and the C standard, and it does
1181 not work with Sun C 5.7, where previous #line directives affect
1182 the working directory used in later #include "..." directives.
1183
11842006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1185
1186 Various DJGGP specific issues in /djgpp
1187
11882006-02-02 Paul Eggert <eggert@cs.ucla.edu>
1189
1190 More portability fixes for problems summarized by Nelson H. F. Beebe.
1191
1192 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
1193 '#include <map>' works and that you can apply ++ to iterators.
1194
11952006-02-01 Paul Eggert <eggert@cs.ucla.edu>
1196
1197 Work around portability problems summarized by Nelson H. F. Beebe in
1198 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
1199
1200 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
1201 that '#include <string>' works.
1202
1203 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
1204 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
1205 "warning: sorry: semantics of inline function static data `const
1206 unsigned char translate_table[262]' are wrong (you'll wind up with
1207 multiple copies)".
1208
1209 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
1210 or, xor to not_, and_, or_, and xor_, respectively. This works
1211 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
1212 random system header somewhere that includes the equivalent of
1213 <iso646.h>.
1214
1215 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
1216 -E" works; it apparently doesn't work with PathScale EKO Compiler
1217 Suite Version 2.0.
1218
12192006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
1220
1221 During deterministic GLR operation, user actions should be able to
1222 influence the parse by changing yychar. To make this easier to fix and
1223 to make glr.c easier to evolve in general, don't maintain yytoken in
1224 parallel with yychar; just compute yytoken when needed.
1225 * tests/glr-regression.at (Incorrect lookahead during deterministic
1226 GLR): Check that setting yychar in a user action has the intended
1227 effect.
1228 * data/glr.c (yyGLRStack): Remove yytokenp member.
1229 (yyclearin): Don't set *yytokenp.
1230 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
1231 yychar rather than *yytokenp to determine the current lookahead.
1232 Compute yytoken locally when needed.
1233 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
1234 point to.
1235
1236 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
1237 after `--report' documentation.
1238
12392006-01-30 Paul Eggert <eggert@cs.ucla.edu>
1240
1241 * src/parse-gram.y (grammar_declaration): Location of printer
1242 symbol is @1, not list->location. Bug reported by twlevo.
1243 * tests/input.at (Incompatible Aliases): Adjust to above change.
1244
12452006-01-29 Paul Eggert <eggert@cs.ucla.edu>
1246
1247 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
1248 all the test at once. This makes the output easier to read in the
1249 normal case.
1250
1251 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
1252 got from <http://bro-ids.org/download.html>. The bug is that
1253 when two actions appeared in succession, the second one was
1254 scanned before the first one was added to the grammar rule
1255 as a midrule action. Bison then output the incorrect warning
1256 "parse.y:905.17-906.36: warning: unused value: $3".
1257 * src/parse-gram.y (BRACED_CODE, action): These are no longer
1258 associated with a value.
1259 (rhs): Don't invoke grammar_current_rule_action_append.
1260 (action): Invoke it here instead.
1261 * src/reader.c (grammar_midrule_action): Now extern.
1262 (grammar_current_rule_action_append): Don't invoke
1263 grammar_midrule_action; that is now the scanner's job.
1264 * src/reader.h (last_string, last_braced_code_loc):
1265 (grammar_midrule_action): New decls.
1266 * src/scan-gram.l (last_string): Now extern, sigh.
1267 (last_braced_code_loc): New extern variable.
1268 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
1269 rule already has an action.
1270 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
1271 * tests/input.at (AT_CHECK_UNUSED_VALUES):
1272 Add some tests to check that the above changes fixed the bug.
1273
12742006-01-27 Paul Eggert <eggert@cs.ucla.edu>
1275
1276 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
1277 All used changed. Check whether the symbol has a destructor,
1278 not whether it is typed.
1279 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
1280 that the values are still reported as unused. All line numbers
1281 adjusted.
1282
12832006-01-23 Paul Eggert <eggert@cs.ucla.edu>
1284
1285 Work around a bug in bro 0.8, which underparenthesizes its
1286 definition of YYLLOC_DEFAULT.
1287 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
1288 their arguments.
1289 * data/lalr1.cc: Likewise.
1290 * data/yacc.cc: Likewise.
1291
12922006-01-22 Paul Eggert <eggert@cs.ucla.edu>
1293
1294 Work around a bug in Pike 7.0, and give the Pike folks a
1295 better way to override the usual int widths.
1296 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
1297 user can override the types.
1298 (short): #undef, to work around a bug in Pike 7.0.
1299 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
1300 (union yyalloc.yyss): Use yytype_int16 rather than short.
1301 All uses changed.
1302 (yysigned_char): Remove.
1303 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
1304 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
1305 * tests/regression.at (Web2c Actions): Adjust to above changes.
1306
1307 * src/reader.c (check_and_convert_grammar): New function.
1308 (reader): Close the input file even if something went wrong during
1309 parsing. Minor file descriptor leak reported by twlevo.
1310
1311 * src/assoc.c (assoc_to_string): Use a default: abort (); case
1312 to pacify gcc -Wswitch-default.
1313 * src/scan-gram.l (adjust_location): Use a default: break; case
1314 to pacify gcc -Wswitch-default.
1315 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
1316 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
1317 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
1318 Move these decls to scan-skel.l, since they don't need to be
1319 visible elsewhere.
1320 * src/scan-skel.l: Accept the above decls.
1321 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
1322 is used.
1323
13242006-01-21 Paul Eggert <eggert@cs.ucla.edu>
1325
1326 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
1327 since we don't want to insist on a version number at the start
1328 of the changelog every time.
1329 * Makefile.maint: Sync from coreutils a bit better.
1330 (sc_trailing_blank): Renamed from sc_trailing_space.
1331 All uses changed.
1332 (sc_no_if_have_config_h, sc_require_config_h):
1333 (sc_prohibit_assert_without_use): New rules.
1334 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
1335 (sc_dd_max_sym_length): Fix leading spaces in rule.
1336 (sc_system_h_headers): Prefix with @.
1337 (sc_useless_cpp_parens, m4-check): Output line numbers.
1338 (changelog-check): Allow version only in head.
1339 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
1340 satisfy new Makefile.maint rule.
1341 * data/glr.c: Likewise.
1342 * data/glr.cc: Likewise.
1343 * data/lalr1.cc: Likewise.
1344 * data/yacc.c: Likewise.
1345 * lib/ebitsetv.c: Likewise.
1346 * lib/lbitset.c: Likewise.
1347 * lib/subpipe.c: Likewise.
1348 * lib/timevar.c: Likewise.
1349 * src/system.h: Likewise.
1350 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
1351 * djgpp/Makefile.maint: Add copyright notice.
1352 * djgpp/README.in: Likewise.
1353 * djgpp/config.bat: Likewise.
1354 * djgpp/config.site: Likewise.
1355 * djgpp/config_h.sed: Likewise.
1356 * djgpp/djunpack.bat: Likewise.
1357 * djgpp/config.sed: Fix copyright notice to match standard format.
1358 * djgpp/subpipe.h: Likewise.
1359 * lib/bitsetv-print.c: Likewise.
1360 * lib/bitsetv.c: Likewise.
1361 * lib/subpipe.h: Likewise.
1362 * lib/timevar.c: Likewise.
1363 * lib/timevar.h: Likewise.
1364 * djgpp/subpipe.c: Use standard recipe for config.h.
1365 * lib/abitset.c: Likewise.
1366 * lib/bitset.c: Likewise.
1367 * lib/bitset_stats.c: Likewise.
1368 * lib/bitsetv-print.c: Likewise.
1369 * lib/bitsetv.c: Likewise.
1370 * lib/ebitsetv.c: Likewise.
1371 * lib/get-errno.c: Likewise.
1372 * lib/lbitset.c: Likewise.
1373 * lib/subpipe.c: Likewise.
1374 * lib/timevar.c: Likewise.
1375 * lib/vbitset.c: Likewise.
1376 * tests/local.at: Likewise.
1377 * src/scan-gram.l: Don't include verify.h, since system.h does
1378 that for us.
1379 * .x-sc_require_config_h: New file.
1380 * .x-sc_unmarked_diagnostics: New file.
1381
13822006-01-20 Paul Eggert <eggert@cs.ucla.edu>
1383
1384 Be a bit more systematic about using 'abort'.
1385 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
1386 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
1387 Put 'default: abort ();' before some other case, to satisfy older
1388 pedantic compilers.
1389 * lib/bitset_stats.c (bitset_stats_init): Likewise.
1390 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
1391 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
1392 * src/conflicts.c (resolve_sr_conflict): Likewise.
1393 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
1394 (get_decision_str, get_orientation_str, get_node_alignment_str):
1395 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
1396 (get_linestyle_str, get_arrowstyle_str): Likewise.
1397 * src/conflicts.c (resolve_sr_conflict):
1398 Use a default case rather than one for the one remaining enum
1399 value, to catch invalid enum values as well.
1400 * src/lalr.c (set_goto_map, map_goto):
1401 Prefer "assert (FOO);" to "if (!FOO) abort ();".
1402 * src/nullable.c (nullable_compute, token_definitions_output):
1403 Likewise.
1404 * src/reader.c (packgram, reader): Likewise.
1405 * src/state.c (transitions_to, state_new, state_reduction_find):
1406 Likewise.
1407 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
1408 (symbol_pack): Likewise.
1409 * src/tables.c (conflict_row, pack_vector): Likewise.
1410 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
1411 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
1412 * src/system.h: Don't include <assert.h>.
1413 (assert): New macro.
1414
1415 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
1416 (Destructor Decl, Parser Function, Pure Calling):
1417 Describe rules for braces inside C code more carefully.
1418
14192006-01-19 Paul Eggert <eggert@cs.ucla.edu>
1420
1421 Fix some porting glitches found by Nelson H. F. Beebe.
1422 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
1423 compilers that don't understand that abort () does not return.
1424 * src/state.c (transitions_to): Likewise.
1425 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
1426 that '#include <cstdlib>' works.
1427 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
1428 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
1429 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
1430 for the benefit of some pre-C99 compilers.
1431
1432 * bootstrap: Undo changes to gnulib files that autoreconf made.
1433
1434 Minor fixups to get 'make maintainer-check' to work.
1435 * configure.ac: Don't use -Wnested-externs, as it's incompatible
1436 with the new verify.h implementation.
1437 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
1438 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
1439 * data/yacc.c (YYUSE): Likewise.
1440 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
1441 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
1442 * src/parse-gram.y (declaration): Don't pass a string constant
1443 to a function that expects char *, since GCC might complain
1444 about the constant value.
1445 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
1446 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
1447 before #defining them.
1448 * tests/glr-regression.at
1449 (Incorrectly initialized location for empty right-hand side in GLR):
1450 In yyerror, use the msg arg.
1451 (Corrupted semantic options if user action cuts parse):
1452 (Incorrect lookahead during deterministic GLR):
1453 (Incorrect lookahead during nondeterministic GLR):
1454 Don't name a local var 'index'; it shadows string.h's 'index'.
1455
14562006-01-19 Akim Demaille <akim@epita.fr>
1457
1458 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
1459 location, not just parts of it.
1460
14612006-01-18 Paul Eggert <eggert@cs.ucla.edu>
1462
1463 * NEWS: Document the fact that multiple %unions are now allowed.
1464 * doc/bison.texinfo (Union Decl): Likewise.
1465 * TODO: This feature is now implemented, so remove it from
1466 the wishlist.
1467
1468 * Makefile.maint: Merge with coreutils Makefile.maint.
1469 (CVS_LIST): Use build-aux version if available.
1470 (VERSION_REGEXP): New macro.
1471 (syntax-check-rules): Add sc_no_if_have_config_h,
1472 sc_prohibit_assert_without_use, sc_require_config_h,
1473 sc_useless_cpp_parens.
1474 (sc_obsolete_symbols): Check for O_NDELAY.
1475 (sc_dd_max_sym_length): Track coreutils.
1476 (sc_unmarked_diagnostics): Look in all files, not just *.c.
1477 (sc_useless_cpp_parens): New rule.
1478 (news-date-check): Look for version or today's date.
1479 (changelog-check): Don't require version number near head.
1480 (copyright-check): Use current year instead of hardwiring 2005.
1481 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
1482 (announcement): Add --gpg-key-ID.
1483
1484 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
1485 with "file system".
1486
1487 Avoid undefined behavior that addressed just before the start of an
1488 array. Problem reported by twlevo.
1489 * src/reader.c (packgram): Prepend a new sentinel before ritem.
1490 * src/lalr.c (build_relations): Rely on new sentinel.
1491 * src/gram.c (gram_free): Adjust to new sentinel.
1492
14932006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
1494
1495 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
1496 yylookaheadNeeds. All uses updated.
1497 (yysplitStack): Rename local yynewLookaheadStatuses to
1498 yynewLookaheadNeeds.
1499 * data/glr-regression.at (Incorrect lookahead during nondeterministic
1500 GLR): In comments, change `lookahead status' to `lookahead need'.
1501
15022006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1503
1504 * data/glr.c (yysplitStack): A little stylistic rewrite.
1505
15062006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1507
1508 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
1509
15102006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
1511
1512 * doc/bison.texinfo: Fix some typos.
1513 (GLR Semantic Actions): New subsection discussing special
1514 considerations because GLR semantic actions might be deferred.
1515 (Actions): Mention look-ahead usage of yylval.
1516 (Actions and Locations): Mention look-ahead usage of yylloc.
1517 (Special Features for Use in Actions): Add YYEOF entry and mention it
1518 in the yychar entry.
1519 In the yychar entry, remove mention of the local yychar case (pure
1520 parser) since this is irrelevant information when writing semantic
1521 actions and since it's already discussed in `Bison Symbols' where
1522 yychar is otherwise described as an external variable.
1523 In the yychar entry, don't call it the `current' look-ahead since it
1524 isn't when semantic actions are deferred.
1525 In the yychar and yyclearin entries, add note about deferred semantic
1526 actions.
1527 Add yylloc and yylval entries discussing look-ahead usage.
1528 (Look-Ahead Tokens): When discussing yychar, don't call it the
1529 `current' look-ahead, and do mention yylval and yylloc.
1530 (Error Recovery): Cross-reference `Action Features' when mentioning
1531 yyclearin.
1532 (Bison Symbols): In the yychar entry, don't call it the `current'
1533 look-ahead.
1534 In the yylloc and yylval entries, mention look-ahead usage.
1535
15362006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
1537
1538 * tests/glr-regression.at: Update copyright year to 2006.
1539
15402006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1541
1542 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
1543 use during nondeterministic operation to track which stacks have
1544 actually needed the current lookahead.
1545 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
1546 Allocate, deallocate, resize, and otherwise shuffle space for
1547 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
1548 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
1549 appropriately during nondeterministic operation.
1550 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
1551 members to store the current lookahead to be used by the deferred
1552 user action.
1553 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
1554 from which the RHS is taken. Set the lookahead members of the new
1555 yySemanticOption according to the lookahead status for stack yyk.
1556 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
1557 yyaddDeferredAction.
1558 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
1559 members of yySemanticOption before invoking yyuserAction, and then set
1560 them back to their current values afterward.
1561 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
1562 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
1563 * tests/glr-regression.at: Remove `.' from the ends of recent test case
1564 titles for consistency.
1565 (Leaked merged semantic value if user action cuts parse): In order to
1566 suppress lint warnings, use arguments in merge function, and assign
1567 char value < 128 in main.
1568 (Incorrect lookahead during deterministic GLR): New test case.
1569 (Incorrect lookahead during nondeterministic GLR): New test case.
1570
15712006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1572
1573 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
1574 !yyvaluep as signal that no semantic value is available to print.
1575 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
1576 to print a semantic value.
1577
15782006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1579
1580 * tests/glr-regression.at: For consistency with my newer test cases,
1581 don't thank myself.
1582
15832006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
1584
1585 * data/glr.c (yyresolveValue): When merging semantic options, if at
1586 least one user action succeeds but a later one cuts the parse, then
1587 destroy the semantic value before returning rather than leaking it.
1588 (yyresolveStates): If a user action cuts the parse and thus
1589 yyresolveValue fails, ignore the (unset) semantic value rather than
1590 corrupting the yyGLRState, and empty the semantic options list since
1591 the user actions should have called all necessary destructors.
1592 Simplify code with YYCHK.
1593 * tests/glr-regression.at (Corrupted semantic options if user action
1594 cuts parse): New test case.
1595 (Undesirable destructors if user action cuts parse): New test case.
1596 Before applying any of this patch, this test case never actually failed
1597 for me... but only because the corrupted semantic options usually
1598 masked this bug.
1599 (Leaked merged semantic value if user action cuts parse): New test
1600 case.
1601
16022006-01-05 Akim Demaille <akim@epita.fr>
1603
1604 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
1605
16062006-01-04 Paul Eggert <eggert@cs.ucla.edu>
1607
1608 * data/c.m4 (b4_c_modern): New macro, with a new provision for
1609 _MSC_VER. Problem reported by Cenzato Marco.
1610 (b4_c_function_def): Use it.
1611 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
1612 b4_c_modern.
1613 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
1614 than rolling our own.
1615
16162006-01-04 Akim Demaille <akim@epita.fr>
1617
1618 Also warn about non-used mid-rule values.
1619 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
1620 member.
1621 (symbol_list_new): Adjust.
1622 * src/reader.c (symbol_typed_p): New.
1623 (grammar_rule_check): Use it.
1624 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
1625 Check its rule.
1626 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
1627 Use it.
1628 * tests/actions.at (Exotic Dollars): Adjust.
1629
16302006-01-04 Akim Demaille <akim@epita.fr>
1631
1632 * src/reader.c (grammar_midrule_action): If $$ is set in a
1633 mid-rule, move the `used' bit to its lhs.
1634 * tests/input.at (Unused values): New.
1635 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
1636
16372006-01-03 Paul Eggert <eggert@cs.ucla.edu>
1638
1639 * doc/bison.texinfo (Bison Options): Say more accurately what
1640 --yacc does.
1641 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
1642 about declarations in the grammar when in Yacc mode, as POSIX does
1643 not require a diagnostic when the grammar uses extensions.
1644
1645 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
1646
1647 Warn about dubious constructions like "%token T T".
1648 Reported by twlevo.
1649 * src/symtab.h (struct symbol.declared): New member.
1650 * src/symtab.c (symbol_new): Initialize it to false.
1651 (symbol_class_set): New arg DECLARING, specifying whether
1652 this is a declaration that we want to warn about, if there
1653 is more than one of them. All uses changed.
1654
1655 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
1656 Allow multiple %union directives, whose contents concatenate.
1657 * src/parse-gram.y (grammar_declaration): Likewise.
1658 Use muscle_code_grow, so that we don't need stype_line any more.
1659 All uses changed.
1660
1661 * src/muscle_tab.c (muscle_grow): Fix comment.
1662
1663 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
1664 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
1665 Update copyright year to 2006.
1666
16672006-01-03 Akim Demaille <akim@epita.fr>
1668
1669 Have glr.cc pass (some of) the calc.at tests.
1670 * data/glr.cc (b4_parse_param_orig): New.
1671 (b4_parse_param): Improve its definition, and bound it more
1672 clearly in the skeleton.
1673 (b4_epilogue): Append, instead of prepending, in order to keep
1674 #line consistency.
1675 Simplify the generation of auxiliary functions: locations and
1676 purity are mandated.
1677 (b4_global_tokens_and_yystype): Honor it.
1678 * data/location.cc (c++.m4): Don't include it.
1679 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
1680 and AT_SKEL_CC_IF.
1681 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
1682 AT_LALR1_CC_IF.
1683 Be sure to initialize the first position's filename.
1684 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
1685 mandated anyway.
1686 (AT_CHECK_CALC_GLR_CC): New.
1687 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
1688
16892006-01-02 Akim Demaille <akim@epita.fr>
1690
1691 * src/output.c (output_skeleton): Don't hard wire the inclusion of
1692 c.m4.
1693 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
1694 * data/glr.cc: Do not include stack.hh.
1695
16962006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
1697
1698 * data/glr.c: Reformat whitespace with tabs.
1699 (b4_lpure_formals): Remove this unused m4 macro.
1700 * tests/cxx-type.at: Reformat whitespace with tabs.
1701 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
1702 since it's a member. Rename type to isNterm for clarity.
1703
17042005-12-29 Akim <akim@sulaco.local>
1705
1706 Let glr.cc catch up with symbol_value_print.
1707 * data/glr.cc (b4_yysymprint_generate): Replace by...
1708 (b4_yy_symbol_print_generate): this.
1709 (yy_symbol_print, yy_symbol_value_print): Declare them.
1710
17112005-12-28 Paul Eggert <eggert@cs.ucla.edu>
1712
1713 * src/location.h (boundary): Note that a line or column equal
1714 to INT_MAX indicates an overflow.
1715 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
1716 (rule_length_overflow, increment_rule_length, add_column_width):
1717 New functions.
1718 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
1719 (<SC_BRACED_CODE>"}"):
1720 Use increment_rule_length rather than incrementing it by hand.
1721 (adjust_location, handle_syncline): Diagnose overflow.
1722 (handle_action_dollar, handle_action_at):
1723 Fix bug with monstrosities like $-2147483648.
1724 Remove now-unnecessary checks.
1725 (scan_integer): Verify assumptions and remove now-unnecessary checks.
1726 (convert_ucn_to_byte): Verify assumptions.
1727 (handle_syncline): New arg LOC. All callers changed.
1728 Don't store through a value derived from char const * pointer.
1729
1730 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
1731 GCC warnings.
1732
17332005-12-27 Paul Eggert <eggert@cs.ucla.edu>
1734
1735 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
1736 Remove unnecessary forward static decls.
1737
17382005-12-27 Akim Demaille <akim@epita.fr>
1739
1740 * src/reader.c (grammar_current_rule_check): Also check that $$
1741 is used.
1742 Take the rule to check as argument, hence rename as...
1743 (grammar_rule_check): this.
1744 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
1745 Rename as...
1746 (grammar_rule_begin, grammar_rule_end): these, for consistency.
1747 (grammar_midrule_action, grammar_symbol_append): Now static.
1748 * tests/torture.at (input): Don't rely on the default action
1749 being always performed.
1750 * tests/calc.at: "Set" $$ even when the action is "cut" with
1751 YYERROR or other.
1752 * tests/actions.at (Exotic Dollars): Instead of using unused
1753 values, check that the warning is issued.
1754
17552005-12-22 Paul Eggert <eggert@cs.ucla.edu>
1756
1757 * NEWS: Improve wording for unused-value warnings.
1758
17592005-12-22 Akim Demaille <akim@epita.fr>
1760
1761 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
1762 (b4_yysymprint_generate): Rename as...
1763 (b4_yy_symbol_print_generate): this.
1764 Generate yy_symbol_print instead of yysymprint.
1765 Generate also yy_symbol_value_print, and use it.
1766
17672005-12-22 Akim Demaille <akim@epita.fr>
1768
1769 * NEWS: Warn about unused values.
1770 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
1771 a `used' member.
1772 (symbol_list_n_get, symbol_list_n_used_set): New.
1773 (symbol_list_n_type_name_get): Use symbol_list_n_get.
1774 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
1775 * src/reader.c (grammar_current_rule_check): Check that values are
1776 used.
1777 * src/symtab.c (symbol_print): Accept 0.
1778 * tests/existing.at: Remove the type information.
1779 Empty the actions.
1780 Remove useless actions (beware of mid-rule actions: perl -000
1781 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
1782 * tests/actions.at (Exotic Dollars): Use unused values.
1783 * tests/calc.at: Likewise.
1784 * tests/glr-regression.at (No users destructors if stack 0 deleted):
1785 Likewise.
1786
1787 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
1788 rule_useful_p.
1789
17902005-12-21 Paul Eggert <eggert@cs.ucla.edu>
1791
1792 Undo 2005-12-01 tentative license wording change. The wording is
1793 still being reviewed by the lawyers, and we don't want to wait for
1794 them before publishing a test release. For now, revert to the
1795 previous wording.
1796 * NEWS: Undo 2005-12-01 change.
1797 * data/glr.c: Revert to previous license wording.
1798 * data/glr.cc: Likewise.
1799 * data/lalr1.cc: Likewise.
1800 * data/location.cc: Likewise.
1801 * data/yacc.c: Likewise.
1802
1803 * NEWS: Reword %destructor vs YYABORT etc.
1804 * data/glr.c: Use American spacing, for consistency.
1805 * data/glr.cc: Likewise.
1806 * data/lalr1.cc: Likewise.
1807 * data/yacc.c: Likewise.
1808 * data/yacc.c: Reformat comments slightly.
1809 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
1810 for consistency. Fix some spelling errors and reword recently-included
1811 text slightly.
1812 * tests/cxx-type.at: Cast results of malloc, for C++.
1813
18142005-12-21 Joel E. Denny <address@hidden>
1815
1816 * tests/cxx-type.at: Construct a tree, count the parents of shared
1817 nodes, and free each node once and only once. Previously, the memory
1818 for semantic values was leaked instead.
1819
18202005-12-21 Joel E. Denny <address@hidden>
1821
1822 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
1823 (yylval, yylloc): If pure, #define to yystackp->yyval and
1824 yystackp->yyloc similar to yychar and yynerrs.
1825 (yyparse): If pure, remove local yylval and yylloc. Add local
1826 yystackp to accommodate pure definitions of yylval and yylloc.
1827 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
1828 yylvalp and yyllocp to &yylval and &yylloc.
1829 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
1830 namespace. Previously, nerrs and char were missing, but lval and lloc
1831 weren't necessary.
1832 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
1833 yylvalp and yyllocp parameters since, if pure, these are now always
1834 accessible through yystackp. If not pure, they are still accessible
1835 globally.
1836 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
1837 `if (YYID (N))' to pacify lint.
1838
18392005-12-21 Akim Demaille <akim@epita.fr>
1840
1841 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
1842 destroy the RHS symbols of a rule.
1843 * data/yacc.c (yylen): Initialize to 0.
1844 Keep its value to the number of items to possibly shift.
1845 In particular, a regular successful parse that ends on YYFINAL by
1846 a (internal) YYACCEPT must not have yylen != 0.
1847 (yyerrorlab, yyreturn): Pop the RHS.
1848 Reorder a bit to emphasize the `shifting' bits of code.
1849 (YYPOPSTACK): Now accept a number of items to pop.
1850 * data/lalr1.cc: Likewise.
1851 * data/glr.c: Formatting changes.
1852 Use goto instead of fall through.
1853 * doc/bison.texinfo (Destructor Decl): Complete.
1854
18552005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1856
1857 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
1858 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
1859 * djgpp/config.bat: Replace every occurence of the file name
1860 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
1861 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
1862 * djgpp/config.sed: Replace every occurence of the file name
1863 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
1864 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
1865 * djgpp/djunpack.bat: DJGPP specific file.
1866 * djgpp/fnchange.lst: DJGPP specific file.
1867 * djgpp/README.in: Add new information about how to unpack the bison
1868 source on MSDOS and other systems which have 8.3 file name restrictions
1869 using djunpack.bat and fnchange.lst.
1870
18712005-12-12 Paul Eggert <eggert@cs.ucla.edu>
1872
1873 * bootstrap (build_cvs_prefix): Remove; unused.
1874 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
1875 when getting gnulib.
1876
18772005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
1878
1879 * data/glr.c: Reorder typedef declarations for structs to match order
1880 of struct declarations.
1881 Rename yystack everywhere to yystackp except in yyparse where it's not
1882 a pointer.
1883 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
1884 consistency.
1885 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
1886 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
1887 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
1888 lint.
1889
18902005-12-09 Paul Eggert <eggert@cs.ucla.edu>
1891
1892 * tests/sets.at (Accept): Fix typos in regular expression used to
1893 sed out the final state number.
1894
1895 Work around portability problem on Solaris 10: flex-generated
1896 files include <stdio.h> before <config.h>, which messes up
1897 because the latter defines __EXTENSIONS__. Address the problem
1898 by creating two new little files that include <config.h> first,
1899 then include the flex-generated files. Rewrite everyone else
1900 to include <config.h> first, as well.
1901 * lib/timevar.c: Always include "config.h".
1902 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
1903 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
1904 (EXTRA_bison_SOURCES): New macro.
1905 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
1906 * src/system.h: Don't include config.h.
1907 * src/LR0.c: Include <config.h> first.
1908 * src/assoc.c: Likewise.
1909 * src/closure.c: Likewise.
1910 * src/complain.c: Likewise.
1911 * src/conflicts.c: Likewise.
1912 * src/derives.c: Likewise.
1913 * src/files.c: Likewise.
1914 * src/getargs.c: Likewise.
1915 * src/gram.c: Likewise.
1916 * src/lalr.c: Likewise.
1917 * src/location.c: Likewise.
1918 * src/main.c: Likewise.
1919 * src/muscle_tab.c: Likewise.
1920 * src/nullable.c: Likewise.
1921 * src/output.c: Likewise.
1922 * src/parse-gram.y: Likewise.
1923 * src/print.c: Likewise.
1924 * src/print_graph.c: Likewise.
1925 * src/reader.c: Likewise.
1926 * src/reduce.c: Likewise.
1927 * src/relation.c: Likewise.
1928 * src/state.c: Likewise.
1929 * src/symlist.c: Likewise.
1930 * src/symtab.c: Likewise.
1931 * src/tables.c: Likewise.
1932 * src/uniqstr.c: Likewise.
1933 * src/vcg.c: Likewise.
1934
1935 * src/parse-gram.y: Fix minor problems uncovered by lint.
1936 (current_lhs, current_lhs_location): Now static.
1937 (current_assoc): Remove unused variable.
1938
1939 Cleanups so that Bison-generated parsers have less lint.
1940 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
1941 Prepend /*ARGSUSED*/, for lint's sake.
1942 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
1943 definition if 'lint' is defined.
1944 (YYID): New macro (or function, if lint).
1945 All uses of /*CONSTCOND*/0 replaced by YYID(0).
1946 * data/yacc.c: Likewise.
1947 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
1948 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
1949 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
1950 is C++ only.
1951 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
1952 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
1953 Use YYID(0) rather than 0, for lint.
1954 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
1955 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
1956
19572005-12-07 Paul Eggert <eggert@cs.ucla.edu>
1958
1959 * tests/glr-regression.at
1960 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
1961 Close memory leak reported by twlevo.
1962
19632005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
1964
1965 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
1966 all stacks.
1967 (yyparse): Iterate another stack in order to call user destructors.
1968 * tests/glr-regression.at (No users destructors if stack 0 deleted):
1969 New test case.
1970 (Duplicated user destructor for lookahead): This test now is expected
1971 to succeed.
1972
19732005-12-01 Paul Eggert <eggert@cs.ucla.edu>
1974
1975 * NEWS: Document the following change.
1976 * data/yacc.c: Say "parser skeleton" rather than "file", since
1977 it's no longer just a file.
1978 * data/glr.c: Grant a special exception for C GLR parsers, that
1979 reads like the already-existing exception for C LALR(1) parsers.
1980 * data/glr.cc: Likewise.
1981 * data/lalr1.cc: Likewise.
1982 * data/location.cc: Likewise.
1983 * data/yacc.c: Reword the "written by" statement to clarify that
1984 it was the parser skeleton, not the entire output file.
1985 * data/glr.c: Written by Paul Hilfinger.
1986 * data/glr.cc: Written by Akim Demaille.
1987 * data/lalr1.cc: Likewise.
1988
19892005-11-18 Paul Eggert <eggert@cs.ucla.edu>
1990
1991 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
1992 Fix typos in previous change that broke 'make check'.
1993 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
1994 supported in C.
1995 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
1996 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
1997 We can revert this once things settle down.
1998
1999 * src/conflicts.c (conflicts_print): Don't print file name twice
2000 when %expect fails because there were no conflicts.
2001 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
2002 change.
2003 * tests/conflicts.at (%expect not enough, %expect too much):
2004 (%expect with reduce conflicts): Adjust to new behavior.
2005
20062005-11-18 Akim Demaille <akim@epita.fr>
2007
2008 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
2009 errors.
2010 * NEWS: Document this.
2011 * doc/bison.texinfo (Expect Decl): Likewise.
2012
20132005-11-16 Akim Demaille <akim@epita.fr>
2014
2015 Generalize the display of semantic values and locations in traces.
2016 * data/glr.c (yy_reduce_print): Fix indices (again).
2017 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
2018 literal integers.
2019 * data/lalr1.cc (yyreduce_print): Rename as...
2020 (yy_reduce_print): this.
2021 Display values and locations.
2022 * data/yacc.c (yy_reduce_print): Likewise.
2023 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
2024 (yysymprint): Move higher to be visible from yy_reduce_print).
2025 (yyparse): Adjust.
2026 * tests/calc.at: Adjust the expected length of the traces.
2027
20282005-11-14 Akim Demaille <akim@epita.fr>
2029
2030 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
2031 from 1 to N, while values and location start at 0.
2032 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
2033
20342005-11-14 Akim Demaille <akim@epita.fr>
2035
2036 * data/glr.c (yy_reduce_print): Fix the $ number.
2037
20382005-11-14 Akim Demaille <akim@epita.fr>
2039
2040 "Use" parse parameters.
2041 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
2042 * data/glr.c, data/glr.cc: Use them.
2043 * data/glr.c (YYUSE): Have a C++ definition that supports
2044 non-pointer types.
2045
20462005-11-14 Akim Demaille <akim@epita.fr>
2047
2048 * data/glr.c (yyexpandGLRStack): Declare only if defined.
2049
20502005-11-14 Akim Demaille <akim@epita.fr>
2051
2052 * data/glr.cc: New.
2053 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
2054
20552005-11-12 Akim Demaille <akim@epita.fr>
2056
2057 Let position and location be PODs.
2058 * data/location.cc (position::initialize, location::initialize): New.
2059 (position::position, location::location): Define only if
2060 b4_location_constructors is defined.
2061 * data/lalr1.cc (b4_location_constructors): Define it for backward
2062 compatibility.
2063 * doc/bison.texinfo (Initial Action Decl): Use initialize.
2064
20652005-11-12 Akim Demaille <akim@epita.fr>
2066
2067 * data/lalr1.cc: Move the body of the ctor and dtor into the
2068 parser file (instead of the header).
2069 Wrap the implementations in a "namespace yy".
2070
20712005-11-12 Akim Demaille <akim@epita.fr>
2072
2073 Have glr.c include its header file when created.
2074 * data/glr.c (b4_shared_declarations): New.
2075 Output them verbatim in the parser if !%defines, otherwise
2076 output then in the header file, and include it instead.
2077
20782005-11-11 Akim Demaille <akim@epita.fr>
2079
2080 * data/glr.c: Comment changes.
2081
20822005-11-11 Akim Demaille <akim@epita.fr>
2083
2084 When yydebug, report semantic and location values for reductions.
2085 * data/glr.c (yy_reduce_print): Report the semantic values and the
2086 locations.
2087 (YY_REDUCE_PRINT): Adjust.
2088 (yyglrReduce): Use them.
2089 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
2090 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
2091 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
2092 traces.
2093
20942005-11-10 Akim Demaille <akim@epita.fr>
2095
2096 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
2097 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
2098 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
2099
21002005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
2101
2102 * m4/cxx.m4, examples/Makefile.am: Don't build
2103 examples/calc++ if no C++ compiler is available. (trivial change)
2104
21052005-11-09 Akim Demaille <akim@epita.fr>
2106
2107 * src/scan-skel.l: Use a couple of asserts.
2108
21092005-11-03 Akim Demaille <akim@epita.fr>
2110
2111 In some (weird) cases, the final state number is incorrect.
2112 Reported by Alexandre Duret-Lutz.
2113 * src/LR0.c (state_list_append): Remove the computation of
2114 final_state.
2115 (save_reductions): Do it here.
2116 (get_state): Alpha conversion.
2117 (generate_states): Use a for loop.
2118 * src/gram.h (item_number_is_rule_number)
2119 (item_number_is_symbol_number): New.
2120 * src/state.c: Use assert.
2121 * src/system.h: Include assert.h.
2122 * tests/sets.at (Accept): New.
2123
21242005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2125
2126 * data/glr.c (yyfill): Adjust comment.
2127 (yyresolveAction): Initialize default location properly
2128 for empty right-hand sides.
2129 (yydoAction): Ditto.
2130 Add comment explaining apparently dead code.
2131 * tests/glr-regression.at
2132 (Incorrectly initialized location for empty right-hand side in GLR):
2133 New test.
2134
21352005-10-30 Paul Eggert <eggert@cs.ucla.edu>
2136
2137 * bootstrap (cleanup_gnulib): New function. Use it to clean up
2138 gnulib when interrupted. This fixes some race conditions and
2139 works around some portability problems (one noted by Paul
2140 Hilfinger).
2141
21422005-10-22 Akim <akim@epita.fr>
2143
2144 * Makefile.cfg: Adjust to config -> build-aux.
2145 Reported by twledo.
2146
21472005-10-21 Akim Demaille <akim@epita.fr>
2148
2149 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
2150 the %parse-params.
2151 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
2152 * data/yacc.c (b4_Pure_if): Rename as...
2153 (b4_yacc_pure_if): this.
2154 (YY_SYMBOL_PRINT, yyparse): Adjust.
2155 * doc/bison.texinfo: Formatting changes.
2156
21572005-10-21 Akim Demaille <akim@epita.fr>
2158
2159 Finish the transition config -> build-aux.
2160 * configure.ac, Makefile.am: Use build-aux.
2161 * config/prev-version, config/announce-gen, config/Makefile.am:
2162 Move to...
2163 * build-aux/prev-version, build-aux/announce-gen,
2164 * build-aux/Makefile.am: here.
2165
21662005-10-14 Akim Demaille <akim@epita.fr>
2167
2168 * examples/calc++/test: Use set -x only when VERBOSE.
2169
21702005-10-13 Paul Eggert <eggert@cs.ucla.edu>
2171
2172 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
2173 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
2174
21752005-10-13 Akim Demaille <akim@epita.fr>
2176
2177 * src/scan-skel.l: Output the base name parts of the parser and
2178 header file names.
2179 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
2180 additional checks.
2181 Use this to exercise C++ outputs in subdirs.
2182 Reported by Oleg Smolsky.
2183
21842005-10-12 Paul Eggert <eggert@cs.ucla.edu>
2185
2186 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
2187 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
2188 Problem reported by John P. Hartmann.
2189 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
2190 already defined it.
2191
21922005-10-12 Akim Demaille <akim@epita.fr>
2193
2194 * src/parse-gram.y (version_check): Exit 63 to please missing
2195 (stands for "version mismatch).
2196 * tests/input.at, doc/bison.texinfo: Adjust.
2197
21982005-10-10 Paul Eggert <eggert@cs.ucla.edu>
2199
2200 Work around portability problems with Visual Age C compiler
2201 (xlc and xlC_r) reported by John P. Hartmann.
2202 * data/location.cc (initial_column, initial_line): Remove.
2203 All uses replaced by 0 and 1.
2204 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
2205 that xlc complains about.
2206 * src/scan-skel.l (skel_wrap): Likewise.
2207 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
2208 as __STDC__.
2209 * data/yacc.c (YYMODERN_C): New macro, which also looks at
2210 __STDC_VERSION__. Use it everywhere instead of looking at
2211 __STDC__ and __cplusplus.
2212
22132005-10-10 Akim Demaille <akim@epita.fr>
2214
2215 * examples/calc++/test: Be quiet unless VERBOSE.
2216
22172005-10-05 Paul Eggert <eggert@cs.ucla.edu>
2218
2219 * data/c.m4 (yydestruct, yysymprint):
2220 Use YYUSE instead of casting to void.
2221 * data/glr.c (YYUSE): New macro.
2222 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2223 Use it instead of rolling our own.
2224 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2225 (YYCHK1):
2226 Use /*CONSTCOND*/ to suppress lint warnings.
2227 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2228 (YY_STACK_PRINT): Use 'false' not '0'.
2229 (YYUSE): New macro.
2230 (yysymprint_, yydestruct_): Use it instead of rolling our own.
2231 * data/yacc.c (YYUSE): New macro.
2232 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
2233 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
2234 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
2235
2236
2237 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
2238 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
2239
22402005-10-04 Paul Eggert <eggert@cs.ucla.edu>
2241
2242 Undo the parts of the unlocked-I/O change that substituted
2243 putc or puts for printf. This might hurt performance a bit,
2244 but some people prefer the printf style.
2245 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
2246 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
2247 All uses replaced by YYFPRINTF and YYDPRINTF.
2248 * data/yacc.c: Likewise.
2249 * lib/bitset.c (bitset_print): Likewise.
2250 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
2251 putc and puts.
2252 * lib/lbitset.c (debug_lbitset): Likewise.
2253 * src/closure.c (print_firsts, print_fderives): Likewise.
2254 * src/gram.c (grammar_dump): Likewise.
2255 * src/lalr.c (look_ahead_tokens_print): Likewise.
2256 * src/output.c (escaped_output): Likewise.
2257 (user_actions_output): Break apart two printfs.
2258 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
2259 * src/reduce.c (reduce_print): Likewise.
2260 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2261 * src/system.h: Include unlocked-io.h rathe than stdio.h.
2262
2263 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2264 Use assignments rather than casts-to-void to suppress
2265 unused-variable warnings. This pacifies 'lint'.
2266 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
2267 unused-variable warnings.
2268
22692005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2270
2271 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2272
22732005-10-02 Paul Eggert <eggert@cs.ucla.edu>
2274
2275 Use unlocked I/O for a minor performance improvement on hosts like
2276 GNU/Linux and Solaris that support unlocked I/O. The basic idea
2277 is to use the gnlib unlocked-io module, and to prefer putc and
2278 puts to printf when either will work (since the latter doesn't
2279 come in an unlocked flavor).
2280 * bootstrap (gnulib_modules): Add unlocked-io.
2281 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
2282 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
2283 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
2284 and similarly for puts and putc and printf.
2285 * data/yacc.c: Likewise.
2286 * lib/bitset.c (bitset_print): Likewise.
2287 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
2288 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
2289 to printf.
2290 * lib/lbitset.c (debug_lbitset): Likewise.
2291 * src/closure.c (print_firsts, print_fderives): Likewise.
2292 * src/gram.c (grammar_dump): Likewise.
2293 * src/lalr.c (look_ahead_tokens_print): Likewise.
2294 * src/output.c (escaped_output): Likewise.
2295 (user_actions_output): Coalesce two printfs.
2296 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
2297 * src/reduce.c (reduce_print): Likewise.
2298 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2299 * src/system.h: Include unlocked-io.h rather than stdio.h.
2300
2301 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
2302 this confuses xgettext.
2303
23042005-10-02 Akim Demaille <akim@epita.fr>
2305
2306 * bootstrap (gnulib_modules): Add strverscmp.
2307 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
2308 * m4/.cvsignore: Add strverscmp.m4.
2309 * src/parse-gram.y (%require): New token, new rule.
2310 (version_check): New.
2311 * src/scan-gram.l (%require): Adjust.
2312 * tests/input.at (AT_REQUIRE): New.
2313 Use it.
2314 * doc/bison.texinfo (Require Decl): New.
2315 (Calc++ Parser): Use %require.
2316
23172005-10-02 Akim Demaille <akim@epita.fr>
2318
2319 * data/location.cc: New.
2320
23212005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
2322 Akim Demaille <akim@epita.fr>
2323
2324 Make sure -odir/foo.cc creates dir/location.hh etc.
2325 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
2326 (spec_file_prefix, spec_verbose_file, spec_graph_file)
2327 (spec_defines_file): Now const.
2328 (dir_prefix): New.
2329 (short_base_name): Remove.
2330 * src/files.c: Adjust.
2331 (dirname.h): Include.
2332 (base_name): Don't prototype it.
2333 (finput): Remove, duplicates gram_in.
2334 (full_base_name, short_base_name): Replace by...
2335 (all_but_ext, all_but_tab_ext): these.
2336 (compute_base_names): Rename as...
2337 (compute_file_name_parts): this.
2338 Update to compute the new variables, including dir_prefix.
2339 Adjust dependencies.
2340 * src/output.c (prepare): Output them.
2341 * src/reader.c: Adjust to use gram_in, not finput.
2342 * src/scan-skel.l (@dir_prefix@): New.
2343
23442005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2345
2346 * lib/subpipe.c: New function end_of_output_subpipe() added
2347 to allow support for non-posix systems. This is a no-op function
2348 for posix systems.
2349
2350 * lib/subpipe.h: New function end_of_output_subpipe() added
2351 to allow support for non-posix systems. This is a no-op function
2352 for posix systems.
2353
2354 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
2355 handle the lack of pipe/fork functionality on non-posix systems.
2356
2357 * djgpp/Makefile.maint: DJGPP specific file.
2358
2359 * djgpp/README.in: DJGPP specific file.
2360
2361 * djgpp/config.bat: DJGPP specific configuration file.
2362
2363 * djgpp/config.sed: DJGPP specific configuration file.
2364
2365 * djgpp/config.site: DJGPP specific configuration file.
2366
2367 * djgpp/config_h.sed: DJGPP specific configuration file.
2368
2369 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
2370
2371 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
2372
23732005-10-02 Akim Demaille <akim@epita.fr>
2374
2375 * data/location.cc: New, extract from...
2376 * data/lalr1.cc: here.
2377 (location.hh): Include it after the user prologue, in case the
2378 filename type is defined by the user.
2379 Forward declation location and position before the pre-prologue.
2380 (yyresult_): Rename as...
2381 (yyresult): this, it's a local variable, not an attribute.
2382 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
2383
23842005-10-01 Akim Demaille <akim@epita.fr>
2385
2386 * examples/extexi: Restore the #line generation.
2387
23882005-09-30 Akim Demaille <akim@epita.fr>,
2389 Alexandre Duret-Lutz <adl@gnu.org>
2390
2391 Move the token type and YYSTYPE in the parser class.
2392 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
2393 (parser::token): New, from the moved free definition of tokens.
2394 (parser::semantic_value): Now a full definition instead of an
2395 indirection to YYSTYPE.
2396 (b4_post_prologue): No longer included in the header file, but
2397 in the implementation file.
2398 * doc/bison.texi (C+ Language Interface): Update.
2399 * src/parse-gram.y: Support unary %define.
2400 * tests/actions.at: Define global_tokens_and_yystype for backward
2401 compatibility until we update the tests.
2402 * tests/calc.at: Idem.
2403 (first_line, first_column, last_line, last_column): Define for lalr1.cc
2404 to simplify the code.
2405
24062005-09-29 Paul Eggert <eggert@cs.ucla.edu>
2407
2408 Port to SunOS 4.1.4, which lacks strtoul and strerror.
2409 Ah, the good old days! Problem reported by Peter Klein.
2410 * bootstrap (gnulib_modules): Add strerror, strtoul.
2411 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
2412 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
2413
24142005-09-29 Akim Demaille <akim@epita.fr>
2415
2416 * data/c.m4 (b4_error_verbose_if): New.
2417 * data/lalr1.cc: Use it.
2418 (YYERROR_VERBOSE_IF): Remove.
2419 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
2420 parser members, replaced by...
2421 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
2422 local variables.
2423 (yysyntax_error_): Takes the state number as argument.
2424 (yyreduce_print_): Use the argument yyrule, not the former
2425 attribute yyn_.
2426
24272005-09-26 Paul Eggert <eggert@cs.ucla.edu>
2428
2429 * bootstrap (gnulib_modules): Add verify.
2430 * lib/.cvsignore: Add verify.h.
2431 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
2432 * src/system.h (verify): Remove.
2433 Include verify.h instead.
2434 * src/tables.c (tables_generate): Use new API for 'verify'.
2435
24362005-09-21 Paul Eggert <eggert@cs.ucla.edu>
2437
2438 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
2439 local variables whose names begin with 'yy'.
2440 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
2441 Trivial changes from Joel E. Denny.
2442
2443 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
2444 it itself.
2445 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
2446 don't use alloca any more.
2447
2448 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
2449 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
2450 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
2451 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
2452 to match yacc.c, to test more hosts.
2453
24542005-09-20 Paul Eggert <eggert@cs.ucla.edu>
2455
2456 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
2457 doesn't affect behavior.
2458 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
2459 Solaris, AIX, MSC.
2460 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
2461 This works a bit better with glibc, if user code has already included
2462 stdlib.h.
2463 * doc/bison.texinfo (Bison Parser): Document that users can't
2464 arbitrarily use malloc and free for other purposes. Document
2465 that <alloca.h> and <malloc.h> might be included.
2466 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
2467 user must declare alloca.
2468
2469 * HACKING (release): Forwarn the Translation Project about
2470 stable releses.
2471
24722005-09-20 Akim Demaille <akim@epita.fr>
2473
2474 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
2475
24762005-09-19 Paul Eggert <eggert@cs.ucla.edu>
2477
2478 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
2479 (YYSTACK_ALLOC_MAXIMUM): Use it.
2480 (yysyntax_error): New function.
2481 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
2482 multiple syntax errors are reported, and alloca is being used.
2483 Instead, reallocate buffers twice as big each time, so that
2484 we waste at most half the allocated memory. Start with a small
2485 (128-byte) buffer that will suffice in most cases anyway.
2486 Use yysyntax_error to do most of the work.
2487
2488 * doc/bison.texinfo (Error Reporting, Table of Symbols):
2489 yynerrs is the number of errors reported, not the number of
2490 errors encountered.
2491
2492 * tests/glr-regression.at (Duplicated user destructor for lookahead):
2493 Mark it as expected to fail.
2494 Cast result of malloc; problem reported by twlevo@xs4all.nl.
2495 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
2496 Don't start user-code symbols with "yy", to avoid name space problems.
2497
24982005-09-19 Akim Demaille <akim@epita.fr>
2499
2500 Remove the traits, failed experiment.
2501 It never proved useful, and anyway because of the current
2502 definition, it was not possible to have several specialization of
2503 this traits, making it useless.
2504 * data/lalr1.cc (yy:traits): Remove.
2505 Inline its definitions in the parser class.
2506
25072005-09-19 Akim Demaille <akim@epita.fr>
2508
2509 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
2510 least Mac OSX with a /usr/local install of gettext.
2511
25122005-09-19 Akim Demaille <akim@epita.fr>
2513
2514 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
2515 and yytoken for similarity with the other skeletons.
2516
25172005-09-19 Akim Demaille <akim@epita.fr>
2518
2519 * NEWS, configure.ac: update version number to 2.1a.
2520
25212005-09-16 Paul Eggert <eggert@cs.ucla.edu>
2522
2523 * NEWS: Version 2.1.
2524
2525 * NEWS: Remove notice of yytname change, since it was never in an
2526 official release.
2527 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
2528 diagnostic.
2529 * src/output.c (prepare): Likewise.
2530 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
2531 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
2532 is not defined. This is an awful hack, but it's enough for now.
2533 All callers changed.
2534 * tests/glr-regression-at (make_value): Args are const pointers now,
2535 to avoid GCC warning.
2536 (Duplicated user destructor for lookahead): New test. Currently
2537 skipped. It fails on my host but I'm not sure it'll always fail.
2538
25392005-09-16 Akim Demaille <akim@epita.fr>
2540
2541 * src/symtab.h (struct symbol): Declare the printer and destructor
2542 as const, to avoid accidental calls to free.
2543 (symbol_destructor_set, symbol_printer_set): Adjust.
2544 * src/symtab.c: Adjust.
2545
25462005-09-16 Akim Demaille <akim@epita.fr>
2547
2548 * data/c.m4 (b4_token_enums): New.
2549 (b4_token_defines): Rename as...
2550 (b4_token_enums_defines): this.
2551 (b4_token_defines): New, output only the #defines.
2552 * data/yacc.c, data/glr.c: Adjust.
2553 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
2554 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
2555 as default values.
2556
25572005-09-16 Akim Demaille <akim@epita.fr>
2558
2559 * data/lalr1.cc (yylex_): Remove, inline its code.
2560 (yyreport_syntax_error_): Remove, replaced by...
2561 (yysyntax_error_): this which returns a string and leaves to the
2562 caller the call to the users' error function.
2563 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
2564 Move from members of the parser object...
2565 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
2566 to local variables of the parse function.
2567
25682005-09-16 Akim Demaille <akim@epita.fr>
2569
2570 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
2571 since it's in Bison's name space.
2572
25732005-09-15 Paul Eggert <eggert@cs.ucla.edu>
2574
2575 * data/glr.c (yyresolveValue): Add default case to pacify
2576 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
2577
2578 * NEWS: Document when yyparse started to return 2.
2579 * doc/bison.texinfo (Parser Function): Document when yyparse
2580 returns 2.
2581
2582 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
2583 (b4_filename_type): Renamed back from b4_file_name_type. All uses
2584 changed.
2585 (class position): file_name -> filename (reverting). All uses changed.
2586
25872005-09-14 Paul Eggert <eggert@cs.ucla.edu>
2588
2589 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
2590 do anything if $@ exists. This reverts part of the 2005-07-07
2591 patch.
2592
25932005-09-11 Paul Eggert <eggert@cs.ucla.edu>
2594
2595 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
2596 contains obsolete information and isn't worth distributing as a
2597 separate file anyway.
2598 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
2599 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
2600 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
2601 (yyparse): Abort if user code uses longjmp to throw an unexpected
2602 value.
2603
26042005-09-09 Paul Eggert <eggert@cs.ucla.edu>
2605
2606 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
2607 Suggested by twlevo@xs4all.nl.
2608
2609 * data/glr.c (YYCHK1): Do not assume YYE is in range.
2610 This avoids a diagnostic from gcc -Wswitch-enum.
2611 Problem reported by twlevo@xs4all.nl.
2612
2613 * doc/bison.texinfo: Don't use "filename", as per GNU coding
2614 standards. Use "file name" or "file" or "name", depending on
2615 the context.
2616 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
2617 not to hack/foo.tab.c.
2618 (Calc++ Top Level): 2nd arg of main is not const.
2619 * data/glr.c: b4_filename -> b4_file_name.
2620 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
2621 All uses changed.
2622 (class position): filename -> file_name. All uses changed.
2623 * data/yacc.c: b4_filename -> b4_file_name.
2624 * lib/bitset.h: filename -> file_name in local vars.
2625 * lib/bitset_stats.c: Likewise.
2626 * src/files.c: Likewise.
2627 * src/scan-skel.l ("@output ".*\n): Likewise.
2628 * src/files.c (file_name_split): Renamed from filename_split.
2629 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
2630
26312005-09-08 Paul Eggert <eggert@cs.ucla.edu>
2632
2633 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
2634 to accommodate latest gnulib.
2635
2636 * tests/glr-regression.at (Duplicate representation of merged trees):
2637 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
2638
2639 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
2640 needed.
2641
26422005-08-26 Paul Eggert <eggert@cs.ucla.edu>
2643
2644 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
2645 All uses changed. Invoke user destructor after an error during a
2646 split parse (trivial change from Joel E. Denny).
2647
2648 * tests/glr-regression.at
2649 (User destructor after an error during a split parse): New test case.
2650 Problem reported by Joel E. Denny in:
2651 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
2652
26532005-08-25 Paul Eggert <eggert@cs.ucla.edu>
2654
2655 * README-cvs: Give URLs for recommended tools.
2656 Mention Gzip version problem, and bootstrapping issues.
2657 Remove troubleshooting section, as it's somewhat obsolete.
2658
2659 * bootstrap (no_cache): New var, to accommodate different wget
2660 variants. Use it instead of '-C off'. Problem reported by
2661 twlevo@xs4all.nl.
2662
2663 * data/glr.c (yydestroyStackItem): New function.
2664 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
2665 debugging information. Problem reported by Joel E. Denny.
2666
26672005-08-25 Akim Demaille <akim@epita.fr>
2668
2669 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
2670
26712005-08-24 Paul Eggert <eggert@cs.ucla.edu>
2672
2673 * data/glr.c (yyrecoverSyntaxError, yyreturn):
2674 Don't invoke destructor on unresolved entries.
2675 * tests/glr-regression.at
2676 (User destructor for unresolved GLR semantic value): New test case.
2677 Problem reported by Joel E. Denny in:
2678 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
2679
26802005-08-21 Paul Eggert <eggert@cs.ucla.edu>
2681
2682 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
2683 Add strnlen.c.
2684 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
2685 lib-prefix.m4, po.m4.
2686
2687 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
2688 in yydestruct diagnostic, since it might not be an error.
2689 Problem reported by Joel Denny near end of
2690 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
2691 * data/lalr1.cc (yyerturn): Likewise.
2692 * data/yacc.c (yyreturn): Likewise.
2693 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
2694
2695 * src/files.c: Remove obsolete FIXME comment.
2696
2697 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
2698 with the other templates, and to fix bogus run-on messages such
2699 as the one reported at the end of
2700 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
2701 All callers changed to avoid the newline.
2702 (yyprocessOneStack): Output two lines rather than one, to accommodate
2703 the above change. This changes the debug output format slightly.
2704
2705 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
2706 reported by Joel E. Denny in
2707 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
2708 (trivial change).
2709 * tests/glr-regression.at (Duplicate representation of merged trees):
2710 New test, from Joel E. Denny in:
2711 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
2712 * THANKS: Add Joel E. Denny.
2713
2714 * configure.ac (AC_INIT): Bump to 2.0c.
2715
27162005-07-24 Paul Eggert <eggert@cs.ucla.edu>
2717
2718 * NEWS: Version 2.0b.
2719
2720 * Makefile.am (SUBDIRS): Put examples before tests, so that
2721 "make check" doesn't finish with "All 1 tests passed".
2722
2723 * tests/regression.at (Token definitions): Don't rely on
2724 AT_PARSER_CHECK for data that contains backslashes. It currently
2725 uses 'echo', and 'echo' isn't portable if its argument contains
2726 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
2727 that the byte '\0xff' is not printable in the C locale; it is,
2728 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
2729 not printable, so use '\0x81' to test.
2730
2731 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
2732 version of GCC, since the macro is used with non-GCC compilers.
2733
2734 Fix core dump reported by Pablo De Napoli in
2735 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
2736 * tests/regression.at (Invalid inputs with {}): New test.
2737 * src/parse-gram.y (token_name): Translate type before using
2738 it as an index.
2739
2740 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
2741 the user's name space. All uses changed to __attribute__
2742 ((__unused__)).
2743 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
2744 Add __attribute__ ((__noreturn__)).
2745
2746 * etc/clcommit: Remove. We weren't using it, and it failed
2747 "make maintainer-distcheck".
2748 * Makefile.maint: Merge from coreutils.
2749 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
2750 (syntax-check-rules): Change list of rules as described below.
2751 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
2752 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
2753 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
2754 (sc_trailing_space): New rules.
2755 (sc_xalloc_h_in_src): Remove.
2756 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
2757 (sc_space_tab, sc_error_exit_success, sc_changelog):
2758 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
2759 (makefile-check, po-check, author_mark_check):
2760 (makefile_path_separator_check, copyright-check):
2761 Use grep -n, to make it easier to find violations.
2762 Use CVS_LIST and CVS_LIST_EXCEPT.
2763 (header_regexp, h_re): Remove.
2764 (dd_c): New macro.
2765 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
2766 (my-distcheck): Use more-modern GCC flags.
2767 (signatures, %.asc): Remove.
2768 (rel-files, announcement): Remove signatures.
2769 Restore old updating code, even though we don't use it, so
2770 that we're the same as coreutils.
2771 (alpha, beta, major): Depend on news-date-check.
2772 Make the upload commands.
2773
2774 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
2775 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
2776 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
2777 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
2778 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
2779 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
2780 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
2781 * tests/sets.at: Likewise.
2782
2783 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
2784 we comment out the Autoconf version number.
2785 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
2786 it's error-prone and "make maintainer-distcheck" rejects it.
2787
2788 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
2789 Indent calls to "error" to pacify "make maintainer-distcheck",
2790 when the calls are not intended to be translated.
2791 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
2792
2793 * src/Makefile.am (DEFS): Use +=, to pacify
2794 "make maintainer-distcheck".
2795 (bison_SOURCES): Add scan-skel.h.
2796 (sc_tight_scope): New rule, from coreutils.
2797
2798 * src/files.c (src_extension, header_extension):
2799 Now static, not extern.
2800 * src/getargs.c (short_options): Likewise.
2801 * src/muscle_tab.c (muscle_table): Likewise.
2802 * src/parse-gram.y (current_class, current_type, current_prec):
2803 Likewise.
2804 * src/reader.c (grammar_end, previous_rule_end): Likewise.
2805 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
2806 * src/main.c (main): Cast bindtextdomain and textdomain calls to
2807 void, to avoid warning when NLS is disabled.
2808 * src/output.c: Include scan-skel.h.
2809 (scan_skel): Remove decl, since scan-skel.h does this.
2810 (output_skeleton):
2811 Indent calls to "error" to pacify "make maintainer-distcheck".
2812 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
2813 * src/reader.h (gram_end, gram_lineno): New decls to pacify
2814 "make maintainer-distcheck".
2815 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
2816 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
2817 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
2818 (skel_lex_destroy, scan_skel): Move these decls to...
2819 * src/scan-skel.h: New file.
2820 * src/uniqstr.c (uniqstr_assert):
2821 Indent calls to "error" to pacify "make maintainer-distcheck".
2822
2823 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
2824 not @VAR@.
2825
2826 * tests/torture.at: Revamp to avoid misuse of atoi that
2827 "make maintainer-distcheck" complained about.
2828
2829 * examples/extexi (message): Don't print a message more than once,
2830 and omit line-number decoration that makes Emacs compile think
2831 that informative messages are worth worrying about.
2832
28332005-07-22 Paul Eggert <eggert@cs.ucla.edu>
2834
2835 * configure.ac: Update version number.
2836
2837 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
2838 accidentally.
2839 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
2840 autogenerated by the maintainer.
2841 * examples/calc++/.cvsignore: Add *.yy.
2842
2843 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
2844 * lib/bitset_stats.c (bitset_stats_init): Likewise.
2845 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2846
2847 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
2848
2849 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
2850 from maintainer-distcheck about casting the argument of 'free'.
2851
2852 * NEWS: Mention recent yytname changes.
2853 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
2854
2855 * bootstrap: For translations that have not yet been upgraded to
2856 the new runtime-po domain, prime the pump by extracting the
2857 relevant strings from the obsolete translations. This code can be
2858 removed once the bison-runtime domain has been translated by each
2859 team.
2860
2861 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
2862 now that token names are already quoted.
2863
2864 Fix problem reported by Anthony Heading.
2865 * data/glr.c (YYTOKEN_TABLE): New macro.
2866 (yytname): Define if YYTOKEN_TABLE.
2867 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
2868 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
2869 (YYERROR_VERBOSE): Define the same way the other skeletons do.
2870 * src/output.c (prepare_symbols): Output token_table_flag.
2871
28722005-07-21 Paul Eggert <eggert@cs.ucla.edu>
2873
2874 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
2875 again if the first call fails.
2876
2877 * data/glr.c (yytnamerr): New function.
2878 (yyreportSyntaxError): Use it to dequote most string literals.
2879 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
2880 with other skeletons. All uses changed.
2881 (yytnameerr_): New function.
2882 (yyreport_syntax_error): Use it to dequote most string literals.
2883 * data/yacc.c (yytnamerr): New function.
2884 (yyerrlab): Use it to decode most string literals.
2885 * doc/bison.texinfo (Decl Summary, Calling Convention):
2886 Clarify quoting convention of yytname.
2887 * src/output.c (prepare_symbols): Quote all names. This undoes
2888 the 2005-04-17 change, which is now accomplished (mostly) via
2889 changes in the parsers as described above.
2890 * tests/regression.at (Token definitions, Web2c Actions):
2891 Undo most 2005-04-17 change here, too.
2892
28932005-07-20 Paul Eggert <eggert@cs.ucla.edu>
2894
2895 Fix more problems reported by twlevo@xs4all.nl.
2896 * tests/cxx-type.at: Don't pipe output of ./types through sed to
2897 remove trailing spaces. This loses the exit status of ./types,
2898 and isn't needed since ./types shouldn't be emitting trailing
2899 spaces.
2900 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
2901 as the stack isn't valid in that case.
2902
2903 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
2904 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
2905 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
2906 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
2907 is used.
2908 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
2909 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
2910 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
2911 Likewise.
2912
2913 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
2914 overly-picky compilers that reject 'char *foo = "bar";'.
2915
2916 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
2917 to FILE * parameter, not to stderr. This fixes a typo introduced
2918 in the 2005-07-12 change.
2919
2920 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
2921 warnings from GCC 4.
2922
2923 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
2924 (yyglrShiftDefer, yysplitStack):
2925 Remove unused parameters b4_pure_formals. All uses changed.
2926 (yyglrShift): Remove unused parameters b4_user_formals.
2927 All uses changed.
2928 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
2929
29302005-07-18 Paul Eggert <eggert@cs.ucla.edu>
2931
2932 Destructor cleanups and regularization among the three skeletons.
2933 * NEWS: Document the behavior changes.
2934 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
2935 stack before failing, as the cleanup code will do it for us now.
2936 * data/lalr1.cc (yyerrlab): Likewise.
2937 * data/glr.c (yyparse): Pop everything off the stack before
2938 freeing it, so that destructors get called properly.
2939 * data/lalr1.cc (yyreturn): Likewise.
2940 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
2941 This is more consistent.
2942 * doc/bison.texinfo (Destructor Decl): Mention more reasons
2943 why destructors might be called. 1.875 -> 2.1.
2944 (Destructor Decl, Decl Summary, Table of Symbols):
2945 Some English-language cleanups for %destructor.
2946 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
2947 Add output line for destructor of start symbol.
2948 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
2949 because of that same extra output line.
2950
2951 * NEWS: Document minor wording changes in diagnostics of
2952 Bison-generated parsers.
2953 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
2954 Remove unused formals. All uses changed.
2955 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
2956 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
2957 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
2958 Rename yyoverflowab to yyexhaustedlab.
2959 When memory exhaustion occurs during syntax-error reporting,
2960 report it separately rather than in a single diagnostic; this
2961 eases translation.
2962 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
2963 (Memory Exhausted): Renamed from Parser Stack Overflow.
2964 Revamp wording slightly to prefer "memory exhaustion".
2965 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
2966
2967 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
2968
2969 Add i18n support to the GLR skeleton. Partially fix the C++
2970 skeleton; a C++ expert needs to finish this. Remove debugging
2971 msgids; there's little point to having them translated, since they
2972 can be understood only by someone who can read the
2973 (English-language) source code.
2974
2975 Generate runtime-po/bison-runtime.pot automatically, so that we
2976 don't have to worry about garbage getting in that file. We'll
2977 make sure after the next official release that old msgids don't
2978 get lost. See
2979 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
2980
2981 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
2982 Now auto-generated.
2983 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
2984 Fix typos in explanations of the runtime file.
2985 * bootstrap: Change gettext keyword from YYI18N to YY_.
2986 Use standard Makefile.in.in in runtime-po, since we'll arrange
2987 for backward-compatible bison-runtime.po files in a different way.
2988 * data/glr.c (YY_): New macro, from yacc.c.
2989 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
2990 Translate messages intended for users.
2991 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
2992 the wording in the other skeletons. We don't know that the memory
2993 is virtual.
2994 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
2995 Use same method that yacc.c uses.
2996 Don't translate debugging messages.
2997 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
2998 it doesn't work (yet), and requires C++ expertise to fix.
2999 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
3000 Move defn to a more logical place, to be consistent with other
3001 skeletons.
3002 Don't translate debugging messages.
3003 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
3004 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
3005 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
3006 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
3007
3008 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
3009 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
3010 void, not int.
3011 * tests/glr-regression.at (Badly Collapsed GLR States):
3012 Likewise.
3013 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3014 yylex should return 0 at EOF rather than aborting.
3015
3016 Improve tests for stack overflow in GLR parser.
3017 Problem reported by twlevo@xs4all.nl.
3018 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
3019 All uses removed.
3020 (yyStackOverflow): Just longjmp, but with value 2 so that caller
3021 can handle the problem.
3022 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
3023 (yyparse): New local variable yyresult to record the result.
3024 Use result of setjmp to set it, rather than storing itinto
3025 struct.
3026 (yyDone): Remove label.
3027 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
3028 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
3029 if YYABORT is used).
3030 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
3031 yyparse status; put status > 1 into diagnostic.
3032 Check that status==2 works.
3033 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
3034 Use exit status 3 for failure to open (which shouldn't happen).
3035
30362005-07-17 Paul Eggert <eggert@cs.ucla.edu>
3037
3038 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
3039 1 on syntax error; just let yyparse do its thing.
3040 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
3041 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
3042 (Exploding the Stack Size with Alloca):
3043 (Exploding the Stack Size with Malloc):
3044 Expect exit status 2, not 1, since the parser is supposed to blow
3045 its stack. Problem reported by twlevo@xs4all.nl.
3046
3047 * data/glr.c (yyparse): Don't assume that the initial calls
3048 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
3049 Print a stack-overflow message and fail instead.
3050 Initialize the line-number information before creating the stack,
3051 so that the stack-overflow message can report line zero safely.
3052
30532005-07-14 Paul Eggert <eggert@cs.ucla.edu>
3054
3055 Fix problems reported by twlevo@xs4all.nl.
3056 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
3057 (yyuserMerge): Provide a default case if b4_mergers is empty.
3058 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
3059 * tests/glr-regression.at
3060 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3061 Add casts to pacify C++ compilers.
3062 * tests/glr-regression.at (Improper merging of GLR delayed action
3063 sets): Declare yylex before using it.
3064 * tests/Makefile.am (maintainer-check-g++): Fix a stray
3065 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
3066 test for valgrind; valgrind is independent of g++.
3067 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
3068 for compatibility with POSIX 1003.1-2001 (if running coreutils).
3069 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
3070 Use a destructor, so that we can expand the stack. Change
3071 YYSTYPE to char * so that we can free it. Cast result of malloc.
3072
30732005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3074
3075 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
3076 a valgrind failure. Problem reported by twlevo@xs4all.nl.
3077
30782005-07-13 Paul Eggert <eggert@cs.ucla.edu>
3079
3080 * PACKAGING: New file, suggested by Bruno Haible and taken from
3081 similar wording in gettext's PACKAGING file.
3082 * NEWS: Mention PACKAGING.
3083 * Makefile.am (EXTRA_DIST): Add PACKAGING.
3084
30852005-07-12 Paul Eggert <eggert@cs.ucla.edu>
3086
3087 * NEWS: Document recent i18n improvements.
3088 * bootstrap: Get runtime translations into runtime-po.
3089 Create runtime-po files automatically, if possible.
3090 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
3091 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
3092 does not infringe on the user's name space.
3093 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
3094 * doc/bison.texinfo (Internationalization): Revamp the English
3095 and Texinfo syntax a bit, to try to make it clearer.
3096 (Bison Options, Option Cross Key): Mention --print-localedir.
3097 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
3098 YYENABLE_NLS. Quote a bit more.
3099 * runtime-po/.cvsignore: New file.
3100 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
3101 * runtime-po/Rules-quot: Remove; now created by bootstrap.
3102 * runtime-po/quot.sed: Likewise.
3103 * runtime-po/boldquot.sed: Likewise.
3104 * runtime-po/en@quot.header: Likewise.
3105 * runtime-po/en@boldquot.header: Likewise.
3106 * runtime-po/insert-header.sin: Likewise.
3107 * runtime-po/remove-potcdate.sin: Likewise.
3108 * runtime-po/Makevars: Likewise.
3109 * runtime-po/LINGUAS: Likewise.
3110 * runtime-po/de.po: Likewise; we will rely on the translation project
3111 to maintain this, so "bootstrap" should get it.
3112 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
3113 its value.
3114 * src/main.c (main): Bind the bison-runtime domain, too.
3115
31162005-07-12 Bruno Haible <bruno@clisp.org>
3117
3118 * data/yacc.c: Include <libintl.h> when NLS is enabled.
3119 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
3120 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
3121 * runtime-po: New directory.
3122 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
3123 $(DOMAIN).pot-update rule, so that old messages are never dropped.
3124 * runtime-po/Rules-quot: New file, copied from po/.
3125 * runtime-po/quot.sed: Likewise.
3126 * runtime-po/boldquot.sed: Likewise.
3127 * runtime-po/en@quot.header: Likewise.
3128 * runtime-po/en@boldquot.header: Likewise.
3129 * runtime-po/insert-header.sin: Likewise.
3130 * runtime-po/remove-potcdate.sin: Likewise.
3131 * runtime-po/Makevars: New file.
3132 * runtime-po/POTFILES.in: New file.
3133 * runtime-po/LINGUAS: New file.
3134 * runtime-po/bison-runtime.pot: New file.
3135 * runtime-po/de.po: New file.
3136 * m4/bison.m4: New file.
3137 * Makefile.am (SUBDIRS): Add runtime-po.
3138 (aclocaldir, aclocal_DATA): New variables.
3139 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
3140 Define aclocaldir.
3141 * src/getargs.c (usage): Document --print-localedir option.
3142 (PRINT_LOCALEDIR_OPTION): New enum item.
3143 (long_options): Add --print-localedir option.
3144 (getargs): Handle --print-localedir option.
3145 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
3146 (Internationalization): New section.
3147
31482005-07-12 Akim Demaille <akim@epita.fr>
3149
3150 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
3151 for consistency with the rest of the code.
3152 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
3153 Add separators.
3154
31552005-07-12 Akim Demaille <akim@epita.fr>
3156
3157 * src/parse-gram.y: Use %printer instead of YYPRINT.
3158
31592005-07-12 Akim Demaille <akim@epita.fr>
3160
3161 * src/symtab.h, src/symtab.c (symbol_print): New.
3162 * src/symlist.h, src/symlist.c (symbol_list_print): New.
3163 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
3164
31652005-07-12 Akim Demaille <akim@epita.fr>
3166
3167 * data/glr.c (b4_syncline): Fix (swap) the definitions of
3168 b4_at_dollar and b4_dollar_dollar.
3169
31702005-07-11 Paul Eggert <eggert@cs.ucla.edu>
3171
3172 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
3173 and Pennello's paper.
3174
31752005-07-09 Paul Eggert <eggert@cs.ucla.edu>
3176
3177 * data/yacc.c (yyparse): Undo previous patch. Instead,
3178 set yylsp[0] and yyvsp[0] only if the initial action
3179 sets yylloc and yylval, respectively.
3180
3181 * data/yacc.c (yyparse): In the initial action, set
3182 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
3183 This avoids the use of undefined variables if the initial
3184 action does not set yylloc and/or yylval.
3185
31862005-07-07 Paul Eggert <eggert@cs.ucla.edu>
3187
3188 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
3189 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
3190 Remove from CVS. These files are automatically generated.
3191 * examples/extexi: Clarify that this file is now part of Bison,
3192 not GNU M4, and that it works with any POSIX-compatible Awk.
3193 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
3194 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
3195 so that we also get calc++-parser.yy. Geneate it.
3196 Use $(AWK), not gawk, since any conforming Awk will do.
3197 Put comment before action, since older 'make' can't handle comment
3198 in action.
3199 $(BUILT_SOURCES): List all built sources, not just some of them.
3200 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
3201 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
3202 $($(calc_sources_generated)): Remove unnecessary test for existence
3203 of target. (This had a shell syntax error anyway; a stray "x".)
3204 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
3205 calc++-parser.yy.
3206 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
3207
3208 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
3209 implied by the other modules.
3210
32112005-07-06 Akim Demaille <akim@epita.fr>
3212
3213 Bind examples/calc++ to the package.
3214 * examples/calc++/Makefile: Remove, replaced by...
3215 * examples/calc++/Makefile.am: ... this new file.
3216 * examples/calc++/test: Remove input.
3217 * examples/calc++/compile: Remove.
3218 * examples/Makefile.am: New.
3219 * configure.ac, Makefile.am: Adjust.
3220 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
3221
32222005-07-05 Paul Eggert <eggert@cs.ucla.edu>
3223
3224 * data/glr.c (yyFail): Drastically simplify; since the format argument
3225 never had any % directives, we can simply pass it to yyerror.
3226 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
3227 be modified later, as that is the usual style in glr.c.
3228 Problems reported by Paul Hilfinger.
3229
3230 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
3231 and size overflow errors.
3232 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
3233 in case the user prolog sets feature-test macros like _GNU_SOURCE.
3234 (YYSIZEMAX): New macro.
3235 (yystpcpy): New function, taken from yacc.c.
3236 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
3237 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
3238 so that we don't have to maintain their signatures.
3239 (yyFail): Check for buffer overflow, by using vsnprintf rather
3240 than vsprintf. Allocate a bigger buffer if possible.
3241 Report an error if buffer allocation fails.
3242 (yyStackOverflow): New function.
3243 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
3244 the initialization was successful. It might fail if storage was
3245 exhausted.
3246 (yyexpandGLRStack): Add more checks for storage allocation failure.
3247 Use yyStackOverflow to report failures.
3248 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
3249 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
3250 Don't assume stack number fits in int.
3251 (yysplitStack): Check for storage allocation failure.
3252 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
3253 can print diagnostics on storage allocation failure. All callers
3254 changed.
3255 (yyresolveValue): Use yybool for boolean.
3256 (yyreportSyntaxError): Check for size-calculation overflow.
3257 This code is taken from yacc.c.
3258 (yyparse): Check for storage allocation errors when allocating
3259 the initial stack.
3260
32612005-07-05 Akim Demaille <akim@epita.fr>
3262
3263 Extract calc++ from the documentation.
3264 * doc/bison.texinfo (Calc++): Add the extraction marks.
3265 * examples/extexi: New, from the aborted GNU Programming 2E.
3266 Separate the different paragraph of a file with empty lines.
3267 * examples/Makefile: Use it to extract the whole calc++ example.
3268
32692005-06-24 Akim Demaille <akim@epita.fr>
3270
3271 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
3272 class typedefs.
3273
32742005-06-22 Akim Demaille <akim@epita.fr>
3275
3276 * doc/bison.texinfo (C++ Language Interface): First stab.
3277 (C++ Parsers): Remove.
3278
32792005-06-22 Akim Demaille <akim@epita.fr>
3280
3281 * data/lalr1.cc (yylex_): Honor %lex-param.
3282
32832005-06-22 Akim Demaille <akim@epita.fr>
3284
3285 Start a set of simple examples.
3286 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
3287 * examples/calc++/calc++-driver.hh,
3288 * examples/calc++/calc++-parser.yy,
3289 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
3290 * examples/calc++/compile, examples/calc++/test: New.
3291
32922005-06-09 Paul Eggert <eggert@cs.ucla.edu>
3293
3294 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
3295 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
3296 which stems from the 2005-05-27 patch.
3297
32982005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3299
3300 * data/glr.c: Modify treatment of unused parameters to permit use
3301 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
3302
33032005-05-30 Paul Eggert <eggert@cs.ucla.edu>
3304
3305 Fix infringement on user name space reported by Janos Zoltan Szabo.
3306 * data/yacc.c (yyparse): strlen -> yystrlen.
3307
33082005-05-30 Akim Demaille <akim@epita.fr>
3309
3310 * data/lalr1.cc (_): New.
3311 Translate the various messages.
3312
33132005-05-27 Paul Eggert <eggert@cs.ucla.edu>
3314
3315 Fix infringement on user name space reported by Bruno Haible.
3316 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
3317 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
3318 the user's name space.
3319 (alloca): Include <stdlib.h> to get it, if it's not built in.
3320 (YYMALLOC, YYFREE): Define only if needed.
3321 (malloc, free): Declare, but only if needed, as this infringes on
3322 the user name space.
3323
33242005-05-25 Paul Eggert <eggert@cs.ucla.edu>
3325
3326 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
3327 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
3328 with %d format.
3329 * lib/ebitset.c (min, max): Undef before defining.
3330 * lib/vbitset.c (min, max): Likewise.
3331 * lib/subpipe.c (create_subpipe): Save local variables in case
3332 vfork clobbers them.
3333
33342005-05-24 Bruno Haible <bruno@clisp.org>
3335
3336 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
3337 error message syntax used by gcc-4.0.
3338
33392005-05-23 Paul Eggert <eggert@cs.ucla.edu>
3340
3341 * README: Mention m4 1.4.3. Remove obsolete advice about
3342 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
3343
3344 * bootstrap: Remove workaround for problem I encountered with
3345 gettext 0.14.1; it seems to be fixed now.
3346
33472005-05-22 Paul Eggert <eggert@cs.ucla.edu>
3348
3349 * NEWS: Version 2.0a.
3350
3351 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
3352 the previous change.
3353
3354 Various maintainer cleanups.
3355 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
3356 conftest*, for benefit of CVS commands run at the same time as
3357 "configure". Add build-aux, since "bootstrap" now creates it and
3358 its subfiles.
3359 * Makefile.cfg (move_if_change): Remove.
3360 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
3361 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
3362 (po_repo, do-po-update, po-update, wget_files, get-targets):
3363 (config.guess-url_prefix, config.sub-url_prefix):
3364 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
3365 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
3366 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
3367 Remove.
3368 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
3369 this is now the recommended name.
3370 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
3371 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
3372 ylwrap. These files now go into build-aux.
3373 * config/move-if-change: Remove.
3374 * config/prev-version.txt: Bump from 1.75 to 2.0.
3375
3376 * bootstrap: Add stdio-safer, unistd-safer modules.
3377 Remove m4/glibc2.m4 (introduced by latest gnulib, but
3378 we don't need it).
3379 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
3380 fopen-safer.c, stdio-safer.h, unistd-safer.h.
3381 * lib/subpipe.c: Include "unistd-safer.h".
3382 (create_subpipe): Make sure all the newly-created
3383 file descriptors are > 2, so that diagnostics don't
3384 get sent down them (which might cause Bison to hang, in theory).
3385 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
3386 * src/files.c (xfopen): Use fopen_safer, not fopen.
3387
3388 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
3389 yesterday's yacc.c fix.
3390
33912005-05-21 Paul Eggert <eggert@cs.ucla.edu>
3392
3393 * data/glr.c, data/lalr1.cc: Update copyright date.
3394
3395 Fix a destructor bug reported by Wolfgang Spraul in
3396 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
3397 * data/yacc.c (yyabortlab): Don't call destructor, and
3398 don't set yychar to EMPTY.
3399 (yyoverflowlab): Don't call destructor.
3400 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
3401 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
3402 since we no longer output the message "discarding lookahead token
3403 end of input ()".
3404
34052005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3406
3407 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
3408 fix a small glitch in debugging output.
3409 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
3410 after YY_SYMBOL_PRINT where needed.
3411
3412 (struct yyGLRState): Add some comments.
3413 (struct yySemanticOption): Add some comments.
3414 (union yyGLRStackItem): Add comment.
3415
3416 (yymergeOptionSets): Correct this to properly perform the union,
3417 avoiding infinite reported by Michael Rosien.
3418 Update comment.
3419
3420 * tests/glr-regression.at: Add test for GLR merging error reported
3421 by M. Rosien.
3422
34232005-05-13 Paul Eggert <eggert@cs.ucla.edu>
3424
3425 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
3426 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
3427 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
3428 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
3429 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
3430 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
3431 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
3432 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
3433 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
3434 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
3435 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
3436 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
3437 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
3438 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
3439 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
3440 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
3441 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
3442 src/derives.h, src/files.c, src/files.h, src/getargs.c,
3443 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
3444 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
3445 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
3446 src/output.h, src/parse-gram.c, src/parse-gram.h,
3447 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
3448 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
3449 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
3450 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
3451 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
3452 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
3453 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
3454 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
3455 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
3456 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
3457 tests/reduce.at, tests/regression.at, tests/sets.at,
3458 tests/synclines.at, tests/testsuite.at, tests/torture.at:
3459 Update FSF postal mail address.
3460
34612005-05-11 Paul Eggert <eggert@cs.ucla.edu>
3462
3463 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
3464 Problem reported by Ralf Menzel.
3465
34662005-05-01 Paul Eggert <eggert@cs.ucla.edu>
3467
3468 * tests/actions.at: Test that stack overflow invokes destructors.
3469 From Marcus Holland-Moritz.
3470 * data/yacc.c (yyerrlab): Move the code that destroys the stack
3471 from here....
3472 (yyreturn): to here. That way, destructors are called properly
3473 even if the stack overflows, or the user calls YYACCEPT or
3474 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
3475 (yyoverflowlab): Destroy the lookahead.
3476
34772005-04-24 Paul Eggert <eggert@cs.ucla.edu>
3478
3479 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
3480
34812005-04-17 Paul Eggert <eggert@cs.ucla.edu>
3482
3483 * NEWS: Bison-generated C parsers no longer quote literal strings
3484 associated with tokens.
3485 * src/output.c (prepare_symbols): Don't escape strings,
3486 since users don't want to see C escapes.
3487 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
3488 in diagnostics.
3489 * tests/input.at (Torturing the Scanner): Likewise.
3490 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
3491
34922005-04-16 Paul Eggert <eggert@cs.ucla.edu>
3493
3494 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
3495 the data size is known to be too small and we can't increase it.
3496 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
3497
34982005-04-15 Paul Eggert <eggert@cs.ucla.edu>
3499
3500 * src/parse-gram.y: Include quotearg.h.
3501 (string_as_id): Quote $1 before using it as a key, since the
3502 lexer no longer quotes it for us.
3503 (string_content): Don't strip quotes, since lexer no longer
3504 quotes it for us.
3505 * src/scan-gram.l: Include quotearg.h.
3506 ("\""): Omit quote.
3507 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
3508 a key, since the rest of the lexer doesn't quote it.
3509 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
3510 * tests/regression.at (Token definitions): Check for backslashes
3511 in token strings.
3512
3513 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
3514 (YYSIZE_T): Define to unsigned long int when using an older compiler.
3515 (yyparse): Revamp code to generate long syntax error message, to
3516 make it easier to translate, and to avoid problems with arithmetic
3517 overflow. Change "virtual memory" to "memory" in diagnostic, since
3518 we don't know whether the memory is virtual.
3519
35202005-04-13 Paul Eggert <eggert@cs.ucla.edu>
3521
3522 * NEWS: Bison-generated C parsers now use the _ macro to
3523 translate strings.
3524 * data/yacc.c (_) [!defined _]: New macro.
3525 All English strings wrapped inside this macro.
3526 * doc/bison.texinfo (Bison Parser): Document _.
3527 * po/POTFILES.in: Include src/parse-gram.c, since it now
3528 includes translateable strings that parse-gram.y doesn't.
3529
35302005-04-12 Paul Eggert <eggert@cs.ucla.edu>
3531
3532 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
3533 reverting the 2004-10-11 change to this function.
3534 (symbol_check_alias_consistency): Don't call symbol_type_set
3535 if the type name is already correct.
3536 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
3537
35382005-03-25 Paul Eggert <eggert@cs.ucla.edu>
3539
3540 * tests/regression.at (Token definitions): Don't use a token named
3541 c, as that generates a "#define c ..." that runs afoul of buggy
3542 stdlib.h that uses the identifier c as a member of struct
3543 drand48_data. Problem reported by Horst Wente.
3544
35452005-03-21 Paul Eggert <eggert@cs.ucla.edu>
3546
3547 * bootstrap: Change translation URL from
3548 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
3549 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
3550 redirection glitches. Problem reported by twlevo@xs4all.nl.
3551
35522005-03-20 Paul Eggert <eggert@cs.ucla.edu>
3553
3554 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
3555 after operands; POSIX says this isn't portable for the c99 command.
3556
35572005-03-18 Paul Eggert <eggert@cs.ucla.edu>
3558
3559 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
3560 immediately if a data overrun has occurred; this may help us track
3561 down what may be a spurious failure on MacOS.
3562
35632005-03-17 Paul Eggert <eggert@cs.ucla.edu>
3564
3565 Respond to problems reported by twlevo@xs4all.nl.
3566
3567 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
3568
3569 * src/vcg.h: Comment fix.
3570 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
3571 (G_CMAX): Change to -1 instead of INT_MAX.
3572
3573 * data/yacc.c (yyparse): Omit spaces before #line.
3574
35752005-03-15 Paul Eggert <eggert@cs.ucla.edu>
3576
3577 * src/tables.c (state_number_to_vector_number): Put it inside an
3578 "#if 0", since it's not currently used. Problem reported by
3579 Roland McGrath.
3580
35812005-03-06 Paul Eggert <eggert@cs.ucla.edu>
3582
3583 * src/output.c (escaped_output): Renamed from
3584 escaped_file_name_output, since we now use it for symbol tags as
3585 well. All uses changed.
3586 (symbol_destructors_output, symbol_printers_output):
3587 Escape symbol tags too.
3588 Problem reported by Matyas Forstner in
3589 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
3590
3591 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
3592 not needed.
3593 * src/output.c (user_actions_output, token_definitions_output,
3594 symbol_destructors_output, symbol_printers_output): Likewise.
3595 * src/reader.c (prologue_augment): Likewise.
3596 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
3597
3598 * src/vcg.c (output_edge): Don't quote linestyle arg.
3599 Problem reported by twlevo@xs4all.nl.
3600
36012005-02-28 Paul Eggert <eggert@cs.ucla.edu>
3602
3603 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
3604 example, reported by Derek M Jones. Also, make the example even
3605 more outrageous, to better illustrate how bad the problem is.
3606
36072005-02-24 Paul Eggert <eggert@cs.ucla.edu>
3608
3609 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
3610 putsym. Typo reported by Sebastian Piping.
3611
36122005-02-23 Paul Eggert <eggert@cs.ucla.edu>
3613
3614 * doc/bison.texinfo (Language and Grammar): some -> same
3615 (Epilogue): int he -> in the
3616 Typos reported by Sebastian Piping via Justin Pence.
3617
36182005-02-07 Paul Eggert <eggert@cs.ucla.edu>
3619
3620 * tests/glr-regression.at (Improper handling of embedded actions
3621 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
3622 embedded actions and $-N in GLR parsers", work around an Autoconf bug
3623 with dollar signs in test names.
3624 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
3625 for a similar reason.
3626
36272005-01-28 Paul Eggert <eggert@cs.ucla.edu>
3628
3629 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
3630 wants to redefine G_VIEW.
3631
36322005-01-27 Paul Eggert <eggert@cs.ucla.edu>
3633
3634 * src/vcg.c (get_view_str): Remove case for normal_view.
3635 Problem reported by twlevo@xs4all.nl.
3636
36372005-01-24 Paul Eggert <eggert@cs.ucla.edu>
3638
3639 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
3640 Problem reported by twlevo@xs4all.nl.
3641
3642 * doc/bison.texinfo: Change @dircategory from "GNU programming
3643 tools" to "Software development". Requested by Richard Stallman
3644 via Karl Berry.
3645
36462005-01-23 Paul Eggert <eggert@cs.ucla.edu>
3647
3648 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
3649 Problem reported by twlevo@xs4all.nl.
3650
36512005-01-21 Paul Eggert <eggert@cs.ucla.edu>
3652
3653 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
3654 keyword; it's not needed with modern compilers, and it doesn't
3655 affect correctness with older compilers. Suggested by
3656 twlevo@xs4all.nl.
3657
36582005-01-17 Paul Eggert <eggert@cs.ucla.edu>
3659
3660 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
3661 gcc -Wswitch-default.
3662 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
3663 * data/yacc.c (yyparse): Likewise.
3664
36652005-01-12 Paul Eggert <eggert@cs.ucla.edu>
3666
3667 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
3668 already. Let config.h define any nonstandard values.
3669
36702005-01-10 Paul Eggert <eggert@cs.ucla.edu>
3671
3672 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
3673 for the benefit of slower hosts. Problem reported by
3674 Nelson H. F. Beebe.
3675
36762005-01-07 Paul Eggert <eggert@cs.ucla.edu>
3677
3678 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
3679 being defined and not used.
3680 * data/lalr1.cc (yyparse): Likewise.
3681 Use "if (false)" rather than "if (0)".
3682
36832005-01-05 Paul Eggert <eggert@cs.ucla.edu>
3684
3685 * TODO: Mention that we should allow NUL bytes in tokens.
3686
36872005-01-02 Paul Eggert <eggert@cs.ucla.edu>
3688
3689 * src/scan-skel.l (<<EOF>>): Don't close standard output.
3690 Problem reported by Hans Aberg.
3691
36922005-01-01 Paul Eggert <eggert@cs.ucla.edu>
3693
3694 * src/getargs.c (version): Happy new year; update overall
3695 program copyright date from 2004 to 2005.
3696
3697 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
3698 Problem reported by Hans Aberg.
3699 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
3700 (Output file names.): Add a test for the case when standard output
3701 is closed.
3702
37032004-12-26 Paul Eggert <eggert@cs.ucla.edu>
3704
3705 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
3706 to fix an oversight in the Bison 2.0 manual.
3707
37082004-12-25 Paul Eggert <eggert@cs.ucla.edu>
3709
3710 * NEWS: Version 2.0. Reformat the existing news items since
3711 1.875, so that related items are grouped together.
3712 * configure.ac (AC_INIT): Bump version to 2.0.
3713 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
3714
3715 * tests/torture.at (Exploding the Stack Size with Alloca): Set
3716 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
3717 otherwise, we're not testing alloca. Unfortunately there's no
3718 simple way to consult HAVE_ALLOCA here.
3719
3720 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
3721 for yymsg, too.
3722
3723 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
3724 hand. This avoids a warning about comparing int to size_t when
3725 GCC warnings are enabled.
3726
37272004-12-22 Paul Eggert <eggert@cs.ucla.edu>
3728
3729 * NEWS: Bison-generated parsers no longer default to using the
3730 alloca function (when available) to extend the parser stack, due
3731 to widespread problems in unchecked stack-overflow detection.
3732 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
3733 responsibility to set it to a positive value. This lets the user
3734 specify a value that is not a preprocessor constant.
3735 * data/yacc.c (YYMAXDEPTH): Likewise.
3736 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
3737 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
3738 to be a compile-time constant. However, explain the constraints on it.
3739 Also, explain the constraints on YYINITDEPTH.
3740 (Table of Symbols): Explain that alloca is no longer the default.
3741 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
3742 to 1.
3743
3744 * doc/bison.texinfo (Location Default Action): Mention that n must
3745 be zero when k is zero. Suggested by Frank Heckenbach.
3746
37472004-12-22 Akim Demaille <akim@epita.fr>
3748
3749 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
3750 (parser::state_type, parser::semantic_type, parser::location_type):
3751 Private, not public.
3752 (parser::parse): Return ints, not bool.
3753 Returning a bool introduces a problem: 0 corresponds to false, and
3754 it seems weird to return false on success. Returning true changes
3755 the conventions for yyparse.
3756 Alternatively we could return void and send an exception.
3757 There is no clear consensus (yet?).
3758 (state_stack, semantic_stack, location_stack): Rename as...
3759 (state_stack_type, semantic_stack_type, location_stack_type): these.
3760 Private, not public.
3761 * tests/c++.at: New.
3762 * tests/testsuite.at, tests/Makefile.am: Adjust.
3763
37642004-12-21 Akim Demaille <akim@epita.fr>
3765
3766 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
3767
37682004-12-21 Akim Demaille <akim@epita.fr>
3769
3770 Don't impose std::string for filenames.
3771
3772 * data/lalr1.cc (b4_filename_type): New.
3773 (position::filename): Use it.
3774 (parser.hh): Move the inclusion of stack.hh and location.hh below
3775 the user code, so that needed headers for the filename type can be
3776 included first.
3777 Forward declare them before the user code.
3778 * tests/Makefile.am (check-local, installcheck-local): Pass
3779 TESTSUITEFLAGS to the TESTSUITE.
3780
37812004-12-20 Akim Demaille <akim@epita.fr>
3782
3783 Use more STL like names: my_class instead of MyClass.
3784
3785 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
3786 (SemanticStack, SemanticType, StateStack, StateType)
3787 (TokenNumberType, Stack, Slice, Traits, Parser::location)
3788 (Parser::value): Rename as...
3789 (location_stack, location_type, rhs_number_type, semantic_stack)
3790 (semantic_type, state_stack, state_type, token_number_type, stack)
3791 (slice, traits, parser::yylloc, parser::yylval): these.
3792
3793 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
3794
37952004-12-19 Paul Eggert <eggert@cs.ucla.edu>
3796
3797 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
3798 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
3799
38002004-12-17 Paul Eggert <eggert@cs.ucla.edu>
3801
3802 Remove uses of 'short int' and 'unsigned short int'. This raises
3803 some arbitrary limits. It uses more memory but nowadays that's
3804 not much of an issue.
3805
3806 This change does not affect the generated parsers; that's a different
3807 task, as some users will want to conserve memory there.
3808
3809 Ideally we should use size_t to represent all object counts, and
3810 something like ptrdiff_t to represent signed differences of object
3811 counts; but that will require more code-cleanup than I have the
3812 time to do right now.
3813
3814 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
3815 Use size_t, not int or short int, to count objects.
3816 * src/closure.c (nritemset, closure): Likewise.
3817 * src/closure.h (nritemset, closure): Likewise.
3818 * src/nullable.c (nullable_compute): Likewise.
3819 * src/print.c (print_core): Likewise.
3820 * src/print_graph.c (print_core): Likewise.
3821 * src/state.c (state_compare, state_hash): Likewise.
3822 * src/state.h (struct state): Likewise.
3823 * src/tables.c (default_goto, goto_actions): Likewise.
3824
3825 * src/gram.h (rule_number, rule): Use int, not short int.
3826 * src/output.c (prepare_rules): Likewise.
3827 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
3828 errs, reductions): Likewise.
3829 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
3830 Likewise.
3831 * src/tables.c (vector_number, tally, action_number,
3832 ACTION_NUMBER_MINIMUM): Likewise.
3833 * src/output.c (muscle_insert_short_int_table): Remove.
3834
38352004-12-17 Akim Demaille <akim@epita.fr>
3836
3837 * data/lalr1.cc: Extensive Doxygenation.
3838 (error_): Rename as...
3839 (error): this, since it is visible to the user.
3840 Adjust callers.
3841 (Parser::message): Now an automatic variable from...
3842 (Parser::yyreport_syntax_error_): here.
3843 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
3844 Parser::error.
3845 * tests/input.at: Escape $.
3846
38472004-12-16 Paul Eggert <eggert@cs.ucla.edu>
3848
3849 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
3850 Parenthesize rhs to avoid obscure problems with mistakes like
3851 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
3852 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
3853 b4_rhs_location): Likewise.
3854 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
3855 b4_rhs_location): Likewise.
3856
38572004-12-16 Akim Demaille <akim@epita.fr>
3858
3859 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
3860 yacc.c: be sure to stay within yycheck_.
3861 * tests/actions.at: Re-enable C++ tests.
3862
38632004-12-16 Akim Demaille <akim@epita.fr>
3864
3865 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
3866 real.
3867
38682004-12-16 Akim Demaille <akim@epita.fr>
3869
3870 Use #define to handle the %name-prefix.
3871
3872 * data/glr.c, data/yacc.c: Comment changes.
3873 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
3874 so that one can refer to yylex in the parser file, and have it
3875 renamed, as is the case with other skeletons.
3876
38772004-12-16 Akim Demaille <akim@epita.fr>
3878
3879 Move lalr1.cc internals into yy*.
3880
3881 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
3882 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
3883 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
3884 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
3885 (empty_, final_, terror_, errcode_, ntokens_)
3886 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
3887 (looka_, ilooka_, error_range_, nerrs_):
3888 Rename as...
3889 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
3890 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
3891 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
3892 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
3893 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
3894 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
3895 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
3896 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
3897 these.
3898
38992004-12-15 Paul Eggert <eggert@cs.ucla.edu>
3900
3901 Fix some problems reported by twlevo at xs4all.
3902 * src/symtab.c (symbol_new): Report an error if the input grammar
3903 contains too many symbols. This is better than calling abort() later.
3904 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
3905 (struct node, struct graph):
3906 Rename member expand to stretch. All uses changed.
3907 (struct graph): Remove member layoutalgorithm. All uses removed.
3908 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
3909 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
3910 All uses changed.
3911 (N_STRETCH): Rename from N_EXPAND. All uses changed.
3912
39132004-12-15 Akim Demaille <akim@epita.fr>
3914
3915 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
3916 Add more Doxygen comments.
3917 (symprint_, stack_print_, reduce_print_, destruct_, pop)
3918 (report_syntax_error_, translate_): Rename as...
3919 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
3920 (yypop_, yyreport_syntax_error_, yytranslate_): this.
3921
39222004-12-15 Akim Demaille <akim@epita.fr>
3923
3924 * data/lalr1.cc (lex_): Rename as...
3925 (yylex_): this.
3926 Move the trace here.
3927 Take the %name-prefix into account.
3928 Reported by Alexandre Duret-Lutz.
3929
39302004-12-15 Akim Demaille <akim@epita.fr>
3931
3932 Simplify the C++ parser constructor.
3933
3934 * data/lalr1.cc (debug_): Rename as...
3935 (yydebug_): so that the parser's internals are always in the yy*
3936 pseudo namespace.
3937 Adjust uses.
3938 (b4_parse_param_decl): Remove the leading comma as it is now only
3939 called as unique argument list.
3940 (Parser::Parser): Remove the constructor accepting a location and
3941 an initial debugging level.
3942 Remove from the other ctor the argument for the debugging level.
3943 (debug_level_type, debug_level, set_debug_level): New.
3944
3945 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
3946 constructor calls.
3947
39482004-12-15 Akim Demaille <akim@epita.fr>
3949
3950 Remove b4_root related material: failure experiment
3951 (which goal was to allow to derive from a class).
3952
3953 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
3954 definitions and uses.
3955
39562004-12-14 Paul Eggert <eggert@cs.ucla.edu>
3957
3958 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
3959 not 2, since it's not portable to subtract 1 from the start of an
3960 array. The new item 0 is never set or used. All uses changed.
3961
3962 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
3963 the default definition of YYLLOC_DEFAULT. Problem reported
3964 by Frank Heckenbach.
3965
39662004-12-12 Paul Eggert <eggert@cs.ucla.edu>
3967
3968 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
3969 the normal case and one for the error case. Just use the
3970 first one uniformly. Problem reported by Frank Heckenbach.
3971 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
3972 use exactly the same macro in both places.
3973 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
3974 so that the normal-case YYRHSLOC works for the error case too.
3975 All uses changed.
3976 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
3977 (YYLLOC_DEFAULT): Use the same macro as glr.c.
3978 * doc/bison.texinfo (Location Default Action): Don't claim that
3979 we have an array of locations. Use the same macro for both glr
3980 and lalr parsers. Mention YYRHSLOC. Mention what happens when
3981 the index is 0.
3982
39832004-12-10 Paul Eggert <eggert@cs.ucla.edu>
3984
3985 * HACKING: Update email addresses to send announcements to.
3986
3987 * configure.ac (AC_INIT): Bump version to 1.875f.
3988
39892004-12-10 Paul Eggert <eggert@cs.ucla.edu>
3990
3991 * NEWS: Version 1.875e.
3992 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
3993
3994 * src/scan-skel.l: Include "complain.h", for "fatal".
3995
3996 * src/relation.h (relation_print, relation_digraph):
3997 Relation sizes are of type relation_node, not size_t (this is
3998 merely a doc fix, since the two types are equivalent).
3999 (relation_transpose): Relation sizes are of type relation_node,
4000 not int.
4001 * src/relation.c: Likewise.
4002 (top, infinity): Now of type relation_node, not int.
4003 (traverse, relation_transpose): Use relation_node, not int.
4004
4005 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
4006 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
4007 (yyparse): Remove unused local introduced in 2004-10-25 patch.
4008
4009 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
4010 specifying whether the test should be skipped. Use it tp
4011 specify that the [%defines %skeleton "lalr1.cc"] tests currently
4012 fail on some hosts, and should be skipped.
4013
40142004-12-08 Paul Eggert <eggert@cs.ucla.edu>
4015
4016 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
4017 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
4018 unless otherwise specified below.
4019
4020 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
4021 to allocate kernel_base, kernel_items, kernel_size, since
4022 they needn't be initialized to 0.
4023 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
4024 * src/closure.c (new_closure): Likewise, for itemset.
4025 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
4026 * src/lalr.c (set_goto_map): Likewise, for temp_map.
4027 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
4028 (build_relations): Likewise for edge, states1, includes.
4029 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
4030 * src/reader.c (packgram): Likewise, for ritem, rules.
4031 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
4032 * src/relation.c (relation_digraph): Likewise for VERTICES.
4033 (relation_transpose): Likewise for new_R, end_R.
4034 * src/symtab.c (symbols_token_translations_init): Likewise for
4035 token_translations.
4036 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
4037 (token_actions): Likewise for yydefact, actrow, conflrow,
4038 conflict_list.
4039 (save_column): Likewise for froms[symno], tos[symno].
4040 (goto_actions): Likewise for state_count.
4041 (pack_table): Likewise for base, pos, check.
4042 (tables_generate): Likewise for width.
4043
4044 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
4045 for initial core. Just have a separate core, so we needn't worry
4046 about whether kernel_size and kernel_base are initialized.
4047
4048 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
4049 kernel_size, kernel_items): Remove unnecessary initialization.
4050 * src/conflicts.c (conflicts): Likewise.
4051 * src/derives.c (derives): Likewise.
4052 * src/muscle_tablc (muscle_insert): Likewise.
4053 * src/relation.c (relation_digraph): Likewise.
4054 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
4055 conflrow, conflict_table, conflict_list, table, check):
4056 Likewise.
4057
4058 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
4059 This is because all callers pass unsigned int.
4060 * src/closure.h (new_closure): Likewise.
4061
4062 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
4063 (build_relations): Initialize includes[i] in all cases.
4064 * src/reader.c (packgram): Always initialize rules[ruleno].prec
4065 and rules[ruleno].precsym. Initialize members in order.
4066 * src/relation.c (relation_transpose): Always initialize new_R[i]
4067 and end_R[i].
4068 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
4069
4070 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
4071 conflict_list[0] was always 0, but now it isn't initialized.
4072
4073 * src/table.c (table_grow): When conflict_table grew, the grown
4074 area wasn't cleared. Fix this.
4075
4076 * lib/.cvsignore: Add strdup.c, strdup.h.
4077 * m4/.cvsignore: Add strdup.m4.
4078
40792004-12-07 Paul Eggert <eggert@cs.ucla.edu>
4080
4081 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
4082 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
4083 GOTO_NUMBER_MAXIMUM, since we occasionally compute
4084 ngotos + 1 without checking for overflow.
4085 (build_relations): Use END_NODE, not -1, to denote end of edges.
4086 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
4087 build_relations): Use goto_number, not int, for goto numbers.
4088 * src/tables.c (save_column, default_goto): Likewise.
4089
40902004-11-23 Akim Demaille <akim@epita.fr>
4091
4092 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
4093 of #defining from yystype.
4094 Don't typedef yystype, C++ does not need it.
4095 This lets it possible to forward declare it as union.
4096
40972004-11-23 Paul Eggert <eggert@cs.ucla.edu>
4098
4099 * bootstrap (gnulib_modules): Add extensions.
4100 Problem reported by Jim Meyering.
4101
41022004-11-22 Paul Eggert <eggert@cs.ucla.edu>
4103
4104 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
4105 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
4106 src/system.h, src/tables.c: XFREE -> free, to accommodate
4107 recent change to gnulib xalloc.h.
4108 Problem reported by Jim Meyering.
4109
41102004-11-17 Akim Demaille <akim@epita.fr>
4111
4112 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
4113
41142004-11-17 Akim Demaille <akim@epita.fr>,
4115 Alexandre Duret-Lutz <adl@gnu.org>
4116
4117 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
4118 changes.
4119 (YYCDEBUG): Adjust.
4120 Use it instead of cdebug_.
4121 (Parser::debug_stream, Parser::set_debug_stream): New.
4122 (Parser::symprint_): Define cdebug_ for temporary backward
4123 compatibility.
4124 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
4125 debug_stream ().
4126
41272004-11-17 Akim Demaille <akim@epita.fr>
4128
4129 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
4130 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
4131 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
4132 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
4133
41342004-10-27 Paul Eggert <eggert@cs.ucla.edu>
4135
4136 * data/glr.c (yyloc_default): Remove; not used.
4137 Problem reported by Frank Heckenbach.
4138
41392004-10-25 Akim Demaille <akim@epita.fr>
4140
4141 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
4142 Introduce another definition to address simple location arrays.
4143 (yyGLRStack): New member: yyerror_range.
4144 (yyrecoverSyntaxError, yyparse): Update it.
4145 (yyrecoverSyntaxError): Use it when shifting the error token to
4146 have an accurate range, equivalent to the one computed by both
4147 yacc.c and lalr1.cc.
4148 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
4149 that column numbers start at column 0, as per GNU Coding
4150 Standards, the others tests, and the doc.
4151 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
4152 Adjust to the above change (first column is 0).
4153 And adjust the location of the "<error>", now covering the whole
4154 line.
4155
41562004-10-22 Akim Demaille <akim@epita.fr>
4157 and Paul Eggert <eggert@cs.ucla.edu>
4158
4159 Remove some arbitrary limits on goto numbers and relations.
4160 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
4161 initial values, since they're never used.
4162 (set_goto_map): ngotos is now unsigned, so test for overflow
4163 by seeing whether it wraps around to zero.
4164 * src/lalr.h (goto_number): Now size_t, not short int.
4165 (GOTO_NUMBER_MAXIMUM): Remove.
4166 * src/relation.c (relation_print, traverse, relation_transpose):
4167 Check for END_NODE rather than looking at sign.
4168 * src/relation.h (END_NODE): New macro.
4169 (relation_node): Now size_t, not short int.
4170
41712004-10-22 Paul Eggert <eggert@cs.ucla.edu>
4172
4173 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
4174 keyword, not an identifier. Problem reported by Baron Schwartz in
4175 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
4176
41772004-10-11 Akim Demaille <akim@epita.fr>
4178
4179 * src/symtab.c (symbol_check_alias_consistency): Also check
4180 type names, destructors, and printers.
4181 Reported by Alexandre Duret-Lutz.
4182 Recode the handling of associativity and precedence in terms
4183 of symbol_precedence_set.
4184 Accept no redeclaration at all, not even equal to the previous
4185 value.
4186 (redeclaration): New.
4187 Use it to factor redeclaration complaints.
4188 (symbol_make_alias): Don't set the type of the alias, let
4189 symbol_check_alias_consistency do it as for other features.
4190 * src/symtab.h (symbol): Add new member prec_location, and
4191 type_location.
4192 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
4193 * tests/input.at (Incompatible Aliases): New.
4194
41952004-10-09 Paul Eggert <eggert@cs.ucla.edu>
4196
4197 .cvsignore fixes to accommodate gnulib changes,
4198 and the practice of naming build directories "_build".
4199 * .cvsignore: Add "_*". Sort.
4200 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
4201 * m4/.cvsignore: Add "*_gl.m4".
4202
42032004-10-06 Akim Demaille <akim@epita.fr>
4204
4205 * src/parse-gram.y (add_param): Fix the truncation of trailing
4206 spaces.
4207
42082004-10-05 Akim Demaille <akim@epita.fr>
4209
4210 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
4211 whether the reducion was empty or not. This leaves room to
4212 improve the use of YYLLOC_DEFAULT in such a case.
4213 lalr1.cc is still experimental, so changing this is acceptable.
4214 And finally, there are probably not many users who changed the
4215 handling of locations in GLR, so changing is admissible too.
4216
4217 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
4218 empty reduction, set @$ to an empty location ending the previously
4219 stacked symbol.
4220 Adjust uses to make sure the code is triggered on empty
4221 reductions.
4222 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
4223 expected output: empty reductions have empty locations.
4224
42252004-09-29 Akim Demaille <akim@epita.fr>
4226
4227 * data/lalr1.cc: Move towards a more standard C++ coding style
4228 for templates: Class < T > -> Class<T>.
4229
42302004-09-29 Akim Demaille <akim@epita.fr>
4231
4232 * data/lalr1.cc: Reinstall the former ctor, for sake of
4233 compatibility, but warn it will be removed.
4234 Move towards a more standard C++ coding style (i.e., type *var ->
4235 type* var).
4236
42372004-09-27 Paul Eggert <eggert@cs.ucla.edu>
4238
4239 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
4240 since it's less likely to work if NULs are involved in the future.
4241
42422004-09-27 Akim Demaille <akim@epita.fr>
4243
4244 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
4245
42462004-09-27 Akim Demaille <akim@epita.fr>
4247
4248 * data/lalr1.cc (b4_parse_param_decl_1): New.
4249 (b4_parse_param_decl): Use it to have different names between attribute
4250 and argument names.
4251 (b4_cc_constructor_call): Likewise.
4252
42532004-09-24 Akim Demaille <akim@epita.fr>
4254
4255 * src/parse-gram.y (add_param): Strip the leading and trailing
4256 blanks from a formal argument declaration.
4257 (YY_LOCATION_PRINT): New.
4258
42592004-09-24 Akim Demaille <akim@epita.fr>
4260
4261 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
4262 after the location.
4263
42642004-09-24 Akim Demaille <akim@epita.fr>
4265
4266 * doc/bison.texinfo (Table of Symbols): Sort.
4267
42682004-09-21 Akim Demaille <akim@epita.fr>
4269
4270 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
4271 the useless parentheses.
4272 Suggested by Paul Eggert.
4273
42742004-09-20 Akim Demaille <akim@epita.fr>
4275
4276 Let the initial-action act on the look-ahead, and use it for the
4277 "initial push" (corresponding to an hypothetical beginning-of-file).
4278 And let lalr1.cc honor %initial-action.
4279
4280 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
4281 example.
4282 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
4283 (Parser::Parser): Remove the ctor that used to initialize it.
4284 (Parser::parse): Like in the other skeletons, issue the "starting
4285 parse" message before any action.
4286 Honor %initial-action.
4287 Initialize the stacks with the lookahead.
4288 * data/yacc.c: Let $$ and @$ in %initial-action designate the
4289 look-ahead.
4290 Push them in the stacks.
4291 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
4292
42932004-09-20 Akim Demaille <akim@epita.fr>
4294
4295 * doc/bison.texinfo (Initial Action Decl): New.
4296
42972004-09-20 Akim Demaille <akim@epita.fr>
4298
4299 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
4300 clearer criterion to define it.
4301 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
4302 When reducing on an empty RHS, use the latest stacked location as
4303 location.
4304 yylloc is not always available.
4305 * data/glr.c: Likewise.
4306 Also, honor initial-actions.
4307
43082004-09-20 Akim Demaille <akim@epita.fr>
4309
4310 * data/yacc.c (YY_LOCATION_PRINT): New.
4311 Define when we know YYLTYPE's structure, i.e., when the default
4312 YYLLOC_DEFAULT is used.
4313 * data/c.m4 (b4_yysymprint_generate): Use it.
4314 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
4315 value of the result.
4316 (error_start_): Replace with...
4317 (error_range_): this location array.
4318 This allows to replace code relying on the implementation of
4319 locations by portable code.
4320 * data/yacc.c (yylerrsp): Replace with...
4321 (yyerror_range): this.
4322 Every time a token is popped, update yyerror_range[0], to have an
4323 accurate location for the error token.
4324 * data/glr.c (YY_LOCATION_PRINT): New.
4325 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
4326 deference a pointer.
4327 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
4328 report the location in %printers.
4329
4330 * src/scan-skel.l: Instead of abort, report error messages to ease
4331 understanding skeleton scanning failures.
4332
43332004-09-16 Akim Demaille <akim@epita.fr>
4334
4335 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
4336 (iterator, const_iterator): these, to be more in the C++ spirit.
4337 Also, return reverse iterators so that when displaying the stack
4338 we display its bottom first.
4339 (Parser::stack_print_, Parser::reduce_print_): Match the messages
4340 from yacc.c.
4341 We should probably use vector here though.
4342
43432004-09-16 Akim Demaille <akim@epita.fr>
4344
4345 Have more complete shift traces.
4346
4347 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
4348 to report Shifts instead of ad hoc YYDPRINTF invocations,
4349 including for the error token.
4350 * data/lalr1.cc (symprint_): Output the location.
4351 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
4352 output the location within the %printer.
4353 Activate GLR tests, at least to make sure they compile properly.
4354 They still don't pass though.
4355 * tests/calc.at: Adjust expect verbose output, since now "Entering
4356 state..." is on a different line than the "Shifting" message.
4357
43582004-09-08 Akim Demaille <akim@epita.fr>
4359
4360 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
4361 Bison directive from the Bison file to the invocation of this
4362 macro, so that these directives are passed to
4363 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
4364 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
4365 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
4366 the extra Bison directives instead of the whole series.
4367 Change the grammar so that there are recoverable errors, and
4368 unrecoverable errors. Now we can have the parser give up before
4369 consuming the whole input. As a result we now can observe that
4370 the lookahead is freed when needed.
4371 Change the parser source to parse argv[1] instead of a hard coded
4372 string.
4373 Simplify yylex, and give a value and location to EOF.
4374 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
4375 passed directives already coded in the file.
4376 Add some tests to check the location of "error".
4377 For some tests, the C++ parser is correct, and not yacc.c.
4378 For other tests, they provide different, but unsatisfying, values,
4379 so keep the C++ value so that at least one parser is "correct"
4380 according to the test suite.
4381 (Actions after errors): Remove, this is subsumed by the
4382 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
4383
43842004-09-06 Akim Demaille <akim@epita.fr>
4385
4386 * data/lalr1.cc: Adjust the indentation of the labels.
4387 (Parser::pop): New.
4388 Use it.
4389
43902004-09-06 Akim Demaille <akim@epita.fr>
4391
4392 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
4393 argument, an informative message.
4394 Call YY_SYMBOL_PRINT.
4395 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
4396 * data/lalr1.cc (destruct_): Likewise.
4397 In addition, no longer depend on b4_yysymprint_generate and
4398 b4_yydestruct_generate to generate these functions, do it "by
4399 hand".
4400
44012004-09-03 Akim Demaille <akim@epita.fr>
4402
4403 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
4404 invoked, yydestruct the lookahead.
4405 * tests/calc.at (Calculator $1): Update the expected lengths of
4406 traces: there is an added line for the discarded lookahead.
4407 * doc/bison.texinfo (Destructor Decl): Some rewording.
4408 Define "discarded" symbols.
4409
44102004-09-02 Akim Demaille <akim@epita.fr>
4411
4412 * data/lalr1.cc (translate_, destruct_): No reason to be static.
4413
44142004-09-02 Akim Demaille <akim@epita.fr>
4415
4416 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
4417 (YYDSYMPRINTF): Rename as...
4418 (YY_SYMBOL_PRINT): this.
4419 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
4420 two.
4421 Use it instead of direct symprint_ calls.
4422 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
4423 one.
4424
44252004-09-02 Akim Demaille <akim@epita.fr>
4426
4427 * data/lalr1.cc (b4_yysymprint_generate): New.
4428 (symprint_): New member function, defined when YYDEBUG.
4429 Use it consistently instead of token/nterm debugging output by
4430 hand.
4431 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
4432 %printer calls to use cdebug_ when using lalr1.cc.
4433
44342004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
4435
4436 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
4437 with #ifdef YYDEBUG.
4438
44392004-08-26 Akim Demaille <akim@epita.fr>
4440
4441 * doc/bison.texinfo (Implementing Loops): Rename as...
4442 (Implementing Gotos/Loops): this.
4443
44442004-08-13 Paul Eggert <eggert@cs.ucla.edu>
4445
4446 Adjust to latest gnulib.
4447 * bootstrap (gnulib_modules): Add xalloc-die.
4448 Set LC_ALL=C so that file names sort consistently.
4449 Prefer the gnulib copies of gettext.m4, glibc21.m4,
4450 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
4451 uintmax_t.m4, ulonglong.m4.
4452 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
4453 po.m4 since we are now using _gl.m4 instead.
4454
44552004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
4456
4457 * src/scan-action.l: Remove. Scanning of semantic actions is
4458 handled in scan-gram.l.
4459
44602004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
4461
4462 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
4463
4464 * src/location.h (struct): The file member is a uniqstr.
4465 (equal_boundaries): Use UNIQSTR_EQ for comparison.
4466
44672004-07-22 Paul Eggert <eggert@cs.ucla.edu>
4468
4469 Fix bug with non-%union parsers that have printers or destructors,
4470 which led to a Bison core dump. Reported by Peter Fales in
4471 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
4472
4473 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
4474 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
4475 not to our own type.
4476 * src/output.c (symbol_destructors_output, symbol_printers_output):
4477 Don't assume %union.
4478 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
4479 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
4480 UNION-FLAG. All callers changed.
4481 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
4482 Use type char, not unsigned int, when declaring an array of char;
4483 this lets us remove a cast.
4484 (Printers and Destructors): Add non-%union test cases.
4485
44862004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4487
4488 * doc/bison.texinfo: Minor editorial changes, mostly to the new
4489 GLR writeups. E.g., avoid frenchspacing and the future tense,
4490 change "lookahead" to "look-ahead", and change "wrt" to "with
4491 respect to".
4492
44932004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4494
4495 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
4496 New sections, split off from the GLR Parsers section. Put the new
4497 Simple GLR Parser near the start of the GLR section, for clarity.
4498 Rewrite connective text.
4499
45002004-06-21 Frank Heckenbach <frank@g-n-u.de>
4501
4502 * doc/bison.texinfo (Simple GLR Parsers): New section.
4503
45042004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4505
4506 * NEWS, TODO, doc/bison.texinfo:
4507 Use "look-ahead" instead of "lookahead", to be consistent.
4508 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
4509 while we're fixing "look-ahead".
4510 * src/conflicts.c (shift_set): Renamed from shiftset.
4511 (look_ahead_set): Renamed from lookaheadset.
4512 * src/print.c: Likewise.
4513 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
4514 name for "lookahead".
4515 (report_types, usage): Likewise.
4516 * src/getargs.h (report_look_ahead_tokens): Renamed from
4517 report_lookaheads.
4518 * src/lalr.c (compute_look_ahead_tokens): Renamed from
4519 compute_lookaheads.
4520 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
4521 (look_ahead_tokens_print): Renamed from lookaheads_print.
4522 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
4523 state_rule_lookaheads_print.
4524 * src/state.h: Likewise.
4525 (reductions.look_ahead_tokens): Renamed from lookaheads.
4526 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
4527 AT_DATA_LOOKAHEADS_GRAMMAR.
4528
45292004-06-03 Paul Eggert <eggert@cs.ucla.edu>
4530
4531 * README: Update location of patched M4 distribution.
4532
45332004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
4534
4535 Don't assume the C++ compiler takes the same arguments as the C compiler
4536 (trivial change).
4537 * configure.ac (O0CXXFLAGS): New var.
4538 * tests/atlocal.in (CXXFLAGS): Use it.
4539
45402004-05-29 Paul Eggert <eggert@cs.ucla.edu>
4541
4542 Fix some "make check" problems with C++ reported by
4543 Albert Chin-A-Young for Tru64 C++ in this thread:
4544 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
4545
4546 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
4547 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4548 Output to a .cc file for C++, not to a .c file.
4549 * tests/calc.at (AT_CHECK_CALC): Likewise.
4550 * tests/regression.at (AT_CHECK_DANCER): Likewise.
4551 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
4552
45532004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
4554
4555 * tests/calc.at, tests/actions.at: Workaround for SGI
4556 C++ compiler. (trivial change)
4557
45582004-05-27 Paul Eggert <eggert@cs.ucla.edu>
4559
4560 Spent a few hours checking out which prerequisite versions the
4561 current sources actually require. I went all the way back to
4562 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
4563 a seemingly endless set of combinations of versions more recent
4564 than that. The bottom line is that the current sources require
4565 fairly recent versions of the build tools, and it'll be some work
4566 to change this.
4567 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
4568 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
4569 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
4570 Add comments explaining why those particular versions are
4571 currently needed.
4572
4573 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
4574 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
4575 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
4576
4577 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
4578 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
4579
45802004-05-26 Paul Eggert <eggert@cs.ucla.edu>
4581
4582 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
4583 0.11.5. Suggested by Bruno Haible.
4584 * bootstrap: Remove gettext version checking.
4585
4586 * doc/bison.texinfo (Decl Summary): Also mention that %union
4587 can depend on prerequisite types. Problem reported by Tim
4588 Van Holder.
4589
45902004-05-25 Paul Eggert <eggert@cs.ucla.edu>
4591
4592 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
4593 * README-alpha: Don't tell people not to package this.
4594
4595 * bootstrap: Don't assume $(...) works; use `...` instead.
4596 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
4597 gettext better.
4598
4599 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
4600 put into the -d output file, and mention what to do if YYSTYPE is
4601 defined as a macro.
4602
46032004-05-24 Paul Eggert <eggert@cs.ucla.edu>
4604
4605 Undo change made earlier today: it caused autopoint to not bring
4606 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
4607 autopoint's.
4608
4609 * bootstrap: Check that gettext version matches what's in
4610 configure.ac. Warn users to ignore robots.txt ERROR 404.
4611 * bootstrap: Undo today's earlier change (logged below).
4612 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
4613
4614 The gettext version checking is causing more trouble than it's
4615 curing; remove it. Problem reported by Paul Hilfinger.
4616
4617 * bootstrap: Issue a warning that one can expect a message
4618 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
4619 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
4620
46212004-05-23 Paul Eggert <eggert@cs.ucla.edu>
4622
4623 Ensure that the C++ compiler used for testing actually works on a
4624 simple test program; if not, skip the C++-related tests. Problem
4625 reported by Vin Shelton in:
4626 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
4627
4628 * m4/cxx.m4: New file.
4629 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
4630 * tests/atlocal.in (BISON_CXX_WORKS): Add.
4631 * tests/local.at (AT_COMPILE_CXX): Use it.
4632
46332004-05-21 Paul Eggert <eggert@cs.ucla.edu>
4634
4635 * data/glr.c (yylloc): Output this macro even if locations are not
4636 being generated, as the GLR parser needs it even in that case.
4637 Problem reported by Troy A. Johnson
4638 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
4639
4640 * configure.ac (AC_INIT): Update to 1.875e.
4641
46422004-05-21 Paul Eggert <eggert@cs.ucla.edu>
4643
4644 * NEWS: Version 1.875d.
4645 * configure.ac (AC_INIT): Likewise.
4646 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
4647
4648 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
4649 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
4650 lalr1.cc runs afoul of the first, and the last two are no longer
4651 supported by GCC 3.4.0.
4652 * README: Mention GNU m4 1.4 or later; mention m4 patches.
4653 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
4654
46552004-05-06 Paul Eggert <eggert@cs.ucla.edu>
4656
4657 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
4658 unsigned int, for compatibility with latest gnulib hash module.
4659 * src/state.c (state_hash, state_hasher): Likewise.
4660 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
4661 * src/uniqstr.c (hash_uniqstr): Likewise.
4662
46632004-05-03 Paul Eggert <eggert@cs.ucla.edu>
4664
4665 * NEWS: Unescaped newlines are no longer allowed in char & strings.
4666
4667 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
4668 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
4669 character and string literals.
4670 (unexpected_end): New function.
4671 (unexpected_eof): Use it.
4672 (unexpected_newline): New function.
4673 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
4674 actions.
4675
4676 * NEWS: Document %expect-rr.
4677
4678 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
4679 Fix typo by replacing $1 with $option.
4680 Remove more 'intl'-related files.
4681 Don't DEFUN AM_INTL_SUBDIR twice.
4682
4683 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
4684 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
4685 strtoul.c.
4686 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
4687 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
4688 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
4689 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
4690 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
4691 * src/.cvsignore: Add *.output.
4692
4693 * src/parse-gram.y: Put copyright notice inside %{ %} so it
4694 gets copied to the output file.
4695
46962004-04-28 Paul Eggert <eggert@twinsun.com>
4697
4698 Get files from the gnulib and po repositories, instead of relying
4699 on them being in our CVS. Upgrade to latest versions of gnulib
4700 and Automake.
4701
4702 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
4703 * bootstrap: Bootstrap from gnulib and po repositories.
4704 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
4705 * README-cvs: Document these changes. Remove version numbers from
4706 mentions of build tools, since they change so often. Mention Flex.
4707
4708 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
4709 (gl_USE_SYSTEM_EXTENSIONS): Add.
4710 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
4711 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
4712 does this for us.
4713 (AC_ISC_POSIX): Remove; we no longer support this
4714 ancient OS, as it gets in the way of latest Autoconf & gnulib.
4715 (AC_HEADER_STDC): Remove: we now assume C89 or better.
4716 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
4717 Do not check for C89 headers, except for locale.h which is used
4718 by the Yacc library and must port to K&R hosts.
4719 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
4720 Do not check for C89 functions, except for setlocale which is
4721 used by the Yacc library.
4722 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
4723 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
4724 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
4725 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
4726 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
4727 AM_GNU_GETTEXT): Remove; now done by:
4728 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
4729 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
4730 for us.
4731
4732 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
4733 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
4734 Define to empty, as gnulib.mk will do the rest for us.
4735 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
4736 for us.
4737 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
4738 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
4739
4740 * src/files.c: Include gnulib's xstrndup.h.
4741
4742 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
4743 (REALLOC): Use xnrealloc, for likewise.
4744 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
4745 (strnlen, memrchr): Remove decls; functions no longer used.
4746 Include <stpcpy.h>.
4747
4748 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
4749 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
4750 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
4751 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
4752 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
4753 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
4754 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
4755 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
4756 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
4757 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
4758 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
4759 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
4760 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
4761 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
4762 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
4763 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
4764 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
4765 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
4766 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
4767 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
4768 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
4769 Remove, as these files are now generated automatically
4770 by bootstrap or automake.
4771
4772 * po/ChangeLog: Remove: all but one entry was a duplicate
4773 of this file, and I moved that 2000-11-02 entry here.
4774
4775 * config/.cvsignore: Add Makefile, depcomp, install-sh.
4776 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
4777 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
4778 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
4779 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
4780 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
4781 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
4782 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
4783 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
4784 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
4785 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
4786 xstrndup.h.
4787 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
4788 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
4789 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
4790 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
4791 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
4792 * src/.cvsignore: Remove *_.c.
4793
4794
4795 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
4796 support it. (The latest stable gzip doesn't.)
4797
47982004-04-27 Paul Eggert <eggert@twinsun.com>
4799
4800 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
4801 case, as stos_ is now used by destructors due to the 2004-02-09
4802 change.
4803
4804 Remove more K&R C support.
4805 * lib/libiberty.y (PARAMS): Remove. All uses removed.
4806 * lib/subpipe.c (errno): Remove decl.
4807 Include <stdlib.h> unconditionally.
4808 (EXIT_FAILURE): Remove macro.
4809 * src/complain.c (vfprintf, strerror): Remove.
4810 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
4811 unconditionally.
4812 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
4813 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
4814 (strchr, strspn, memchr): Remove decls.
4815 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
4816 unconditionally. Do not declare perror.
4817 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
4818 unconditionally.
4819
4820 * src/complain.c (_): Remove useless defn, as system.h defines this.
4821
4822 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
4823 with latest obstack.h.
4824 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
4825 to procedure types, as obstack.h now does that for us.
4826 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
4827
4828 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
4829 so that this include file can stand alone.
4830 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
4831 does this now. Include subpipe.h first after config.h, to
4832 test whether it can stand alone.
4833
4834 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
4835 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
4836 unused declaration.
4837
4838 * tests/synclines.at (%union synch line): Put a dummy member in
4839 the union, because empty unions aren't allowed in C. Caught
4840 by GCC 3.4.0.
4841
48422004-04-13 Jim Meyering <jim@meyering.net>
4843
4844 * src/conflicts.c (conflicts_print): Correct format string typo:
4845 use `%%' to produce literal `%'. (trivial change)
4846
48472004-03-30 Paul Eggert <eggert@twinsun.com>
4848
4849 * src/getargs.c (version): Update copyright year to 2004.
4850
4851 * data/c.m4 (b4_int_type): Use 'short int' rather than
4852 'short', and similarly for 'long', 'unsigned', etc.
4853 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
4854 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
4855 yy_yypstack, yydumpstack): Likewise.
4856 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
4857 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
4858 Likewise.
4859 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
4860 yy_stack_print, yyparse): Likewise.
4861 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
4862 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
4863 * lib/bitset.c (bitset_print): Likewise.
4864 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
4865 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
4866 * lib/bitsetv.c (bitsetv_dump): Likewise.
4867 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
4868 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
4869 Likewise.
4870 * src/LR0.c (allocate_itemsets): Likewise.
4871 * src/gram.h (rule_number, rule): Likewise.
4872 * src/lalr.h (goto_number): Likewise.
4873 * src/nullable.c (nullable_compute): Likewise.
4874 * src/output.c (prepare_rules): Likewise.
4875 * src/relation.c (relation_print, relation_digraph): Likewise.
4876 * src/relation.h (relation_node): Likewise.
4877 * src/state.h (state_number, transitions, errs, reductions,
4878 struct state): Likewise.
4879 * src/symtab.h (symbol_number, struct symbol): Likewise.
4880 * src/tables.c (vector_number, tally, action_number,
4881 default_goto, goto_actions): Likewise.
4882 * tests/existing.at (GNU Cim Grammar): Likewise.
4883 * tests/regression.at (Web2c Actions): Likewise.
4884
4885 * src/output.c (muscle_insert_short_int_table): Renamed from
4886 muscle_insert_short_table. All uses changed.
4887
48882004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4889
4890 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
4891 (declaration): Replace expected_conflicts with expected_sr_conflicts.
4892 Add %expect-rr rule.
4893
4894 * src/scan-gram.l: Recognize %expect-rr.
4895
4896 * src/conflicts.h (expected_sr_conflicts): Rename from
4897 expected_conflicts.
4898 (expected_rr_conflicts): Declare.
4899
4900 * src/conflicts.c (expected_sr_conflicts): Rename from
4901 expected_conflicts.
4902 (expected_rr_conflicts): Define.
4903 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
4904 for GLR parsers.
4905 Use expected_sr_conflicts in place of expected_conflicts.
4906 Warn if expected_rr_conflicts used in non-GLR parser.
4907
4908 * doc/bison.texinfo: Add documentation for %expect-rr.
4909
49102004-03-08 Paul Eggert <eggert@gnu.org>
4911
4912 Add support for hex token numbers. Suggested by Odd Arild Olsen in
4913 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
4914
4915 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
4916 in lalr1.cc.
4917 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
4918 * src/scan-gram.l (scan_integer): New function.
4919 ({int}): Use it.
4920 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
4921 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
4922 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
4923 Say "long int", not "long", for uniformity with GNU style.
4924
49252004-02-25 Paul Eggert <eggert@twinsun.com>
4926
4927 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
4928 compilers. This fixes a problem with Intel's C++ compiler being
4929 chatty, reported by Guido Trentalancia in
4930 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
4931
49322004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
4933
4934 Support %destructor and merge error locations in lalr1.cc.
4935
4936 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
4937 (Parser::stos_): Define unconditionally.
4938 (Parser::destruct_): New method. Generate its body with
4939 b4_yydestruct_generate.
4940 (Parser::error_start_): New attribute.
4941 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
4942 token which are discarded.
4943 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
4944 error_start_ when erroneous token are discarded.
4945 (Parser::parse) <yyerrlab1>: Compute the location of the error
4946 token so that it covers all the discarded tokens.
4947 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
4948 it can be called with `%skeleton "lalr1.cc"', and do that.
4949
49502004-02-02 Paul Eggert <eggert@twinsun.com>
4951
4952 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
4953 $(top_srcdir)/lib and ../lib. This fixes a bug reported
4954 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
4955 There's no need to mention top_builddir since Automake does that
4956 for us.
4957 (INCLUDES): Remove, as Automake says it's obsolescent.
4958 Contents migrated into AM_CPPFLAGS as described above.
4959 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
4960
49612004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4962
4963 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
4964 (yyreportSyntaxError): Handle case where lookahead token is
4965 YYEMPTY.
4966
49672004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4968
4969 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
4970 resulting parsers are compilable with C++.
4971
49722003-12-23 Paul Eggert <eggert@twinsun.com>
4973
4974 * config/depcomp, config/install-sh: Sync with Automake 1.8.
4975 * src/output.c (output_skeleton): Rename local var.
4976 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
4977 Bison tokens, as this runs afoul of the 2003-10-07 change that
4978 disallowed NUL bytes in character constants or string literals.
4979
4980 * tests/local.at: Require Autoconf 2.59's Autotest.
4981 * tests/testsuite.at: Don't include local.at, since we now assume
4982 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
4983 including it.
4984 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
4985 multiple inclusion warnings.
4986
49872003-12-02 Akim Demaille <akim@epita.fr>
4988
4989 * doc/bison.texinfo (How Can I Reset the Parser): More about start
4990 conditions.
4991 From Bruno Haible.
4992
49932003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
4994
4995 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
4996
49972003-10-07 Paul Eggert <eggert@twinsun.com>
4998
4999 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
5000 if testsuite doesn't exist.
5001
5002 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
5003 literals, unfortunately.
5004 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
5005 Complain about NUL bytes in character constants or string literals.
5006
50072003-10-05 Paul Eggert <eggert@twinsun.com>
5008
5009 * NEWS: Don't document %no-default-prec, as it's still
5010 too experimental.
5011 * doc/bison.texinfo: Document %no-default-prec only if
5012 the defaultprec flag is set. Normally it's not.
5013
50142003-10-04 Paul Eggert <eggert@twinsun.com>
5015
5016 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
5017 non-modifiable lvalue, instead of a modifiable one.
5018 * doc/bison.texinfo (Actions): Document that $$ can
5019 be assigned to. Do not claim that $$ and $N are
5020 array element references: user code should not rely on this.
5021
50222003-10-01 Paul Eggert <eggert@twinsun.com>
5023
5024 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
5025 (grammar_declaration): Use it.
5026 * src/scan-gram.l: New token %no-default-prec.
5027 * tests/conflicts.at: Revamp tests to use %no-default-prec.
5028 * NEWS, doc/bison.texinfo: Document the above.
5029
50302003-10-01 Akim Demaille <akim@epita.fr>
5031
5032 VCG no longer supports long_straight_phase.
5033
5034 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
5035 * src/print_graph.c (print_graph): Adjust.
5036
50372003-09-30 Frank Heckenbach <frank@g-n-u.de>
5038 and Paul Eggert <eggert@twinsun.com>
5039
5040 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
5041 Table of Symbols): Document %default-prec.
5042 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
5043 (grammar_declaration): Set default_prec on %default-prec.
5044 * src/scan-gram.l (%default-prec): New token.
5045 * src/reader.h (default_prec): New flag.
5046 * src/reader.c: Likewise.
5047 (packgram): Handle it.
5048 * tests/conflicts.at (%default-prec without %prec,
5049 %default-prec with %prec, %default-prec 1): New tests.
5050
50512003-09-30 Paul Eggert <eggert@twinsun.com>
5052
5053 * tests/testsuite.at: Include local.at, not input.at, fixing
5054 a typo in the 2003-08-25 patch.
5055
50562003-08-27 Akim Demaille <akim@epita.fr>
5057
5058 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
5059 GCC warnings.
5060
50612003-08-26 Akim Demaille <akim@epita.fr>
5062
5063 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
5064 "<\#" to avoid magic from Gnus when posting parts of this script.
5065
50662003-08-26 Akim Demaille <akim@epita.fr>
5067
5068 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
5069 (Parser::parse): here.
5070 Adjust: nerrs and errstatus is now replaced by...
5071 (Parser::nerrs_, Parser::errstatus_): New.
5072
50732003-08-25 Akim Demaille <akim@epita.fr>
5074
5075 * config/announce-gen, Makefile.cfg: New.
5076 * Makefile.am: Adjust.
5077 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
5078 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
5079
50802003-08-25 Akim Demaille <akim@epita.fr>
5081
5082 When reducing initial empty rules, Bison parser read an initial
5083 location that is not defined. This results in garbage, and that
5084 affects Bison's own parser. Therefore we need (i) to extend Bison
5085 to support a means to initialize this location, and (ii) to use
5086 this CVS Bison to fix CVS Bison's parser.
5087
5088 * src/reader.h, reader.c (epilogue_augment): Remove, replace
5089 with...
5090 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
5091 * src/parse-gram.y: Adjust.
5092 (%initial-action): New.
5093 (%error-verbose): Since we require CVS Bison, there is no reason
5094 not to use it.
5095 * src/scan-gram.l: Adjust.
5096 * src/Makefile.am (YACC): New, to make sure we use our own parser.
5097 * data/yacc.c (yyparse): Use b4_initial_action.
5098
50992003-08-25 Akim Demaille <akim@epita.fr>
5100
5101 * doc/bison.texinfo: Don't promote stdout for error messages.
5102
51032003-08-25 Akim Demaille <akim@epita.fr>
5104
5105 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
5106 From Alexandre Duret-Lutz.
5107
51082003-08-25 Akim Demaille <akim@epita.fr>
5109
5110 Version 1.875c.
5111
51122003-08-25 Akim Demaille <akim@epita.fr>
5113
5114 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
5115 Use them.
5116
51172003-08-25 Akim Demaille <akim@epita.fr>
5118
5119 * data/lalr1.cc (Parser::reduce_print_): New.
5120 Use it.
5121
51222003-08-25 Akim Demaille <akim@epita.fr>
5123
5124 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
5125 error recovery loops. This patch is based on
5126 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
5127 Also, augment the similarity between lalr1.cc and yacc.c.
5128 Note: the locations of error recovery rules are not correct yet.
5129
5130 * data/lalr1.cc: Comment changes to augment the similarity between
5131 lalr1.cc and yacc.c.
5132 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
5133 (yyerrlab1): Remove, but where it used to be (now the bottom part of
5134 yyerrlab), when hitting EOF, pop the whole stack here instead of
5135 merely falling thru the default error handling mechanism.
5136 (yyerrorlab): New label, with the old contents of YYERROR,
5137 plus the following change: pop the stack of rhs corresponding
5138 to the production that invoked YYERROR. That is how Yacc
5139 behaves (required by POSIX).
5140 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
5141 fail.
5142
51432003-08-25 Akim Demaille <akim@epita.fr>
5144
5145 Tune local.at so that people can "autom4te -l autotest calc.at -o
5146 calc" for instance, to extract a sub test suite.
5147
5148 * tests/testsuite.at: Move the initialization, Autotest version
5149 requirement, and AT_TESTED invocation into...
5150 * tests/local.at: here.
5151 * tests/testsuite.at: Include it for compatibility with Autoconf
5152 2.57.
5153 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
5154 be ignore.
5155
51562003-08-04 Paul Eggert <eggert@twinsun.com>
5157
5158 Rework code slightly to avoid gcc -Wtraditional warnings.
5159 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
5160 The returned value is now stored in *YY0. All callers changed.
5161 * src/output.c (merge_output): Adjust to the above change.
5162
51632003-07-26 Paul Eggert <eggert@twinsun.com>
5164
5165 * data/glr.c (YYASSERT): New macro.
5166 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
5167 yyresolveStates, yyprocessOneStack):
5168 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
5169 Derived from a suggestion by Frank Heckenbach.
5170
51712003-07-25 Paul Eggert <eggert@twinsun.com>
5172
5173 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
5174 for portability to K&R C (after ansi2knr, presumably). See
5175 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5176 by Frank Heckenbach, though I have omitted the structure-initialization
5177 part of his glr-knr.diff patch since I recall that the Portable
5178 C Compiler didn't require that change.
5179
5180 Let the user specify how to allocate and free memory.
5181 Derived from a suggestion by Frank Heckenbach in
5182 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
5183 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
5184 All uses of free, malloc, realloc changed to use these macros,
5185 and unnecessary casts removed.
5186 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
5187
51882003-07-06 Matthias Mann <MatthiasMann@gmx.de>
5189
5190 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
5191 use s.empty() rather than s == "" to test for empty string; see
5192 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
5193 (trivial change)
5194
51952003-06-25 Akim Demaille <akim@epita.fr>
5196
5197 * config/depcomp, config/install-sh: Update from masters.
5198
51992003-06-20 Paul Eggert <eggert@twinsun.com>
5200
5201 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
5202 and return properly parenthesized result.
5203 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
5204 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
5205 Remove unnecessary parentheses from uses.
5206 * doc/bison.texinfo (Location Default Action): Describe the
5207 conventions for parentheses.
5208
52092003-06-19 Paul Eggert <eggert@twinsun.com>
5210
5211 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
5212 yyreportTree): Do not assume that size_t is the same width as int,
5213 when printing sizes. Print sizes using an unsigned format.
5214 Problem reported by Frank Heckenbach in
5215 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
5216
5217 Port to Forte Developer 7 C compiler.
5218 * data/glr.c (struct YYLTYPE): If locations are not being used,
5219 declare a single dummy member, as empty structs do not conform
5220 to the C standard.
5221 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
5222 the Forte Developer 7 C compiler complains that end-of-loop
5223 code is not reached.
5224
52252003-06-17 Paul Eggert <eggert@twinsun.com>
5226
5227 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
5228 avoid warnings from picky compilers about redefinition of PARAMS.
5229
52302003-06-17 Paul Eggert <eggert@twinsun.com>
5231
5232 Version 1.875b.
5233
5234 * NEWS: Document 1.875b.
5235
5236 * lib/bbitset.h: Do not include config.h; that's the includer's job.
5237 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
5238 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
5239 Don't use 'index' in comments, as it's a builtin fn on some hosts.
5240 * lib/bitset_stats.c: Include gettext.h unconditionally, as
5241 per recent gettext manual's suggestion.
5242 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
5243 Use prototypes, not old-style definitions.
5244 * lib/lbitset.c (lbitset_unused_clear): Likewise.
5245 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
5246 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
5247 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
5248 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
5249 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
5250 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
5251 vbitset_or_and_cmp, vbitset_copy): Likewise.
5252
5253 * lib/libiberty.h: Do not include config.h; that's the includer's job.
5254 Do not include <stdlib.h>.
5255 (PARAMS): Define unconditionally for C89.
5256 (ATTRIBUTE_NORETURN): Remove.
5257 (ATTRIBUTE_UNUSED): Define unconditionally.
5258
5259 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
5260 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
5261 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
5262 * lib/vbitset.c, lib/vbitset.h: New files.
5263 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
5264 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
5265 from libbitset.
5266
5267 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
5268 `How Can I Reset @code{yyparse}', since texinfo does not allow
5269 arbitrary @ in node names.
5270
5271 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
5272 shouldn't be needed according to the gettext 0.12.1 documentation
5273 but which seem to be needed anyway: codeset.m4 glibc21.m4
5274 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
5275 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
5276 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
5277
5278 * lib/.cvsignore: Add stdbool.h.
5279 * m4/.cvsignore: Add nls.m4, po.m4.
5280
5281 Upgrade to CVS gnulib.
5282 * stdbool_.h: File renamed from stdbool.h.in.
5283 * configure.ac (AM_STDBOOL_H): Invoke this instead of
5284 AC_HEADER_STDBOOL.
5285 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
5286 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
5287 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
5288 (MOSTLYCLEANFILES): New var.
5289 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
5290 (stdbool.h): New rule.
5291 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
5292 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
5293 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
5294 m4/quote.m4: Upgrade to today's gnulib.
5295
5296 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
5297 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
5298 the tests right now.
5299 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
5300 yyerror are declared before use; C99 requires this.
5301
53022003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5303
5304 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
5305 first.
5306 (yyrecoverSyntaxError): Correct the logic for setting and testing
5307 yyerrState.
5308 Correct comment on handling EOF.
5309 Allow states with only a default reduction, rather than failing
5310 (I can't quite reconstruct why these were not allowed before).
5311
5312 Fixes to avoid problem that $-N rules in GLR parsers can cause
5313 buffer overruns, corrupting state.
5314
5315 * src/output.c (prepare_rules): Output max_left_semantic_context
5316 definition.
5317 * src/reader.h (max_left_semantic_context): New variable declaration.
5318 * src/scan-gram.l (max_left_semantic_context): Define.
5319 (handle_action_dollar): Update max_left_semantic_context.
5320 * data/glr.c (YYMAXLEFT): New definition.
5321 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
5322 (yyresolveAction): Ditto.
5323
5324 Fixes to problems with location handling in GLR parsers reported by
5325 Frank Heckenbach (2003/06/05).
5326
5327 * data/glr.c (YYLTYPE): Make trivial if locations not used.
5328 (YYRHSLOC): Add parentheses, and define only if locations used.
5329 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
5330 locations not used.
5331 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
5332 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
5333
5334 * tests/cxx-type.at: Exercise location information; update tests
5335 to differentiate output with and without locations.
5336 Remove forward declarations of yylex and yyerror---caused errors
5337 because default YYLTYPE not yet defined.
5338 Change semantic actions to compute strings, rather than printing
5339 them directly (to test proper passing of semantics values). Change
5340 output to prefix notation and update test data and expected results.
5341 (yylex): Track locations.
5342 (stmtMerge): Return value rather than printing, and include arguments
5343 in value.
5344
53452003-06-03 Paul Eggert <eggert@twinsun.com>
5346
5347 Avoid warnings generated by GCC 2.95.4 when Bison is
5348 configured with --enable-gcc-warnings.
5349 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
5350 yy::]b4_parser_class_name[::translate_,
5351 yy::Stack::operator[] (unsigned),
5352 yy::Stack::operator[] (unsigned) const,
5353 yy::Slice::operator[] (unsigned),
5354 yy::Slice::operator[] (unsigned) const):
5355 Rename local vars to avoid warnings.
5356 * tests/glr-regression.at (Improper handling of embedded actions
5357 and $-N in GLR parsers): Remove unused local variable from yylex.
5358 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
5359 (void) as arg when not pure, since we now assume C89 when building
5360 Bison. Pacify GCC by using parameter.
5361
53622003-06-02 Paul Eggert <eggert@twinsun.com>
5363
5364 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
5365 yy::Location::lines, yy::Location::columns): Rename arguments
5366 to avoid shadowing; this removes a warning generated by GCC 3.3.
5367
53682003-06-01 Paul Eggert <eggert@twinsun.com>
5369
5370 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
5371 to g++, as GCC 3.3 complains if you do it.
5372 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
5373 everything that WARNING_CFLAGS has, except omit warnings
5374 not suitable for C++.
5375 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
5376 * tests/atlocal.in (CXXFLAGS): New var.
5377 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
5378
5379 Fix a GLR parser bug I reported in February; see
5380 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
5381 The problem was that GLR parsers did not conform to the C standard,
5382 because actions like { $1 = $2 + $3; } expanded to expressions
5383 that invoked YYFILL in separate subexpressions, and YYFILL assigned
5384 to a local variable. The C standard says that expressions
5385 like (var = f ()) + (var = f ()) have undefined behavior.
5386 Another problem was that GCC sometimes issues warnings that
5387 yyfill and its parameters are unused.
5388
5389 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
5390 as possibly unused.
5391 (yyfill): New function.
5392 (YYFILL): Use it.
5393 (yyuserAction): Change type of yynormal to bool, so that it matches
5394 the new yyfill signature. Mark it as possibly unused.
5395
5396
5397 Follow up on a bug I reported in February, where a Bison-generated
5398 parser can loop. Provide a test case and a fix for yacc.c. I
5399 don't have a fix for lalr1.cc or for glr.c, unfortunately.
5400 The original bug report is in:
5401 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
5402
5403 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
5404 macro's size was becoming unwieldy.
5405 (yyerrlab): Do not discard an empty lookahead symbol, as this
5406 might destroy garbage.
5407 (yyerrorlab): New label, with the old contents of YYERROR,
5408 plus the following change: pop the stack of rhs corresponding
5409 to the production that invoked YYERROR. That is how Yacc
5410 behaves, and POSIX requires this behavior.
5411 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
5412 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
5413 Define 'alarm' to do nothing if unistd.h is not available.
5414 Add a new rule "exp: '-' error;" to test the above change to
5415 data/yacc.c. Use 'alarm' to abort any test taking longer than
5416 10 seconds, as it's probably looping.
5417 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
5418 Also, the new yacc.c generates two fewer diagnostics for an
5419 existing test.
5420
54212003-05-24 Paul Eggert <eggert@twinsun.com>
5422
5423 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
5424 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
5425 This fixes a problem reported by John Bowman when the Compaq/HP
5426 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
5427 -ansi -Wall -gall).
5428 * data/yacc.c (union yyalloc): Likewise.
5429 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
5430
5431 Switch from 'int' to 'bool' where that makes sense.
5432
5433 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
5434 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
5435 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
5436 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
5437 Return or accept bool, not int. All callers changed.
5438 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
5439 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
5440 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
5441 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
5442 bitset_or_and_cmp_): Likewise.
5443 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
5444 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
5445 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
5446 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
5447 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
5448 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
5449 bitset_stats_or_and_cmp): Likewise.
5450 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
5451 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
5452 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
5453 ebitset_xor_cmp): Likewise.
5454 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
5455 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
5456 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
5457 lbitset_xor_cmp): Likewise.
5458 * lib/bbitset.h: Include <stdbool.h>.
5459 (struct bitset_vtable): The following members now return bool, not
5460 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
5461 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
5462 or_and_cmp).
5463 * src/conflicts.c (count_rr_conflicts): Likewise.
5464 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
5465 All uses changed.
5466 * lib/ebitset.c (ebitset_obstack_init): Likewise.
5467 * lib/lbitset.c (lbitset_obstack_init): Likewise.
5468 * src/getargs.c (debug_flag, defines_flag, locations_flag,
5469 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5470 graph_flag): Likewise.
5471 * src/getargs.h (debug_flag, defines_flag, locations_flag,
5472 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5473 graph_flag): Likewise.
5474 * src/output.c (error_verbose): Likewise.
5475 * src/output.h (error_verbose): Likewise.
5476 * src/reader.c (start_flag, typed): Likewise.
5477 * src/reader.h (typed): Likewise.
5478 * src/getargs.c (LOCATIONS_OPTION): New constant.
5479 (long_options, getargs): Use it.
5480 * src/lalr.c (build_relations): Use bool, not int.
5481 * src/nullable.c (nullable_compute): Likewise.
5482 * src/print.c (print_reductions): Likewise.
5483 * src/tables.c (action_row, pack_vector): Likewise.
5484 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
5485 * src/output.c (prepare): Use it.
5486 * src/output.c (token_definitions_output,
5487 symbol_destructors_output, symbol_destructors_output): Use string,
5488 not boolean integer, to keep track of whether to output separator.
5489 * src/print_graph.c (print_core): Likewise.
5490 * src/state.c (state_rule_lookaheads_print): Likewise.
5491
5492 * config/install-sh: Sync from automake 1.7.5.
5493
54942003-05-14 Paul Eggert <eggert@twinsun.com>
5495
5496 * src/parse-gram.y (rules_or_grammar_declaration): Require a
5497 semicolon after a grammar declaration, in the interest of possible
5498 future changes to the Bison input language.
5499 Do not allow a stray semicolon at the start of the grammar.
5500 (rhses.1): Allow one or more semicolons after any rule, including
5501 just before "|" as required by POSIX.
5502 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
5503 grammar.
5504
55052003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
5506
5507 %parse-param support for lalr1.cc.
5508
5509 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
5510 b4_cc_constructor_calls, b4_cc_constructor_call,
5511 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
5512 definitions.
5513 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
5514 parse-param arguments.
5515 (yy::b4_parser_class_name): Declare instance variables to
5516 hold parse-param arguments.
5517 * tests/calc.at: s/value/semantic_value/ because value clashes
5518 with a member of yy::b4_parser_class_name. Adjust C++ code
5519 to handle %parse-param. Enable %parse-param test in C++.
5520
55212003-05-12 Paul Eggert <eggert@twinsun.com>
5522
5523 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
5524 English a bit. Fix fclose typo. Change "const char" to "char
5525 const", and use ANSI C rather than K&R for "main". Suggest
5526 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
5527 and suggest yy_switch_to_buffer.
5528
55292003-05-05 Paul Eggert <eggert@twinsun.com>
5530
5531 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
5532 C89. This avoids a diagnostic on compilers that define __STDC__
5533 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
5534 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5535
55362003-05-03 Paul Eggert <eggert@twinsun.com>
5537
5538 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
5539 Do not overrun array bounds.
5540 This should fix a bug reported today by Olatunji Oluwabukunmi in
5541 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
5542
55432003-04-29 Akim Demaille <akim@epita.fr>
5544
5545 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
5546 * src/getargs.c, src/getargs.h: here, as bool, not int.
5547 (nondeterministic_parser): New.
5548 * src/parse-gram.y, src/scan-gram.l: Support
5549 %nondeterministic-parser.
5550 * src/output.c (prepare): Use nondeterministic_parser instead
5551 of glr_parser where appropriate.
5552 * src/tables.c (conflict_row, action_row, save_row)
5553 (token_actions, token_actions, pack_vector): Ditto.
5554
55552003-04-29 Akim Demaille <akim@epita.fr>
5556
5557 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
5558
55592003-04-29 Akim Demaille <akim@epita.fr>
5560
5561 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
5562 with %pure-parser and %locations to exercise the patch from Yakov
5563 Markovitch below.
5564
55652003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
5566
5567 * data/yacc.c: (b4_lex_param): Corrected for the case where
5568 %lex-param is provided and %pure-parser isn't.
5569
55702003-04-27 Paul Eggert <eggert@twinsun.com>
5571
5572 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
5573 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
5574 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
5575 if it is not defined.
5576 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
5577
55782003-04-26 Paul Eggert <eggert@twinsun.com>
5579
5580 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
5581 Declare to be of type suitable for the ninf value itself, not of
5582 type suitable for the corresponding table, since the latter might
5583 be unsigned but the ninf value might be negative. This fixes a
5584 bug reported by Alexandre Duret-Lutz in
5585 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
5586
5587 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
5588 invokes it. We shouldn't invoke it twice because it will attempt
5589 to put error.o in the archive twice. This fixes a glitch reported
5590 by Martin Mokrejs in
5591 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5592
55932003-04-21 Paul Eggert <eggert@twinsun.com>
5594
5595 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
5596 to gnulib.
5597
55982003-04-21 Yakov Markovitch <Markovitch@iso.ru>
5599
5600 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
5601 Fix obvious typo that results in uncompilable GLR parsers
5602 when both %pure-parser and %locations are used. (trivial change)
5603
56042003-04-17 Paul Eggert <eggert@twinsun.com>
5605
5606 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
5607 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
5608 Do not insert the expected token via unput, as this runs afoul
5609 of a POSIX-compatibility bug in flex 2.5.31.
5610 All uses changed to BEGIN the parent state,
5611 since we no longer insert the expected token via unput.
5612 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
5613 that is no longer emitted after the above change.
5614
5615 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
5616 the first one. This change is from Paul Hilfinger, and it fixes
5617 regression reported by Werner Lemberg in
5618 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5619
5620 (resolve_sr_conflict): Don't invoke state_errs_set
5621 unless one or more tokens have been explicitly made errors.
5622 Otherwise, the above change causes Bison to abort.
5623
5624 * tests/existing.at (GNU pic Grammar): New test case, taken from
5625 Lemberg's email.
5626
56272003-03-31 Akim Demaille <akim@epita.fr>
5628
5629 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
5630
56312003-03-31 Akim Demaille <akim@epita.fr>
5632
5633 * src/output.c (prepare_symbols): Avoid trailing spaces in the
5634 output.
5635
56362003-03-31 Akim Demaille <akim@epita.fr>
5637
5638 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
5639 From Paul Hilfinger.
5640
56412003-03-29 Akim Demaille <akim@epita.fr>
5642
5643 * m4/error.m4: Do not put under dynamic conditions some code which
5644 expansion is under static control.
5645
56462003-03-29 Akim Demaille <akim@epita.fr>
5647
5648 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
5649
56502003-03-29 Akim Demaille <akim@epita.fr>
5651
5652 * doc/bison.texinfo (Strings are Destroyed): New.
5653
56542003-03-13 Paul Eggert <eggert@twinsun.com>
5655
5656 * .cvsignore: Add configure.lineno.
5657 * src/.cvsignore: Add yacc.
5658 * tests/.cvsignore: Add testsuite.log.
5659 * doc/fdl.texi: Sync with latest FSF version.
5660
56612003-03-12 Paul Eggert <eggert@twinsun.com>
5662
5663 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
5664 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
5665 cursor, instead of leaving it undefined. This fixes a bug
5666 reported by Tim Van Holder in
5667 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
5668 * tests/input.at (Torturing the Scanner): Test the scanner on
5669 an empty input file, which was Tim Van Holder's test case.
5670
5671 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
5672 <sys/resource.h> can be included, include sys/time.h and
5673 sys/times.h first, if available. This works around the SunOS
5674 4.1.4 porting bug reported by Bruce Becker in
5675 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
5676
5677 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
5678 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
5679 AC_HEADER_SYS_WAIT.
5680
5681 Merge changes from gnulib. This was prompted because the CVS
5682 snapshot didn't build on Solaris 7 due to strnlen problems.
5683
5684 These changes need to be merged back into gnulib:
5685 * lib/hash.c: Include <stdbool.h> unconditionally.
5686 * m4/onceonly.m4 (m4_quote): New macro.
5687 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
5688 Quote AC_FOREACH variable-expansions properly.
5689 The 2003-01-03 obstack.h change also needs merging.
5690 {end of changes requiring merging}
5691
5692 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
5693 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
5694 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
5695 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
5696 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
5697 New files, imported from gnulib.
5698 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
5699 above.
5700
5701 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
5702 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
5703 gnulib sources.
5704
5705 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
5706 Add.
5707 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
5708 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
5709 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
5710 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
5711 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
5712 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
5713 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
5714 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
5715 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
5716 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
5717 (jm_PREREQ_ARGMATCH): Remove.
5718 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
5719 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
5720
5721 * src/system.h: Include <stdbool.h> unconditionally.
5722
5723 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
5724 assuming at least C89 in the bitset code for some time now.
5725
57262003-03-03 Akim Demaille <akim@epita.fr>
5727
5728 * ro.po: New.
5729
57302003-03-02 Akim Demaille <akim@epita.fr>
5731
5732 * doc/bison.texinfo (Table of Symbols): Reactivate the
5733 documentation for %lex-param, and %parse-param.
5734
57352003-03-02 Akim Demaille <akim@epita.fr>
5736
5737 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
5738 generate verbose error messages.
5739 Use the number of tokens as an upper bound in yytname, as it
5740 cannot be a non terminal.
5741
57422003-03-02 Akim Demaille <akim@epita.fr>
5743
5744 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
5745 message.
5746
57472003-03-02 Akim Demaille <akim@epita.fr>
5748
5749 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
5750 Use them to exercise yycheck overrun.
5751 Based on Andrew Suffield's grammar.
5752
57532003-03-02 Akim Demaille <akim@epita.fr>
5754
5755 Create tests/local.at for Bison generic testing macros.
5756
5757 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
5758 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
5759 This new file.
5760 * tests/calc.at (AT_CHECK_CALC): Adjust.
5761 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
5762 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
5763 * tests/local.at: here.
5764 (AT_COMPILE_CXX): Tags the tests using it as c++.
5765 Ignore the test if CXX is not functional.
5766
57672003-03-01 Paul Eggert <eggert@twinsun.com>
5768
5769 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
5770 not loc->end, since loc->end might contain garbage and this leads
5771 to undefined behavior on some platforms.
5772 (id_loc, token_start): Use (IF_LINTed) initial values that do not
5773 depend on *loc, so that the reader doesn't give the the false
5774 impression that *loc is initialized.
5775 (<INITIAL>"%%"): Do not bother setting code_start, since its value
5776 does not survive the return.
5777
57782003-03-01 Akim Demaille <akim@epita.fr>
5779
5780 * src/scan-gram.l (code_start): Always initialize it when entering
5781 into yylex, as SC_EPILOGUE is activated *before* the corresponding
5782 yylex invocation. An alternative would be making it static, but
5783 then it starts with the second %%'s beginning, instead of its end.
5784
57852003-02-28 Paul Eggert <eggert@twinsun.com>
5786
5787 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
5788 around a UnixWare 7.1.1 porting bug reported by John Hughes in
5789 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
5790
57912003-02-26 Paul Eggert <eggert@twinsun.com>
5792
5793 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
5794 Remove Sequent/Pyramid discussion (nobody uses them any more).
5795 Merge VMS and MS-DOS discussion; these ports may well be dead
5796 but let's keep mentioning them for now. Put <> around email
5797 addresses. Add copyright notice.
5798
57992003-02-24 Paul Eggert <eggert@twinsun.com>
5800
5801 * data/glr.c (yy_reduce_print): yylineno -> yylno,
5802 to avoid collision with flex use of yylineno.
5803 Problem reported by Bruce Lilly in
5804 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
5805 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
5806 * data/yacc.c (yy_reduce_print): Likewise.
5807
5808 * config/depcomp: Sync with Automake 1.7.3.
5809
58102003-02-21 Akim Demaille <akim@epita.fr>
5811
5812 * data/lalr1.cc: Use temporary variables instead of casts to
5813 change integer types.
5814 Suggested by Paul Eggert.
5815
58162003-02-21 Akim Demaille <akim@epita.fr>
5817
5818 * doc/bison.texinfo: Use "location" consistently to refer to @n,
5819 to avoid confusions with lalr1.cc's notion of Position.
5820 Suggested by Paul Eggert.
5821
58222003-02-20 Akim Demaille <akim@epita.fr>
5823
5824 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
5825 before initial_columns.
5826 (location.hh): Use consistent variable names when defining the
5827 operator<<.
5828 Use "last" so that we subtract from Positions, not from unsigned.
5829
58302003-02-20 Akim Demaille <akim@epita.fr>
5831
5832 * data/lalr1.cc (position.hh): New subfile, including the extended
5833 and Doxygen'ed documentation of class Position.
5834 (location.hh): Use it.
5835 Document a` la Doxygen.
5836 With the help of Benoit Perrot.
5837
58382003-02-20 Akim Demaille <akim@epita.fr>
5839
5840 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
5841 AT_YACC_IF.
5842 Redefine AT_YYERROR_SEES_LOC_IF using it.
5843 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
5844 not defined.
5845 Don't use the location in yy::Parser::error_ and
5846 yy::Parser::print_ when not %locations.
5847 Activate more lalr1.cc tests.
5848
58492003-02-19 Akim Demaille <akim@epita.fr>
5850
5851 * data/lalr1.cc: When displaying a line number, be sure to make it
5852 an int.
5853
58542003-02-19 Akim Demaille <akim@epita.fr>
5855
5856 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
5857 Remove, useless.
5858 (YYABORT, YYACCEPT, YYERROR): New.
5859 * tests/calc.at: Renable the lalr1.cc test.
5860
58612003-02-19 Akim Demaille <akim@epita.fr>
5862
5863 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
5864 error recovery, mixing with/without pops and discarding of the
5865 lookahead.
5866 Exercise YYERROR.
5867 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
5868
58692003-02-17 Paul Eggert <eggert@twinsun.com>
5870
5871 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
5872 * tests/testsuite.at (AT_COMPILE): Use them.
5873 This fixes the testsuite problem reported by Robert Lentz in
5874 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
5875
58762003-02-12 Paul Eggert <eggert@twinsun.com>
5877
5878 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
5879 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
5880 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
5881 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
5882 Check for malloc failure, for consistency with yacc.c.
5883 (yytname_size): Remove, for consistency with yacc.c.
5884
5885 The bug still remains in data/lalr1.cc, as I didn't have time
5886 to fix it there.
5887
58882003-02-06 Akim Demaille <akim@epita.fr>
5889
5890 * configure.ac (GXX): Rename as...
5891 (CXX): this, to keep the original Autoconf semantics.
5892 Require 2.57.
5893 * data/lalr1.cc: Fix b4_copyright invocations.
5894 If YYDEBUG is not defined, don't depend upon name_ being defined.
5895 (location.hh): Include string and iostream.
5896 (Position::filename): New member.
5897 (Position::Position ()): New.
5898 (operator<< (Position)): New.
5899 (operator- (Position, int)): New.
5900 (Location::first, Location::last): Rename as...
5901 (Location::begin, Location::end): these, to mock the conventional
5902 iterator names.
5903 (operator<< (Location)): New.
5904 * tests/atlocal.in (CXX): New.
5905 * tests/testsuite.at (AT_COMPILE_CXX): New.
5906 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
5907 locations in a more synthetic way.
5908 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
5909 lalr1.cc is used.
5910 Adjust the C locations to match those from Emacs: first column is
5911 column 0.
5912 Change all the expected results.
5913 Conform to the GCS: simplify the locations when applicable.
5914 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
5915 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
5916 these CPP macros with the m4 macros new defined by...
5917 (AT_CHECK_PUSHDEFS): this, i.e.:
5918 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
5919 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
5920 New macros.
5921 (AT_CHECK_POPDEFS): Undefine them.
5922 (AT_CHECK_CALC_LALR1_CC): New.
5923 Use it for the first lalr1.cc test.
5924
59252003-02-04 Akim Demaille <akim@epita.fr>
5926
5927 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
5928 Location as is defined.
5929
59302003-02-04 Akim Demaille <akim@epita.fr>
5931
5932 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
5933 name_ being defined.
5934
59352003-02-03 Paul Eggert <eggert@twinsun.com>
5936
5937 * src/gram.h (start_symbol): Remove unused decl.
5938
5939 Use more-consistent naming conventions for local vars.
5940
5941 * src/derives.c (derives_compute): Change type of local var from
5942 int to rule_number.
5943 * src/gram.c (grammar_rules_partial_print): Likewise.
5944 * src/print.c (print_core): Likewise.
5945 * src/reduce.c (reduce_grammar_tables): Likewise.
5946
5947 * src/gram.c (grammar_dump): Change name of item_number *
5948 local var from r to rp.
5949 * src/nullable.c (nullable_compute): Likewise.
5950
5951 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
5952
5953 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
5954 for symbol or symbol_number var.
5955 * src/reader.c (grammar_start_symbol_set): Likewise.
5956 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
5957 Likewise.
5958 * src/state.c (transitions_to): Likewise.
5959 * src/state.h: Likewise.
5960 * src/tables.c (symbol_number_to_vector_number): Likewise.
5961
5962 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
5963 char * var.
5964
5965 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
5966 var.
5967
5968 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
5969 var.
5970
5971 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
5972 Use str, not s, for char * var. Use ch, not c, for character var.
5973 Use size for size var.
5974
5975 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
5976 char * var.
5977 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
5978 uniqstr var.
5979 * src/uniqstr.h: Likewise.
5980
5981 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
5982 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
5983 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
5984 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
5985 param to have same name as that of enum, so that we don't use
5986 "s" to stand for a non-state.
5987
59882003-02-02 Akim Demaille <akim@epita.fr>
5989
5990 * src/scan-skel.l: Scan more than one inert character per yylex
5991 invocation.
5992
59932003-02-01 Paul Eggert <eggert@twinsun.com>
5994
5995 Version 1.875a.
5996
5997 * po/LINGUAS: Add ms.
5998
59992003-01-30 Akim Demaille <akim@epita.fr>
6000
6001 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
6002
60032003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6004
6005 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
6006 of $1.
6007
6008 Changes in response to error report by S. Eken: GLR mode does not
6009 handle negative $ indices or $ indices in embedded rules correctly.
6010 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
6011
6012 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
6013 (b4_rhs_location): Ditto.
6014 (yyfill): New function to copy from stack tree into array
6015 incrementally.
6016 (yyuserAction): Modify to allow incremental move of semantic values
6017 to rhs array when in GLR mode.
6018 Define YYFILL to use in user-defined actions to fill semantic array
6019 as needed.
6020 Remove dummy use of yystack, as there is now a guaranteed use.
6021 (yydoAction): Modify to allow incremental move of semantic values
6022 to rhs array when in GLR mode.
6023 (yyresolveAction): Ditto.
6024 (yyglrShiftDefer): Update comment.
6025 (yyresolveStates): Use X == NULL for pointers, not !X.
6026 (yyglrReduce): Ditto.
6027 (yydoAction): Ditto
6028
6029 * tests/glr-regr1.at: Rename to ...
6030 * tests/glr-regression.at: Add new regression test for the problems
6031 described above (adapted from S. Eken).
6032 Update copyright notice.
6033 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
6034 * tests/Makefile.am: Ditto.
6035
60362003-01-28 Paul Eggert <eggert@twinsun.com>
6037
6038 * data/lalr1.cc: Do not use @output_header_name@ unless
6039 b4_defines_flag is set. This fixes two bugs reported by
6040 Tim Van Holder in
6041 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
6042 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6043
60442003-01-21 Paul Eggert <eggert@twinsun.com>
6045
6046 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
6047 we don't need to worry about yyerrlab1 being reported as an
6048 "unused label" by non-GCC C compilers. The downside is that if
6049 locations are used then a couple of statements are duplicated each
6050 time YYERROR is invoked, but the upside is that the warnings
6051 should vanish.
6052 (yyerrlab1): Move code to YERROR.
6053 (yyerrlab2): Remove. Change uses back to yyerrlab1.
6054 This reverts some of the 2002-12-27 change.
6055
60562003-01-17 Paul Eggert <eggert@twinsun.com>
6057
6058 * src/output.c (symbol_printers_output): Fix typo that led
6059 to core dump. Problem reported by Antonio Rus in
6060 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
6061
60622003-01-13 Akim Demaille <akim@epita.fr>,
6063 Quoc Peyrot <chojin@lrde.epita.fr>,
6064 Robert Anisko <anisko_r@lrde.epita.fr>
6065
6066 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
6067 when the stacks contain one element, as the loop would otherwise
6068 free the last state, and then use the top state (the one we just
6069 popped). This means that the initial elements will not be freed
6070 explicitly, as is the case in yacc.c; it is not a problem, as
6071 these elements have fake values.
6072
60732003-01-11 Paul Eggert <eggert@twinsun.com>
6074
6075 * NEWS: %expect-violations are now just warnings, reverting
6076 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
6077 bootstrapping problem reported by Matthias Klose; see
6078 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
6079 * src/conflicts.c (conflicts_print): Likewise.
6080 * tests/conflicts.at (%expect not enough, %expect too much,
6081 %expect with reduce conflicts): Likewise.
6082 * doc/bison.texinfo (Expect Decl): Document this. Also mention
6083 that the warning is enabled if the number of conflicts changes
6084 (not necessarily increases).
6085
6086 * src/getargs.c (version): Update copyright year.
6087
60882003-01-09 Akim Demaille <akim@epita.fr>
6089
6090 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
6091
60922003-01-08 Paul Eggert <eggert@twinsun.com>
6093
6094 * Makefile.maint (WGETFLAGS):
6095 New macro, containing "-C off" to disable proxy caches.
6096 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
6097 (rel-check): Use $(WGET) instead of wget.
6098
60992003-01-06 Paul Eggert <eggert@twinsun.com>
6100
6101 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
6102 the GLR paper of Scott, Johnstone and Hussain.
6103
61042003-01-04 Paul Eggert <eggert@twinsun.com>
6105
6106 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
6107 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
6108 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
6109 (EXTRA_LIBRARIES): New var, for liby.a.
6110 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
6111 (EXTRA_SCRIPTS): New var, for yacc.
6112
6113 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
6114 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
6115 Problem reported by Nelson H. F. Beebe.
6116
61172003-01-03 Paul Eggert <eggert@twinsun.com>
6118
6119 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
6120 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
6121 when compiling Bison 1.875's `bitset bset = obstack_alloc
6122 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
6123
6124 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
6125 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
6126 grow to a huge size with typical invocation.
6127
6128 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
6129 Use the pattern recommended by Autoconf 2.57, except also protect
6130 against double-definition.
6131 * src/system.h: Likewise.
6132 Portability issues reported by Nelson H. F. Beebe.
6133
6134 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
6135 All uses changed. Provide a definition in both C and C++.
6136 (yytrue, yyfalse): Define even if defined (__cplusplus).
6137
6138 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
6139 Reported by Nelson H. F. Beebe.
6140
6141 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
6142
61432003-01-02 Paul Eggert <eggert@twinsun.com>
6144
6145 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
6146 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
6147 Bug reported by Nelson H. F. Beebe.
6148
61492003-01-01 Paul Eggert <eggert@twinsun.com>
6150
6151 * Version 1.875.
6152
61532002-12-30 Paul Eggert <eggert@twinsun.com>
6154
6155 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
6156 Moved here from...
6157 (<INITIAL>","): Here. This causes stray "," to be treated
6158 more uniformly.
6159
6160 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
6161 last brace in braced code when not in Yacc mode, for compatibility
6162 with Bison 1.35. This resurrects the 2001-12-15 patch to
6163 src/reader.c.
6164
6165 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
6166 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
6167
61682002-12-28 Paul Eggert <eggert@twinsun.com>
6169
6170 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
6171 that of SYM's type. This fixes Debian bug 168069, reported by
6172 Thomas Olsson.
6173
61742002-12-28 Paul Eggert <eggert@twinsun.com>
6175
6176 Version 1.75f.
6177
6178 Switch back to the Yacc style of conflict reports, undoing some
6179 of the 2002-07-30 change.
6180 * doc/bison.texinfo (Understanding): Use Yacc style for
6181 conflict reports. Also, use new way of locating rules.
6182 * src/conflicts.c (conflict_report):
6183 Renamed from conflict_report_yacc, removing the old
6184 'conflict_report'. Translate the entire conflict report at once,
6185 so that we don't assume that "," has the same interpretation in
6186 all languages.
6187 (conflicts_output): Use Yacc-style conflict report for each state,
6188 instead of our more-complicated style.
6189 (conflicts_print): Use Yacc-style conflict report, except print
6190 the input file name when not emulating Yacc.
6191 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
6192 Conflicted Reduction, %expect not enough, %expect too much,
6193 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
6194 * tests/existing.at (GNU Cim Grammar): Likewise.
6195 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
6196
6197 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
6198 fatal): Don't invoke fflush; it's not needed and it might even be
6199 harmful for stdout, as stdout might not be open.
6200 * src/reduce.c (reduce_print): Likewise.
6201
62022002-12-27 Paul Eggert <eggert@twinsun.com>
6203
6204 Fix a bug where error locations were not being recorded correctly.
6205 This problem was originally reported by Paul Hilfinger in
6206 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
6207
6208 * data/yacc.c (yyparse): New local var yylerrsp, to record the
6209 top of the location stack's error locations.
6210 (yyerrlab): Set it. When discarding a token, push its location
6211 onto yylerrsp so that we don't lose track of the error's end.
6212 (yyerrlab1): Now is only the target of YYERROR, so that we can
6213 properly record the location of the action that failed. For GCC
6214 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
6215 GCC warning about yyerrlab1 being unused if YYERROR is unused.
6216 (yyerrlab2): New label, which yyerrlab now falls through to.
6217 Compute the error's location by applying YYLLOC_DEFAULT to
6218 the locations of all the symbols that went into the error.
6219 * doc/bison.texinfo (Location Default Action): Mention that
6220 YYLLOC_DEFAULT is also invoked for syntax errors.
6221 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
6222 Error locations include the locations of all the tokens that were
6223 discarded, not just the last token.
6224
62252002-12-26 Paul Eggert <eggert@twinsun.com>
6226
6227 * src/files.c: Include quote.h.
6228 (compute_output_file_names): Warn if we detect conflicting
6229 outputs to the same file. This should catch the misunderstanding
6230 exemplified by Debian Bug 165349, reported by Bruce Stephens..
6231
6232 * src/conflicts.c (conflicts_print): If the user specifies
6233 "%expect N", report an error if there are any reduce/reduce
6234 conflicts. This is what the manual says should happen.
6235 This fixes Debian bug 130890, reported by Anthony DeRobertis.
6236 * tests/conflicts.at (%expect with reduce conflicts): New test.
6237
6238 Don't use m4_include on relative file names, as it doesn't work as
6239 desired if there happens to be a file with that name under ".".
6240
6241 * m4sugar/version.m4: Remove; it was included but it wasn't used.
6242 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
6243 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
6244 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
6245 * src/output.c (output_skeleton): Use full path names when
6246 specifying a file to include; don't rely on include path, as
6247 it's unreliable when the working file contains a file with
6248 that name.
6249
62502002-12-25 Paul Eggert <eggert@twinsun.com>
6251
6252 Remove obsolete references to bison.simple and bison.hairy.
6253 Problem mentioned by Aubin Mahe in
6254 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
6255 * data/glr.c: Comment fix.
6256 * doc/bison.1: Remove references. Also, mention "yacc".
6257
6258 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
6259 with -g option.
6260
6261 * src/parse-gram.y (declaration): Use enum "report_states" rather
6262 than its numeric value 1.
6263
6264 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
6265 opening a new one. This fixes Debian bug 165349, reported by
6266 Bruce Stephens.
6267
62682002-12-24 Paul Eggert <eggert@twinsun.com>
6269
6270 Version 1.75e.
6271
6272 * Makefile.maint (cvs-update): Don't assume that the shell
6273 supports $(...), as Solaris sh doesn't.
6274
6275 * src/parse-gram.y (lloc_default): Remove test for empty
6276 nonterminals at the end, since it didn't change the result.
6277
62782002-12-24 Paul Eggert <eggert@twinsun.com>
6279
6280 If the user does not define YYSTYPE as a macro, Bison now declares it
6281 using typedef instead of defining it as a macro. POSIX requires this.
6282 For consistency, YYLTYPE is also declared instead of defined.
6283
6284 %union directives can now have a tag before the `{', e.g., the
6285 directive `%union foo {...}' now generates the C code
6286 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
6287 The default union tag is `YYSTYPE', for compatibility with Solaris 9
6288 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
6289 instead of `yyltype'.
6290
6291 `yystype' and `yyltype' are now obsolescent macros instead of being
6292 typedefs or tags; they are no longer documented and will be
6293 withdrawn in a future release.
6294
6295 * data/glr.c (b4_location_type): Remove.
6296 (YYSTYPE): Renamed from yystype.
6297 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
6298 (struct YYLTYPE): Renamed from struct yyltype.
6299 (YYLTYPE): Renamed from yyltype.
6300 (yyltype, yystype): New (and obsolescent) macros,
6301 for backward compatibility.
6302 * data/yacc.c: Likewise.
6303
6304 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
6305 does not specify a union tag. This is for compatibility with
6306 Solaris 9 yacc.
6307
6308 * src/parse-gram.y (add_param): 2nd arg is now char * not char
6309 const *, since it is now modified by stripping surrounding { }.
6310 (current_braced_code): Remove.
6311 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
6312 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
6313 trailing " {...}". Now of type <chars>.
6314 (grammar_declaration): Adjust to bundled tokens.
6315 (code_content): Remove; stripping is now done by add_param.
6316 (print_token_value): Print contents of bundled tokens.
6317 (token_name): New function.
6318
6319 * src/reader.h (braced_code, current_braced_code): Remove.
6320 (token_name): New decl.
6321
6322 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
6323 token_type, not braced_code code_kind. All uses changed.
6324 (SC_PRE_CODE): New state, for scanning after a keyword that
6325 has (or usually has) an immediately-following braced code.
6326 (token_type): New local var, to keep track of which token type
6327 to return when scanning braced code.
6328 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
6329 <INITIAL>"%parse-param", <INITIAL>"%printer",
6330 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
6331 instead of returning a token type immediately.
6332 (<INITIAL>"{"): Set token type.
6333 (<SC_BRACED_CODE>"}"): Use it.
6334 (handle_action_dollar, handle_action_at): Now returns bool
6335 indicating success. Fail if ! current_rule; this prevents a core dump.
6336 (handle_symbol_code_dollar, handle_symbol_code_at):
6337 Remove; merge body into caller.
6338 (handle_dollar, handle_at): Complain in invalid contexts.
6339
6340 * NEWS, doc/bison.texinfo: Document the above.
6341 * NEWS: Fix years and program names in copyright notice.
6342
63432002-12-17 Paul Eggert <eggert@twinsun.com>
6344
6345 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
6346 Reporting, Table of Symbols): Omit mentions of %lex-param and
6347 %parse-param from the documentation for now.
6348
63492002-12-15 Paul Eggert <eggert@twinsun.com>
6350
6351 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
6352 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
6353 lookahead symbol, and which sets yychar in parser actions) and it
6354 disagreed with the Bison documentation. Bug
6355 reported by Andrew Walrond.
6356
6357 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
6358 as the caller now does that.
6359 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
6360 (YYEMPTY): Parenthesize right hand side, since others use it.
6361 (yyparse): Don't assume that our generated code is the only code
6362 that sets yychar.
6363
63642002-12-13 Paul Eggert <eggert@twinsun.com>
6365
6366 Version 1.75d.
6367
6368 POSIX requires a "yacc" command.
6369 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
6370 (MOSTLYCLEANFILES): Add yacc.
6371 (yacc): New rule.
6372 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
6373 as an alias for bison y.
6374
6375 * po/LINGUAS: Add da.
6376
6377 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
6378 problem with latest <getopt.h>.
6379 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
6380
6381 * doc/fdl.texi: Upgrade to 1.2.
6382 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
6383 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
6384 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
6385 gnulib.
6386 * config/install-sh: Sync with autotools.
6387
6388 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
6389 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
6390 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
6391 locations are requested.
6392 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
6393 locations are requested.
6394
63952002-12-12 Paul Eggert <eggert@twinsun.com>
6396
6397 Remove unportable casts and storage allocation tricks.
6398 While we're at it, remove almost all casts, since they
6399 usually aren't needed and are a sign of trouble.
6400
6401 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
6402
6403 * src/derives.c (derives_compute): Do not subtract NTOKENS from
6404 the pointer DSET returned by malloc; this isn't portable.
6405 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
6406 Similarly for DERIVES.
6407 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
6408 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
6409 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
6410
6411 * src/derives.c (derives_compute): Do not bother invoking
6412 int_of_rule_number, since rule numbers are integers.
6413
6414 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
6415 rather than XMALLOC (char, N).
6416
6417 * src/files.c (filename_split): Rewrite to avoid cast.
6418
6419 * src/gram.h (symbol_number_as_item_number,
6420 item_number_as_symbol_number, rule_number_as_item_number,
6421 item_number_as_rule_number):
6422 Now inline functions rather than macros, to avoid casts.
6423 * src/state.h (state_number_as_int): Likewise.
6424 * src/tables.c (state_number_to_vector_number,
6425 symbol_number_to_vector_number): Likewise.
6426
6427 * src/gram.h (int_of_rule_number): Remove; no longer used.
6428
6429 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
6430 since the resulting storage is always stored into.
6431
6432 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
6433 where it's needed.
6434
6435 * src/muscle_tab.c (muscle_m4_output):
6436 Now inline. Return bool, not int.
6437 * src/state.c (state_compare): Likewise.
6438 * src/symtab.c (symbol_check_defined,
6439 symbol_check_alias_consistency, symbol_pack, symbol_translation,
6440 hash_compare_symbol, hash_symbol):
6441 Likewise.
6442 * src/uniqstr.c (uniqstr_print): Likewise.
6443 * src/muscle_tab.c (muscle_m4_output_processor):
6444 New function, to avoid casts.
6445 * src/state.c (state_comparator, stage_hasher): Likewise.
6446 * src/symtab.c (symbol_check_defined_processor,
6447 symbol_check_alias_consistency_processor, symbol_pack_processor,
6448 symbol_translation_processor, hash_symbol_comparator,
6449 hash_symbol_hasher): Likewise.
6450 * src/uniqstr.c (uniqstr_print_processor): Likewise.
6451 * src/muscle_tab.c (muscles_m4_output):
6452 Use new functions instead of casting old functions unportably.
6453 * src/state.c (state_hash_new): Likewise.
6454 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
6455 symbols_token_translations_init):
6456 Likewise.
6457 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
6458
6459 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
6460 var instead of casting to long, to avoid casts.
6461 (prepare_states): Use MALLOC rather than alloca, so that we don't
6462 have to worry about alloca.
6463 * src/state.c (state_hash_lookup): Likewise.
6464
6465 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
6466 local var instead of casting to unsigned char, to avoid casts.
6467
6468 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
6469 STATE_ALLOC): Remove.
6470 (transitions_new, errs_new, reductions_new, state_new): Use malloc
6471 rather than calloc, and use offsetof to avoid allocating slightly
6472 too much storage.
6473 (state_new): Initialize all members.
6474
6475 * src/state.c (state_hash): Use unsigned accumulator, not signed.
6476
6477 * src/symtab.c (symbol_free): Remove; unused.
6478 (symbol_get): Remove cast in lhs of assignment.
6479 (symbols_do): Now static. Accept generic arguments, not
6480 hashing-related ones.
6481
6482 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
6483 (symbol_processor): Remove.
6484 (symbols_do): Remove decl; now static.
6485
6486 * src/system.h (alloca): Remove; decl no longer needed.
6487 (<stddef.h>): Include, for offsetof.
6488 (<inttypes.>, <stdint.h>): Include if available.
6489 (uintptr_t): New type, if system lacks it.
6490 (CALLOC, MALLOC, REALLOC): New macros.
6491 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
6492 new macros.
6493
6494 * src/tables.c (table_size): Now int, to pacify GCC.
6495 (table_grow, table_ninf_remap): Use signed table size.
6496 (save_row): Don't bother initializing locals when not needed.
6497 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
6498 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
6499
6500 * src/vcg.h: Correct misspellings.
6501
6502 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
6503
6504
6505 * src/getargs.c (getargs): Don't assume EOF == -1.
6506
65072002-12-09 Paul Eggert <eggert@twinsun.com>
6508
6509 Change identifier spellings to avoid collisions with names
6510 that are reserved by POSIX.
6511
6512 Don't use names ending in _t, since POSIX reserves them.
6513 For consistency, remove _e and _s endings -- they're weren't
6514 needed to remove ambiguity. All uses changed.
6515 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
6516 turn was just renamed from struniq_t.
6517 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
6518 which in turn was just renamed from struniq_processor_t.
6519 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
6520 in turn was renamed from hash_compare_struniq_t.
6521 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
6522 (state_list): Renamed from state_list_t.
6523 * src/assoc.h (assoc): Renamed from assoc_t.
6524 * src/conflicts.c (enum conflict_resolution): Renamed from
6525 enum conflict_resolution_e.
6526 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
6527 (rule_list): Renamed from rule_list_t.
6528 * src/getargs.h (enum trace): Renamed from enum trace_e.
6529 (enum report): Renamed from enum report_e.
6530 * src/gram.h (item_number): Renamed from item_number_t.
6531 (rule_number): Renamed from rule_number_t.
6532 (struct rule_s): Remove the "rule_s" part; not used.
6533 (rule): Renamed from rule_t.
6534 (rule_filter): Renamed from rule_filter_t.
6535 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
6536 (goto_list): Renamed from goto_list_t.
6537 * src/lalr.h (goto_number): Renamed from goto_number_t.
6538 * src/location.h (location): Renamed from location_t.
6539 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
6540 and moved here from:
6541 * src/muscle_tab.h (muscle_entry_t): here.
6542 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
6543 (rule_list): Renamed from rule_list_t.
6544 * src/print_graph.c (static_graph): Renamed from graph.
6545 * src/reader.h (braced_code): Renamed from braced_code_t.
6546 Remove brace_code_e tag.
6547 * src/relation.h (relation_node): Renamed from relation_node_t.
6548 (relation_nodes): Renamed from relation_nodes_t.
6549 (relation): Renamed from relation_t.
6550 * src/state.h (state_number): Renamed from state_number_t.
6551 (struct state): Renamed from struct state_s.
6552 (state): Renamed from state_t.
6553 (transitions): Renamed from transitions_t. Unused (and
6554 misspelled) transtion_s tag removed.
6555 (errs): Renamed from errs_t. Unused errs_s tag removed.
6556 (reductions): Renamed from reductions_t. Unused tag
6557 reductions_s removed.
6558 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
6559 (struct symbol_list): Renamed from struct symbol_list_s.
6560 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
6561 (struct symbol): Renamed from struct symbol_s.
6562 (symbol): Renamed from symbol_t.
6563 * src/tables.c (vector_number): Renamed from vector_number_t.
6564 (action_number): Renamed from action_t.
6565 * src/tables.h (base_number): Renamed from base_t.
6566 * src/vcg.h (enum color): Renamed from enum color_e.
6567 (enum textmode): Renamed from enum textmode_e.
6568 (enum shape): Renamed from enum shape_e.
6569 (struct colorentry): Renamed from struct colorentry_s.
6570 (struct classname): Renamed from struct classname_s.
6571 (struct infoname): Renamed from struct infoname_s.
6572 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
6573 (enum decision): Renamed from enum decision_e.
6574 (enum orientation): Renamed from enum orientation_e.
6575 (enum alignment): Renamed from enum alignment_e.
6576 (enum arrow_mode): Renamed from enum arrow_mode_e.
6577 (enum crossing_type): Renamed from enum crossing_type_e.
6578 (enum view): Renamed from enum view_e.
6579 (struct node): Renamed from struct node_s.
6580 (node): Renamed from node_t.
6581 (enum linestyle): Renamed from enum linestyle_e.
6582 (enum arrowstyle): Renamed from enum arrowstyle_e.
6583 (struct edge): Renamed from struct edge.
6584 (edge): Renamed from edge_t.
6585 (struct graph): Renamed from struct graph_s.
6586 (graph): Renamed from graph_t.
6587 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
6588 Rename value_t -> value.
6589 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
6590 value_t_as_yystype -> value_as_yystype.
6591
6592 Don't include <errno.h> in the mainstream code, since it
6593 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
6594 * lib/get-errno.c, lib/get-errno.h: New files.
6595 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
6596 get-errno.c.
6597 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
6598 * src/output.c (output_skeleton): Likewise.
6599 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
6600 instead of errno.
6601 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
6602 Likewise.
6603 (handle_action_dollar, handle_action_at): Likewise.
6604 * src/system.h: Do not include <errno.h>.
6605 (TAB_EXT): Renamed from EXT_TAB.
6606 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
6607
6608 Avoid str[a-z]*, since <string.h> reserves that name space.
6609 Change all instances of "struniq" in names to "uniqstr", and
6610 likewise for "STRUNIQ" and "UNIQSTR".
6611 * src/uniqstr.c: Renamed from src/struniq.c.
6612 * src/uniqstr.h: Renamed from src/struniq.h.
6613 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
6614 * src/files.c (strsuffix): Remove; unused.
6615 (concat2): Renamed from stringappend. Now static.
6616 * src/files.h (strsuffix, stringappend): Remove; unused.
6617 * src/parse-gram.y (<chars>): Renamed from <string>.
6618 (<uniqstr>): Renamed from <struniq>.
6619 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
6620 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
6621 (struct graph_s.expand): Renamed from struct graph_s.stretch.
6622 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
6623 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
6624 (N_EXPAND): Renamed from N_STRETCH.
6625
6626 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
6627 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
6628 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
6629 Remove; unused.
6630 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
6631 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
6632 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
6633 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
6634 (BASE_MAXIMUM): Renamed from BASE_MAX.
6635 (BASE_MINIMUM): Renamed from BASE_MIN.
6636 (ACTION_MAX): Remove; unused.
6637 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
6638 Unnecessary casts removed from above defines.
6639
6640
6641 Fix misspelling in names.
6642 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
6643 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
6644 G_NODE_ALIGNEMENT.
6645
6646
6647 * lib/timevar.c (timevar_report): Renamed from time_report,
6648 for consistency with other names.
6649 * lib/timevar.h (timevar_report): New decl.
6650 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
6651
6652
6653 Sort include-file uses.
6654
6655 Reorder all include files under src to be in the order "system.h".
6656 then the ../lib include files in angle brackets (alphabetized),
6657 then the . include files in double-quotes (alphabetized). Fix
6658 dependency breakages encountered in this process, as follows:
6659 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
6660 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
6661 * src/state.h: Include "symtab.h".
6662
66632002-12-08 Paul Eggert <eggert@twinsun.com>
6664
6665 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
6666 since this causes problems when __file__ contains character
6667 sequences like "@" that are treated specially by src/scan-skel.l.
6668 Instead, just use the file's basename. This fixes the bug
6669 reported by Martin Mokrejs in
6670 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
6671
66722002-12-06 Paul Eggert <eggert@twinsun.com>
6673
6674 Add support for rules that do not have trailing semicolons, as
6675 POSIX requires. Improve the quality of locations in Bison
6676 diagnostics.
6677
6678 * src/location.c: Include <quotearg.h>.
6679 (empty_location): Now const.
6680 (location_print): New function. Follow the recommendation of the
6681 GNU Coding Standards for locations that span file boundaries.
6682 * src/location.h: Do not include <quotearg.h>; no longer needed.
6683 (boundary): New type.
6684 (location_t): Use it. This allows locations to span file boundaries.
6685 All member uses changed: file -> start.file or end.file (as needed),
6686 first_line -> start.line, first_column -> start.column,
6687 last_line -> end.line, last_column -> end.column.
6688 (equal_boundaries): New function.
6689 (LOCATION_RESET, LOCATION_STEP): Remove.
6690 (LOCATION_PRINT): Remove. All callers changed to use location_print.
6691 (empty_location): Now const.
6692 (location_print): New decl.
6693 * src/parse-gram.y (lloc_default): New function, which handles
6694 empty locations more accurately.
6695 (YYLLOC_DEFAULT): Use it.
6696 (%token COLON): Remove.
6697 (%token ID_COLON): New token.
6698 (rules): Use it.
6699 (declarations, rules): Remove trailing semicolon.
6700 (declaration, rules_or_grammar_declaration):
6701 Allow empty (";") declaration.
6702 (symbol_def): Remove empty actions; no longer needed.
6703 (rules_or_grammar_declaration): Remove trailing semicolon.
6704 (semi_colon.opt): Remove.
6705 * src/reader.h: Include location.h.
6706 (scanner_cursor): New decl.
6707 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
6708 rolling our own.
6709 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
6710 of *loc.
6711 (STEP): Remove. No longer needed, now that adjust_location does
6712 the work. All uses removed.
6713 (scanner_cursor): New var.
6714 (adjust_location): Renamed from extend_location. It now sets
6715 *loc and adjusts the scanner cursor. All uses changed.
6716 Don't bother testing for CR.
6717 (handle_syncline): Remove location arg; now updates scanner cursor.
6718 All callers changed.
6719 (unexpected_end_of_file): Now accepts start boundary of token or
6720 comment, not location. All callers changed. Update scanner cursor,
6721 not the location.
6722 (SC_AFTER_IDENTIFIER): New state.
6723 (context_state): Renamed from c_context. All uses changed.
6724 (id_loc, code_start, token_start): New local vars.
6725 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
6726 processing of Yacc white space and equivalents here.
6727 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
6728 instead of returning ID immediately, since we need to search for
6729 a subsequent colon.
6730 (<INITIAL>"'", "\""): Save token_start.
6731 (<INITIAL>"%{", "{", "%%"): Save code_start.
6732 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
6733 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
6734 BEGIN context_state at end, not INITIAL.
6735 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
6736 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
6737 Return correct token start.
6738 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
6739 the start of a character, string or multiline comment is found.
6740 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
6741 Reduction): Adjust reported locations to match the more-precise
6742 results now expected.
6743 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
6744 * tests/reduce.at (Useless Rules, Reduced Automaton,
6745 Underivable Rules): Likewise.
6746 * tests/regression.at (Invalid inputs): No longer `expecting ";"
6747 or "|"' now that so many other tokens are allowed by the new grammar.
6748
6749 * src/complain.h (current_file): Remove duplicate decl;
6750 current_file is now owned by files.h.
6751 * src/complain.c, src/scan-gram.l: Include files.h.
6752
67532002-12-06 Paul Eggert <eggert@twinsun.com>
6754
6755 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
6756 promotes to int; it might be unsigned int.
6757 * data/yacc.c (yy_reduce_print): Likewise.
6758
6759 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
6760 be #defined in the prologue, not in the Bison declarations.
6761 This fixes Debian Bug 102878, reported by Shaul Karl.
6762
67632002-12-02 Paul Eggert <eggert@twinsun.com>
6764
6765 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
6766 * lib/strtoul.c: New file, from gnulib.
6767 This fixes a porting bug reported by Peter Klein in
6768 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
6769
67702002-11-30 Paul Eggert <eggert@twinsun.com>
6771
6772 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
6773 and put only a forward declaration in the prologue. This is for
6774 consistency with the other scanner helper functions.
6775
6776 Type clashes now generate warnings, not errors, since it
6777 appears that POSIX may allow some grammars with type clashes.
6778 * src/reader.c (grammar_current_rule_check): Warn about
6779 type clashes instead of complaining.
6780 * tests/input.at (Type Clashes): Expect warnings, not complaints.
6781
6782 Add Yacc library, since POSIX requires it.
6783 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
6784 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
6785 * lib/main.c, lib/yyerror.c: New files.
6786
6787 gram_error can be static; it need not be extern.
6788 * src/reader.h (gram_error): Remove decl.
6789 * src/parse-gram.y (gram_error): Now static. Add static decl.
6790 (print_token_value): Omit parameter names from forward decl,
6791 for consistency.
6792
67932002-11-29 Paul Eggert <eggert@twinsun.com>
6794
6795 * doc/bison.texinfo: Emphasize that yylex and yyerror must
6796 be declared before being used. E.g., one should typically
6797 declare them in the prologue. Use GNU coding style in examples.
6798 Put "const" consistently after the type it modifies. Mention
6799 that C99 supports "inline". Mention that yyerror traditionally
6800 returns "int".
6801
6802 %parse-param and %lex-param now take just one argument, the
6803 declaration; the argument name is deduced from the declaration.
6804
6805 * doc/bison.texinfo (Parser Function, Pure Calling, Error
6806 Reporting, Table of Symbols): Document this.
6807 * src/parse-gram.y (add_param): New function.
6808 (COMMA): Remove.
6809 (declaration): Implement new rule for %parse-param and %lex-param.
6810 * src/scan-gram.l: "," now elicits a warning, rather than being
6811 a token; this is more compatible with byacc.
6812 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
6813
68142002-11-27 Paul Eggert <eggert@twinsun.com>
6815
6816 Rename identifiers to avoid real and potential collisions.
6817
6818 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
6819 to avoid collision with lex macro described by Bruce Lilly in
6820 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
6821 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
6822 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
6823 * src/parse-gram.y (print_token_value): Renamed from yyprint.
6824 All uses changed.
6825 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
6826 The name "yycontrol" violates the name space rules, and this stuff
6827 wasn't being used anyway.
6828 (input): Remove action; this stuff wasn't being used.
6829 (gram_error): Rename local variable yylloc -> loc.
6830 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
6831 (YY_DECL): Don't use "yy" at start of local variables.
6832 All uses changed, e.g., yylloc -> loc.
6833 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
6834 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
6835 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
6836 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
6837
6838 * src/parse-gram.y (gram_error): loc is now const *.
6839 * src/reader.h (gram_error): Likewise.
6840
68412002-11-24 Paul Eggert <eggert@twinsun.com>
6842
6843 Version 1.75c.
6844
6845 * tests/actions.at (Actions after errors): Use an output format
6846 more similar to that of the Printers and Destructors test.
6847 Test the position of the ';' token too.
6848 (Printers and Destructors): Likewise.
6849 (Printers and Destructors: %glr-parser): Remove for now, to avoid
6850 unnecessarily alarming people when the test fails.
6851
6852 * data/yacc.c (yyerrlab1): Move this label down, so that the
6853 parser does not discard the lookahead token if the user code
6854 invokes YYERROR. This change is required for POSIX conformance.
6855
6856 * lib/error.c: Sync with gnulib.
6857
68582002-11-22 Paul Eggert <eggert@twinsun.com>
6859
6860 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
6861 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
6862 * lib/xmalloc.c: Likewise.
6863
68642002-11-20 Paul Eggert <eggert@twinsun.com>
6865
6866 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
6867
68682002-11-20 Paul Eggert <eggert@twinsun.com>
6869
6870 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
6871 should use `if (! x) abort ();' rather than `assert (x);', and
6872 anyway it's one less thing to worry about configuring.
6873
6874 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
6875 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
6876 and replace all instances of assert with abort.
6877 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
6878 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
6879
6880 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
6881 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
6882 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
6883 hash_find_entry, hash_rehash, hash_insert): Likewise.
6884 * src/conflicts.c (resolve_sr_conflict): Likewise.
6885 * src/lalr.c (set_goto_map, map_goto): Likewise.
6886 * src/nullable.c (nullable_compute): Likewise.
6887 * src/output.c (prepare_rules, token_definitions_output): Likewise.
6888 * src/reader.c (packgram, reader): Likewise.
6889 * src/state.c (state_new, state_free, state_transitions_set,
6890 state_reduction_find): Likewise.
6891 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
6892 symbol_pack): Likewise.
6893 * src/tables.c (conflict_row, pack_vector): Likewise.
6894 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
6895 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
6896 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
6897 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
6898
6899 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
6900 (ARGMATCH_CONSTRAINT): New macro.
6901 (ARGMATCH_ASSERT): Use it.
6902
6903 * src/system.h (verify): New macro.
6904 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
6905 rather than assert.
6906 * src/tables.c (tables_generate): Likewise.
6907
6908 * src/struniq.c (struniq_assert): Now returns void, and aborts
6909 if the assertion is false.
6910 (struniq_assert_p): Remove.
6911 * src/struniq.h: Likewise.
6912
69132002-11-18 Paul Eggert <eggert@twinsun.com>
6914
6915 * data/glr.c (yygetLRActions): Replace `yyindex' with
6916 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
6917 This fixes the regression with Sun ONE Studio 7 cc that I reported in
6918 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
6919
69202002-11-18 Akim Demaille <akim@epita.fr>
6921
6922 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
6923 space.
6924 From Tim Van Holder.
6925
69262002-11-17 Paul Eggert <eggert@twinsun.com>
6927
6928 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
6929 to "SyntaxError" for consistency with my 2002-11-15 change.
6930
6931 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
6932 not define to {}, since this breaks the common use of `YYDPRINTF
6933 ((...));' if a single statement is desired (e.g. before `else').
6934 Work around GCC warnings by surrounding corresponding calls with
6935 {} if needed.
6936 (yyhasResolvedValue): Remove unused function.
6937 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
6938 loop body.
6939 (yyreportSyntaxError): Renamed from yyreportParseError.
6940 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
6941 All uses changed.
6942 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
6943 extern when possible. Remove unused initializations.
6944
69452002-11-16 Akim Demaille <akim@epita.fr>
6946
6947 Augment the similarity between GLR and LALR traces.
6948
6949 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
6950 (YY_REDUCE_PRINT): New.
6951 (yyparse): Use them.
6952 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
6953 YYDPRINT here.
6954 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
6955 state reached after the reduction/recovery, since...
6956 (yyparse, yyprocessOneStack): Report the state we are entering in.
6957
69582002-11-16 Akim Demaille <akim@epita.fr>
6959
6960 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
6961 Add support for --trace=skeleton.
6962 * src/scan-skel.l: %option debug.
6963 Scan strings of non-@ or \n instead of character by character.
6964 (scan_skel): Handle trace_skeleton.
6965 (QPUTS): New.
6966 (@output_parser_name@, @output_header_name@): ``Restore'' their
6967 support (used to be M4 macros).
6968 * data/yacc.c: Quote larger chunks, a la glr.c.
6969 * data/lalr1.cc: Likewise.
6970 The header guards are no longer available, so use some other
6971 string than `YYLSP_NEEDED'.
6972
69732002-11-16 Akim Demaille <akim@epita.fr>
6974
6975 Make the ``Printers and Destructors'' test more verbose, taking
6976 `yacc.c''s behavior as (possibly wrong) reference.
6977
6978 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
6979 instead of fprint on stdout.
6980 Set and report the last_line of the symbols.
6981 Consistently display values and locations.
6982
69832002-11-16 Paul Eggert <eggert@twinsun.com>
6984
6985 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
6986
69872002-11-15 Paul Eggert <eggert@twinsun.com>
6988
6989 * tests/actions.at (Actions after errors): New test case.
6990
6991 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
6992 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
6993 tests/action.at, tests/calc.at, tests/conflicts.at,
6994 tests/cxx-type.at, tests/regression.at:
6995 "parse error" -> "syntax error" for POSIX compatibility.
6996 "parsing stack overflow..." -> "parser stack overflow" so
6997 that code matches Bison documentation.
6998
69992002-11-15 Akim Demaille <akim@epita.fr>
7000
7001 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
7002 take two BRACED_CODE, not two string_content.
7003 Free the scanner's obstack when we are done.
7004 (code_content): New.
7005 * tests/calc.at: Adjust.
7006 * doc/bison.texinfo: Adjust.
7007 Also, make sure to include the `,' for these declarations.
7008
70092002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
7010
7011 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
7012 definition; avoids potential autoreconf problems.
7013
70142002-11-15 Akim Demaille <akim@epita.fr>
7015
7016 Always check the value returned by yyparse.
7017
7018 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
7019 returned by yyparse.
7020 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
7021 Adjust calls.
7022 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
7023 returned by yyparse.
7024
70252002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7026
7027 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
7028 on input.at test.
7029
70302002-11-14 Paul Eggert <eggert@twinsun.com>
7031
7032 * src/output.c (output_skeleton): Call xfopen instead of
7033 duplicating xfopen's body.
7034
7035 Fix bugs reported by Nelson H. F. Beebe in
7036 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
7037
7038 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
7039 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
7040 Group compiler. Instead, use "$CC -E bar.c". Include the .h
7041 file twice in the grammar, as an extra check.
7042
7043 * tests/input.at (Torturing the Scanner): Surround the
7044 backslash-newline tests with "#if 0", to make it less likely that
7045 we'll run into compiler bugs. Bring back solitary \ inside
7046 comment, but add a closing comment to work around HP C bug. Don't
7047 test backslash-newline in C character constant.
7048
70492002-11-14 Akim Demaille <akim@epita.fr>
7050
7051 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
7052 status of the compiler.
7053 Calling `exit 1' is no longer needed.
7054 Reported by Nelson H. F. Beebe.
7055
70562002-11-14 Akim Demaille <akim@epita.fr>
7057
7058 * tests/atlocal.in (CPPFLAGS): We have config.h.
7059 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
7060 New.
7061 * tests/actions.at, tests/calc.at, tests/conflicts.at,
7062 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
7063 * tests/regression.at, tests/torture.at: Use them for all the
7064 grammars that are to be compiled.
7065 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
7066 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
7067 * doc/bison.texinfo (GLR Parsers): Document `inline'.
7068
70692002-11-14 Akim Demaille <akim@epita.fr>
7070
7071 * doc/bison.texinfo: Various formatting changes (alignments in
7072 samples, additional @group/@end group, GCS in samples.
7073 Use @deffn instead of simple @table to define the directives,
7074 macros, variables etc.
7075
70762002-11-13 Paul Eggert <eggert@twinsun.com>
7077
7078 Fix some bugs reported by Albert Chin-A-Young in
7079 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
7080
7081 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
7082 -o c"; the HP C compiler chatters during compilation.
7083 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
7084 * tests/headers.at (export YYLTYPE): Likewise.
7085
7086 * tests/input.at (Torturing the Scanner): Remove lines containing
7087 solitary backslashes, as they tickle a bug in the HP C compiler.
7088
7089 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
7090 comments, since they're not portable. Use GNU coding style.
7091
70922002-11-13 Akim Demaille <akim@epita.fr>
7093
7094 * data/yacc.c: Leave bigger chunks of quoted text.
7095 (YYDSYMPRINTF): New.
7096 Use it to report symbol activities.
7097 * data/glr.c (YYDSYMPRINTF): New.
7098 Use it.
7099
71002002-11-12 Paul Eggert <eggert@twinsun.com>
7101
7102 Version 1.75b.
7103
7104 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
7105 (yyglrReduce): Return yyok, not 0.
7106 This should avoid the enumerated-type warnings reported
7107 by Nelson H. F. Beebe in
7108 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
7109
7110 * lib/bbitset.h (BITSET_INLINE): Remove.
7111 * lib/bitset.h [! BITSET_INLINE]: Remove.
7112 (bitset_set, bitset_reset, bitset_test): Rename local vars
7113 to avoid shadowing warnings by GCC.
7114
7115 * data/glr.c (inline): Remove #define. It's the user's
7116 responsibility to #define it away, just like 'const'.
7117 This fixes one of the bugs reported by Nelson H. F. Beebe in
7118 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
7119
7120 * Makefile.maint (po-check): Scan .l and .y files instead of the
7121 .c and the .h files that they generate. This fixes the bug
7122 reported by Tim Van Holder in:
7123 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
7124 Look for N_ as well as for _. Try to avoid matching #define for
7125 N_ and _.
7126 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
7127 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
7128 * src/scan-gram.l: Revamp regular expressions so that " and '
7129 do not confuse xgettext.
7130
7131 * src/struniq.h (struniq_new): Do not declare the return type
7132 to be 'const'; this violates the C standard.
7133 * src/struniq.c (struniq_new): Likewise.
7134
71352002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
7136
7137 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
7138 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
7139 linker.
7140
71412002-11-12 Akim Demaille <akim@epita.fr>
7142
7143 * Makefile.maint: Sync with Autoconf:
7144 (local_updates): New.
7145
71462002-11-12 Akim Demaille <akim@epita.fr>
7147
7148 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
7149
71502002-11-12 Akim Demaille <akim@epita.fr>
7151
7152 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
7153 locations.
7154
71552002-11-12 Akim Demaille <akim@epita.fr>
7156
7157 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
7158 not yyvalue.
7159
71602002-11-12 Akim Demaille <akim@epita.fr>
7161
7162 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
7163 Use it to test the GLR parser.
7164
71652002-11-12 Akim Demaille <akim@epita.fr>
7166
7167 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
7168 defines it.
7169 * data/glr.c (yystos): New.
7170 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
7171 (YYDSYMPRINT): New.
7172 (yyval): Don't define it, it is handled via M4.
7173 (yyrecoverParseError): Free verbosely the discarded symbols.
7174 * data/yacc.c (yysymprint): Remove, rather...
7175 (b4_yysymprint_generate): invoke.
7176 * data/c.m4 (b4_yysymprint_generate): New.
7177 Accept pointers as arguments, as opposed to the version from
7178 yacc.c.
7179 (b4_yydestruct_generate): Likewise.
7180 * tests/cations.at (Printers and Destructors): Use Bison directives
7181 instead of CPP macros.
7182 Don't rely on internal details.
7183
71842002-11-12 Akim Demaille <akim@epita.fr>
7185
7186 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
7187 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
7188 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
7189 it against YYEMPTY and so forth), work on yytoken (i.e., set
7190 it to YYEMPTY etc.).
7191 (yydestruct): Replace with a b4_yydestruct_generate invocation.
7192 (b4_symbol_actions): Remove.
7193 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
7194 for 0, end-of-input.
7195
71962002-11-12 Akim Demaille <akim@epita.fr>
7197
7198 * doc/bison.texinfo (Destructor Decl): New.
7199
72002002-11-12 Akim Demaille <akim@epita.fr>
7201
7202 * src/tables.c (tables_generate): Use free for pointers that
7203 cannot be NULL, not XFREE.
7204 (pack_vector): Use assert, not fatal, for bound violations.
7205 * src/state.c (state_new): Likewise.
7206 * src/reader.c (reader): Likewise.
7207 * src/lalr.c (set_goto_map): Likewise.
7208 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
7209 the file name.
7210
72112002-11-12 Akim Demaille <akim@epita.fr>
7212
7213 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
7214 Restore.
7215 * src/scan-gram.l (last_string): Is global to the file, not to
7216 yylex.
7217 * src/parse-gram.y (input): Don't append the epilogue here,
7218 (epilogue.opt): do it here, and free the scanner's obstack.
7219 * src/reader.c (epilogue_set): Rename as...
7220 (epilogue_augment): this.
7221 * data/c.m4 (b4_epilogue): Defaults to empty.
7222
72232002-11-12 Akim Demaille <akim@epita.fr>
7224
7225 * src/getargs.c (long_options): Remove duplicates.
7226 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
7227 Remove.
7228 * doc/bison.rnh: Remove.
7229 * doc/bison.texinfo (VMS Invocation): Remove.
7230
72312002-11-12 Akim Demaille <akim@epita.fr>
7232
7233 * src/struniq.h, src/struniq.c (struniq_t): Is const.
7234 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
7235
7236 Use struniq for symbols.
7237
7238 * src/symtab.h (symbol_t): The tag member is a struniq.
7239 (symbol_type_set): Adjust.
7240 * src/symtab.c (symbol_new): Takes a struniq.
7241 (symbol_free): Don't free the tag member.
7242 (hash_compare_symbol_t, hash_symbol_t): Rename as...
7243 (hash_compare_symbol, hash_symbol): these.
7244 Use the fact that tags as struniqs.
7245 (symbol_get): Use struniq_new.
7246 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
7247 Returns a strniq.
7248 * src/reader.h (merger_list, grammar_currentmerge_set): The name
7249 and type members are struniqs.
7250 * src/reader.c (get_merge_function)
7251 (grammar_current_rule_merge_set): Adjust.
7252 (TYPE, current_type): Are struniq.
7253
7254 Use struniq for file names.
7255
7256 * src/files.h, src/files.c (infile): Split into...
7257 (grammar_file, current_file): these.
7258 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
7259 * src/reduce.c (reduce_print): Likewise.
7260 * src/getargs.c (getargs): Likewise.
7261 * src/complain.h, src/complain.c: Likewise.
7262 * src/main.c (main): Call struniqs_new early enough to use it for
7263 file names.
7264 Don't free the input file name.
7265
72662002-11-12 Akim Demaille <akim@epita.fr>
7267
7268 * src/symtab.c (symbol_free): Remove dead deactivated code:
7269 type_name are properly removed.
7270 Don't use XFREE to free items that cannot be NULL.
7271 * src/struniq.h, src/struniq.c: New.
7272 * src/main.c (main): Initialize/free struniqs.
7273 * src/parse-gram.y (%union): Add astruniq member.
7274 (yyprint): Adjust.
7275 * src/scan-gram.l (<{tag}>): Return a struniq.
7276 Free the obstack bit that used to store it.
7277 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
7278
72792002-11-11 Paul Eggert <eggert@twinsun.com>
7280
7281 Revamp to fix many (but not all) of the C- and M4-related quoting
7282 problems. Among other things, this fixes the Bison bug reported
7283 by Jan Hubicka when processing the Bash grammar; see:
7284 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7285
7286 Use new @ escapes consistently. Represent brackets with @{ and @}
7287 rather than @<:@ and @:>@, since this works a bit better with dumb
7288 editors like vi. Represent @ with @@, since @ is now consistently
7289 an escape. Use @oline@ and @ofile@ rather than __oline__ and
7290 __ofile__, to avoid unexpected expansions. Similarly, use @output
7291 rather than #output.
7292
7293 * data/c.m4 (b4_copyright): Omit file name from comment, since
7294 the file name could contain "*/".
7295 (b4_synclines_flag): Don't quote the 2nd argument; it should already
7296 be quoted. All uses changed.
7297
7298 * data/glr.c: Use new @ escapes consistently.
7299 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
7300 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
7301 Remove, since they couldn't handle arbitrary characters in file
7302 names.
7303 * data/lalr1.cc: Likewise.
7304 * data/yacc.c: Likewise.
7305
7306 * src/files.c (output_infix): Remove; all uses removed.
7307 * src/files.h: Likewise.
7308
7309 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
7310 mishandled funny characters in file names, and anyway it isn't
7311 needed any more.
7312 * data/yacc.c: Likewise.
7313 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
7314
7315 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
7316 * data/yacc.c: Likewise.
7317
7318 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
7319 strings now.
7320 (muscle_init): Quote filename as a C string.
7321 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
7322 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
7323 * src/output.c (escaped_file_name_output): New function.
7324 (prepare_symbols): Quote tokens for M4.
7325 (prepare): Don't insert output_infix, output_prefix,
7326 output_parser_name, output_header_name; this is now down by scan-skel.
7327 Insert skeleton as a C string.
7328
7329 * src/output.c (user_actions_output, symbol_destructors_output,
7330 symbol_printers_output): Quote filenames for C and M4.
7331 * src/reader.c (prologue_augment, epilogue_set): Likewise.
7332
7333 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
7334 escapes other than \\ and \'; this simplifies the code.
7335 (<SC_STRING>): Likewise, for \\ and \".
7336 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
7337 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
7338 Use new escapes @{ and @} for [ and ].
7339
7340 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
7341 them with auto vars.
7342 Switch to new escape scheme, where @ is the escape character uniformly.
7343 Abort if a stray escape character is found. Avoid unbounded input
7344 buffer when parsing non-escaped text.
7345
7346 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
7347 __oline__, #output, $@, and @{ do not have unintended meanings.
7348
73492002-11-09 Paul Eggert <eggert@twinsun.com>
7350
7351 Fix the test failure due to GCC warnings described in
7352 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
7353 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
7354 evaluate to 0 if it's impossible for NINF to be in the respective
7355 table.
7356 (yygetLRActions, yyrecoverParseError): Use them.
7357
7358 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
7359 counted in the token inserted at end of file. Now takes
7360 location_t *, not location_t, so that the location can be
7361 adjusted. All uses changed.
7362
7363 * tests/regression.at (Invalid inputs): Adjust wording in
7364 diagnostic to match the new behavior.
7365
7366 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
7367 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
7368 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
7369 abort ();'. This reduces the runtime of the "Many lookaheads"
7370 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
7371 GCC 3.2.
7372
73732002-11-07 Paul Eggert <eggert@twinsun.com>
7374
7375 * src/parse-gram.y (CHARACTER): Remove unused token.
7376 All uses removed.
7377
7378 * src/scan-gram.l: Remove stack option. We no longer use the
7379 stack, since the stack was never deeper than 1; instead, use the
7380 new auto var c_context to record the stacked value.
7381
7382 Remove nounput option. At an unexpected end of file, we now unput
7383 the minimal input necessary to end cleanly; this simplifies the
7384 code.
7385
7386 Avoid unbounded token sizes where this is easy.
7387
7388 (unexpected_end_of_file): New function.
7389 Use it to systematize the error message on unexpected EOF.
7390 (last-string): Now auto, not static.
7391 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
7392 (scanner_last_string_free): Remove; not used.
7393 (percent_percent_count): Move decl to just before use.
7394 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
7395 not the (never otherwised-used) CHARACTER.
7396
73972002-11-07 Akim Demaille <akim@epita.fr>
7398
7399 Let yyerror always receive the msg as last argument, so that
7400 yyerror can be variadic.
7401
7402 * data/yacc.c (b4_yyerror_args): New.
7403 Use it when calling yyerror.
7404 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
7405 Use it when calling yyerror.
7406 * doc/bison.texinfo (Error Reporting): Adjust.
7407 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
7408 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
7409
74102002-11-06 Akim Demaille <akim@epita.fr>
7411
7412 #line should have quoted strings.
7413 Ideally, this should be done by m4_quotearg.
7414
7415 * src/scan-skel.l: Include quotearg.h.
7416 Quote __ofile__.
7417 * src/output.c (symbol_printers_output)
7418 (symbol_destructors_output): Quote the file name.
7419
74202002-11-06 Akim Demaille <akim@epita.fr>
7421
7422 * tests/regression.at (Invalid inputs): Adjust to the recent
7423 messages.
7424
74252002-11-06 Akim Demaille <akim@epita.fr>
7426
7427 Restore --no-lines.
7428 Reported by Jim Kent.
7429
7430 * data/c.m4 (b4_syncline): New.
7431 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
7432 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
7433 * src/output.c (user_actions_output): Likewise.
7434 (prepare): Define 'b4_synclines_flag'.
7435 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
7436
74372002-11-06 Akim Demaille <akim@epita.fr>
7438
7439 * src/main.c (main): Free `infile'.
7440 * src/scan-gram.l (handle_syncline): New.
7441 Recognize `#line'.
7442 * src/output.c (user_actions_output, symbol_destructors_output)
7443 (symbol_printers_output): Use the location's file name, not
7444 infile.
7445 * src/reader.c (prologue_augment, epilogue_set): Likewise.
7446
74472002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7448
7449 * src/tables.c (matching_state): Don't allow states to match if
7450 either has GLR conflict entries.
7451
74522002-11-05 Paul Eggert <eggert@twinsun.com>
7453
7454 * src/scan-gram.l: Use more accurate diagnostics, e.g.
7455 "integer out of range" rather than "invalid value".
7456 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
7457 accordingly.
7458
7459 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
7460 Also, remove one static variable in the scanner.
7461
7462 * src/scan-gram.l (braces_level): Now auto, not static.
7463 Initialize to zero if the compiler is being picky.
7464 (INITIAL): Clear braces_level instead of incrementing it.
7465 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
7466 as POSIX 1003.1-2001 requires.
7467 * src/system.h (IF_LINT): New macro, taken from coreutils.
7468 * configure.ac: Define "lint" if --enable-gcc-warnings.
7469
74702002-11-05 Akim Demaille <akim@epita.fr>
7471
7472 * src/scan-gram.l: When it starts with `%', complain about the
7473 whole directive, not just that `invalid character: %'.
7474
74752002-11-04 Akim Demaille <akim@epita.fr>
7476
7477 * Makefile.maint: Update from Autoconf.
7478 (update, cvs-update, po-update, do-po-update): New.
7479
74802002-11-04 Akim Demaille <akim@epita.fr>
7481
7482 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
7483 and yyerror.
7484 Have yyerror `use' its arguments.
7485 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
7486 returns true when location & yacc & pure & parse-param.
7487 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
7488
74892002-11-04 Akim Demaille <akim@epita.fr>
7490
7491 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
7492 clashes.
7493 * src/scan-gram.l: Use [\'] instead of ['] to pacify
7494 font-lock-mode.
7495 Use complain_at.
7496 Use quote, not quote_n since LOCATION_PRINT no longer uses the
7497 slot 0.
7498
74992002-11-03 Paul Eggert <eggert@twinsun.com>
7500
7501 * src/reader.c (get_merge_function, grammar_current_rule_check):
7502 Use consistent diagnostics for reporting type name clashes.
7503 Quote the types with <>, for consistency with Yacc.
7504 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
7505
75062002-11-03 Akim Demaille <akim@epita.fr>
7507
7508 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
7509 New.
7510 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
7511 (b4_parse_param): Remove.
7512 Use b4_identification.
7513 Propagate b4_pure_args where needed to pass them to yyerror.
7514 * data/glr.m4 (b4_parse_param): Remove.
7515 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
7516 (b4_lpure_formals): New.
7517 Use b4_identification.
7518 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
7519 b4_user_formals and b4_user_args.
7520 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
7521 (yyreportAmbiguity): When using a pure parser, also need
7522 the location, and the parse-params.
7523 Adjust callers.
7524 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
7525 When using a pure parser, also need the parse-params.
7526 Adjust callers.
7527 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
7528 (%pure-parser + %parse-param) LALR and GLR parsers.
7529 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
7530 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
7531 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
7532 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
7533 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
7534 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
7535 * doc/bison.texinfo: Untabify the whole file.
7536 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
7537 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
7538 (Error Reporting): Adjust to these new directives.
7539 Document %error-verbose, deprecate YYERROR_VERBOSE.
7540
75412002-11-03 Akim Demaille <akim@epita.fr>
7542
7543 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
7544 AT_CHECK_CALC_GLR invocations to use % directives, instead of
7545 command line options.
7546 * tests/cxx-type.at: Formatting changes.
7547
75482002-11-03 Paul Eggert <eggert@twinsun.com>
7549
7550 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
7551 to count columns correctly, and to check for invalid inputs.
7552
7553 Use mbsnwidth to count columns correctly. Account for tabs, too.
7554 Include mbswidth.h.
7555 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
7556 (extend_location): New function.
7557 (YY_LINES): Remove.
7558
7559 Handle CRLF in C code rather than in Lex code.
7560 (YY_INPUT): New macro.
7561 (no_cr_read): New function.
7562
7563 Scan UCNs, even though we don't fully handle them yet.
7564 (convert_ucn_to_byte): New function.
7565
7566 Handle backslash-newline correctly in C code.
7567 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
7568 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
7569 all uses changed.
7570 (tag, splice): New EREs. Do not allow NUL or newline in tags.
7571 Use {splice} wherever C allows backslash-newline.
7572 YY_STEP after space, newline, vertical-tab.
7573 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
7574
7575 (letter, id): Don't assume ASCII; e.g., spell out a-z.
7576
7577 ({int}, handle_action_dollar, handle_action_at): Check for integer
7578 overflow.
7579
7580 (YY_STEP): Omit trailing semicolon, so that it's more like C.
7581
7582 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
7583 as well as \000. Check for UCHAR_MAX, not 255.
7584 Allow \x with an arbitrary positive number of digits, as in C.
7585 Check for overflow here.
7586 Allow \? and UCNs, for compatibility with C.
7587
7588 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
7589 with quote slot used by complain_at.
7590
7591 * tests/input.at: Add tests for backslash-newline, m4 quotes
7592 in symbols, long literals, and funny escapes in strings.
7593
7594 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
7595 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
7596 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
7597 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
7598 * m4/mbswidth.m4: New file, from GNU coreutils.
7599
7600 * doc/bison.texinfo (Grammar Outline): Document // comments.
7601 (Symbols): Document that trigraphs have no special meaning in Bison,
7602 nor is backslash-newline allowed.
7603 (Actions): Document that trigraphs have no special meaning.
7604
7605 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
7606 no longer used.
7607
76082002-11-02 Paul Eggert <eggert@twinsun.com>
7609
7610 * src/reader.c: Don't include quote.h; not needed.
7611 (get_merge_function): Reword warning to be consistent with
7612 type clash diagnostic in grammar_current_rule_check.
7613
7614 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
7615 bug in trigraph handling.
7616
7617 * src/output.c (prepare_symbols): When printing token names,
7618 escape "[" as "@<:@" and likewise for "]".
7619
7620 * src/system.h (errno): Remove declaration, as we are now
7621 assuming C89 or better, and C89 guarantees errno.
7622
76232002-10-30 Paul Eggert <eggert@twinsun.com>
7624
7625 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
7626 Check for close failures.
7627 * src/files.h (xfclose): Return void, not int, since it always
7628 returned zero.
7629 * src/files.c (xfclose): Likewise. Report I/O error if ferror
7630 indicates one.
7631 * src/output.c (output_skeleton): Use xfclose rather than fclose
7632 and ferror. xfclose now checks ferror.
7633
7634 * data/glr.c (YYLEFTMOST_STATE): Remove.
7635 (yyreportTree): Use a stack-based leftmost state. This avoids
7636 our continuing battles with bogus warnings about initializers.
7637
76382002-10-30 Akim Demaille <akim@epita.fr>
7639
7640 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
7641 #if.
7642
76432002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7644
7645 * tests/glr-regr1.at: New test for reported regressions.
7646 * tests/testsuite.at: Add glr-regr1.at test.
7647 * tests/Makefile.am: Add glr-regr1.at test.
7648
76492002-10-24 Paul Eggert <eggert@twinsun.com>
7650
7651 Version 1.75a.
7652
7653 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
7654 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
7655 we use malloc. Don't assume 'A' through 'Z' are contiguous.
7656 Don't assume strdup exists; POSIX says its an XSI extension.
7657 Check for buffer overflow on input.
7658
76592002-10-24 Akim Demaille <akim@epita.fr>
7660
7661 * src/output.c (output_skeleton): Don't disable M4sugar comments
7662 too soon: it results in comments being expanded.
7663 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
7664 first output.
7665
76662002-10-24 Akim Demaille <akim@epita.fr>
7667
7668 * data/yacc.c (m4_int_type): New.
7669 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
7670 char' as only yacc.c wants K&R portability.
7671 * data/glr.c (yysigned_char): Remove.
7672 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
7673 Reported by Quoc Peyrot.
7674
76752002-10-23 Paul Eggert <eggert@twinsun.com>
7676
7677 * src/main.c (main): With --trace=time, report times even if a
7678 non-fatal error occurs. Formerly, the times were reported in some
7679 such cases but not in others.
7680 * src/reader.c (reader): Just return if a complaint has been issued,
7681 instead of exiting, so that 'main' can report times.
7682
76832002-10-22 Akim Demaille <akim@epita.fr>
7684
7685 * src/system.h: Include sys/types.
7686 Reported by Bert Deknuydt.
7687
76882002-10-23 Paul Eggert <eggert@twinsun.com>
7689
7690 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
7691 Suggested by Art Haas.
7692
76932002-10-22 Paul Eggert <eggert@twinsun.com>
7694
7695 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
7696 decl; not needed any more.
7697 * src/main.c (main): Use return to exit, undoing yesterday's change.
7698 The last OS that we could find where this wouldn't work is
7699 SunOS 3.5, and that's too old to worry about now.
7700
7701 * data/glr.c (struct yyltype): Define members even when not
7702 doing locations. This is more consistent with yacc.c, and it
7703 works around the following bug reports:
7704 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
7705 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
7706
7707 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
7708 @acronym consistently. Standardize on "Yacc" instead of "YACC",
7709 "Algol" instead of "ALGOL". Give a bit more history about BNF.
7710
77112002-10-22 Akim Demaille <akim@epita.fr>
7712
7713 * data/README: New.
7714
77152002-10-21 Paul Eggert <eggert@twinsun.com>
7716
7717 Be consistent about 'bool'; the old code used an enum in one
7718 module and an int in another, and this violates the C standard.
7719 * m4/stdbool.m4: New file, from coreutils 4.5.3.
7720 * configure.ac (AC_HEADER_STDBOOL): Add.
7721 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
7722 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
7723 * src/symtab.c (hash_compare_symbol_t): Likewise.
7724 * src/system.h (bool, false, true): Use a definition consistent
7725 with ../lib/hash.c. All uses changed.
7726
7727 * src/complain.c (warning_issued): Renamed from warn_message_count,
7728 so that we needn't worry about integer overflow (!).
7729 Now of type bool. All uses changed.
7730 (complaint_issued): Renamed from complain_message_count; likewise.
7731
7732 * src/main.c (main): Use exit to exit with failure.
7733
7734 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
7735 rather than 1 and 0.
7736 * src/main.c (main): Likewise.
7737 * src/getargs.c (getargs): Likewise.
7738 * src/reader.c (reader): Likewise.
7739
7740 * src/getarg.c (getargs): Remove duplicate code for
7741 "Try `bison --help'".
7742
7743 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
7744 What was that "2" for?
7745
7746 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
7747 * src/getargs.c (usage): Likewise.
7748
7749 * src/getargs.c (getargs): When there are too few operands, report
7750 the last one. When there are too many, report the first extra
7751 one. This is how diffutils does it.
7752
77532002-10-20 Paul Eggert <eggert@twinsun.com>
7754
7755 Remove K&R vestiges.
7756 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
7757 * src/complain.c (VA_START): Remove. Assume prototypes.
7758 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
7759 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
7760 fatal): Assume prototypes.
7761 * src/complain.h: Assume prototypes.
7762 * src/system.h (PARAMS): Remove.
7763 Include <limits.h> unconditionally, since it's guaranteeed even
7764 for a freestanding C89 compiler.
7765 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
7766 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
7767
77682002-10-20 Akim Demaille <akim@epita.fr>
7769
7770 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
7771 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
7772 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
7773 (yyresolveStates, yyresolveAction, yyresolveStack)
7774 (yyprocessOneStack): Use them.
7775 (yy_reduce_print): New.
7776 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
7777
77782002-10-20 Akim Demaille <akim@epita.fr>
7779
7780 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
7781 arguments and output `void'.
7782 (b4_c_function): Rename as...
7783 (b4_c_function_def): this.
7784 (b4_c_function_decl, b4_c_ansi_function_def)
7785 (b4_c_ansi_function_decl): New.
7786 Change the interpretation of the arguments: before `int, foo', now
7787 `int foo, foo'.
7788 * data/yacc.c (yyparse): Prototype and define thanks to these.
7789 Adjust b4_c_function_def uses.
7790 * data/glr.c (yyparse): Likewise, but ANSI only.
7791
77922002-10-20 Akim Demaille <akim@epita.fr>
7793
7794 * src/output.c (prepare): Move the definition of `tokens_number',
7795 `nterms_number', `undef_token_number', `user_token_number_max'
7796 to...
7797 (prepare_tokens): Here.
7798 (prepare_tokens): Rename as...
7799 (prepare_symbols): this.
7800 (prepare): Move the definition of `rules_number' to...
7801 (prepare_rules): here.
7802 (prepare): Move the definition of `last', `final_state_number',
7803 `states_number' to...
7804 (prepare_states): here.
7805 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
7806
78072002-10-20 Akim Demaille <akim@epita.fr>
7808
7809 * src/tables.h, src/tables.c, src/output.c: Comment changes.
7810
78112002-10-20 Akim Demaille <akim@epita.fr>
7812
7813 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
7814 * data/c.m4: here.
7815
78162002-10-20 Akim Demaille <akim@epita.fr>
7817
7818 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
7819 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
7820 `pair'.
7821 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
7822 `name' to...
7823 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
7824 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
7825 These.
7826
78272002-10-19 Paul Eggert <eggert@twinsun.com>
7828
7829 Do not create a temporary file, as that involves security and
7830 cleanup headaches. Instead, use a pair of pipes.
7831 Derived from a suggestion by Florian Krohm.
7832 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
7833 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
7834 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
7835 (BISON_PREREQ_SUBPIPE): Add.
7836 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
7837 Add subpipe.h, subpipe.c.
7838 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
7839 * po/POTFILES.in: Add lib/subpipe.c.
7840 * src/output.c: Include "subpipe.h".
7841 (m4_invoke): Remove decl.
7842 (scan_skel): New decl.
7843 (output_skeleton): Use pipe rather than temporary file for m4 input.
7844 Check that m4sugar.m4 is readable, to avoid deadlock.
7845 Check for pipe I/O error.
7846 * src/scan-skel.l (readpipe): Remove decl.
7847 (scan_skel): New function, to be used in place of m4_invoke.
7848 Read from stream rather than file.
7849
7850 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
7851 float, as this generates a warning on Solaris 8 + GCC 3.2 with
7852 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
7853 this generates a more-accurate value anyway.
7854
7855 * lib/timevar.c (timervar_accumulate): Rename locals to
7856 avoid confusion with similarly-named more-global.
7857 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
7858
7859 * src/output.c (prepare): Use xstrdup to convert char const *
7860 to char *, to avoid GCC warning.
7861
78622002-10-19 Akim Demaille <akim@epita.fr>
7863
7864 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
7865 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
7866 Use them to have `calc.y' ready for %pure-parser.
7867 * data/yacc.c (YYLEX): Pass a yylex return type to
7868 b4_c_function_call.
7869
78702002-10-19 Akim Demaille <akim@epita.fr>
7871
7872 Prototype support of %lex-param and %parse-param.
7873
7874 * src/parse-gram.y: Add the definition of the %lex-param and
7875 %parse-param tokens, plus their rules.
7876 Drop the `_' version of %glr-parser.
7877 Add the "," token.
7878 * src/scan-gram.l (INITIAL): Scan them.
7879 * src/muscle_tab.c: Comment changes.
7880 (muscle_insert, muscle_find): Rename `pair' as `probe'.
7881 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
7882 (muscle_entry_s): The `value' member is no longer const.
7883 Adjust all dependencies.
7884 * src/muscle_tab.c (muscle_init): Adjust: use
7885 MUSCLE_INSERT_STRING.
7886 Initialize the obstack earlier.
7887 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
7888 (muscle_pair_list_grow): New.
7889 * data/c.m4 (b4_c_function_call, b4_c_args): New.
7890 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
7891 * tests/calc.at: Use %locations, not --locations.
7892 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
7893
78942002-10-19 Akim Demaille <akim@epita.fr>
7895
7896 * src/getargs.c (usage): Take status as argument and exit
7897 accordingly.
7898 Report the traditional `Try ... --help' message when status != 0.
7899 (usage, version): Don't take a FILE * as arg, it is pointless.
7900 (getargs): When there is an incorrect number of arguments, make it
7901 an error, and report it GNUlically thanks to `usage ()'.
7902
79032002-10-18 Paul Eggert <eggert@twinsun.com>
7904
7905 * data/glr.c (yyreportParseError): Don't assume that sprintf
7906 yields the length of the printed string, as this is not true
7907 on SunOS 4.1.4. Reported by Peter Klein.
7908
7909 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
7910 * tests/conflicts.at (%nonassoc and eof): Likewise.
7911 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
7912
79132002-10-17 Akim Demaille <akim@epita.fr>
7914
7915 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
7916 * src/getargs.c (trace_types, trace_args): Adjust.
7917 * src/reader.c (grammar_current_rule_prec_set)
7918 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
7919 Standardize error messages.
7920 And s/@prec/%prec/!
7921 (reader): Use trace_flag to enable scanner/parser debugging,
7922 instead of an adhoc scheme.
7923 * src/scan-gram.l: Remove trailing debugging code.
7924
79252002-10-16 Paul Eggert <eggert@twinsun.com>
7926
7927 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
7928 MUSCLE_TAB_H.
7929
7930 * NEWS: Officially drop support for building Bison with K&R C,
7931 since it didn't work anyway and it's not worth worrying about.
7932 * Makefile.maint (wget_files): Remove ansi2knr.c.
7933 (ansi2knr.c-url_prefix): Remove.
7934 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
7935 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
7936 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
7937
79382002-10-15 Paul Eggert <eggert@twinsun.com>
7939
7940 Stop using the "enum_" trick for K&R-style function definitions;
7941 it confused me, and I was the author! Instead, assume that people
7942 who want to use K&R C compilers (when using these modules in GCC,
7943 perhaps?) will run ansi2knr.
7944
7945 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
7946 All uses of "enum_" changed to "enum ".
7947 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
7948 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
7949
7950 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
7951 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
7952 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
7953 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
7954 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
7955 abitset_not, abitset_ones, abitset_or, abitset_or_and,
7956 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
7957 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
7958 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
7959 Use function prototypes; this removes the need for declaring
7960 static functions simply to provide their prototypes.
7961 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
7962 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
7963 bitset_count_, bitset_create, bitset_dump, bitset_first,
7964 bitset_free, bitset_init, bitset_last, bitset_next,
7965 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
7966 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
7967 bitset_print, bitset_release_memory, bitset_toggle_,
7968 bitset_type_choose, bitset_type_get, bitset_type_name_get,
7969 debug_bitset): Likewise.
7970 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
7971 * lib/bitset_stats.c (bitset_log_histogram_print,
7972 bitset_percent_histogram_print, bitset_stats_and,
7973 bitset_stats_and_cmp, bitset_stats_and_or,
7974 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
7975 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
7976 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
7977 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
7978 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
7979 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
7980 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
7981 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
7982 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
7983 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
7984 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
7985 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
7986 bitset_stats_zero): Likewise.
7987 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
7988 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
7989 bitsetv_dump, debug_bitsetv): Likewise.
7990 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
7991 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
7992 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
7993 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
7994 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
7995 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
7996 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
7997 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
7998 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
7999 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
8000 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
8001 Likewise.
8002 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
8003 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
8004 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
8005 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
8006 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
8007 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
8008 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
8009 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
8010 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
8011 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
8012 lbitset_xor_cmp, lbitset_zero): Likewise.
8013
80142002-10-14 Akim Demaille <akim@epita.fr>
8015
8016 Version 1.75.
8017
80182002-10-14 Akim Demaille <akim@epita.fr>
8019
8020 * tests/Makefile.am (maintainer-check-posix): New.
8021
80222002-10-14 Akim Demaille <akim@epita.fr>
8023
8024 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
8025 member.
8026
80272002-10-14 Akim Demaille <akim@epita.fr>
8028
8029 * src/tables.c (table_ninf_remap): base -> tab.
8030 Reported by Matt Rosing.
8031
80322002-10-14 Paul Eggert <eggert@twinsun.com>
8033
8034 * tests/action.at, tests/calc.at, tests/conflicts.at,
8035 tests/cxx-type.at, tests/headers.at, tests/input.at,
8036 tests/regression.at, tests/synclines.at, tests/torture.at:
8037 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
8038 so that the tests still work even if POSIXLY_CORRECT is set.
8039 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
8040
8041 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
8042 for portability to K&R hosts. Fix typo: signed char is guaranteed
8043 only to 127, not to 128.
8044 * data/glr.c (yysigned_char): New type.
8045 * data/yacc.c (yysigned_char): Likewise.
8046 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
8047
80482002-10-13 Paul Eggert <eggert@twinsun.com>
8049
8050 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
8051 true due to limited range of data type" warning from GCC.
8052
8053 * data/c.m4 (b4_token_defines): Protect against double-inclusion
8054 by wrapping enum yytokentype's definition inside #ifndef
8055 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
8056
80572002-10-13 Akim Demaille <akim@epita.fr>
8058
8059 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
8060 Un yy- yyrhs to avoid the name clash with the global YYRHS.
8061
80622002-10-13 Akim Demaille <akim@epita.fr>
8063
8064 * Makefile.maint: Update from Autoconf 2.54.
8065 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
8066
80672002-10-13 Akim Demaille <akim@epita.fr>
8068
8069 * src/print.c (print_state): Separate the list of solved conflicts
8070 from the other items.
8071 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
8072
80732002-10-13 Akim Demaille <akim@epita.fr>
8074
8075 Let nondeterministic skeletons be usable with deterministic
8076 tables.
8077
8078 With the patch, GAWK compiled by GCC without -O2 passes its test
8079 suite using a GLR parser driven by LALR tables. It fails with -O2
8080 because `struct stat' gives two different answers on my machine:
8081 88 (definition of an auto var) and later 96 (memset on this var).
8082 Hence the stack is badly corrumpted. The headers inclusion is to
8083 blame: if I move the awk.h inclusion before GLR's system header
8084 inclusion, the two struct stat have the same size.
8085
8086 * src/tables.c (pack_table): Always create conflict_table.
8087 (token_actions): Always create conflict_list.
8088 * data/glr.c (YYFLAG): Remove, unused.
8089
80902002-10-13 Akim Demaille <akim@epita.fr>
8091
8092 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
8093 (O0FLAGS): New.
8094 (VALGRIND, GXX): New.
8095 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
8096 * tests/bison.in: Run $PREBISON a pre-command.
8097 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
8098 (maintainer-check-g++): New.
8099 * Makefile.am (maintainer-check): New.
8100
81012002-10-13 Akim Demaille <akim@epita.fr>
8102
8103 * data/glr.c: Formatting changes.
8104 Tweak some trace messages to match yacc.c's.
8105
81062002-10-13 Akim Demaille <akim@epita.fr>
8107
8108 GLR parsers sometimes raise parse errors instead of performing the
8109 default reduction.
8110 Reported by Charles-Henry de Boysson.
8111
8112 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
8113 check the length of the traces when %glr.
8114 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
8115 GLR's traces.
8116 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
8117 Test GLR parsers.
8118 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
8119 (yyltype): Remove the yy prefix from the member names.
8120 (yytable): Complete its comment.
8121 (yygetLRActions): Map error action number from YYTABLE from
8122 YYTABLE_NINF to 0.
8123 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
8124 (which was a bug: it should have been YYTABEL_NINF, and yet it was
8125 not satisfying as we could compare an YYACTION computed from
8126 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
8127 only value for error actions.
8128 (yyreportParseError): In verbose parse error messages, don't issue
8129 `error' in the list of expected tokens.
8130 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
8131 next action to perform to match glr.c's decoding.
8132 (yytable): Complete its comment.
8133
81342002-10-13 Paul Eggert <eggert@twinsun.com>
8135
8136 Fix problem reported by Henrik Grubbstroem in
8137 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
8138 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
8139 because the Bison parser reads the second action before reducing
8140 the first one.
8141 * src/scan-gram.l (rule_length): New static var.
8142 Use it to keep track of the rule length in the scanner, since
8143 we can't expect the parser to be in lock-step sync with the scanner.
8144 (handle_action_dollar, handle_action_at): Use this var.
8145 * tests/actions.at (Exotic Dollars): Test for the problem.
8146
81472002-10-12 Paul Eggert <eggert@twinsun.com>
8148
8149 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
8150 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
8151 Include <sys/time.h> when checking for clock_t and struct tms.
8152 Use same include order as source.
8153 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
8154 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
8155
8156 * lib/timevar.c: Update copyright date and clarify comments.
8157 (get_time) [IN_GCC]: Keep the GCC version for reference.
8158
8159 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
8160 GCC version as of today, then merge Bison's changes.
8161 Change "GCC" to "Bison" in copyright notice. timevar.def's
8162 author is Akim, so change that too.
8163
8164 * src/reader.c (grammar_current_rule_check):
8165 Don't worry about the default action if $$ is untyped.
8166 Prevents bogus warnings reported by Jim Gifford in
8167 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
8168
8169 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
8170 * data/glr.c, data/lalr1.cc, data/yacc.c:
8171 Output token definitions before the first part of user declarations.
8172 Fixes compatibility problem reported by Jim Gifford for kbd in
8173 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
8174
81752002-10-11 Paul Eggert <eggert@twinsun.com>
8176
8177 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
8178 (yyparse): here. This undoes some of the 2002-07-25 change.
8179 Compatibility problem reported by Ralf S. Engelschall with
8180 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
8181
81822002-10-11 Akim Demaille <akim@epita.fr>
8183
8184 * tests/regression.at Characters Escapes): New.
8185 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
8186 characters.
8187 Reported by Jan Nieuwenhuizen.
8188
81892002-10-11 Akim Demaille <akim@epita.fr>
8190
8191 * po/id.po: New.
8192
81932002-10-10 Paul Eggert <eggert@twinsun.com>
8194
8195 Portability fixes for bitsets; this also avoids several GCC
8196 warnings.
8197
8198 * lib/abitset.c: Include <stddef.h>, for offsetof.
8199 * lib/lbitset.c: Likewise.
8200
8201 * lib/abitset.c (abitset_bytes): Return a size that is aligned
8202 properly for vectors of objects. Do not assume that adding a
8203 header size to a multiple of a word size yields a value that is
8204 properly aligned for the whole union.
8205 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8206
8207 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
8208 unique names for structures.
8209 * lib/ebitset.c (ebitset_bytes): Likewise.
8210 * lib/lbitset.c (lbitset_bytes): Likewise.
8211
8212 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
8213 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
8214 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
8215 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
8216 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
8217 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
8218 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
8219 to improve the type-checking that GCC can do.
8220 * lib/bitset.c (bitset_op4_cmp): Likewise.
8221 * lib/bitset_stats.c (bitset_stats_count,
8222 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
8223 bitset_stats_copy, bitset_stats_disjoint_p,
8224 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
8225 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
8226 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
8227 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
8228 bitset_stats_and_or_cmp, bitset_stats_andn_or,
8229 bitset_stats_andn_or_cmp, bitset_stats_or_and,
8230 bitset_stats_or_and_cmp): Likewise.
8231 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
8232 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
8233 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
8234 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
8235
8236 * lib/abitset.h: Include bitset.h, not bbitset.h.
8237 * lib/ebitset.h: Likewise.
8238 * lib/lbitset.h: Likewise.
8239
8240 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
8241 All instances of parameters of type enum bitset_opts are now of
8242 type enum_bitset_opts, to conform to the C Standard, and similarly
8243 for enum_bitset_type.
8244 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8245 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
8246
8247 Do not use "struct bitset_struct" to mean different things in
8248 different modules. Not only is this confusing, it violates
8249 the C Standard, which requires that structure types in different
8250 modules must be compatible if one is to be passed to the other.
8251 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
8252 All instances of "struct bitset_struct *" replaced with "bitset".
8253 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
8254 (union bitset_union, struct abitset_struct, struct ebitset_struct,
8255 struct lbitset_struct, struct bitset_stats_struct): New types.
8256 All uses of struct bitset_struct changed to union bitset_union,
8257 etc.
8258 * lib/abitset.c (struct abitset_struct, abitset,
8259 struct bitset_struct): Remove.
8260 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
8261 struct bitset_struct): Remove.
8262 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
8263 bitset_struct): Remove.
8264 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
8265 Likewise.
8266
8267 Do not call a function of type T using a call that assumes the
8268 function is of a different type U. Standard C requires that a
8269 function must be called with a type that is compatible with its
8270 definition.
8271 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8272 New decls.
8273 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8274 New functions.
8275 * lib/ebitset.c (PFV): Remove.
8276 * lib/lbitset.c (PFV): Likewise.
8277 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
8278 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
8279 decls.
8280 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
8281 (ebitset_vtable): Use them.
8282 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
8283 lbitset_xor): New functions.
8284 (lbitset_vtable): Use them.
8285
8286 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
8287 Declare.
8288
8289 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
8290 GCC warning.
8291 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
8292 Use offsetof, for simplicity.
8293
82942002-10-06 Paul Eggert <eggert@twinsun.com>
8295
8296 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
8297 the same width as int. This reapplies a hunk of the 2002-08-12 patch
8298 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
8299 which was inadvertently undone by the 2002-09-30 patch.
8300 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
8301 the same width as int.
8302
83032002-10-04 Paul Eggert <eggert@twinsun.com>
8304
8305 Version 1.50.
8306
8307 * configure.ac (AC_INIT), NEWS: Increment version number.
8308
8309 * doc/bison.texinfo: Minor spelling, grammar, and white space
8310 fixes.
8311 (Symbols): Mention that any negative value returned from yylex
8312 signifies end-of-input. Warn about negative chars. Mention
8313 the portable Standard C character set.
8314
8315 The GNU coding standard says CFLAGS and YFLAGS are reserved
8316 for the installer to set.
8317 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
8318 * src/Makefile.am (AM_CFLAGS): Likewise.
8319 (AM_YFLAGS): Renamed from YFLAGS.
8320
8321 Fix some MAX and MIN problems.
8322 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
8323 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
8324 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
8325 * src/reader.c (reader): Use it.
8326
8327 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
8328 POSIX 1003.1-2001 has removed fgrep.
8329
83302002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
8331
8332 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
8333 interpreted as signed.
8334 * lib/ebitset.c (ebitset_list): Fix bug.
8335
83362002-10-01 Paul Eggert <eggert@twinsun.com>
8337
8338 More fixes for 64-bit hosts and large bitsets.
8339
8340 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
8341 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
8342 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
8343 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
8344 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
8345 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
8346 bitset_count_): Likewise.
8347 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
8348 bitset_first, bitset_last): Likewise.
8349 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
8350 bitset_stats_list_reverse, bitset_stats_size,
8351 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
8352 Likewise.
8353 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
8354 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
8355 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
8356 bitsetv_reflexive_transitive_closure): Likewise.
8357 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
8358 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
8359 Likewise.
8360 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
8361 Likewise.
8362
8363 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
8364 Use size_t, not unsigned int, to count bytes.
8365 * lib/abitset.h (abitset_bytes): Likewise.
8366 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
8367 Likewise.
8368 * lib/bitset.h (bitset_bytes): Likewise.
8369 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
8370 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
8371 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8372 * lib/ebitset.c (ebitset_bytes): Likewise.
8373 * lib/ebitset.h (ebitset_bytes): Likewise.
8374 * lib/lbitset.c (lbitset_bytes): Likewise.
8375 * lib/lbitset.h (lbitset_bytes): Likewise.
8376
8377 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
8378 abitset_subset_p, abitset_disjoint_p, abitset_and,
8379 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
8380 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
8381 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
8382 abitset_or_and, abitset_or_and_cmp):
8383 Use bitset_windex instead of unsigned int.
8384 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
8385 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
8386 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
8387 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
8388 Likewise.
8389 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
8390
8391 * lib/bitset.c (bitset_print):
8392 Use proper printf formats for widths of integer types.
8393 * lib/bitset_stats.c (bitset_percent_histogram_print,
8394 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
8395 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
8396 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
8397 * lib/lbitset.c (lbitset_bytes): Likewise.
8398
8399 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
8400 BITSET_SIZE_MAX): New macros.
8401 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
8402 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
8403 to BITSET_WINDEX_MAX.
8404
8405 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
8406 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
8407 since we now return the bitset_bindex type (not int).
8408
8409 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
8410 when computing sizes.
8411 * lib/ebitset.c (ebitset_elts_grow): Likewise.
8412
8413 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
8414 and avoid cast to unsigned.
8415
84162002-09-30 Akim Demaille <akim@epita.fr>
8417
8418 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
8419 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
8420 Updates from Michael Hayes.
8421
84222002-09-30 Art Haas <ahaas@neosoft.com>
8423
8424 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
8425 invocations.
8426 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
8427 defined.
8428
84292002-09-27 Akim Demaille <akim@epita.fr>
8430
8431 Version 1.49c.
8432
84332002-09-27 Akim Demaille <akim@epita.fr>
8434
8435 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
8436 (Because of AC_LIBSOURCE).
8437
84382002-09-27 Akim Demaille <akim@epita.fr>
8439
8440 Playing with Autoscan.
8441
8442 * configure.ac: Remove the old LIBOBJ tweaks.
8443 (AC_REPLACE_FUNCS): Add strrchr and strtol.
8444 * lib/strrchr.c: New.
8445 * lib/strtol.c: New, from the Coreutils 4.5.1.
8446
84472002-09-27 Akim Demaille <akim@epita.fr>
8448
8449 Playing with Autoscan.
8450
8451 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
8452 * lib/Makefile.am (libbison_a_SOURCES): No longer include
8453 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
8454 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
8455 Coreutils 4.5.1.
8456
84572002-09-24 Akim Demaille <akim@epita.fr>
8458
8459 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
8460 (Frequently Asked Questions, Parser Stack Overflow): New.
8461
84622002-09-13 Akim Demaille <akim@epita.fr>
8463
8464 Playing with autoscan.
8465
8466 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
8467 * src/files.c (skeleton_find): Remove, unused.
8468 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
8469 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
8470
84712002-09-13 Akim Demaille <akim@epita.fr>
8472
8473 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
8474 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
8475
84762002-09-13 Akim Demaille <akim@epita.fr>
8477
8478 * configure.ac: Require 2.54.
8479 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
8480 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
8481 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
8482 Remove, provided by Autoconf macros.
8483
84842002-09-12 Akim Demaille <akim@epita.fr>
8485
8486 * m4/prereq.m4: Update, from Coreutils 4.5.1.
8487
84882002-09-12 Akim Demaille <akim@epita.fr>
8489
8490 * m4/prereq.m4: Update, from Fileutils 4.1.5.
8491 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
8492 Reported by Martin Mokrejs.
8493
84942002-09-10 Akim Demaille <akim@epita.fr>
8495
8496 * src/parse-gram.y: Associate a human readable string to each
8497 token type.
8498 * tests/regression.at (Invalid inputs): Adjust.
8499
85002002-09-10 Gary V. Vaughan <gary@gnu.org>
8501
8502 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
8503 with an Autoconf-2.5x style configure.ac.
8504
85052002-09-06 Paul Eggert <eggert@twinsun.com>
8506
8507 * doc/bison.texinfo (Conditions): Make explicit that the GPL
8508 exception applies only to yacc.c. This is a modification of a
8509 patch originally suggested by Akim Demaille.
8510
85112002-09-06 Akim Demaille <akim@epita.fr>
8512
8513 * data/c.m4 (b4_copyright): Move the GPL exception comment from
8514 here to...
8515 * data/yacc.c: here.
8516
8517 * data/lalr1.cc (struct yyltype): Don't define it, since we use
8518 LocationType.
8519 (b4_ltype): Default to yy::Location from location.hh.
8520
85212002-09-04 Jim Meyering <jim@meyering.net>
8522
8523 * data/yacc.c: Guard the declaration of yytoknum also with
8524 `#ifdef YYPRINT', so it is declared only when used.
8525
85262002-09-04 Akim Demaille <akim@epita.fr>
8527
8528 * configure.in: Rename as...
8529 * configure.ac: this.
8530 Bump to 1.49c.
8531
85322002-09-04 Akim Demaille <akim@epita.fr>
8533
8534 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
8535 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
8536 translate maintainer only messages.
8537
85382002-08-12 Paul Eggert <eggert@twinsun.com>
8539
8540 Version 1.49b.
8541
8542 * Makefile.am (SUBDIRS): Remove intl.
8543 (DISTCLEANFILES): Remove.
8544 * NEWS: Mention that GNU M4 is now required. Clarify what is
8545 meant by "larger grammars". Mention the pt_BR translation.
8546 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
8547 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
8548 Bump version from 0.11.2 to 0.11.5.
8549 (BISON_PREREQ_STAGE): Remove.
8550 (AM_GNU_GETTEXT): Use external gettext.
8551 (AC_OUTPUT): Remove intl/Makefile.
8552
8553 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
8554
8555 * data/glr.c: Include string.h, for strlen.
8556 (yyreportParseError): Use size_t for yysize.
8557 (yy_yypstack): No longer nested inside yypstates, as nested
8558 functions are not portable. Do not assume size_t is the
8559 same width as int.
8560 (yypstates): Do not assume that ptrdiff_t is the same width
8561 as int, and similarly for yyposn and YYINDEX.
8562
8563 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
8564
8565 * lib/Makefile.am (INCLUDES): Do not include from the intl
8566 directory, which has been removed.
8567 * src/Makefile.am (INCLUDES): Likewise.
8568
8569 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
8570 (bitsets_sources, additional_bitsets_sources, timevars_sources):
8571 New vars.
8572
8573 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
8574 * tests/Makefile.am (EXTRA_DIST): Likewise.
8575
8576 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
8577 Do not assume that bitset_windex is the same width as unsigned.
8578
8579 * lib/abitset.c (abitset_unused_clear): Do not assume that
8580 bitset_word is the same width as int.
8581 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
8582 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
8583 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
8584 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
8585 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
8586
8587 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
8588 portability to one's complement hosts!).
8589 * lib/ebitset.c (ebitset_op1): Likewise.
8590 * lib/lbitset.c (lbitset_op1): Likewise.
8591
8592 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
8593 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
8594 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
8595 Sync with fileutils.
8596 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
8597 lib/gettext.h: Sync with diffutils.
8598
8599 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
8600 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
8601
8602 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
8603 PROTOTYPES to check for prototypes, and "defined __STDC__" to
8604 check for void *.
8605
8606 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
8607 size_t; the old version tried to do this but casted improperly.
8608 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
8609 (bitset_test): Now returns int, not unsigned long.
8610
8611 * lib/bitset_stats.c: Include "gettext.h".
8612 (_): New macro.
8613 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
8614 name locals "index", as it generates unnecessary warnings on some
8615 hosts that have an "index" function.
8616
8617 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
8618 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
8619 they need translation.
8620 * src/LR0.c (state_list_append, new_itemsets, get_state,
8621 append_states, generate_states): Likewise.
8622 * src/assoc.c (assoc_to_string): Likewise.
8623 * src/closure.c (print_closure, set_firsts, closure): Likewise.
8624 * src/gram.c (grammar_dump): Likewise.
8625 * src/injections.c (injections_compute): Likewise.
8626 * src/lalr.c (lookaheads_print): Likewise.
8627 * src/relation.c (relation_transpose): Likewise.
8628 * src/scan-gram.l: Likewise.
8629 * src/tables.c (table_grow, pack_vector): Likewise.
8630
8631 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
8632 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
8633 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
8634 * m4/mbstate_t.m4: Sync with fileutils.
8635 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
8636
8637 * po/LINGUAS: Add pt_BR.
8638 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
8639 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
8640 lib/timevar.c.
8641 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
8642 manual recommends.
8643 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
8644
8645 * src/complain.c (strerror_r): Remove decl; not needed.
8646 (strerror): Use same pattern as ../lib/error.c.
8647
8648 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
8649
8650 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
8651
8652 * src/main.c (main): Cast result of bindtextdomain and textdomain
8653 to void, to avoid a GCC warning when --disable-nls is in effect.
8654
8655 * src/scan-gram.l: Use strings rather than escapes when possible,
8656 to minimize the number of warnings from xgettext.
8657 (handle_action_dollar, handle_action_at): Don't use isdigit,
8658 as it mishandles negative chars and it may not work as expected
8659 outside the C locale.
8660
8661 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
8662 this is a GCC extension and is not portable to other compilers.
8663
8664 * src/system.h (alloca): Use same pattern as ../lib/error.c.
8665 Do not include <ctype.h>; no longer needed.
8666 Do not include <malloc.h>; no longer needed (and generates
8667 warnings on OpenBSD 3.0).
8668
8669 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
8670 it's not portable.
8671
8672 * tests/regression.at: Do not use 'cc -c input.c -o input';
8673 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
8674
8675 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
8676 exit status as failure, not just exit status 1. Sun C exits
8677 with status 2 sometimes.
8678
8679 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
8680 Use it for the two large tests.
8681
86822002-08-02 Akim Demaille <akim@epita.fr>
8683
8684 * src/conflicts.c (conflicts_output): Don't output rules never
8685 reduced here, since anyway that computation doesn't work.
8686 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
8687 (rule_useless_p, rule_never_reduced_p): New.
8688 (grammar_rules_partial_print): Use a filter instead of a range.
8689 Display the title only if needed.
8690 (grammar_rules_print): Adjust.
8691 (grammar_rules_never_reduced_report): New.
8692 * src/tables.c (action_row): Move the computation of rules never
8693 reduced to...
8694 (token_actions): here.
8695 * src/main.c (main): Make the parser before making the report, so
8696 that rules never reduced are computed.
8697 Call grammar_rules_never_reduced_report.
8698 * src/print.c (print_results): Report rules never reduced.
8699 * tests/conflicts.at, tests/reduce.at: Adjust.
8700
87012002-08-01 Akim Demaille <akim@epita.fr>
8702
8703 Instead of attaching lookaheads and duplicating the rules being
8704 reduced by a state, attach the lookaheads to the reductions.
8705
8706 * src/state.h (state_t): Remove the `lookaheads',
8707 `lookaheads_rule' member.
8708 (reductions_t): Add a `lookaheads' member.
8709 Use a regular array for the `rules'.
8710 * src/state.c (reductions_new): Initialize the lookaheads member
8711 to 0.
8712 (state_rule_lookaheads_print): Adjust.
8713 * src/state.h, src/state.c (state_reductions_find): New.
8714 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
8715 (count_rr_conflicts): Adjust.
8716 * src/lalr.c (LArule): Remove.
8717 (add_lookback_edge): Adjust.
8718 (state_lookaheads_count): New.
8719 (states_lookaheads_initialize): Merge into...
8720 (initialize_LA): this.
8721 (lalr_free): Adjust.
8722 * src/main.c (main): Don't free nullable and derives too early: it
8723 is used by --verbose.
8724 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
8725
87262002-08-01 Akim Demaille <akim@epita.fr>
8727
8728 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
8729 `rule_number_t**'.
8730 (set_derives, free_derives): Rename as...
8731 (derives_compute, derives_free): this.
8732 Adjust all dependencies.
8733 * src/nullable.c (set_nullable, free_nullable): Rename as...
8734 (nullable_compute, nullable_free): these.
8735 (rule_list_t): Store rule_t *, not rule_number_t.
8736 * src/state.c (state_rule_lookaheads_print): Directly compare rule
8737 pointers, instead of their numbers.
8738 * src/main.c (main): Call nullable_free, and derives_free earlier,
8739 as they were lo longer used.
8740
87412002-08-01 Akim Demaille <akim@epita.fr>
8742
8743 * lib/timevar.c (get_time): Include children time.
8744 * src/lalr.h (LA, LArule): Don't export them: used with the
8745 state_t.
8746 * src/lalr.c (LA, LArule): Static.
8747 * src/lalr.h, src/lalr.c (lalr_free): New.
8748 * src/main.c (main): Call it.
8749 * src/tables.c (pack_vector): Check whether loc is >= to the
8750 table_size, not >.
8751 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
8752 (tables_generate): do it, since that's also it which allocates
8753 them.
8754 Don't free LA and LArule, main does.
8755
87562002-07-31 Akim Demaille <akim@epita.fr>
8757
8758 Separate parser tables computation and output.
8759
8760 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
8761 (conflict_list, conflict_list_cnt, table, check, table_ninf)
8762 (yydefgoto, yydefact, high): Move to...
8763 * src/tables.h, src/tables.c: here.
8764 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
8765 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
8766 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
8767 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
8768 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
8769 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
8770 (action_row, save_row, token_actions, save_column, default_goto)
8771 (goto_actions, sort_actions, matching_state, pack_vector)
8772 (table_ninf_remap, pack_table, prepare_actions): Move to...
8773 * src/tables.c: here.
8774 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
8775 * src/output.c (token_actions, output_base, output_conflicts)
8776 (output_check): Merge into...
8777 (prepare_actions): this.
8778 (actions_output): Rename as...
8779 (user_actions_output): this.
8780 * src/main.c (main): Call tables_generate and tables_free.
8781
87822002-07-31 Akim Demaille <akim@epita.fr>
8783
8784 Steal GCC's --time-report support.
8785
8786 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
8787 stolen/adjusted from GCC.
8788 * m4/stage.m4: Remove time related checks.
8789 * m4/timevar.m4: New.
8790 * configure.in: Adjust.
8791 * src/system.h: Adjust to using timevar.h.
8792 * src/getargs.h, src/getargs.c: Support trace_time for
8793 --trace=time.
8794 * src/main.c (stage): Remove.
8795 (main): Replace `stage' invocations with timevar calls.
8796 * src/output.c: Insert pertinent timevar calls.
8797
87982002-07-31 Akim Demaille <akim@epita.fr>
8799
8800 Let --trace have arguments.
8801
8802 * src/getargs.h (enum trace_e): New.
8803 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
8804 (long_options, short_options): --trace/-T takes an optional
8805 argument.
8806 Change all the uses of trace_flag to reflect the new flags.
8807 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
8808
8809 Strengthen `stage' portability.
8810
8811 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
8812 * configure.in: Use it.
8813 Don't check for malloc.h and sys/times.h.
8814 * src/system.h: Include them when appropriate.
8815 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
8816 times and struct tms are available.
8817
88182002-07-30 Akim Demaille <akim@epita.fr>
8819
8820 In verbose parse error message, don't report `error' as an
8821 expected token.
8822 * tests/actions.at (Printers and Destructors): Adjust.
8823 * tests/calc.at (Calculator $1): Adjust.
8824 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
8825 error message, do not report the parser accepts the error token in
8826 that state.
8827
88282002-07-30 Akim Demaille <akim@epita.fr>
8829
8830 Normalize conflict related messages.
8831
8832 * src/complain.h, src/complain.c (warn, complain): New.
8833 * src/conflicts.c (conflicts_print): Use them.
8834 (conflict_report_yacc): New, extracted from...
8835 (conflicts_print): here.
8836 * tests/conflicts.at, tests/existing.at: Adjust.
8837
88382002-07-30 Akim Demaille <akim@epita.fr>
8839
8840 Report rules which are never reduced by the parser: those hidden
8841 by conflicts.
8842
8843 * src/LR0.c (save_reductions): Don't make the final state too
8844 different: save its reduction (accept) instead of having a state
8845 without any action (no shift or goto, no reduce).
8846 Note: the final state is now a ``regular'' state, i.e., the
8847 parsers now contain `reduce 0' as default reduction.
8848 Nevertheless, since they decide to `accept' when yystate =
8849 final_state, they still will not reduce rule 0.
8850 * src/print.c (print_actions, print_reduction): Adjust.
8851 * src/output.c (action_row): Track reduced rules.
8852 (token_actions): Report rules never reduced.
8853 * tests/conflicts.at, tests/regression.at: Adjust.
8854
88552002-07-30 Akim Demaille <akim@epita.fr>
8856
8857 `stage' was accidently included in a previous patch.
8858 Initiate its autoconfiscation.
8859
8860 * configure.in: Look for malloc.h and sys/times.h.
8861 * src/main.c (stage): Adjust.
8862 Report only when trace_flag.
8863
88642002-07-29 Akim Demaille <akim@epita.fr>
8865
8866 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
8867 state_number_t.
8868 (errs_t): symbol_t*, not symbol_number_t.
8869 (reductions_t): rule_t*, not rule_number_t.
8870 (FOR_EACH_SHIFT): New.
8871 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
8872 * src/print.c, src/print_graph.c: Adjust.
8873
88742002-07-29 Akim Demaille <akim@epita.fr>
8875
8876 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
8877
8878 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
8879 (endtoken, accept): these.
8880 * src/reader.c (reader): Set endtoken's default tag to "$end".
8881 Set undeftoken's tag to "$undefined" instead of "$undefined.".
8882 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
8883 Adjust.
8884
88852002-07-29 Akim Demaille <akim@epita.fr>
8886
8887 * src/reduce.c (reduce_grammar): When the language is empty,
8888 complain about the start symbol, not the axiom.
8889 Use its location.
8890 * tests/reduce.at (Empty Language): New.
8891
88922002-07-26 Akim Demaille <akim@epita.fr>
8893
8894 * src/reader.h, src/reader.c (gram_error): ... can't get
8895 yycontrol without making too strong assumptions on the parser
8896 itself.
8897 * src/output.c (prepare_tokens): Use the real 0th value of
8898 token_translations instead of `0'.
8899 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
8900 visible here.
8901 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
8902 for the time being: %locations ought to provide it to yyerror.
8903
89042002-07-25 Akim Demaille <akim@epita.fr>
8905
8906 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
8907 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
8908 * tests/regression.at (Web2c Actions): Adjust.
8909
89102002-07-25 Akim Demaille <akim@epita.fr>
8911
8912 Stop storing rules from 1 to nrules + 1.
8913
8914 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
8915 * src/nullable.c, src/output.c, src/print.c, src/reader.c
8916 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
8917 Iterate from 0 to nrules.
8918 Use rule_number_as_item_number and item_number_as_rule_number.
8919 Adjust to `derive' now containing possibly 0.
8920 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
8921 Handle the `- 1' part in rule numbers from/to item numbers.
8922 * src/conflicts.c (log_resolution): Fix the message which reversed
8923 shift and reduce.
8924 * src/output.c (action_row): Initialize default_rule to -1.
8925 (token_actions): Adjust.
8926 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
8927 expected output.
8928 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
8929
89302002-07-25 Akim Demaille <akim@epita.fr>
8931
8932 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
8933 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
8934 (b4_c_knr_arg_decl): New.
8935 * data/yacc.c: Use it to define yysymprint, yydestruct, and
8936 yyreport_parse_error.
8937
89382002-07-25 Akim Demaille <akim@epita.fr>
8939
8940 * data/yacc.c (yyreport_parse_error): New, extracted from...
8941 (yyparse): here.
8942 (yydestruct, yysymprint): Move above yyparse.
8943 Be K&R compliant.
8944
89452002-07-25 Akim Demaille <akim@epita.fr>
8946
8947 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
8948 replace...
8949 (b4_sint_type, b4_uint_type): these.
8950 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
8951 * tests/regression.at (Web2c Actions): Adjust.
8952
89532002-07-25 Akim Demaille <akim@epita.fr>
8954
8955 * src/gram.h (TIEM_NUMBER_MAX): New.
8956 (item_number_of_rule_number, rule_number_of_item_number): Rename
8957 as...
8958 (rule_number_as_item_number, item_number_as_rule_number): these.
8959 Adjust dependencies.
8960 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
8961 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
8962 (symbol_number_to_vector_number): New.
8963 (order): Of vector_number_t* type.
8964 (base_t, BASE_MAX, BASE_MIN): New.
8965 (froms, tos, width, pos, check): Of base_t type.
8966 (action_number_t, ACTION_MIN, ACTION_MAX): New.
8967 (actrow): Of action_number_t type.
8968 (conflrow): Of unsigned int type.
8969 (table_ninf, base_ninf): New.
8970 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
8971 (muscle_insert_int_table, muscle_insert_base_table)
8972 (muscle_insert_rule_number_table): New.
8973 (prepare_tokens): Output `toknum' as int_table.
8974 (action_row): Returns a rule_number_t.
8975 Use ACTION_MIN, not SHRT_MIN.
8976 (token_actions): yydefact is rule_number_t*.
8977 (table_ninf_remap): New.
8978 (pack_table): Use it for `base' and `table'.
8979 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
8980 replaced with...
8981 (YYPACT_NINF, YYTABLE_NINF): these.
8982 (yypact, yytable): Compute their types instead of hard-coded
8983 `short'.
8984 * tests/regression.at (Web2c Actions): Adjust.
8985
89862002-07-19 Akim Demaille <akim@epita.fr>
8987
8988 * src/scan-gram.l (id): Can start with an underscore.
8989
89902002-07-16 Akim Demaille <akim@epita.fr>
8991
8992 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
8993 Adjust all former `associativity' dependencies.
8994 * src/symtab.c (symbol_new): Default associativity is `undef', not
8995 `right'.
8996 (symbol_check_alias_consistence): Adjust.
8997
89982002-07-09 Akim Demaille <akim@epita.fr>
8999
9000 * doc/bison.texinfo: Properly set the ``header'' part.
9001 Use @dircategory ``GNU programming tools'' as per Texinfo's
9002 documentation.
9003 Use @copying.
9004
90052002-07-09 Akim Demaille <akim@epita.fr>
9006
9007 * lib/quotearg.h: Protect against multiple inclusions.
9008 * src/location.h (location_t): Add a `file' member.
9009 (LOCATION_RESET, LOCATION_PRINT): Adjust.
9010 * src/complain.c (warn_at, complain_at, fatal_at): Drop
9011 `error_one_per_line' support.
9012
90132002-07-09 Akim Demaille <akim@epita.fr>
9014
9015 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
9016 * src/reader.c (lineno): Remove.
9017 Adjust all dependencies.
9018 (get_merge_function): Take a location and use complain_at.
9019 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
9020 * tests/regression.at (Invalid inputs, Mixing %token styles):
9021 Adjust.
9022
90232002-07-09 Akim Demaille <akim@epita.fr>
9024
9025 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
9026 recovery rule, and forbid extensions when --yacc.
9027 (gram_error): Use complain_at.
9028 * src/reader.c (reader): Exit if there were parse errors.
9029
90302002-07-09 Akim Demaille <akim@epita.fr>
9031
9032 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
9033 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
9034 Reported by R Blake <blakers@mac.com>.
9035
90362002-07-09 Akim Demaille <akim@epita.fr>
9037
9038 * data/yacc.c: Output the copyright notive in the header.
9039
90402002-07-03 Akim Demaille <akim@epita.fr>
9041
9042 * src/output.c (froms, tos): Are state_number_t.
9043 (save_column): sp, sp1, and sp2 are state_number_t.
9044 (prepare): Rename `final' as `final_state_number', `nnts' as
9045 `nterms_number', `nrules' as `rules_number', `nstates' as
9046 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
9047 unused.
9048 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
9049 * data/lalr1.cc (nsym_): Remove, unused.
9050
90512002-07-03 Akim Demaille <akim@epita.fr>
9052
9053 * src/lalr.h, src/lalr.c (goto_number_t): New.
9054 * src/lalr.c (goto_list_t): New.
9055 Propagate them.
9056 * src/nullable.c (rule_list_t): New.
9057 Propagate.
9058 * src/types.h: Remove.
9059
90602002-07-03 Akim Demaille <akim@epita.fr>
9061
9062 * src/closure.c (print_fderives): Use rule_rhs_print.
9063 * src/derives.c (print_derives): Use rule_rhs_print.
9064 (rule_list_t): New, replaces `shorts'.
9065 (set_derives): Add comments.
9066 * tests/sets.at (Nullable, Firsts): Adjust.
9067
90682002-07-03 Akim Demaille <akim@epita.fr>
9069
9070 * src/output.c (prepare_actions): Free `tally' and `width'.
9071 (prepare_actions): Allocate and free `order'.
9072 * src/symtab.c (symbols_free): Free `symbols'.
9073 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
9074 * src/output.c (m4_invoke): Move to...
9075 * src/scan-skel.l: here.
9076 (<<EOF>>): Close yyout, and free its name.
9077
90782002-07-03 Akim Demaille <akim@epita.fr>
9079
9080 Fix some memory leaks, and fix a bug: state 0 was examined twice.
9081
9082 * src/LR0.c (new_state): Merge into...
9083 (state_list_append): this.
9084 (new_states): Merge into...
9085 (generate_states): here.
9086 (set_states): Don't ensure a proper `errs' state member here, do it...
9087 * src/conflicts.c (conflicts_solve): here.
9088 * src/state.h, src/state.c: Comment changes.
9089 (state_t): Rename member `shifts' as `transitions'.
9090 Adjust all dependencies.
9091 (errs_new): For consistency, also take the values as argument.
9092 (errs_dup): Remove.
9093 (state_errs_set): New.
9094 (state_reductions_set, state_transitions_set): Assert that no
9095 previous value was assigned.
9096 (state_free): New.
9097 (states_free): Use it.
9098 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
9099 temporary storage: use `errs' and `nerrs' as elsewhere.
9100 (set_conflicts): Allocate and free this `errs'.
9101
91022002-07-02 Akim Demaille <akim@epita.fr>
9103
9104 * lib/libiberty.h: New.
9105 * lib: Update the bitset implementation from upstream.
9106 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
9107 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
9108 * src/main.c: Adjust bitset stats calls.
9109
91102002-07-01 Paul Eggert <eggert@twinsun.com>
9111
9112 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
9113 char, so that negative chars don't collide with $.
9114
91152002-06-30 Akim Demaille <akim@epita.fr>
9116
9117 Have the GLR tests be `warning' checked, and fix the warnings.
9118
9119 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
9120 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
9121 (yyremoveDeletes): `yyi' and `yyj' are size_t.
9122 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
9123 (yyaddDeferredAction): static.
9124 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
9125 (yyreportParseError): yyprefix is const.
9126 yytokenp is used only when verbose.
9127 (yy__GNUC__): Replace with __GNUC__.
9128 (yypdumpstack): yyi is size_t.
9129 (yypreference): Un-yy local variables and arguments, to avoid
9130 clashes with `yyr1'. Anyway, we are not in the user name space.
9131 (yytname_size): be an int, as is compared with ints.
9132 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
9133 Use them.
9134 * tests/cxx-gram.at: Use quotation to protect $1.
9135 Use AT_COMPILE to enable warnings hunts.
9136 Prototype yylex and yyerror.
9137 `Use' argc.
9138 Include `string.h', not `strings.h'.
9139 Produce and prototype stmtMerge only when used.
9140 yylex takes a location.
9141
91422002-06-30 Akim Demaille <akim@epita.fr>
9143
9144 We spend a lot of time in quotearg, in particular when --verbose.
9145
9146 * src/symtab.c (symbol_get): Store a quoted version of the key.
9147 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
9148 Adjust all callers.
9149
91502002-06-30 Akim Demaille <akim@epita.fr>
9151
9152 * src/state.h (reductions_t): Rename member `nreds' as num.
9153 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
9154 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
9155
91562002-06-30 Akim Demaille <akim@epita.fr>
9157
9158 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
9159 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
9160 (shifts_to): Rename as...
9161 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
9162 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
9163 (TRANSITION_IS_DISABLED, transitions_to): these.
9164
91652002-06-30 Akim Demaille <akim@epita.fr>
9166
9167 * src/print.c (print_shifts, print_gotos): Merge into...
9168 (print_transitions): this.
9169 (print_transitions, print_errs, print_reductions): Align the
9170 lookaheads columns.
9171 (print_core, print_transitions, print_errs, print_state,
9172 print_grammar): Output empty lines separator before, not after.
9173 (state_default_rule_compute): Rename as...
9174 (state_default_rule): this.
9175 * tests/conflicts.at (Defaulted Conflicted Reduction),
9176 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
9177 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
9178
91792002-06-30 Akim Demaille <akim@epita.fr>
9180
9181 Display items as we display rules.
9182
9183 * src/gram.h, src/gram.c (rule_lhs_print): New.
9184 * src/gram.c (grammar_rules_partial_print): Use it.
9185 * src/print.c (print_core): Likewise.
9186 * tests/conflicts.at (Defaulted Conflicted Reduction),
9187 (Unresolved SR Conflicts): Adjust.
9188 (Unresolved SR Conflicts): Adjust and rename as...
9189 (Resolved SR Conflicts): this, as was meant.
9190 * tests/regression.at (Web2c Report): Adjust.
9191
91922002-06-30 Akim Demaille <akim@epita.fr>
9193
9194 * src/print.c (state_default_rule_compute): New, extracted from...
9195 (print_reductions): here.
9196 Pessimize, but clarify the code.
9197 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
9198
91992002-06-30 Akim Demaille <akim@epita.fr>
9200
9201 * src/output.c (action_row): Let default_rule be always a rule
9202 number.
9203
92042002-06-30 Akim Demaille <akim@epita.fr>
9205
9206 * src/closure.c (print_firsts, print_fderives, closure):
9207 Use BITSET_EXECUTE.
9208 * src/lalr.c (lookaheads_print): Likewise.
9209 * src/state.c (state_rule_lookaheads_print): Likewise.
9210 * src/print_graph.c (print_core): Likewise.
9211 * src/print.c (print_reductions): Likewise.
9212 * src/output.c (action_row): Likewise.
9213 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
9214
92152002-06-30 Akim Demaille <akim@epita.fr>
9216
9217 * src/print_graph.c: Use report_flag.
9218
92192002-06-30 Akim Demaille <akim@epita.fr>
9220
9221 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
9222 to...
9223 * src/relation.h, src/relation.c (traverse, relation_digraph)
9224 (relation_print, relation_transpose): New.
9225
92262002-06-30 Akim Demaille <akim@epita.fr>
9227
9228 * src/state.h, src/state.c (shifts_to): New.
9229 * src/lalr.c (build_relations): Use it.
9230
92312002-06-30 Akim Demaille <akim@epita.fr>
9232
9233 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
9234 (item_number_of_rule_number, rule_number_of_item_number): New.
9235 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
9236 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
9237 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
9238 Propagate their use.
9239 Much remains to be done, in particular wrt `shorts' from types.h.
9240
92412002-06-30 Akim Demaille <akim@epita.fr>
9242
9243 * src/symtab.c (symbol_new): Initialize the `printer' member.
9244
92452002-06-30 Akim Demaille <akim@epita.fr>
9246
9247 * src/LR0.c (save_reductions): Remove, replaced by...
9248 * src/state.h, src/state.c (state_reductions_set): New.
9249 (reductions, errs): Rename as...
9250 (reductions_t, errs_t): these.
9251 Adjust all dependencies.
9252
92532002-06-30 Akim Demaille <akim@epita.fr>
9254
9255 * src/LR0.c (state_list_t, state_list_append): New.
9256 (first_state, last_state): Now symbol_list_t.
9257 (this_state): Remove.
9258 (new_itemsets, append_states, save_reductions): Take a state_t as
9259 argument.
9260 (set_states, generate_states): Adjust.
9261 (save_shifts): Remove, replaced by...
9262 * src/state.h, src/state.c (state_shifts_set): New.
9263 (shifts): Rename as...
9264 (shifts_t): this.
9265 Adjust all dependencies.
9266 * src/state.h (state_t): Remove the `next' member.
9267
92682002-06-30 Akim Demaille <akim@epita.fr>
9269
9270 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
9271 escaped in slot 0.
9272
92732002-06-30 Akim Demaille <akim@epita.fr>
9274
9275 Use hash.h for the state hash table.
9276
9277 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
9278 (allocate_storage): Use state_hash_new.
9279 (free_storage): Use state_hash_free.
9280 (new_state, get_state): Adjust.
9281 * src/lalr.h, src/lalr.c (states): Move to...
9282 * src/states.h (state_t): Remove the `link' member, no longer
9283 used.
9284 * src/states.h, src/states.c: here.
9285 (state_hash_new, state_hash_free, state_hash_lookup)
9286 (state_hash_insert, states_free): New.
9287 * src/states.c (state_table, state_compare, state_hash): New.
9288 * src/output.c (output_actions): Do not free states now, since we
9289 still need to know the final_state number in `prepare', called
9290 afterwards. Do it...
9291 * src/main.c (main): here: call states_free after `output'.
9292
92932002-06-30 Akim Demaille <akim@epita.fr>
9294
9295 * src/state.h, src/state.c (state_new): New, extracted from...
9296 * src/LR0.c (new_state): here.
9297 * src/state.h (STATE_ALLOC): Move to...
9298 * src/state.c: here.
9299 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
9300 * src/state.h, src/state.c: here.
9301
93022002-06-30 Akim Demaille <akim@epita.fr>
9303
9304 * src/reader.c (gensym): Rename as...
9305 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
9306 (getsym): Rename as...
9307 (symbol_get): this.
9308
93092002-06-30 Akim Demaille <akim@epita.fr>
9310
9311 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
9312 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
9313 * src/output.c, src/print.c, src/print_graph.c: Propagate.
9314 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
9315
93162002-06-30 Akim Demaille <akim@epita.fr>
9317
9318 Make the test suite pass with warnings checked.
9319
9320 * tests/actions.at (Printers and Destructors): Improve.
9321 Avoid unsigned vs. signed issues.
9322 * tests/calc.at: Don't exercise the scanner here, do it...
9323 * tests/input.at (Torturing the Scanner): here.
9324
93252002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9326
9327 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
9328 reorganize first lines parallel to yacc.c.
9329
93302002-06-28 Akim Demaille <akim@epita.fr>
9331
9332 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
9333 (b4_token_enum, b4_token_defines): New, factored from...
9334 * data/lalr1.cc, data/yacc.c, glr.c: here.
9335
93362002-06-28 Akim Demaille <akim@epita.fr>
9337
9338 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
9339 unused variables.
9340 * src/output.c (merger_output): static.
9341
93422002-06-28 Akim Demaille <akim@epita.fr>
9343
9344 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
9345 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
9346 pacify GCC.
9347 * src/output.c (save_row): Initialize all the variables to pacify GCC.
9348
93492002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9350
9351 Accumulated changelog for new GLR parsing features.
9352
9353 * src/conflicts.c (count_total_conflicts): Change name to
9354 conflicts_total_count.
9355 * src/conflicts.h: Ditto.
9356 * src/output.c (token_actions): Use the new name.
9357 (output_conflicts): Change conflp => conflict_list_heads, and
9358 confl => conflict_list for better readability.
9359 * data/glr.c: Use the new names.
9360 * NEWS: Add self to GLR announcement.
9361
9362 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
9363
9364 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
9365 Akim Demaille.
9366
9367 * data/bison.glr: Change name to glr.c
9368 * data/glr.c: Renamed from bison.glr.
9369 * data/Makefile.am: Add glr.c
9370
9371 * src/getargs.c:
9372
9373 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
9374 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
9375
9376 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9377
9378 * data/bison.glr: Be sure to restore the
9379 current #line when returning to the skeleton contents after having
9380 exposed the input file's #line.
9381
9382 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9383
9384 * data/bison.glr: Bring up to date with changes to bison.simple.
9385
9386 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9387
9388 * data/bison.glr: Correct definitions that use b4_prefix.
9389 Various reformatting.
9390 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
9391 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
9392 yytokenp argument; now part of stack.
9393 (yychar): Define to behave as documented.
9394 (yyclearin): Ditto.
9395
9396 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9397
9398 * src/reader.h: Add declaration for free_merger_functions.
9399
9400 * src/reader.c (merge_functions): New variable.
9401 (get_merge_function): New function.
9402 (free_merger_functions): New function.
9403 (readgram): Check for %prec that is not followed by a symbol.
9404 Handle %dprec and %merge declarations.
9405 (packgram): Initialize dprec and merger fields in rules array.
9406
9407 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
9408 conflict_list_cnt, conflict_list_free): New variables.
9409 (table_grow): Also grow conflict_table.
9410 (prepare_rules): Output dprec and merger tables.
9411 (conflict_row): New function.
9412 (action_row): Output conflict lists for GLR parser. Don't use
9413 default reduction in conflicted states for GLR parser so that there
9414 are spaces for the conflict lists.
9415 (save_row): Also save conflict information.
9416 (token_actions): Allocate conflict list.
9417 (merger_output): New function.
9418 (pack_vector): Pack conflict table, too.
9419 (output_conflicts): New function to output yyconflp and yyconfl.
9420 (output_check): Allocate conflict_tos.
9421 (output_actions): Output conflict tables, also.
9422 (output_skeleton): Output b4_mergers definition.
9423 (prepare): Output b4_max_rhs_length definition.
9424 Use 'bison.glr' as default skeleton for GLR parsers.
9425
9426 * src/gram.c (glr_parser): New flag.
9427 (grammar_free): Call free_merger_functions.
9428
9429 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
9430 all pairs of conflicting reductions, rather than just all tokens
9431 causing conflicts. Needed to size conflict tables.
9432 (conflicts_output): Modify call to count_rr_conflicts for new
9433 interface.
9434 (conflicts_print): Ditto.
9435 (count_total_conflicts): New function.
9436
9437 * src/reader.h (merger_list): New type.
9438 (merge_functions): New variable.
9439
9440 * src/lex.h (tok_dprec, tok_merge): New token types.
9441
9442 * src/gram.h (rule_s): Add dprec and merger fields.
9443 (glr_parser): New flag.
9444
9445 * src/conflicts.h (count_total_conflicts): New function.
9446
9447 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
9448
9449 * doc/bison.texinfo (Generalized LR Parsing): New section.
9450 (GLR Parsers): New section.
9451 (Language and Grammar): Mention GLR parsing.
9452 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
9453 Correct typo ("tge" -> "the").
9454
9455 * data/bison.glr: New skeleton for GLR parsing.
9456
9457 * tests/cxx-gram.at: New tests for GLR parsing.
9458
9459 * tests/testsuite.at: Include cxx-gram.at.
9460
9461 * tests/Makefile.am: Add cxx-gram.at.
9462
9463 * src/parse-gram.y:
9464
9465 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
9466
9467 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
9468
94692002-06-27 Akim Demaille <akim@epita.fr>
9470
9471 * src/options.h, src/options.c: Remove.
9472 * src/getargs.c (short_options, long_options): New.
9473
94742002-06-27 Akim Demaille <akim@epita.fr>
9475
9476 * data/bison.simple, data/bison.c++: Rename as...
9477 * data/yacc.c, data/lalr1.cc: these.
9478 * doc/bison.texinfo (Environment Variables): Remove.
9479
94802002-06-25 Raja R Harinath <harinath@cs.umn.edu>
9481
9482 * src/getargs.c (report_argmatch): Initialize strtok().
9483
94842002-06-20 Akim Demaille <akim@epita.fr>
9485
9486 * data/bison.simple (b4_symbol_actions): New, replaces...
9487 (b4_symbol_destructor, b4_symbol_printer): these.
9488 (yysymprint): Be sure to call YYPRINT only for tokens, and using
9489 user token numbers.
9490
94912002-06-20 Akim Demaille <akim@epita.fr>
9492
9493 * data/bison.simple (yydestructor): Rename as...
9494 (yydestruct): this.
9495
94962002-06-20 Akim Demaille <akim@epita.fr>
9497
9498 * src/symtab.h, src/symtab.c (symbol_type_set)
9499 (symbol_destructor_set, symbol_precedence_set): The location is
9500 the last argument.
9501 Adjust all callers.
9502
95032002-06-20 Akim Demaille <akim@epita.fr>
9504
9505 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
9506 internals.
9507 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
9508 Takes a location.
9509 * src/symtab.h, src/symtab.c (symbol_class_set)
9510 (symbol_user_token_number_set): Likewise.
9511 Adjust all callers.
9512 Promote complain_at.
9513 * tests/input.at (Type Clashes): Adjust.
9514
95152002-06-20 Akim Demaille <akim@epita.fr>
9516
9517 * data/bison.simple (YYLEX): Fix the declaration when
9518 %pure-parser.
9519
95202002-06-20 Akim Demaille <akim@epita.fr>
9521
9522 * data/bison.simple (yysymprint): Don't print the token number,
9523 just its name.
9524 * tests/actions.at (Destructors): Rename as...
9525 (Printers and Destructors): this.
9526 Also exercise %printer.
9527
95282002-06-20 Akim Demaille <akim@epita.fr>
9529
9530 * data/bison.simple (YYDSYMPRINT): New.
9531 Use it to remove many of the #if YYDEBUG/if (yydebug).
9532
95332002-06-20 Akim Demaille <akim@epita.fr>
9534
9535 * src/symtab.h, src/symtab.c (symbol_t): printer and
9536 printer_location are new members.
9537 (symbol_printer_set): New.
9538 * src/parse-gram.y (PERCENT_PRINTER): New token.
9539 Handle its associated rule.
9540 * src/scan-gram.l: Adjust.
9541 (handle_destructor_at, handle_destructor_dollar): Rename as...
9542 (handle_symbol_code_at, handle_symbol_code_dollar): these.
9543 * src/output.c (symbol_printers_output): New.
9544 (output_skeleton): Call it.
9545 * data/bison.simple (yysymprint): New. Cannot be named yyprint
9546 since there are already many grammar files with a user `yyprint'.
9547 Replace the calls to YYPRINT to calls to yysymprint.
9548 * tests/calc.at: Adjust.
9549 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
9550 taking advantage of parser very internal details (stack size!).
9551
95522002-06-20 Akim Demaille <akim@epita.fr>
9553
9554 * src/scan-gram.l: Complete the scanner with the missing patterns
9555 to pacify Flex.
9556 Use `quote' and `symbol_tag_get' where appropriate.
9557
95582002-06-19 Akim Demaille <akim@epita.fr>
9559
9560 * tests/actions.at (Destructors): Augment to test locations.
9561 * data/bison.simple (yydestructor): Pass it the current location
9562 if locations are enabled.
9563 Prototype only when __STDC__ or C++.
9564 Change the argument names to move into the yy name space: there is
9565 user code here.
9566
95672002-06-19 Akim Demaille <akim@epita.fr>
9568
9569 * data/bison.simple (b4_pure_if): New.
9570 Use it instead of #ifdef YYPURE.
9571
95722002-06-19 Akim Demaille <akim@epita.fr>
9573
9574 * data/bison.simple (b4_location_if): New.
9575 Use it instead of #ifdef YYLSP_NEEDED.
9576
95772002-06-19 Akim Demaille <akim@epita.fr>
9578
9579 Prepare @$ in %destructor, but currently don't bind it in the
9580 skeleton, as %location use is not cleaned up yet.
9581
9582 * src/scan-gram.l (handle_dollar, handle_destructor_at)
9583 (handle_action_at): New.
9584 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
9585 a braced_code_t and a location as additional arguments.
9586 (handle_destructor_dollar): Instead of requiring `b4_eval', just
9587 unquote one when outputting `b4_dollar_dollar'.
9588 Adjust callers.
9589 * data/bison.simple (b4_eval): Remove.
9590 (b4_symbol_destructor): Adjust.
9591 * tests/input.at (Invalid @n): Adjust.
9592
95932002-06-19 Zack Weinberg <zack@codesourcery.com>
9594
9595 * doc/bison.texinfo: Document ability to have multiple
9596 prologue sections.
9597
95982002-06-18 Akim Demaille <akim@epita.fr>
9599
9600 * src/files.c (compute_base_names): When computing the output file
9601 names from the input file name, strip the directory part.
9602
96032002-06-18 Akim Demaille <akim@epita.fr>
9604
9605 * data/bison.simple.new: Comment changes.
9606 Reported by Andreas Schwab.
9607
96082002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
9609
9610 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
9611 there are no `label `yyoverflowlab' defined but not used' warnings
9612 when yyoverflow is defined.
9613
96142002-06-18 Akim Demaille <akim@epita.fr>
9615
9616 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
9617 new member.
9618 (symbol_destructor_set): Adjust.
9619 * src/output.c (symbol_destructors_output): Output the destructor
9620 locations.
9621 Output the symbol name.
9622 * data/bison.simple (b4_symbol_destructor): Adjust.
9623
96242002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
9625 and Akim Demaille <akim@epita.fr>
9626
9627 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
9628 what's left on the stack when the error recovery hits EOF.
9629 * tests/actions.at (Destructors): Complete to exercise this case.
9630
96312002-06-17 Akim Demaille <akim@epita.fr>
9632
9633 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
9634 arguments is really empty, not only equal to `[]'.
9635 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
9636 member.
9637 (symbol_destructor_set): New.
9638 * src/output.c (symbol_destructors_output): New.
9639 * src/reader.h (brace_code_t, current_braced_code): New.
9640 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
9641 (handle_dollar): Rename as...
9642 (handle_action_dollar): this.
9643 (handle_destructor_dollar): New.
9644 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
9645 (grammar_declaration): Use it.
9646 * data/bison.simple (yystos): Is always defined.
9647 (yydestructor): New.
9648 * tests/actions.at (Destructors): New.
9649 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
9650
96512002-06-17 Akim Demaille <akim@epita.fr>
9652
9653 * src/symlist.h, src/symlist.c (symbol_list_length): New.
9654 * src/scan-gram.l (handle_dollar, handle_at): Compute the
9655 rule_length only when needed.
9656 * src/output.c (actions_output, token_definitions_output): Output
9657 the full M4 block.
9658 * src/symtab.c: Don't access directly to the symbol tag, use
9659 symbol_tag_get.
9660 * src/parse-gram.y: Use symbol_list_free.
9661
96622002-06-17 Akim Demaille <akim@epita.fr>
9663
9664 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
9665 (symbol_list_prepend, get_type_name): Move to...
9666 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
9667 (symbol_list_prepend, symbol_list_n_type_name_get): here.
9668 Adjust all callers.
9669 (symbol_list_free): New.
9670 * src/scan-gram.l (handle_dollar): Takes a location.
9671 * tests/input.at (Invalid $n): Adjust.
9672
96732002-06-17 Akim Demaille <akim@epita.fr>
9674
9675 * src/reader.h, src/reader.c (symbol_list_new): Export it.
9676 (symbol_list_prepend): New.
9677 * src/parse-gram.y (%union): `list' is a new member.
9678 (symbols.1): New, replaces...
9679 (terms_to_prec.1, nterms_to_type.1): these.
9680 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
9681 Take a location as additional argument.
9682 Adjust all callers.
9683
96842002-06-15 Akim Demaille <akim@epita.fr>
9685
9686 * src/parse-gram.y: Move %token in the declaration section so that
9687 we don't depend upon CVS Bison.
9688
96892002-06-15 Akim Demaille <akim@epita.fr>
9690
9691 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
9692 * src/print.c (print_core): Use it.
9693
96942002-06-15 Akim Demaille <akim@epita.fr>
9695
9696 * src/conflicts.c (log_resolution): Accept the rule involved in
9697 the sr conflicts instead of the lookahead number that points to
9698 that rule.
9699 (flush_reduce): Accept the current lookahead vector as argument,
9700 instead of the index in LA.
9701 (resolve_sr_conflict): Accept the current number of lookahead
9702 bitset to consider for the STATE, instead of the index in LA.
9703 (set_conflicts): Adjust.
9704 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
9705
97062002-06-15 Akim Demaille <akim@epita.fr>
9707
9708 * src/state.h (state_t): Replace the `lookaheadsp' member, a
9709 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
9710 Adjust all dependencies.
9711 * src/lalr.c (initialize_lookaheads): Split into...
9712 (states_lookaheads_count, states_lookaheads_initialize): these.
9713 (lalr): Adjust.
9714
97152002-06-15 Akim Demaille <akim@epita.fr>
9716
9717 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
9718 out of...
9719 (grammar_rules_print): here.
9720 * src/reduce.c (reduce_output): Use it.
9721 * tests/reduce.at (Useless Rules, Reduced Automaton)
9722 (Underivable Rules): Adjust.
9723
97242002-06-15 Akim Demaille <akim@epita.fr>
9725
9726 Copy BYacc's nice way to report the grammar.
9727
9728 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
9729 New.
9730 Don't print the rules' location, it is confusing and useless.
9731 (rule_print): Use grammar_rhs_print.
9732 * src/print.c (print_grammar): Use grammar_rules_print.
9733
97342002-06-15 Akim Demaille <akim@epita.fr>
9735
9736 Complete and rationalize `useless thing' warnings.
9737
9738 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
9739 (symbol_tag_print): New.
9740 Use them everywhere in place of accessing directly the tag member.
9741 * src/gram.h, src/gram.c (rule_print): New.
9742 Use it where a rule used to be printed `by hand'.
9743 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
9744 (reduce_grammar_tables): Report the useless rules.
9745 (reduce_print): Useless things are a warning, not an error.
9746 Report it as such.
9747 * tests/reduce.at (Useless Nonterminals, Useless Rules):
9748 (Reduced Automaton, Underivable Rules): Adjust.
9749 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
9750 * tests/conflicts.at (Unresolved SR Conflicts)
9751 (Solved SR Conflicts): Adjust.
9752
97532002-06-15 Akim Demaille <akim@epita.fr>
9754
9755 Let symbols have a location.
9756
9757 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
9758 (getsym): Adjust.
9759 Adjust all callers.
9760 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
9761 Use location_t, not int.
9762 * src/symtab.c (symbol_check_defined): Take advantage of the
9763 location.
9764 * tests/regression.at (Invalid inputs): Adjust.
9765
97662002-06-15 Akim Demaille <akim@epita.fr>
9767
9768 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
9769 (input): Don't try to initialize yylloc here, do it in the
9770 scanner.
9771 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
9772 * src/gram.h (rule_t): Change line and action_line into location
9773 and action_location, of location_t type.
9774 Adjust all dependencies.
9775 * src/location.h, src/location.c (empty_location): New.
9776 * src/reader.h, src/reader.c (grammar_start_symbol_set)
9777 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
9778 (grammar_current_rule_symbol_append)
9779 (grammar_current_rule_action_append): Expect a location as argument.
9780 * src/reader.c (grammar_midrule_action): Adjust to attach an
9781 action's location as dummy symbol location.
9782 * src/symtab.h, src/symtab.c (startsymbol_location): New.
9783 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
9784 the line numbers.
9785
97862002-06-14 Akim Demaille <akim@epita.fr>
9787
9788 Grammar declarations may be found in the grammar section.
9789
9790 * src/parse-gram.y (rules_or_grammar_declaration): New.
9791 (declarations): Each declaration may end with a semicolon, not
9792 just...
9793 (grammar_declaration): `"%union"'.
9794 (grammar): Branch to rules_or_grammar_declaration.
9795
97962002-06-14 Akim Demaille <akim@epita.fr>
9797
9798 * src/main.c (main): Invoke scanner_free.
9799
98002002-06-14 Akim Demaille <akim@epita.fr>
9801
9802 * src/output.c (m4_invoke): Extracted from...
9803 (output_skeleton): here.
9804 Free tempfile.
9805
98062002-06-14 Akim Demaille <akim@epita.fr>
9807
9808 * src/parse-gram.y (directives, directive, gram)
9809 (grammar_directives, precedence_directives, precedence_directive):
9810 Rename as...
9811 (declarations, declaration, grammar, grammar_declaration)
9812 (precedence_declaration, precedence_declarator): these.
9813 (symbol_declaration): New.
9814
98152002-06-14 Akim Demaille <akim@epita.fr>
9816
9817 * src/files.c (action_obstack): Remove, unused.
9818 (output_obstack): Remove it, and all its dependencies, as it is no
9819 longer needed.
9820 * src/reader.c (epilogue_set): Build the epilogue in the
9821 muscle_obstack.
9822 * src/output.h, src/output.c (muscle_obstack): Move to...
9823 * src/muscle_tab.h, src/muscle_tab.h: here.
9824 (muscle_init): Initialize muscle_obstack.
9825 (muscle_free): New.
9826 * src/main.c (main): Call it.
9827
98282002-06-14 Akim Demaille <akim@epita.fr>
9829
9830 * src/location.h: New, extracted from...
9831 * src/reader.h: here.
9832 * src/Makefile.am (noinst_HEADERS): Merge into
9833 (bison_SOURCES): this.
9834 Add location.h.
9835 * src/parse-gram.y: Use location_t instead of Bison's.
9836 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
9837 Use location_t instead of ints.
9838
98392002-06-14 Akim Demaille <akim@epita.fr>
9840
9841 * data/bison.simple, data/bison.c++: Be sure to restore the
9842 current #line when returning to the skeleton contents after having
9843 exposed the input file's #line.
9844
98452002-06-12 Akim Demaille <akim@epita.fr>
9846
9847 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
9848 eager.
9849 * tests/actions.at (Exotic Dollars): New.
9850
98512002-06-12 Akim Demaille <akim@epita.fr>
9852
9853 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
9854 ['"/] too eagerly.
9855 * tests/input.at (Torturing the Scanner): New.
9856
98572002-06-11 Akim Demaille <akim@epita.fr>
9858
9859 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
9860 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
9861 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
9862 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
9863 * src/reader.c (reader): Use it.
9864
98652002-06-11 Akim Demaille <akim@epita.fr>
9866
9867 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
9868 Adjust all callers.
9869 (scanner_last_string_free): New.
9870
98712002-06-11 Akim Demaille <akim@epita.fr>
9872
9873 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
9874 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
9875 (last_string, YY_OBS_FREE): New.
9876 Use them when returning an ID.
9877
98782002-06-11 Akim Demaille <akim@epita.fr>
9879
9880 Have Bison grammars parsed by a Bison grammar.
9881
9882 * src/reader.c, src/reader.h (prologue_augment): New.
9883 * src/reader.c (copy_definition): Remove.
9884
9885 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
9886 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
9887 (grammar_current_rule_prec_set, grammar_current_rule_check)
9888 (grammar_current_rule_symbol_append)
9889 (grammar_current_rule_action_append): Export.
9890 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
9891 (symbol_list_action_append): Remove.
9892 Hook the routines from reader.
9893 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
9894 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
9895
9896 * src/reader.c (read_declarations): Remove, unused.
9897
9898 * src/parse-gram.y: Handle the epilogue.
9899 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
9900 (grammar_start_symbol_set): this.
9901 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
9902 * src/reader.c (readgram): Remove, unused.
9903 (reader): Adjust to insert eoftoken and axiom where appropriate.
9904
9905 * src/reader.c (copy_dollar): Replace with...
9906 * src/scan-gram.h (handle_dollar): this.
9907 * src/parse-gram.y: Remove `%thong'.
9908
9909 * src/reader.c (copy_at): Replace with...
9910 * src/scan-gram.h (handle_at): this.
9911
9912 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
9913 New.
9914
9915 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
9916 time being.
9917
9918 * src/reader.h, src/reader.c (grammar_rule_end): New.
9919
9920 * src/parse.y (current_type, current_class): New.
9921 Implement `%nterm', `%token' support.
9922 Merge `%term' into `%token'.
9923 (string_as_id): New.
9924 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
9925 type name.
9926
9927 * src/parse-gram.y: Be sure to handle properly the beginning of
9928 rules.
9929
9930 * src/parse-gram.y: Handle %type.
9931 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
9932
9933 * src/parse-gram.y: More directives support.
9934 * src/options.c: No longer handle source directives.
9935
9936 * src/parse-gram.y: Fix %output.
9937
9938 * src/parse-gram.y: Handle %union.
9939 Use the prologue locations.
9940 * src/reader.c (parse_union_decl): Remove.
9941
9942 * src/reader.h, src/reader.c (epilogue_set): New.
9943 * src/parse-gram.y: Use it.
9944
9945 * data/bison.simple, data/bison.c++: b4_stype is now either not
9946 defined, then default to int, or to the contents of %union,
9947 without `union' itself.
9948 Adjust.
9949 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
9950
9951 * src/output.c (actions_output): Don't output braces, as they are
9952 already handled by the scanner.
9953
9954 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
9955 characters to themselves.
9956
9957 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
9958 that the epilogue has a proper #line.
9959
9960 * src/parse-gram.y: Handle precedence/associativity.
9961
9962 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
9963 a terminal.
9964 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
9965 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
9966 at all to define terminals that cannot be emitted.
9967
9968 * src/scan-gram.l: Escape M4 characters.
9969
9970 * src/scan-gram.l: Working properly with escapes in user
9971 strings/characters.
9972
9973 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
9974 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
9975 grammar.
9976 Use more modest sizes, as for the time being the parser does not
9977 release memory, and therefore the process swallows a huge amount
9978 of memory.
9979
9980 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
9981 stricter %token grammar.
9982
9983 * src/symtab.h (associativity): Add `undef_assoc'.
9984 (symbol_precedence_set): Do nothing when passed an undef_assoc.
9985 * src/symtab.c (symbol_check_alias_consistence): Adjust.
9986
9987 * tests/regression.at (Invalid %directive): Remove, as it is now
9988 meaningless.
9989 (Invalid inputs): Adjust to the new error messages.
9990 (Token definitions): The new grammar doesn't allow too many
9991 eccentricities.
9992
9993 * src/lex.h, src/lex.c: Remove.
9994 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
9995 (copy_character, copy_string2, copy_string, copy_identifier)
9996 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
9997 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
9998 (parse_action): Remove.
9999 * po/POTFILES.in: Adjust.
10000
100012002-06-11 Akim Demaille <akim@epita.fr>
10002
10003 * src/reader.c (parse_action): Don't store directly into the
10004 rule's action member: return the action as a string.
10005 Don't require `rule_length' as an argument: compute it.
10006 (grammar_current_rule_symbol_append)
10007 (grammar_current_rule_action_append): New, eved out from
10008 (readgram): here.
10009 Remove `action_flag', `rulelength', unused now.
10010
100112002-06-11 Akim Demaille <akim@epita.fr>
10012
10013 * src/reader.c (grammar_current_rule_prec_set).
10014 (grammar_current_rule_check): New, eved out from...
10015 (readgram): here.
10016 Remove `xaction', `first_rhs': useless.
10017 * tests/input.at (Type clashes): New.
10018 * tests/existing.at (GNU Cim Grammar): Adjust.
10019
100202002-06-11 Akim Demaille <akim@epita.fr>
10021
10022 * src/reader.c (grammar_midrule_action): New, Eved out from
10023 (readgram): here.
10024
100252002-06-11 Akim Demaille <akim@epita.fr>
10026
10027 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
10028 New.
10029 (readgram): Use them as replacement of inlined code, crule and
10030 crule1.
10031
100322002-06-11 Akim Demaille <akim@epita.fr>
10033
10034 * src/reader.c (grammar_end, grammar_symbol_append): New.
10035 (readgram): Use them.
10036 Make the use of `p' as local as possible.
10037
100382002-06-10 Akim Demaille <akim@epita.fr>
10039
10040 GCJ's parser requires the tokens to be defined before the prologue.
10041
10042 * data/bison.simple: Output the token definition before the user's
10043 prologue.
10044 * tests/regression.at (Braces parsing, Duplicate string)
10045 (Mixing %token styles): Check the output from bison.
10046 (Early token definitions): New.
10047
100482002-06-10 Akim Demaille <akim@epita.fr>
10049
10050 * src/symtab.c (symbol_user_token_number_set): Don't complain when
10051 assigning twice the same user number to a token, so that we can
10052 use it in...
10053 * src/lex.c (lex): here.
10054 Also use `symbol_class_set' instead of hand written code.
10055 * src/reader.c (parse_assoc_decl): Likewise.
10056
100572002-06-10 Akim Demaille <akim@epita.fr>
10058
10059 * src/symtab.c, src/symtab.c (symbol_class_set)
10060 (symbol_user_token_number_set): New.
10061 * src/reader.c (parse_token_decl): Use them.
10062 Use a switch instead of ifs.
10063 Use a single argument.
10064
100652002-06-10 Akim Demaille <akim@epita.fr>
10066
10067 Remove `%thong' support as it is undocumented, unused, duplicates
10068 `%token's job, and creates useless e-mail traffic with people who
10069 want to know what it is, why it is undocumented, unused, and
10070 duplicates `%token's job.
10071
10072 * src/reader.c (parse_thong_decl): Remove.
10073 * src/options.c (option_table): Remove "thong".
10074 * src/lex.h (tok_thong): Remove.
10075
100762002-06-10 Akim Demaille <akim@epita.fr>
10077
10078 * src/symtab.c, src/symtab.c (symbol_type_set)
10079 (symbol_precedence_set): New.
10080 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
10081 (value_components_used): Remove, unused.
10082
100832002-06-09 Akim Demaille <akim@epita.fr>
10084
10085 Move symbols handling code out of the reader.
10086
10087 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
10088 (axiom): Move to...
10089 * src/symtab.h, src/symtab.c: here.
10090
10091 * src/gram.c (start_symbol): Remove: use startsymbol->number.
10092 * src/reader.c (startval): Rename as...
10093 * src/symtab.h, src/symtab.c (startsymbol): this.
10094 * src/reader.c: Adjust.
10095
10096 * src/reader.c (symbol_check_defined, symbol_make_alias)
10097 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
10098 (token_translations_init)
10099 Move to...
10100 * src/symtab.c: here.
10101 * src/reader.c (packsymbols): Move to...
10102 * src/symtab.h, src/symtab.c (symbols_pack): here.
10103 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
10104 argument.
10105
101062002-06-03 Akim Demaille <akim@epita.fr>
10107
10108 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
10109 then statements.
10110
101112002-06-03 Akim Demaille <akim@epita.fr>
10112
10113 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
10114 structs with non literals.
10115 * src/scan-skel.l: never-interactive.
10116 * src/conflicts.c (enum conflict_resolution_e): No trailing
10117 comma.
10118 * src/getargs.c (usage): Split long literal strings.
10119 Reported by Hans Aberg.
10120
101212002-05-28 Akim Demaille <akim@epita.fr>
10122
10123 * data/bison.c++: Use C++ ostreams.
10124 (cdebug_): New member.
10125
101262002-05-28 Akim Demaille <akim@epita.fr>
10127
10128 * src/output.c (output_skeleton): Be sure to allocate enough room
10129 for `/' _and_ for `\0' in full_skeleton.
10130
101312002-05-28 Akim Demaille <akim@epita.fr>
10132
10133 * data/bison.c++: Catch up with bison.simple:
10134 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10135 and Paul Eggert <eggert@twinsun.com>: `error' handing.
10136 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
10137 and popping traces.
10138
101392002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10140
10141 * src/output.c (output_skeleton): Put an explicit path in front of
10142 the skeleton file name, rather than relying on the -I directory,
10143 to partially alleviate effects of having a skeleton file lying around
10144 in the current directory.
10145
101462002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10147
10148 * src/conflicts.c (log_resolution): Correct typo:
10149 obstack_printf should be obstack_fgrow1.
10150
101512002-05-26 Akim Demaille <akim@epita.fr>
10152
10153 * src/state.h (state_t): `solved_conflicts' is a new member.
10154 * src/LR0.c (new_state): Set it to 0.
10155 * src/conflicts.h, src/conflicts.c (print_conflicts)
10156 (free_conflicts, solve_conflicts): Rename as...
10157 (conflicts_print, conflicts_free, conflicts_solve): these.
10158 Adjust callers.
10159 * src/conflicts.c (enum conflict_resolution_e)
10160 (solved_conflicts_obstack): New, used by...
10161 (log_resolution): this.
10162 Adjust to attach the conflict resolution to each state.
10163 Complete the description with the precedence/associativity
10164 information.
10165 (resolve_sr_conflict): Adjust.
10166 * src/print.c (print_state): Output its solved_conflicts.
10167 * tests/conflicts.at (Unresolved SR Conflicts)
10168 (Solved SR Conflicts): Exercise --report=all.
10169
101702002-05-26 Akim Demaille <akim@epita.fr>
10171
10172 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10173 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
10174 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
10175 (token_number_t, item_number_as_token_number)
10176 (token_number_as_item_number, muscle_insert_token_number_table):
10177 Rename as...
10178 (symbol_number_t, item_number_as_symbol_number)
10179 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
10180 these, since it is more appropriate.
10181
101822002-05-26 Akim Demaille <akim@epita.fr>
10183
10184 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
10185 `Error:' lines.
10186 * data/bison.simple (yystos) [YYDEBUG]: New.
10187 (yyparse) [YYDEBUG]: Display the symbols which are popped during
10188 error recovery.
10189 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
10190
101912002-05-25 Akim Demaille <akim@epita.fr>
10192
10193 * doc/bison.texinfo (Debugging): Split into...
10194 (Tracing): this new section, its former contents, and...
10195 (Understanding): this new section.
10196 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
10197 by...
10198 (report_flag): this.
10199 Adjust all dependencies.
10200 (report_args, report_types, report_argmatch): New.
10201 (usage, getargs): Report/support -r, --report.
10202 * src/options.h
10203 (struct option_table_struct): Rename as..,
10204 (struct option_table_s): this.
10205 Rename the `set_flag' member to `flag' to match with getopt_long's
10206 struct.
10207 * src/options.c (option_table): Split verbose into an entry for
10208 %verbose, and another for --verbose.
10209 Support --report/-r, so remove -r from the obsolete --raw.
10210 * src/print.c: Attach full item sets and lookaheads reports to
10211 report_flag instead of trace_flag.
10212 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
10213
102142002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10215 and Paul Eggert <eggert@twinsun.com>
10216
10217 * data/bison.simple (yyparse): Correct error handling to conform to
10218 POSIX and yacc. Specifically, after syntax error is discovered,
10219 do not reduce further before shifting the error token.
10220 Clean up the code a bit by removing the labels yyerrdefault,
10221 yyerrhandle, yyerrpop.
10222 * NEWS: Document the above.
10223
102242002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10225
10226 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
10227 type; it isn't always big enough, since it doesn't necessarily
10228 include non-terminals.
10229 (yytranslate): Expand definition of yy_token_number_type, so that
10230 the latter can be removed.
10231 (yy_token_number_type): Remove, only one use.
10232 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
10233 don't use TokenNumberType as element type.
10234
10235 * tests/regression.at: Modify expected output to agree with change
10236 to yyr1 and yytranslate.
10237
102382002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
10239
10240 * src/reader.c (parse_action): Use copy_character instead of
10241 obstack_1grow.
10242
102432002-05-13 Akim Demaille <akim@epita.fr>
10244
10245 * tests/regression.at (Token definitions): Prototype yylex and
10246 yyerror.
10247
102482002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10249
10250 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
10251 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
10252 32-bit arithmetic.
10253 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
10254
102552002-05-07 Akim Demaille <akim@epita.fr>
10256
10257 * tests/synclines.at: Be sure to prototype yylex and yyerror to
10258 avoid GCC warnings.
10259
102602002-05-07 Akim Demaille <akim@epita.fr>
10261
10262 Kill GCC warnings.
10263
10264 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
10265 over the RHS of each rule.
10266 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
10267 * src/state.h (state_t): Member `nitems' is unsigned short.
10268 * src/LR0.c (get_state): Adjust.
10269 * src/reader.c (packgram): Likewise.
10270 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
10271 `Type'.
10272 (muscle_insert_int_table): Remove, unused.
10273 (prepare_rules): Remove `max'.
10274
102752002-05-06 Akim Demaille <akim@epita.fr>
10276
10277 * src/closure.c (print_firsts): Display of the symbol tags.
10278 (bitmatrix_print): Move to...
10279 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
10280 here.
10281 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
10282
102832002-05-06 Akim Demaille <akim@epita.fr>
10284
10285 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
10286 hash_do_for_each.
10287
102882002-05-06 Akim Demaille <akim@epita.fr>
10289
10290 * src/LR0.c (new_state, get_state): Instead of using the global
10291 `kernel_size' and `kernel_base', have two new arguments:
10292 `core_size' and `core'.
10293 Adjust callers.
10294
102952002-05-06 Akim Demaille <akim@epita.fr>
10296
10297 * src/reader.c (packgram): No longer end `ritem' with a 0
10298 sentinel: it is not used.
10299
103002002-05-05 Akim Demaille <akim@epita.fr>
10301
10302 New experimental feature: display the lookaheads in the report and
10303 graph.
10304
10305 * src/print (print_core): When --trace-flag, display the rules
10306 lookaheads.
10307 * src/print_graph.c (print_core): Likewise.
10308 Swap the arguments.
10309 Adjust caller.
10310
103112002-05-05 Akim Demaille <akim@epita.fr>
10312
10313 * tests/torture.at (Many lookaheads): New test.
10314
103152002-05-05 Akim Demaille <akim@epita.fr>
10316
10317 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
10318 (GENERATE_MUSCLE_INSERT_TABLE): this.
10319 (output_int_table, output_unsigned_int_table, output_short_table)
10320 (output_token_number_table, output_item_number_table): Replace with...
10321 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
10322 (muscle_insert_short_table, muscle_insert_token_number_table)
10323 (muscle_insert_item_number_table): these.
10324 Adjust all callers.
10325 (prepare_tokens): Don't free `translations', since...
10326 * src/reader.h, src/reader.c (grammar_free): do it.
10327 Move to...
10328 * src/gram.h, src/gram.c (grammar_free): here.
10329 * data/bison.simple, data/bison.c++: b4_token_number_max is now
10330 b4_translate_max.
10331
103322002-05-05 Akim Demaille <akim@epita.fr>
10333
10334 * src/output.c (output_unsigned_int_table): New.
10335 (prepare_rules): `i' is unsigned.
10336 `prhs', `rline', `r2' are unsigned int.
10337 Rename muscle `rhs_number_max' as `rhs_max'.
10338 Output muscles `prhs_max', `rline_max', and `r2_max'.
10339 Free rline and r1.
10340 * data/bison.simple, data/bison.c++: Adjust to use these muscles
10341 to compute types instead of constant types.
10342 * tests/regression.at (Web2c Actions): Adjust.
10343
103442002-05-04 Akim Demaille <akim@epita.fr>
10345
10346 * src/symtab.h (SALIAS, SUNDEF): Rename as...
10347 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
10348 Adjust dependencies.
10349 * src/output.c (token_definitions_output): Be sure not to output a
10350 `#define 'a'' when fed with `%token 'a' "a"'.
10351 * tests/regression.at (Token definitions): New.
10352
103532002-05-03 Paul Eggert <eggert@twinsun.com>
10354
10355 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
10356 for K&R C.
10357
103582002-05-03 gettextize <bug-gnu-gettext@gnu.org>
10359
10360 * Makefile.am (SUBDIRS): Remove intl.
10361 (EXTRA_DIST): Add config/config.rpath.
10362
103632002-05-03 Akim Demaille <akim@epita.fr>
10364
10365 * data/bison.simple (m4_if): Don't output empty enums.
10366 And actually, output valid enum definitions :(.
10367
103682002-05-03 Akim Demaille <akim@epita.fr>
10369
10370 * configure.bat: Remove, completely obsolete.
10371 * Makefile.am (EXTRA_DIST): Adjust.
10372 Don't distribute config.rpath...
10373 * config/Makefile.am (EXTRA_DIST): Do it.
10374
103752002-05-03 Akim Demaille <akim@epita.fr>
10376
10377 * configure.in (GETTEXT_VERSION): New.
10378 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
10379
103802002-05-03 Akim Demaille <akim@epita.fr>
10381
10382 * data/bison.simple (b4_token_enum): New.
10383 (b4_token_defines): Use it to output tokens both as #define and
10384 enums.
10385 Suggested by Paul Eggert.
10386 * src/output.c (token_definitions_output): Don't output spurious
10387 white spaces.
10388
103892002-05-03 Akim Demaille <akim@epita.fr>
10390
10391 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
10392
103932002-05-02 Robert Anisko <robert@lrde.epita.fr>
10394
10395 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
10396 Update the stack class, give a try to deque as the default container.
10397
103982002-05-02 Akim Demaille <akim@epita.fr>
10399
10400 * data/bison.simple (yyparse): Do not implement @$ = @1.
10401 (YYLLOC_DEFAULT): Adjust to do it.
10402 * doc/bison.texinfo (Location Default Action): Fix.
10403
104042002-05-02 Akim Demaille <akim@epita.fr>
10405
10406 * src/reader.c (parse_braces): Merge into...
10407 (parse_action): this.
10408
104092002-05-02 Akim Demaille <akim@epita.fr>
10410
10411 * configure.in (ALL_LINGUAS): Remove.
10412 * po/LINGUAS, hr.po: New.
10413
104142002-05-02 Akim Demaille <akim@epita.fr>
10415
10416 Remove the so called hairy (semantic) parsers.
10417
10418 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
10419 * src/gram.h, src/gram.c (semantic_parser): Remove.
10420 (rule_t): Remove the guard and guard_line members.
10421 * src/lex.h (token_t): remove tok_guard.
10422 * src/options.c (option_table): Remove %guard and %semantic_parser
10423 support.
10424 * src/output.c, src/output.h (guards_output): Remove.
10425 (prepare): Adjust.
10426 (token_definitions_output): Don't output the `T'
10427 tokens (???).
10428 (output_skeleton): Don't output the guards.
10429 * src/files.c, src/files.c (attrsfile): Remove.
10430 * src/reader.c (symbol_list): Remove the guard and guard_line
10431 members.
10432 Adjust dependencies.
10433 (parse_guard): Remove.
10434 * data/bison.hairy: Remove.
10435 * doc/bison.texinfo (Environment Variables): Remove occurrences of
10436 BISON_HAIRY.
10437
104382002-05-02 Akim Demaille <akim@epita.fr>
10439
10440 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
10441 (parse_guard): Rename the formal argument `stack_offset' as
10442 `rule_length', which is more readable.
10443 Adjust callers.
10444 (copy_at, copy_dollar): Instead of outputting the hard coded
10445 values of $$, $n and so forth, output invocation to b4_lhs_value,
10446 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
10447 Note: this patch partially drops `semantic-parser' support: it
10448 always does `rule_length - n', where semantic parsers ought to
10449 always use `-n'.
10450 * data/bison.simple, data/bison.c++ (b4_lhs_value)
10451 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
10452
104532002-05-02 Akim Demaille <akim@epita.fr>
10454
10455 * configure.in (AC_INIT): Bump to 1.49b.
10456 (AM_INIT_AUTOMAKE): Short invocation.
10457
104582002-05-02 Akim Demaille <akim@epita.fr>
10459
10460 Version 1.49a.
10461
104622002-05-01 Akim Demaille <akim@epita.fr>
10463
10464 * src/skeleton.h: Remove.
10465
104662002-05-01 Akim Demaille <akim@epita.fr>
10467
10468 * src/skeleton.h: Fix the #endif.
10469 Reported by Magnus Fromreide.
10470
104712002-04-26 Paul Eggert <eggert@twinsun.com>
10472
10473 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
10474 Define if we define YYSTYPE and YYLTYPE, respectively.
10475 (YYCOPY): Fix [] quoting problem in the non-GCC case.
10476
104772002-04-25 Robert Anisko <robert@lrde.epita.fr>
10478
10479 * src/scan-skel.l: Postprocess quadrigraphs.
10480
10481 * src/reader.c (copy_character): New function, used to output
10482 single characters while replacing `[' and `]' with quadrigraphs, to
10483 avoid troubles with M4 quotes.
10484 (copy_comment): Output characters with copy_character.
10485 (read_additionnal_code): Likewise.
10486 (copy_string2): Likewise.
10487 (copy_definition): Likewise.
10488
10489 * tests/calc.at: Exercise M4 quoting.
10490
104912002-04-25 Akim Demaille <akim@epita.fr>
10492
10493 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
10494 between `!' and the command.
10495 Reported by Paul Eggert.
10496
104972002-04-24 Robert Anisko <robert@lrde.epita.fr>
10498
10499 * tests/calc.at: Exercise prologue splitting.
10500
10501 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
10502 `b4_post_prologue' instead of `b4_prologue'.
10503
10504 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
10505 muscles.
10506 (output): Free pre_prologue_obstack and post_prologue_obstack.
10507 * src/files.h, src/files.c (attrs_obstack): Remove.
10508 (pre_prologue_obstack, post_prologue_obstack): New.
10509 * src/reader.c (copy_definition): Add a parameter to specify the
10510 obstack to fill, instead of using attrs_obstack unconditionally.
10511 (read_declarations): Pass pre_prologue_obstack to copy_definition if
10512 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
10513
105142002-04-23 Paul Eggert <eggert@twinsun.com>
10515
10516 * data/bison.simple: Remove unnecessary commentary and white
10517 space differences from 1_29-branch.
10518 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
10519
10520 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
10521 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
10522 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
10523 constructors or destructors.
10524
10525 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
10526
105272002-04-23 Akim Demaille <akim@epita.fr>
10528
10529 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
10530 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
10531 location with columns.
10532 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
10533 All reported by Paul Eggert.
10534
105352002-04-22 Akim Demaille <akim@epita.fr>
10536
10537 * src/reduce.c (dump_grammar): Move to...
10538 * src/gram.h, src/gram.c (grammar_dump): here.
10539 Be sure to separate long item numbers.
10540 Don't read the members of a rule's prec if its nil.
10541
105422002-04-22 Akim Demaille <akim@epita.fr>
10543
10544 * src/output.c (table_size, table_grow): New.
10545 (MAXTABLE): Remove, replace uses with table_size.
10546 (pack_vector): Instead of dying when the table is too big, grow it.
10547
105482002-04-22 Akim Demaille <akim@epita.fr>
10549
10550 * data/bison.simple (yyr1): Its type is that of a token number.
10551 * data/bison.c++ (r1_): Likewise.
10552 * tests/regression.at (Web2c Actions): Adjust.
10553
105542002-04-22 Akim Demaille <akim@epita.fr>
10555
10556 * src/reader.c (token_translations_init): 256 is now the default
10557 value for the error token, i.e., it will be assigned another
10558 number if the user assigned 256 to one of her tokens.
10559 (reader): Don't force 256 to error.
10560 * doc/bison.texinfo (Symbols): Adjust.
10561 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
10562 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
10563 etc. instead of 10, 20, 30 (which was used to `jump' over error
10564 (256) and undefined (2)).
10565
105662002-04-22 Akim Demaille <akim@epita.fr>
10567
10568 Propagate more token_number_t.
10569
10570 * src/gram.h (token_number_as_item_number)
10571 (item_number_as_token_number): New.
10572 * src/output.c (GENERATE_OUTPUT_TABLE): New.
10573 Use it to create output_item_number_table and
10574 output_token_number_table.
10575 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10576 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
10577 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
10578 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
10579
105802002-04-22 Akim Demaille <akim@epita.fr>
10581
10582 * src/output.h, src/output.c (get_lines_number): Remove.
10583
105842002-04-19 Akim Demaille <akim@epita.fr>
10585
10586 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
10587 as Lex/Flex'.
10588 (Debugging): More details about enabling the debugging features.
10589 (Table of Symbols): Describe $$, $n, @$, and @n.
10590 Suggested by Tim Josling.
10591
105922002-04-19 Akim Demaille <akim@epita.fr>
10593
10594 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
10595
105962002-04-10 Akim Demaille <akim@epita.fr>
10597
10598 * src/system.h: Rely on HAVE_LIMITS_H.
10599 Suggested by Paul Eggert.
10600
106012002-04-09 Akim Demaille <akim@epita.fr>
10602
10603 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
10604 full stderr, and strip it according to the bison options, instead
10605 of composing the error message from different bits.
10606 This makes it easier to check for several error messages.
10607 Adjust all the invocations.
10608 Add an invocation exercising the error token.
10609 Add an invocation demonstrating a stupid error message.
10610 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
10611 Adjust the tests.
10612 Error message are for stderr, not stdout.
10613
106142002-04-09 Akim Demaille <akim@epita.fr>
10615
10616 * src/gram.h, src/gram.c (error_token_number): Remove, use
10617 errtoken->number.
10618 * src/reader.c (reader): Don't specify the user token number (2)
10619 for $undefined, as it uselessly prevents using it.
10620 * src/gram.h (token_number_t): Move to...
10621 * src/symtab.h: here.
10622 (state_t.number): Is a token_number_t.
10623 * src/print.c, src/reader.c: Use undeftoken->number instead of
10624 hard coded 2.
10625 (Even though this 2 is not the same as above: the number of the
10626 undeftoken remains being 2, it is its user token number which
10627 might not be 2).
10628 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
10629 `user_token_number_max'.
10630 Output `undef_token_number'.
10631 * data/bison.simple, data/bison.c++: Use them.
10632 Be sure to map invalid yylex return values to
10633 `undef_token_number'. This saves us from gratuitous SEGV.
10634
10635 * tests/conflicts.at (Solved SR Conflicts)
10636 (Unresolved SR Conflicts): Adjust.
10637 * tests/regression.at (Web2c Actions): Adjust.
10638
106392002-04-08 Akim Demaille <akim@epita.fr>
10640
10641 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
10642 Adding #line.
10643 Remove the duplicate `typedefs'.
10644 (RhsNumberType): Fix the declaration and various other typos.
10645 Use __ofile__.
10646 * data/bison.simple: Use __ofile__.
10647 * src/scan-skel.l: Handle __ofile__.
10648
106492002-04-08 Akim Demaille <akim@epita.fr>
10650
10651 * src/gram.h (item_number_t): New, the type of item numbers in
10652 RITEM. Note that it must be able to code symbol numbers as
10653 positive number, and the negation of rule numbers as negative
10654 numbers.
10655 Adjust all dependencies (pretty many).
10656 * src/reduce.c (rule): Remove this `short *' pointer: use
10657 item_number_t.
10658 * src/system.h (MINSHORT, MAXSHORT): Remove.
10659 Include `limits.h'.
10660 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
10661 (shortcpy): Remove.
10662 (MAXTABLE): Move to...
10663 * src/output.c (MAXTABLE): here.
10664 (prepare_rules): Use output_int_table to output rhs.
10665 * data/bison.simple, data/bison.c++: Adjust.
10666 * tests/torture.at (Big triangle): Move the limit from 254 to
10667 500.
10668 * tests/regression.at (Web2c Actions): Ajust.
10669
10670 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
10671 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
10672 passes, but produces negative #line number, once fixed, GCC is
10673 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
10674 C), it passes.
10675 * src/state.h (state_h): Code input lines on ints, not shorts.
10676
106772002-04-08 Akim Demaille <akim@epita.fr>
10678
10679 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
10680 and then the grammar.
10681
106822002-04-08 Akim Demaille <akim@epita.fr>
10683
10684 * src/system.h: No longer using strndup.
10685
106862002-04-07 Akim Demaille <akim@epita.fr>
10687
10688 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
10689 * src/output.c (output_table_data): Return the longest number.
10690 (prepare_tokens): Output `token_number_max').
10691 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
10692 New.
10693 Use them to define yy_token_number_type/TokenNumberType.
10694 Use this type for yytranslate.
10695 * tests/torture.at (Big triangle): Push the limit from 124 to
10696 253.
10697 * tests/regression.at (Web2c Actions): Adjust.
10698
106992002-04-07 Akim Demaille <akim@epita.fr>
10700
10701 * tests/torture.at (Big triangle): New.
10702 (GNU AWK Grammar, GNU Cim Grammar): Move to...
10703 * tests/existing.at: here.
10704
107052002-04-07 Akim Demaille <akim@epita.fr>
10706
10707 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
10708 nritems.
10709 Adjust dependencies.
10710
107112002-04-07 Akim Demaille <akim@epita.fr>
10712
10713 * src/reader.c: Normalize increments to prefix form.
10714
107152002-04-07 Akim Demaille <akim@epita.fr>
10716
10717 * src/reader.c, symtab.c: Remove debugging code.
10718
107192002-04-07 Akim Demaille <akim@epita.fr>
10720
10721 Rename all the `bucket's as `symbol_t'.
10722
10723 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
10724 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
10725 * src/symtab.c, src/symtab.h (bucket): Rename as...
10726 (symbol_t): this.
10727 (symbol_list_new, bucket_check_defined, bucket_make_alias)
10728 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
10729 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
10730 (buckets_new, buckets_free, buckets_do): Rename as...
10731 (symbol_list_new, symbol_check_defined, symbol_make_alias)
10732 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
10733 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
10734 (symbols_new, symbols_free, symbols_do): these.
10735
107362002-04-07 Akim Demaille <akim@epita.fr>
10737
10738 Use lib/hash for the symbol table.
10739
10740 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
10741 EOF.
10742 * src/lex.c (lex): Set the `number' member of new terminals.
10743 * src/reader.c (bucket_check_defined, bucket_make_alias)
10744 (bucket_check_alias_consistence, bucket_translation): New.
10745 (reader, grammar_free, readgram, token_translations_init)
10746 (packsymbols): Adjust.
10747 (reader): Number the predefined tokens.
10748 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
10749 for predefined tokens.
10750 * src/symtab.h (bucket): Remove all the hash table related
10751 members.
10752 * src/symtab.c (symtab): Replace by...
10753 (bucket_table): this.
10754 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
10755 (buckets_new, buckets_do): New.
10756
107572002-04-07 Akim Demaille <akim@epita.fr>
10758
10759 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
10760 (start_symbol, max_user_token_number, semantic_parser)
10761 (error_token_number): Initialize.
10762 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
10763 Initialize.
10764 (reader): Don't.
10765 (errtoken, eoftoken, undeftoken, axiom): Extern.
10766
107672002-04-07 Akim Demaille <akim@epita.fr>
10768
10769 * src/gram.h (rule_s): prec and precsym are now pointers
10770 to the bucket giving the priority/associativity.
10771 Member `associativity' removed: useless.
10772 * src/reduce.c, src/conflicts.c: Adjust.
10773
107742002-04-07 Akim Demaille <akim@epita.fr>
10775
10776 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
10777 Properly escape the symbols' TAG when outputting them.
10778
107792002-04-07 Akim Demaille <akim@epita.fr>
10780
10781 * src/lalr.h (LA): Is a bitsetv, not bitset*.
10782
107832002-04-07 Akim Demaille <akim@epita.fr>
10784
10785 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
10786 (LArule): this, which is an array to rule_t*.
10787 * src/print.c, src/conflicts.c: Adjust.
10788
107892002-04-07 Akim Demaille <akim@epita.fr>
10790
10791 * src/gram.h (rule_t): Rename `number' as `user_number'.
10792 `number' is a new member.
10793 Adjust dependencies.
10794 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
10795
107962002-04-07 Akim Demaille <akim@epita.fr>
10797
10798 As a result of the previous patch, it is no longer needed
10799 to reorder ritem itself.
10800
10801 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
10802
108032002-04-07 Akim Demaille <akim@epita.fr>
10804
10805 Be sure never to walk through RITEMS, but use only data related to
10806 the rules themselves. RITEMS should be banished.
10807
10808 * src/output.c (output_token_translations): Rename as...
10809 (prepare_tokens): this.
10810 In addition to `translate', prepare the muscles `tname' and
10811 `toknum', which were handled by...
10812 (output_rule_data): this.
10813 Remove, and move the remainder of its outputs into...
10814 (prepare_rules): this new routines, which also merges content from
10815 (output_gram): this.
10816 (prepare_rules): Be sure never to walk through RITEMS.
10817 (output_stos): Rename as...
10818 (prepare_stos): this.
10819 (output): Always invoke prepare_states, after all, just don't use it
10820 in the output if you don't need it.
10821
108222002-04-07 Akim Demaille <akim@epita.fr>
10823
10824 * src/LR0.c (new_state): Display `nstates' as the name of the
10825 newly created state.
10826 Adjust to initialize first_state and last_state if needed.
10827 Be sure to distinguish the initial from the final state.
10828 (new_states): Create the itemset of the initial state, and use
10829 new_state.
10830 * src/closure.c (closure): Now that the initial state has its
10831 items properly set, there is no need for a special case when
10832 creating `ruleset'.
10833
10834 As a result, now the rule 0, reducing to $axiom, is visible in the
10835 outputs. Adjust the test suite.
10836
10837 * tests/conflicts.at (Solved SR Conflicts)
10838 (Unresolved SR Conflicts): Adjust.
10839 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
10840 * tests/conflicts.at (S/R in initial): New.
10841
108422002-04-07 Akim Demaille <akim@epita.fr>
10843
10844 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
10845 the RHS of the rules.
10846 * src/output.c (output_gram): Likewise.
10847
108482002-04-07 Akim Demaille <akim@epita.fr>
10849
10850 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
10851 bucket.
10852 Adjust all dependencies.
10853 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
10854 `number' of the buckets too.
10855 * src/gram.h: Include `symtab.h'.
10856 (associativity): Move to...
10857 * src/symtab.h: here.
10858 No longer include `gram.h'.
10859
108602002-04-07 Akim Demaille <akim@epita.fr>
10861
10862 * src/gram.h, src/gram.c (rules_rhs_length): New.
10863 (ritem_longest_rhs): Use it.
10864 * src/gram.h (rule_t): `number' is a new member.
10865 * src/reader.c (packgram): Set it.
10866 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
10867 the end of `rules', and count them out of `nrules'.
10868 (reduce_output, dump_grammar): Adjust.
10869 * src/print.c (print_grammar): It is no longer needed to check for
10870 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
10871 * tests/reduce.at (Reduced Automaton): New test.
10872
108732002-04-07 Akim Demaille <akim@epita.fr>
10874
10875 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
10876 lacking `+ 1' to nrules, Bison reported as useless a token if it
10877 was used solely to set the precedence of the last rule...
10878
108792002-04-07 Akim Demaille <akim@epita.fr>
10880
10881 * data/bison.c++, data/bison.simple: Don't output the current file
10882 name in #line, to avoid useless diffs between two identical
10883 outputs under different names.
10884
108852002-04-07 Akim Demaille <akim@epita.fr>
10886
10887 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
10888 Normalize loops to using `< nrules + 1', not `<= nrules'.
10889
108902002-04-07 Akim Demaille <akim@epita.fr>
10891
10892 * TODO: Update.
10893
108942002-04-07 Akim Demaille <akim@epita.fr>
10895
10896 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
10897 bucket.value as bucket.number.
10898
108992002-04-07 Akim Demaille <akim@epita.fr>
10900
10901 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
10902 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
10903 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
10904 RHS, instead of being an index in RITEMS.
10905
109062002-04-04 Paul Eggert <eggert@twinsun.com>
10907
10908 * doc/bison.texinfo: Update copyright date.
10909 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
10910 (Symbols): Warn about running Bison in one character set,
10911 but compiling and/or running in an incompatible one.
10912 Warn about character code 256, too.
10913
109142002-04-03 Paul Eggert <eggert@twinsun.com>
10915
10916 * src/bison.data (YYSTACK_ALLOC): Depend on whether
10917 YYERROR_VERBOSE is nonzero, not whether it is defined.
10918
10919 Merge changes from bison-1_29-branch.
10920
109212002-03-20 Paul Eggert <eggert@twinsun.com>
10922
10923 Merge fixes from Debian bison_1.34-1.diff.
10924
10925 * configure.in (AC_PREREQ): 2.53.
10926
109272002-03-20 Akim Demaille <akim@epita.fr>
10928
10929 * src/conflicts.c (log_resolution): Argument `resolution' is const.
10930
109312002-03-19 Paul Eggert <eggert@twinsun.com>
10932
10933 * src/bison.simple (YYCOPY): New macro.
10934 (YYSTACK_RELOCATE): Use it.
10935 Remove Type arg; no longer needed. All callers changed.
10936 (yymemcpy): Remove; no longer needed.
10937
10938 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
10939 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
10940
109412002-03-19 Akim Demaille <akim@epita.fr>
10942
10943 Test and fix the #line outputs.
10944
10945 * tests/atlocal.at (GCC): New.
10946 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
10947 (Prologue synch line, %union synch line, Postprologue synch line)
10948 (Action synch line, Epilogue synch line): New tests.
10949 * src/reader.c (parse_union_decl): Define the muscle stype_line.
10950 * data/bison.simple, data/bison.c++: Use it.
10951
109522002-03-19 Akim Demaille <akim@epita.fr>
10953
10954 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
10955 (Solved SR Conflicts, %expect not enough, %expect right)
10956 (%expect too much): Move to...
10957 * tests/conflicts.at: this new file.
10958
109592002-03-19 Akim Demaille <akim@epita.fr>
10960
10961 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
10962 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
10963 that we can move to enums for instance.
10964 * src/output.c (token_definitions_output): Output a list of
10965 `token-name, token-number' instead of the #define.
10966 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
10967
109682002-03-14 Akim Demaille <akim@epita.fr>
10969
10970 Use Gettext 0.11.1.
10971
109722002-03-09 Robert Anisko <robert@lrde.epita.fr>
10973
10974 * data/bison.c++: Make the user able to add members to the generated
10975 parser by subclassing.
10976
109772002-03-05 Robert Anisko <robert@lrde.epita.fr>
10978
10979 * src/reader.c (read_additionnal_code): `c' should be an integer, not
10980 a character.
10981 Reported by Nicolas Tisserand and Nicolas Burrus.
10982
109832002-03-04 Robert Anisko <robert@lrde.epita.fr>
10984
10985 * src/reader.c: Warn about lacking semi-colons, do not complain.
10986
109872002-03-04 Robert Anisko <robert@lrde.epita.fr>
10988
10989 * data/bison.c++: Remove a debug line.
10990
109912002-03-04 Robert Anisko <robert@lrde.epita.fr>
10992
10993 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
10994 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
10995 provide a default implementation.
10996
109972002-03-04 Akim Demaille <akim@epita.fr>
10998
10999 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
11000 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
11001 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
11002 * tests/semantic.at (Parsing Guards): Similarly.
11003 * src/reader.at (readgram): Complain if the last rule is not ended
11004 with a semi-colon.
11005
110062002-03-04 Akim Demaille <akim@epita.fr>
11007
11008 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
11009 * src/closure.c: here.
11010 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
11011 RTC.
11012 * src/warshall.h, src/warshall.c: Remove.
11013 * tests/sets.at (Broken Closure): Adjust.
11014
110152002-03-04 Akim Demaille <akim@epita.fr>
11016
11017 * src/output.c (output_skeleton): tempdir is const.
11018 bytes_read is unused.
11019
110202002-03-04 Akim Demaille <akim@epita.fr>
11021
11022 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11023 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
11024 Update.
11025 From Michael Hayes.
11026
110272002-03-04 Akim Demaille <akim@epita.fr>
11028
11029 * src/closure.c (closure): `r' is unused.
11030
110312002-03-04 Akim Demaille <akim@epita.fr>
11032
11033 * tests/sets.at (Broken Closure): Add the ending `;'.
11034 * src/reader.at (readgram): Complain if a rule is not ended with a
11035 semi-colon.
11036
110372002-03-04 Akim Demaille <akim@epita.fr>
11038
11039 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
11040 (count_sr_conflicts): Use bitset_count.
11041 * src/reduce.c (inaccessable_symbols): Ditto.
11042 (bits_size): Remove.
11043 * src/warshall.h, src/warshall.c: Convert to bitsetv.
11044
110452002-03-04 Akim Demaille <akim@epita.fr>
11046
11047 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
11048 * src/reduce.c: Remove the `bitset_zero's following the
11049 `bitset_create's, as now it is performed by the latter.
11050
110512002-03-04 Akim Demaille <akim@epita.fr>
11052
11053 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
11054 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
11055 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
11056 latest sources from Michael.
11057
110582002-03-04 Akim Demaille <akim@epita.fr>
11059
11060 * src/output.c (output): Don't free the grammar.
11061 * src/reader.c (grammar_free): New.
11062 * src/main.c (main): Call it and don't free symtab here.
11063
110642002-03-04 Akim Demaille <akim@epita.fr>
11065
11066 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
11067 before returning.
11068 Reported by Benoit Perrot.
11069
110702002-03-04 Akim Demaille <akim@epita.fr>
11071
11072 Use bitset operations when possible, not loops over bits.
11073
11074 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
11075 bitset_or.
11076 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
11077 * src/reduce.c (useless_nonterminals): Formatting changes.
11078 * src/warshall.c (TC): Use bitset_or.
11079
110802002-03-04 Akim Demaille <akim@epita.fr>
11081
11082 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
11083 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
11084 Ditto.
11085
110862002-03-04 Akim Demaille <akim@epita.fr>
11087
11088 * src/lalr.c (F): Now a bitset*.
11089 Adjust all dependencies.
11090
110912002-03-04 Akim Demaille <akim@epita.fr>
11092
11093 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
11094 Adjust all dependencies.
11095
110962002-03-04 Akim Demaille <akim@epita.fr>
11097
11098 * src/L0.c, src/LR0.h (nstates): Be size_t.
11099 Adjust comparisons (signed vs unsigned).
11100 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
11101 bitset*.
11102 Adjust all dependencies.
11103
111042002-03-04 Akim Demaille <akim@epita.fr>
11105
11106 * src/closure.c (firsts): Now, also a bitset.
11107 Adjust all dependencies.
11108 (varsetsize): Remove, now unused.
11109 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
11110
111112002-03-04 Akim Demaille <akim@epita.fr>
11112
11113 * src/print.c: Convert to use bitset.h, not hand coded iterations
11114 over ints.
11115
111162002-03-04 Akim Demaille <akim@epita.fr>
11117
11118 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
11119
111202002-03-04 Akim Demaille <akim@epita.fr>
11121
11122 * src/closure.c (ruleset): Be a bitset.
11123 (rulesetsize): Remove.
11124
111252002-03-04 Akim Demaille <akim@epita.fr>
11126
11127 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11128 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
11129 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
11130 * src/closure.c (fderives): Be an array of bitsets.
11131
111322002-02-28 Robert Anisko <robert@lrde.epita.fr>
11133
11134 * data/bison.c++: Merge the two generated headers. Insert a copyright
11135 notice in each output file.
11136
111372002-02-28 Akim Demaille <akim@epita.fr>
11138
11139 * data/bison.c++: Copy the prologue of bison.simple to fetch
11140 useful M4 definitions, such as b4_header_guard.
11141
111422002-02-25 Akim Demaille <akim@epita.fr>
11143
11144 * src/getargs.c (version): Give the name of the authors, and use a
11145 translator friendly scheme for the bgr
11146 copyright notice.
11147
111482002-02-25 Akim Demaille <akim@epita.fr>
11149
11150 * src/output.c (header_output): Remove, now handled completely via
11151 M4.
11152
111532002-02-25 Akim Demaille <akim@epita.fr>
11154
11155 * m4/m4.m4: New, from CVS Autoconf.
11156 * configure.in: Invoke it.
11157 * src/output.c (output_skeleton): Use its result instead of the
11158 hard coded name.
11159
111602002-02-25 Akim Demaille <akim@epita.fr>
11161
11162 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
11163 Fileutils 4.1.5.
11164 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
11165 * src/output.c (output_skeleton): Use mkstemp to create a real
11166 temporary file.
11167 Move the filling of `skeleton' and its muscle to...
11168 (prepare): here.
11169 (output): Move the definition of the prologue muscle to...
11170 (prepare): here.
11171 * src/system.h (DEFAULT_TMPDIR): New.
11172
111732002-02-14 Paul Eggert <eggert@twinsun.com>
11174
11175 Remove the support for C++ namespace cleanliness; it was
11176 causing more problems than it was curing, since it didn't work
11177 properly on some nonstandard C++ compilers. This can wait
11178 for a proper C++ parser.
11179
11180 * NEWS: Document this.
11181 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
11182 of C++, as it's treated like C now.
11183 * src/bison.simple (YYSTD): Remove.
11184 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
11185 Treat C++ just like Standard C instead of trying to support
11186 namespace cleanliness.
11187
111882002-02-14 Akim Demaille <akim@epita.fr>
11189
11190 * tests/regression.at (else): Adjust to Andreas' change.
11191
111922002-02-14 Akim Demaille <akim@epita.fr>
11193
11194 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
11195
111962002-02-13 Andreas Schwab <schwab@suse.de>
11197
11198 * src/output.c (output_rule_data): Don't output NULL, it might
11199 not be defined yet.
11200
112012002-02-11 Robert Anisko <robert@lrde.epita.fr>
11202
11203 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
11204 (Copyright notice): Update.
11205
112062002-02-11 Akim Demaille <akim@epita.fr>
11207
11208 * tests/regression.at (%nonassoc and eof): Don't include
11209 nonportable headers.
11210
112112002-02-08 Robert Anisko <robert@lrde.epita.fr>
11212
11213 * data/bison.c++: Correct error recovery. Make the user able to
11214 initialize the starting location.
11215
112162002-02-07 Akim Demaille <akim@epita.fr>
11217
11218 * tests/input.at: New.
11219
112202002-02-07 Robert Anisko <robert@lrde.epita.fr>
11221
11222 * data/bison.c++: Replace some direct m4 expansions by constants. Be
11223 more consistent when naming methods and variables. Put preprocessor
11224 directives around tables only needed for debugging.
11225
112262002-02-07 Robert Anisko <robert@lrde.epita.fr>
11227
11228 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
11229 C++ parsers.
11230 (yy::b4_name::parse): Use print_.
11231
112322002-02-07 Robert Anisko <robert@lrde.epita.fr>
11233
11234 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
11235
112362002-02-07 Robert Anisko <robert@lrde.epita.fr>
11237
11238 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
11239 C++ parsers.
11240 (yy::b4_name::parse): Build verbose error messages, and use error_.
11241
112422002-02-06 Robert Anisko <robert@lrde.epita.fr>
11243
11244 * data/bison.c++: Fix m4 quoting in comments.
11245
112462002-02-06 Robert Anisko <robert@lrde.epita.fr>
11247
11248 * data/bison.c++: Adjust the parser code. Fix some muscles that were
11249 not expanded by m4.
11250
112512002-02-05 Akim Demaille <akim@epita.fr>
11252
11253 * data/bison.c++: Adjust to the M4 back end.
11254 More is certainly needed.
11255
112562002-02-05 Akim Demaille <akim@epita.fr>
11257
11258 Give a try to M4 as a back end.
11259
11260 * lib/readpipe.c: New, from wdiff.
11261 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
11262 BISON_HAIRY.
11263 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
11264 specific values. Now it is m4 that performs the lookup.
11265 * src/parse-skel.y: Remove.
11266 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
11267 * src/output.c (actions_output, guards_output)
11268 (token_definitions_output): No longer keeps track of the output
11269 line number, hence remove the second argument.
11270 (guards_output): Check against the guard member of a rule, not the
11271 action member.
11272 Adjust callers.
11273 (output_skeleton): Don't look for the skeleton location, let m4 do
11274 that.
11275 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
11276 file will be used.
11277 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
11278 (prepare): Given that for the time being changesyntax is not
11279 usable in M4, rename the muscles using `-' to `_'.
11280 Define `defines_flag', `output_parser_name' and `output_header_name'.
11281 * src/output.h (actions_output, guards_output)
11282 (token_definitions_output): Adjust prototypes.
11283 * src/scan-skel.l: Instead of scanning the skeletons, it now
11284 processes the output of m4: `__oline__' and `#output'.
11285 * data/bison.simple: Adjust to be used by M4(sugar).
11286 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
11287 to date.
11288 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
11289 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
11290 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
11291 shamelessly stolen from CVS Autoconf.
11292
112932002-02-05 Akim Demaille <akim@epita.fr>
11294
11295 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
11296 * configure.in: Check for the declarations of free and malloc.
11297 * src/muscle_tab.c: Adjust.
11298
112992002-02-05 Akim Demaille <akim@epita.fr>
11300
11301 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
11302 which have no values.
11303
113042002-02-05 Akim Demaille <akim@epita.fr>
11305
11306 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
11307 * data/: here.
11308
113092002-01-29 Paul Eggert <eggert@twinsun.com>
11310
11311 * src/bison.simple (YYSIZE_T): Do not define merely because
11312 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
11313 On some platforms, <alloca.h> does not declare YYSTD (size_t).
11314
113152002-01-27 Akim Demaille <akim@epita.fr>
11316
11317 Fix `%nonassoc and eof'.
11318
11319 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
11320 which were not properly copied! Replace
11321 memcpy (res->errs, src->errs, src->nerrs);
11322 with
11323 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
11324 !!!
11325 * tests/regression.at (%nonassoc and eof): Adjust to newest
11326 Autotest: `.' is not in the PATH.
11327
113282002-01-27 Akim Demaille <akim@epita.fr>
11329
11330 * tests/sets.at (AT_EXTRACT_SETS): New.
11331 (Nullable): Use it.
11332 (Firsts): New.
11333
113342002-01-26 Akim Demaille <akim@epita.fr>
11335
11336 * tests/actions.at, tests/calc.at, tests/headers.at,
11337 * tests/torture.at: Adjust to the newest Autotest which no longer
11338 forces `.' in the PATH.
11339
113402002-01-25 Akim Demaille <akim@epita.fr>
11341
11342 * tests/regression.at (%nonassoc and eof): New.
11343 Suggested by Robert Anisko.
11344
113452002-01-24 Akim Demaille <akim@epita.fr>
11346
11347 Bison dumps core when trying to complain about broken input files.
11348 Reported by Cris van Pelt.
11349
11350 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
11351 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
11352 into...
11353 (Invalid inputs): Strengthen: exercise parse_percent_token.
11354
113552002-01-24 Robert Anisko <robert.anisko@epita.fr>
11356
11357 * src/Makefile.am: Add bison.c++.
11358 * src/bison.c++: New skeleton.
11359
113602002-01-21 Paolo Bonzini <bonzini@gnu.org>
11361
11362 * po/it.po: New.
11363
113642002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
11365
11366 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
11367
113682002-01-20 Marc Autret <marc@gnu.org>
11369
11370 * src/files.c (compute_output_file_names): Fix
11371
113722002-01-20 Marc Autret <marc@gnu.org>
11373
11374 * tests/output.at: New test.
11375 * src/files.c (compute_base_names): Don't map extensions when
11376 the YACC flag is set, use defaults.
11377 Reported by Evgeny Stambulchik.
11378
113792002-01-20 Marc Autret <marc@gnu.org>
11380
11381 * src/system.h: Need to define __attribute__ away for non-GCC
11382 compilers as well (i.e., the vendor C compiler).
11383 Suggested by Albert Chin-A-Young.
11384
113852002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
11386
11387 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
11388 canonical definition.
11389 * src/system.h: Use the canonical definition for PARAMS (avoids
11390 a conflict with the macro from lib/hash.h).
11391
113922002-01-11 Akim Demaille <akim@epita.fr>
11393
11394 * configure.in: Use AC_FUNC_STRNLEN.
11395 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
11396
113972002-01-09 Akim Demaille <akim@epita.fr>
11398
11399 * src/files.c, src/files.h (output_infix): New.
11400 (tab_extension): Remove.
11401 (compute_base_names): Compute the former, drop the latter.
11402 * src/output.c (prepare): Insert the muscles `output-infix', and
11403 `output-suffix'.
11404 * src/parse-skel.y (string, string.1): New.
11405 (section.header): Use it.
11406 (section.yacc): Remove.
11407 (prefix): Remove too.
11408 * src/scan-skel.l: Adjust.
11409 * src/bison.simple, src/bison.hairy: Adjust.
11410
114112002-01-09 Akim Demaille <akim@epita.fr>
11412
11413 * configure.in (WERROR_CFLAGS): Compute it.
11414 * src/Makefile.am (CFLAGS): Pass it.
11415 * tests/atlocal.in (CFLAGS): Idem.
11416 * src/files.c: Fix a few warnings.
11417 (get_extension_index): Remove, unused.
11418
114192002-01-08 Akim Demaille <akim@epita.fr>
11420
11421 * src/getargs.c (AS_FILE_NAME): New.
11422 (getargs): Use it to convert DOSish file names.
11423 * src/files.c (base_name): Rename as full_base_name to avoid
11424 clashes with `base_name ()'.
11425 (filename_split): New.
11426 (compute_base_names): N-th rewrite, using filename_split.
11427
114282002-01-08 Akim Demaille <akim@epita.fr>
11429
11430 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
11431 New, stolen from the Fileutils 4.1.
11432 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
11433 * configure.in: Check for the presence of memrchr, and of its
11434 prototype.
11435
114362002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
11437
11438 * lib/hash.h (__P): Added definition for this macro.
11439 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
11440 BUILT_SOURCES, to ensure they are generated first.
11441 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
11442 %error-verbose to allow bootstrapping with bison 1.30x.
11443
114442002-01-06 Akim Demaille <akim@epita.fr>
11445
11446 * src/reader.c (parse_braces): Don't fetch the next char, the
11447 convention is to fetch on entry.
11448 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
11449 'switch' without a following semicolon.
11450 * tests/regression.at (braces parsing): New.
11451
114522002-01-06 Akim Demaille <akim@epita.fr>
11453
11454 Bison is dead wrong in its RR conflict reports.
11455
11456 * tests/torture.at (GNU Cim Grammar): New.
11457 * src/conflicts.c (count_rr_conflicts): Fix.
11458
114592002-01-06 Akim Demaille <akim@epita.fr>
11460
11461 Creating package.m4 from configure.ac causes too many problems.
11462
11463 * tests/Makefile.am (package.m4): Create it by hand,
11464 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
11465
114662002-01-06 Akim Demaille <akim@epita.fr>
11467
11468 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
11469 skeleton.h.
11470
114712002-01-04 Paul Eggert <eggert@twinsun.com>
11472
11473 * doc/bison.texinfo (Debugging):
11474 Remove YYSTDERR; it's no longer defined or used.
11475 Also, s/cstdio.h/cstdio/.
11476
114772002-01-03 Akim Demaille <akim@epita.fr>
11478
11479 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
11480
114812002-01-03 Akim Demaille <akim@epita.fr>
11482
11483 * src/parse-skel.y (process_skeleton): Don't bind the parser's
11484 tracing code to --trace, wait for a better --trace option, with
11485 args.
11486
114872002-01-03 Akim Demaille <akim@epita.fr>
11488
11489 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
11490 The ISO C++ standard is extremely clear about it: stderr is
11491 considered a macro, not a regular symbol (see table 94 `Header
11492 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
11493 Therefore std:: does not apply to it. It still does with fprintf.
11494 Also, s/cstdio.h/cstdio/.
11495
114962002-01-03 Akim Demaille <akim@epita.fr>
11497
11498 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
11499 for non system headers.
11500
115012002-01-02 Akim Demaille <akim@epita.fr>
11502
11503 Equip the skeleton chain with location tracking, runtime trace,
11504 pure parser and scanner.
11505
11506 * src/parse-skel.y: Request a pure parser, locations, and prefix
11507 renaming.
11508 (%union): Having several members with the same type does not help
11509 type mismatches, simplify.
11510 (YYPRINT, yyprint): New.
11511 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
11512 (skel_error): this.
11513 Handle locations.
11514 * src/scan-skel.l: Adjust to these changes.
11515 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
11516 (LOCATION_PRINT, skel_control_t): New.
11517
115182001-12-30 Akim Demaille <akim@epita.fr>
11519
11520 * src/parse-skel.y: Get rid of the shift/reduce conflict:
11521 replace `gb' with BLANKS.
11522 * src/scan-skel.l: Adjust.
11523
115242001-12-30 Akim Demaille <akim@epita.fr>
11525
11526 * src/system.h: We don't need nor want bcopy.
11527 Throw away MS-DOS crap: we don't need getpid.
11528 * configure.in: We don't need strndup. It was even causing
11529 problems: because Flex includes the headers *before* us,
11530 _GNU_SOURCE is not defined by config.h, and therefore strndup was
11531 not visible.
11532 * lib/xstrndup.c: New.
11533 * src/scan-skel.l: Use it.
11534 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
11535 * src/parse-skel.y: Use %directives instead of #defines.
11536
115372001-12-30 Akim Demaille <akim@epita.fr>
11538
11539 * src/skeleton.h: New.
11540 * src/output.c (output_parser, output_master_parser): Remove, dead
11541 code.
11542 * src/output.h (get_lines_number, actions_output, guards_output)
11543 (token_definitions_output): Prototype them.
11544 * src/parse-skel.y: Add the license notice.
11545 Include output.h and skeleton.h.
11546 (process_skeleton): Returns void, and takes a single parameter.
11547 * src/scan-skel.l: Add the license notice.
11548 Include skeleton.h.
11549 Don't use %option yylineno: it seems that then Flex imagines
11550 REJECT has been used, and therefore it won't reallocate its
11551 buffers (which makes no other sense to me than a bug). It results
11552 in warnings for `unused: yy_flex_realloc'.
11553
115542001-12-30 Robert Anisko <robert.anisko@epita.fr>
11555
11556 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11557 (MUSCLE_INSERT_PREFIX): ...to there.
11558 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11559 (MUSCLE_INSERT_PREFIX): Move from here...
11560
11561 * src/bison.hairy: Add a section directive. Put braces around muscle
11562 names. This parser skeleton is still broken, but Bison should not
11563 choke on a bad muscle 'syntax'.
11564 * src/bison.simple: Add a section directive. Put braces around muscle
11565 names.
11566
11567 * src/files.h (strsuffix, stringappend): Add declarations.
11568 (tab_extension): Add declaration.
11569 (short_base_name): Add declaration.
11570
11571 * src/files.c (strsuffix, stringappend): No longer static. These
11572 functions are used in the skeleton parser.
11573 (tab_extension): New.
11574 (compute_base_names): Use the computations done in this function
11575 to guess if the generated parsers should have '.tab' in their
11576 names.
11577 (short_base_name): No longer static.
11578
11579 * src/output.c (output_skeleton): New.
11580 (output): Disable call to output_master_parser, and give a try to
11581 a new skeleton handling system.
11582 (guards_output, actions_output): No longer static.
11583 (token_definitions_output, get_lines_number): No longer static.
11584
11585 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
11586
11587 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
11588 parse-skel.y.
11589
11590 * src/parse-skel.y: New file.
11591 * src/scan-skel.l: New file.
11592
115932001-12-29 Akim Demaille <akim@epita.fr>
11594
11595 %name-prefix is broken.
11596
11597 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
11598 Adjust all dependencies.
11599 * tests/headers.at (export YYLTYPE): Strengthen this test: use
11600 %name-prefix.
11601
11602 Renaming yylval but not yylloc is not consistent. Now we do.
11603
11604 * src/bison.simple: Prefix yylloc if used.
11605 * doc/bison.texinfo (Decl Summary): Document that.
11606
116072001-12-29 Akim Demaille <akim@epita.fr>
11608
11609 * doc/bison.texinfo: Promote `%long-directive' over
11610 `%long_directive'.
11611 Remove all references to fixed-output-files, yacc is enough.
11612
116132001-12-29 Akim Demaille <akim@epita.fr>
11614
11615 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
11616 user prologue. These are defaults.
11617 * tests/actions.at (Mid-rule actions): Make sure the user can
11618 define YYDEBUG and YYERROR_VERBOSE.
11619
116202001-12-29 Akim Demaille <akim@epita.fr>
11621
11622 * src/output.c (header_output): Don't forget to export YYLTYPE and
11623 yylloc.
11624 * tests/headers.at (export YYLTYPE): New, make sure it does.
11625 * tests/regression.at (%union and --defines, Invalid CPP headers):
11626 Move to...
11627 * tests/headers.at: here.
11628
116292001-12-29 Akim Demaille <akim@epita.fr>
11630
11631 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
11632
116332001-12-29 Akim Demaille <akim@epita.fr>
11634
11635 * tests/actions.at (Mid-rule actions): Output on a single line
11636 instead of several.
11637
116382001-12-29 Akim Demaille <akim@epita.fr>
11639
11640 * doc/bison.texinfo: Formatting changes.
11641
116422001-12-29 Akim Demaille <akim@epita.fr>
11643
11644 Don't store the token defs in a muscle, just be ready to output it
11645 on command. Now possible via `symbols'. Fixes a memory leak.
11646
11647 * src/output.c (token_definitions_output): New.
11648 (output_parser, header_output): Use it.
11649 * src/reader.c (symbols_save): Remove.
11650
116512001-12-29 Akim Demaille <akim@epita.fr>
11652
11653 * src/bison.simple: Do not provide a default for YYSTYPE and
11654 YYLTYPE before the user's prologue. Otherwise it's hardly... a
11655 default.
11656
116572001-12-29 Akim Demaille <akim@epita.fr>
11658
11659 Mid-rule actions are simply... ignored!
11660
11661 * src/reader.c (readgram): Be sure to attach mid-rule actions to
11662 the empty-rule associated to the dummy symbol, not to the host
11663 rule.
11664 * tests/actions.at (Mid-rule actions): New.
11665
116662001-12-29 Akim Demaille <akim@epita.fr>
11667
11668 Memory leak.
11669
11670 * src/reader.c (reader): Free grammar.
11671
116722001-12-29 Akim Demaille <akim@epita.fr>
11673
11674 Memory leak.
11675
11676 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
11677 since it allocates it for each state, although only one is needed.
11678 (allocate_storage): Do it here.
11679
116802001-12-29 Akim Demaille <akim@epita.fr>
11681
11682 * src/options.h, src/options.c (create_long_option_table): Rename
11683 as...
11684 (long_option_table_new): this, with a clearer prototype.
11685 (percent_table): Remove, unused,
11686 * src/getargs.c (getargs): Adjust.
11687
116882001-12-29 Akim Demaille <akim@epita.fr>
11689
11690 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
11691 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
11692 as states.
11693
116942001-12-29 Akim Demaille <akim@epita.fr>
11695
11696 * src/lalr.c (build_relations): Rename `states' as `states1'.
11697 Sorry, I don't understand exactly what it is, no better name...
11698
116992001-12-29 Akim Demaille <akim@epita.fr>
11700
11701 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
11702 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
11703 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
11704 as rules.
11705
117062001-12-29 Akim Demaille <akim@epita.fr>
11707
11708 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
11709 ago.
11710
117112001-12-29 Akim Demaille <akim@epita.fr>
11712
11713 * src/reader.c, src/reader.h (user_toknums): Remove.
11714 Adjust all users to use symbols[i]->user_token_number.
11715
117162001-12-29 Akim Demaille <akim@epita.fr>
11717
11718 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
11719 Adjust all users to use symbols[i]->prec or ->assoc.
11720
117212001-12-29 Akim Demaille <akim@epita.fr>
11722
11723 * src/reader.c, src/reader.h (tags): Remove.
11724 Adjust all users to use symbols[i]->tag.
11725
117262001-12-29 Akim Demaille <akim@epita.fr>
11727
11728 * src/gram.h, src/gram.c (symbols): New, similar to state_table
11729 and rule_table.
11730 * src/reader.c (packsymbols): Fill this table.
11731 Drop sprec.
11732 * src/conflicts.c (resolve_sr_conflict): Adjust.
11733 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
11734 single table.
11735 Use symbols[i]->tag instead of tags[i].
11736
117372001-12-29 Akim Demaille <akim@epita.fr>
11738
11739 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
11740 In addition, put a comment in there, to replace...
11741 * tests/regression.at (%union and C comments): Remove.
11742
117432001-12-29 Akim Demaille <akim@epita.fr>
11744
11745 * tests/regression.at (Web2c Actions): Blindly move the actual
11746 output as expected output. The contents *seem* right to me, but I
11747 can't pretend reading perfectly parser tables... Nonetheless, all
11748 the other tests pass correctly, the table look OK, even though the
11749 presence of `$axiom' is to be noted: AFAICS it is useless (but
11750 harmless).
11751
117522001-12-29 Akim Demaille <akim@epita.fr>
11753
11754 * src/reader.c (readgram): Don't add the rule 0 if there were no
11755 rules read. In other words, add it _after_ having performed
11756 grammar sanity checks.
11757 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
11758
117592001-12-29 Akim Demaille <akim@epita.fr>
11760
11761 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
11762 visible, and some states have now a different number.
11763
117642001-12-29 Akim Demaille <akim@epita.fr>
11765
11766 * src/reader.c (readgram): Bind the initial rule's lineno to that
11767 of the first rule.
11768 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
11769 (Solved SR Conflicts): Adjust rule 0's line number.
11770
117712001-12-29 Akim Demaille <akim@epita.fr>
11772
11773 Fix the `GAWK Grammar' failure.
11774
11775 * src/LR0.c (final_state): Initialize to -1 so that we do compute
11776 the reductions of the first state which was mistakenly confused
11777 with the final state because precisely final_state was initialized
11778 to 0.
11779 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
11780 now noticed by Bison.
11781 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
11782 have a reduction on $default.
11783
117842001-12-29 Akim Demaille <akim@epita.fr>
11785
11786 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
11787 rule line numbers.
11788 * src/closure.c (print_closure): Likewise.
11789 * src/derives.c (print_derives): Likewise.
11790 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
11791 now.
11792
117932001-12-29 Akim Demaille <akim@epita.fr>
11794
11795 * src/lalr.c (lookaheads_print): New.
11796 (lalr): Call it when --trace-flag.
11797 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
11798 are dumped.
11799
118002001-12-29 Akim Demaille <akim@epita.fr>
11801
11802 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
11803 when walking through ritem, even via rule->rhs.
11804 * src/reduce.c (dump_grammar, useful_production, reduce_output)
11805 (useful_production, useless_nonterminals): Likewise.
11806 (reduce_grammar_tables): Likewise, plus update nritems.
11807 * src/nullable.c (set_nullable): Likewise.
11808 * src/lalr.c (build_relations): Likewise.
11809 * tests/sets.at (Nullable): Adjust.
11810 Fortunately, now, the $axiom is no longer nullable.
11811
118122001-12-29 Akim Demaille <akim@epita.fr>
11813
11814 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
11815 the 0-sentinel.
11816 * src/gram.c (ritem_longest_rhs): Likewise.
11817 * src/reduce.c (nonterminals_reduce): Likewise.
11818 * src/print_graph.c (print_graph): Likewise.
11819 * src/output.c (output_rule_data): Likewise.
11820 * src/nullable.c (set_nullable): Likewise.
11821
118222001-12-29 Akim Demaille <akim@epita.fr>
11823
11824 * src/output.c: Comment changes.
11825
118262001-12-27 Paul Eggert <eggert@twinsun.com>
11827
11828 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
11829 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
11830 Sparc, as they were causing more porting problems than the
11831 (minor) performance improvement was worth.
11832
11833 Also, catch up with 1.31's YYSTD.
11834
118352001-12-27 Akim Demaille <akim@epita.fr>
11836
11837 * src/output.c (output_gram): Rely on nritems, not the
11838 0-sentinel. See below.
11839 Use -1 as separator, not 0.
11840 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
11841 Rely on -1 as separator in yyrhs, instead of 0.
11842 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
11843 twice `Now at end of input', therefore there are two lines less to
11844 expect.
11845
118462001-12-27 Akim Demaille <akim@epita.fr>
11847
11848 * tests/regression.at (Unresolved SR Conflicts):
11849 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
11850 below.
11851
118522001-12-27 Akim Demaille <akim@epita.fr>
11853
11854 * src/LR0.c (new_state): Recognize the final state by the fact it
11855 is reached by eoftoken.
11856 (insert_start_shifting_state, insert_eof_shifting_state)
11857 (insert_accepting_state, augment_automaton): Remove, since now
11858 these states are automatically computed from the initial state.
11859 (generate_states): Adjust.
11860 * src/print.c: When reporting a rule number to the user, substract
11861 1, so that the axiom rule is rule 0, and the first user rule is 1.
11862 * src/reduce.c: Likewise.
11863 * src/print_graph.c (print_core): For the time being, just as for
11864 the report, depend upon --trace-flags to dump the full set of
11865 items.
11866 * src/reader.c (readgram): Once the grammar read, insert the rule
11867 0: `$axiom: START-SYMBOL $'.
11868 * tests/set.at: Adjust: rule 0 is now displayed, and since the
11869 number of the states has changed (the final state is no longer
11870 necessarily the last), catch up.
11871
118722001-12-27 Akim Demaille <akim@epita.fr>
11873
11874 Try to make the use of the eoftoken valid. Given that its value
11875 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
11876 is used instead of > 0 where appropriate, (ii), depend upon nritems
11877 instead of the 0-sentinel.
11878
11879 * src/gram.h, src/gram.c (nritems): New.
11880 Expected to be duplication of nitems, but for the time being...
11881 * src/reader.c (packgram): Assert nritems and nitems are equal.
11882 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
11883 * src/closure.c (print_closure, print_fderives): Likewise.
11884 * src/gram.c (ritem_print): Likewise.
11885 * src/print.c (print_core, print_grammar): Likewise.
11886 * src/print_graph.c: Likewise.
11887
118882001-12-27 Akim Demaille <akim@epita.fr>
11889
11890 * src/main.c (main): If there are complains after grammar
11891 reductions, then output the report anyway if requested, then die.
11892 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
11893 * src/reader.c (eoftoken): New.
11894 (parse_token_decl): If the token being defined has value `0', it
11895 is the eoftoken.
11896 (packsymbols): No longer hack `tags' to insert `$' by hand.
11897 Be sure to preserve the value of the eoftoken.
11898 (reader): Make sure eoftoken is defined.
11899 Initialize nsyms to 0: now eoftoken is created just like the others.
11900 * src/print.c (print_grammar): Don't special case the eof token.
11901 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
11902 lie anyway, albeit pleasant.
11903 * tests/calc.at: Exercise error messages with eoftoken.
11904 Change the grammar so that empty input is invalid.
11905 Adjust expectations.
11906 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
11907
119082001-12-27 Akim Demaille <akim@epita.fr>
11909
11910 * configure.in: Check the protos of strchr ans strspn.
11911 Replace strchr if needed.
11912 * src/system.h: Provide the protos of strchr, strspn and memchr if
11913 missing.
11914 * lib/strchr.c: New.
11915 * src/reader.c (symbols_save): Use strchr.
11916
119172001-12-27 Akim Demaille <akim@epita.fr>
11918
11919 * src/print.c, src/print_graph.c (escape): New.
11920 Use it to quote the TAGS outputs.
11921 * src/print_graph.c (print_state): Now errors are in red, and
11922 reductions in green.
11923 Prefer high to wide: output the state number on a line of its own.
11924
119252001-12-27 Akim Demaille <akim@epita.fr>
11926
11927 * src/state.h, src/state.c (reductions_new): New.
11928 * src/LR0.c (set_state_table): Let all the states have a
11929 `reductions', even if reduced to 0.
11930 (save_reductions): Adjust.
11931 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
11932 * src/print.c (print_reductions, print_actions): Adjust.
11933 * src/output.c (action_row): Adjust.
11934
119352001-12-27 Akim Demaille <akim@epita.fr>
11936
11937 * src/state.h, src/state.c (errs_new, errs_dup): New.
11938 * src/LR0.c (set_state_table): Let all the states have an errs,
11939 even if reduced to 0.
11940 * src/print.c (print_errs, print_reductions): Adjust.
11941 * src/output.c (output_actions, action_row): Adjust.
11942 * src/conflicts.c (resolve_sr_conflict): Adjust.
11943
119442001-12-27 Akim Demaille <akim@epita.fr>
11945
11946 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
11947
119482001-12-27 Akim Demaille <akim@epita.fr>
11949
11950 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
11951 * src/print.c: here.
11952 (lookaheadset, shiftset): New, used as additional storage by
11953 print_reductions.
11954 (print_results): Adjust.
11955 (print_shifts, print_gotos, print_errs): New, extracted from...
11956 (print_actions): here.
11957 * src/print_graph.c (print_actions): Remove dead code.
11958
119592001-12-27 Akim Demaille <akim@epita.fr>
11960
11961 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
11962 `$n' and `@n'.
11963
119642001-12-27 Akim Demaille <akim@epita.fr>
11965
11966 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
11967 (build_relations): Adjust.
11968
119692001-12-27 Akim Demaille <akim@epita.fr>
11970
11971 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
11972 duplication.
11973
119742001-12-27 Akim Demaille <akim@epita.fr>
11975
11976 * src/reader.c (packgram): Catch nitems overflows.
11977
119782001-12-27 Akim Demaille <akim@epita.fr>
11979
11980 * src/files.c, src/files.h (guard_obstack): Remove.
11981 * src/output.c (output): Adjust.
11982 * src/reader.c (parse_braces): New, factoring...
11983 (copy_action, copy_guard): these two which are renamed as...
11984 (parse_action, parse_guard): these.
11985 As a voluntary consequence, using braces around guards is now
11986 mandatory.
11987
119882001-12-27 Akim Demaille <akim@epita.fr>
11989
11990 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
11991 * src/reader.c (symbol_list): `guard' and `guard_line' are new
11992 members.
11993 (symbol_list_new): Adjust.
11994 (copy_action): action_line is the first line, not the last.
11995 (copy_guard): Just as for actions, store the `action' only, not
11996 the switch/case/break flesh.
11997 Don't parse the user action that might follow the guard, let...
11998 (readgram): do it, i.e., now, there can be an action after a
11999 guard.
12000 In other words the guard is just explicitly optional.
12001 (packgram): Adjust.
12002 * src/output.c (guards_output): New.
12003 (output_parser): Call it when needed.
12004 (output): Also free the guard and attrs obstacks.
12005 * src/files.c, src/files.h (obstack_save): Remove.
12006 (output_files): Remove.
12007 As a result, if one needs the former `.act' file, using an
12008 appropriate skeleton which requires actions and guards is now
12009 required.
12010 * src/main.c (main): Adjust.
12011 * tests/semantic.at: New.
12012 * tests/regression.at: Use `input.y' as input file name.
12013 Avoid 8+3 problems by requiring input.c when the test needs the
12014 parser.
12015
120162001-12-27 Akim Demaille <akim@epita.fr>
12017
12018 * src/reader.c (symbol_list_new): Be sure to initialize all the
12019 fields.
12020
120212001-12-27 Akim Demaille <akim@epita.fr>
12022
12023 All the hacks using a final pseudo state are now useless.
12024
12025 * src/LR0.c (set_state_table): state_table holds exactly nstates.
12026 * src/lalr.c (nLA): New.
12027 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
12028 instead of lookaheadsp from the pseudo state (nstate + 1).
12029
120302001-12-27 Akim Demaille <akim@epita.fr>
12031
12032 * src/output.c (action_row, token_actions): Use a state_t instead
12033 of a integer, and nlookaheads instead of the following state's
12034 lookaheadsp.
12035
120362001-12-27 Akim Demaille <akim@epita.fr>
12037
12038 * src/conflicts.c (log_resolution, flush_shift)
12039 (resolve_sr_conflict, set_conflicts, solve_conflicts)
12040 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
12041 (conflicts_print, print_reductions): Use a state_t instead of an
12042 integer when referring to a state.
12043 As much as possible, depend upon nlookaheads, instead of the
12044 `lookaheadsp' member of the following state (since lookaheads of
12045 successive states are successive, the difference between state n + 1
12046 and n served as the number of lookaheads for state n).
12047 * src/lalr.c (add_lookback_edge): Likewise.
12048 * src/print.c (print_core, print_actions, print_state)
12049 (print_results): Likewise.
12050 * src/print_graph.c (print_core, print_actions, print_state)
12051 (print_graph): Likewise.
12052 * src/conflicts.h: Adjust.
12053
120542001-12-27 Akim Demaille <akim@epita.fr>
12055
12056 * src/bison.hairy: Formatting/comment changes.
12057 ANSIfy.
12058 Remove `register' indications.
12059 Add plenty of `static'.
12060
120612001-12-27 Akim Demaille <akim@epita.fr>
12062
12063 * src/output.c (prepare): Drop the muscle `ntbase' which
12064 duplicates ntokens.
12065 * src/bison.simple: Formatting/comment changes.
12066 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
12067 is an undocumented synonym.
12068
120692001-12-22 Akim Demaille <akim@epita.fr>
12070
12071 * src/output.c (output_table_data): Change the prototype to use
12072 `int' for array ranges: some invocations do pass an int, not a
12073 short.
12074 Reported by Wayne Green.
12075
120762001-12-22 Akim Demaille <akim@epita.fr>
12077
12078 Some actions of web2c.y are improperly triggered.
12079 Reported by Mike Castle.
12080
12081 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
12082 * tests/regression.at (Web2c): Rename as...
12083 (Web2c Report): this.
12084 (Web2c Actions): New.
12085
120862001-12-22 Akim Demaille <akim@epita.fr>
12087
12088 Reductions in web2c.y are improperly reported.
12089 Reported by Mike Castle.
12090
12091 * src/conflicts.c (print_reductions): Fix.
12092 * tests/regression.at (Web2c): New.
12093
120942001-12-18 Akim Demaille <akim@epita.fr>
12095
12096 Some host fail on `assert (!"foo")', which expands to
12097 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
12098 Reported by Nelson Beebee.
12099
12100 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
12101 `#define it_succeeded 0' and `assert (it_succeeded)'.
12102
121032001-12-17 Marc Autret <autret_m@epita.fr>
12104
12105 * src/bison.simple: Don't hard code the skeleton line and filename.
12106 * src/output.c (output_parser): Rename 'line' as 'output_line'.
12107 New line counter 'skeleton_line' (skeleton-line muscle).
12108
121092001-12-17 Paul Eggert <eggert@twinsun.com>
12110
12111 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
12112 YYDEBUG must be defined to a nonzero value.
12113
12114 * src/bison.simple (yytname): Do not assume that the user defines
12115 YYDEBUG to a properly parenthesized expression.
12116
121172001-12-17 Akim Demaille <akim@epita.fr>
12118
12119 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
12120 nlookaheads is a new member.
12121 Adjust all users.
12122 * src/lalr.h (nlookaheads): Remove this orphan declaration.
12123 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
12124 state.
12125
121262001-12-17 Akim Demaille <akim@epita.fr>
12127
12128 * src/files.h, src/files.c (open_files, close_files): Remove.
12129 * src/main.c (main): Don't open/close files, nor invoke lex_free,
12130 let...
12131 * src/reader.c (reader): Do it.
12132
121332001-12-17 Akim Demaille <akim@epita.fr>
12134
12135 * src/conflicts.c (print_reductions): Formatting changes.
12136
121372001-12-17 Akim Demaille <akim@epita.fr>
12138
12139 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
12140 (flush_reduce): New.
12141 (resolve_sr_conflict): Adjust.
12142
121432001-12-17 Akim Demaille <akim@epita.fr>
12144
12145 * src/output.c (output_obstack): Be static and rename as...
12146 (format_obstack): this, to avoid any confusion with files.c's
12147 output_obstack.
12148 * src/reader.h (muscle_obstack): Move to...
12149 * src/output.h: here, since it's defined in output.c.
12150
121512001-12-17 Akim Demaille <akim@epita.fr>
12152
12153 * src/output.c (action_row, save_column, default_goto)
12154 (sort_actions, matching_state, pack_vector): Better variable
12155 locality.
12156
121572001-12-17 Akim Demaille <akim@epita.fr>
12158
12159 * src/output.c: Various formatting changes.
12160
121612001-12-17 Akim Demaille <akim@epita.fr>
12162
12163 * src/files.c (output_files): Free the output_obstack.
12164 * src/main.c (main): Call print and print_graph conditionally.
12165 * src/print.c (print): Work unconditionally.
12166 * src/print_graph.c (print_graph): Work unconditionally.
12167 * src/conflicts.c (log_resolution): Output only if verbose_flag.
12168
121692001-12-16 Marc Autret <autret_m@epita.fr>
12170
12171 * src/output.c (actions_output): Fix. When we use %no-lines,
12172 there is one less line per action.
12173
121742001-12-16 Marc Autret <autret_m@epita.fr>
12175
12176 * src/bison.simple: Remove a useless #line directive.
12177 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
12178 * src/output.c (get_lines_number): New.
12179 (output_parser): Adjust, now takes care about the lines of a
12180 output muscles.
12181 Fix line numbering.
12182 (actions_output): Computes the number of lines taken by actions.
12183 (output_master_parser): Insert new skeleton which is the name of
12184 the output parser file name.
12185
121862001-12-15 Marc Autret <autret_m@epita.fr>
12187
12188 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
12189
121902001-12-15 Marc Autret <autret_m@epita.fr>
12191
12192 * src/output.c (output_gram): Keep track of the hairy one.
12193
121942001-12-15 Akim Demaille <akim@epita.fr>
12195
12196 Make `make distcheck' work.
12197
12198 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
12199 system.h which uses libgettext.h.
12200
122012001-12-15 Akim Demaille <akim@epita.fr>
12202
12203 * src/nullable.c (set_nullable): Useless rules must be skipped,
12204 otherwise, since we range over their symbols, we might look at a
12205 nonterminal which no longer ``exists'', i.e., it is not counted in
12206 `nvars', hence we overflow our arrays.
12207
122082001-12-15 Akim Demaille <akim@epita.fr>
12209
12210 The header can also be produced directly, without any obstack!
12211 Yahoo!
12212
12213 * src/files.c, src/files.h (defines_obstack): Remove.
12214 (compute_header_macro): Global.
12215 (defines_obstack_save): Remove.
12216 * src/reader.c (parse_union_decl): No longer output to
12217 defines_obstack: its content can be found in the `stype' muscle
12218 anyway.
12219 (output_token_translations): Merge into...
12220 (symbols_output): this.
12221 Rename as...
12222 (symbols_save): this.
12223 (reader): Adjust.
12224 * src/output.c (header_output): New.
12225 (output): Call it.
12226
122272001-12-15 Akim Demaille <akim@epita.fr>
12228
12229 * src/reader.c (parse_union_decl): Instead of handling two obstack
12230 simultaneously, use one to define the `stype' muscle, and use the
12231 value of the latter to fill defines_obstack.
12232 (copy_comment): Remove.
12233 (copy_comment2): Work for a single obstack.
12234 Rename as...
12235 (copy_comment): this.
12236
122372001-12-15 Akim Demaille <akim@epita.fr>
12238
12239 * src/lex.c, src/lex.h (xgetc): No longer static.
12240 * src/reader.c (parse_union_decl): Revamp.
12241
122422001-12-15 Akim Demaille <akim@epita.fr>
12243
12244 Still making progress in separating Bison into (i) input, (ii)
12245 process, (iii) output: now we can directly output the parser file
12246 without using table_obstack at all.
12247
12248 * src/files.c, src/files.h (table_obstack): Bye bye.
12249 (parser_file_name): New.
12250 * src/files.c (compute_output_file_names): Compute it.
12251 * src/output.c (actions_output, output_parser)
12252 (output_master_parser): To a file instead of an obstack.
12253
122542001-12-15 Akim Demaille <akim@epita.fr>
12255
12256 Attach actions to rules, instead of pre-outputting them to
12257 actions_obstack.
12258
12259 * src/gram.h (rule_t): action and action_line are new members.
12260 * src/reader.c (symbol_list): Likewise.
12261 (copy_action): Save the actions within the rule.
12262 (packgram): Save them in rule_table.
12263 * src/output.c (actions_output): New.
12264 (output_parser): Use it on `%%actions'.
12265 (output_rule_data): Don't free rule_table.
12266 (output): Do it.
12267 (prepare): Don't save the `action' muscle.
12268 * src/bison.simple: s/%%action/%%actions/.
12269
122702001-12-15 Akim Demaille <akim@epita.fr>
12271
12272 * src/reader.c (copy_action): When --yacc, don't append a `;'
12273 to the user action: let it fail if lacking.
12274 Suggested by Arnold Robbins and Tom Tromey.
12275
122762001-12-14 Akim Demaille <akim@epita.fr>
12277
12278 * src/lex.c (literalchar): Simply return the char you decoded, non
12279 longer mess around with obstacks and int pointers.
12280 Adjust all callers.
12281
122822001-12-14 Akim Demaille <akim@epita.fr>
12283
12284 * src/lex.c (literalchar): Don't escape the special characters,
12285 just decode them, and keep them as char (before, eol was output as
12286 the 2 char string `\n' etc.).
12287 * src/output.c (output_rule_data): Use quotearg to output the
12288 token strings.
12289
122902001-12-13 Paul Eggert <eggert@twinsun.com>
12291
12292 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
12293 Do not infringe on the global user namespace when using C++.
12294 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
12295 All uses of `fprintf' and `stderr' changed.
12296
12297 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
12298
122992001-12-13 Akim Demaille <akim@epita.fr>
12300
12301 The computation of nullable is broken: it doesn't handle empty
12302 RHS's properly.
12303
12304 * tests/torture.at (GNU AWK Grammar): New.
12305 * tests/sets.at (Nullable): New.
12306 * src/nullable.c (set_nullable): Instead of blindly looping over
12307 `ritems', loop over the rules, and then over their rhs's.
12308
12309 Work around Autotest bugs.
12310
12311 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
12312 frame, because Autotest understand lines starting with a `+' as
12313 traces from the shell. Then, they are not processed properly.
12314 Admittedly an Autotest bug, but we don't have time to wait for
12315 Autotest to catch up.
12316 * tests/regression.at (Broken Closure): Adjust to the new table
12317 frames.
12318 Move to...
12319 * tests/sets.at: here.
12320
123212001-12-13 Akim Demaille <akim@epita.fr>
12322
12323 * src/closure.c (closure): Use nrules instead of playing tricks
12324 with BITS_PER_WORD.
12325
123262001-12-13 Akim Demaille <akim@epita.fr>
12327
12328 * src/print.c (print_actions): Output the handling of `$' as the
12329 traces do: shifting the token EOF. Before EOF was treated as a
12330 nonterminal.
12331 * tests/regression.at: Adjust some tests.
12332 * src/print_graph.c (print_core): Complete the set of items via
12333 closure. The next-to-final and final states are still unsatisfying,
12334 but that's to be addressed elsewhere.
12335 No longer output the rule numbers, but do output the state number.
12336 A single loop for the shifts + gotos is enough, but picked a
12337 distinct color for each.
12338 (print_graph): Initialize and finalize closure.
12339
123402001-12-13 Akim Demaille <akim@epita.fr>
12341
12342 * src/reader.c (readgram): Remove dead code, an strip useless
12343 braces.
12344 (get_type): Remove, unused.
12345
123462001-12-12 Akim Demaille <akim@epita.fr>
12347
12348 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
12349 on that of lib/error.c.
12350
123512001-12-12 Akim Demaille <akim@epita.fr>
12352
12353 Some hosts don't like `/' in includes.
12354
12355 * src/system.h: Include libgettext.h without qualifying the path.
12356 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
12357 $(top_srcdir).
12358
123592001-12-11 Marc Autret <autret_m@epita.fr>
12360
12361 * src/output.c (output_parser): Remove useless muscle.
12362
123632001-12-11 Marc Autret <autret_m@epita.fr>
12364
12365 * src/bison.simple: Remove #line just before %%epilogue. It
12366 is now handled in ...
12367 * src/reader.c (read_additionnal_code): Add the output of a
12368 #line for the epilogue.
12369
123702001-12-10 Marc Autret <autret_m@epita.fr>
12371
12372 * src/reader.c (copy_definition): Re-use CPP-outed code which
12373 replace precedent remove.
12374 * src/bison.simple: Remove #line before %%prologue because
12375 %%input-line is wrong at this time.
12376
123772001-12-10 Marc Autret <autret_m@epita.fr>
12378
12379 * src/reader.c (symbols_output): Clean up.
12380 * src/output.c (output_gram, output): Clean up.
12381
123822001-12-10 Akim Demaille <akim@epita.fr>
12383
12384 * src/lalr.c (initialize_lookaheads): New. Extracted from...
12385 * src/LR0.c (set_state_table): here.
12386 * src/lalr.c (lalr): Call it.
12387
123882001-12-10 Akim Demaille <akim@epita.fr>
12389
12390 * src/state.h (shifts): Remove the `number' member: shifts are
12391 attached to state, hence no longer need to be labelled with a
12392 state number.
12393
123942001-12-10 Akim Demaille <akim@epita.fr>
12395
12396 Now that states have a complete set of members, the linked list of
12397 shifts is useless: just fill directly the state's shifts member.
12398
12399 * src/state.h (shifts): Remove the `next' member.
12400 * src/LR0.c (first_state, last_state): Remove.
12401 Adjust the callers.
12402 (augment_automaton): Don't look for the shifts that must be added
12403 a shift on EOF: it is those of the state we looked for! But now,
12404 since shifts are attached, it is no longer needed to looking
12405 merely by its id: its number.
12406
124072001-12-10 Akim Demaille <akim@epita.fr>
12408
12409 * src/LR0.c (augment_automaton): Better variable locality.
12410 Remove an impossible branch: if there is a state corresponding to
12411 the start symbol being shifted, then there is shift for the start
12412 symbol from the initial state.
12413
124142001-12-10 Akim Demaille <akim@epita.fr>
12415
12416 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
12417 only when appropriate: when insert_start_shifting_state' is not
12418 invoked.
12419 * tests/regression.at (Rule Line Numbers): Adjust.
12420
124212001-12-10 Akim Demaille <akim@epita.fr>
12422
12423 * src/LR0.c (augment_automaton): Now that all states have shifts,
12424 merge the two cases addition shifts to the initial state.
12425
124262001-12-10 Akim Demaille <akim@epita.fr>
12427
12428 * src/lalr.c (set_state_table): Move to...
12429 * src/LR0.c: here.
12430 * src/lalr.c (lalr): Don't call it...
12431 * src/LR0.c (generate_states): do it.
12432 * src/LR0.h (first_state): Remove, only the table is used.
12433
124342001-12-10 Akim Demaille <akim@epita.fr>
12435
12436 * src/LR0.h (first_shift, first_reduction): Remove.
12437 * src/lalr.c: Don't use first_shift: find shifts through the
12438 states.
12439
124402001-12-10 Akim Demaille <akim@epita.fr>
12441
12442 * src/LR0.c: Attach shifts to states as soon as they are
12443 computed.
12444 * src/lalr.c (set_state_table): Instead of assigning shifts to
12445 state, just assert that the mapping was properly done.
12446
124472001-12-10 Akim Demaille <akim@epita.fr>
12448
12449 * src/LR0.c (insert_start_shift): Rename as...
12450 (insert_start_shifting_state): this.
12451 (insert_eof_shifting_state, insert_accepting_state): New.
12452 (augment_automaton): Adjust.
12453 Better locality of the variables.
12454 When looking if the start_symbol is shifted from the initial
12455 state, using `while (... symbol != start_symbol ...)' sounds
12456 better than `while (... symbol < start_symbol ...)': If fail
12457 to see how the order between symbols could be relevant!
12458
124592001-12-10 Akim Demaille <akim@epita.fr>
12460
12461 * src/getargs.h: Don't declare `spec_name_prefix' and
12462 `spec_file_prefix', declared by src/files.h.
12463 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
12464 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
12465 * src/output.c (prepare): Adjust.
12466 * src/reader.c (symbols_output): Likewise.
12467 * src/vmsgetargs.c: Vaguely adjust, but who cares?
12468
124692001-12-10 Akim Demaille <akim@epita.fr>
12470
12471 * src/muscle_tab.c (muscle_init): NULL is a better default than
12472 `"0"'.
12473
124742001-12-10 Akim Demaille <akim@epita.fr>
12475
12476 * src/reader.c (reader): Calling symbols_output once is enough.
12477
124782001-12-10 Akim Demaille <akim@epita.fr>
12479
12480 Now that states have a complete set of members, the linked list of
12481 reductions is useless: just fill directly the state's reductions
12482 member.
12483
12484 * src/state.h (struct reductions): Remove member `number' and
12485 `next'.
12486 * src/LR0.c (first_reduction, last_reduction): Remove.
12487 (save_reductions): Don't link the new reductions, store them in
12488 this_state.
12489 * src/lalr.c (set_state_table): No need to attach reductions to
12490 states, it's already done.
12491 * src/output.c (output_actions): No longer free the shifts, then
12492 the reductions, then the states: free all the states and their
12493 members.
12494
124952001-12-10 Akim Demaille <akim@epita.fr>
12496
12497 * src/options.c (OPTN, DRTV, BOTH): New.
12498 (option_table): Use them.
12499
12500 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
12501 the job of system.h.
12502 * src/options.c: Don't include stdio.h and xalloc.h for the same
12503 reasons.
12504
125052001-12-10 Akim Demaille <akim@epita.fr>
12506
12507 * src/output.c (output, prepare): Make sure the values of the
12508 muscles `action' and `prologue' are 0-terminated.
12509
125102001-12-10 Akim Demaille <akim@epita.fr>
12511
12512 Clean up GCC warnings.
12513
12514 * src/reader.c (copy_action): `buf' is not used.
12515 (parse_skel_decl): Be static.
12516 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
12517 * src/options.h (create_long_option_table): Have a real prototype.
12518 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
12519 (hash_delete_at): Return const void *.
12520 Adjust casts to preserve the const.
12521
125222001-12-10 Akim Demaille <akim@epita.fr>
12523
12524 * configure.in: Require 2.52g.
12525 M4 is not needed, but AUTOM4TE is.
12526 * m4/m4.m4: Remove.
12527 * tests/Makefile.am: Adjust.
12528
125292001-12-10 Akim Demaille <akim@epita.fr>
12530
12531 One structure for states is enough, even though theoretically
12532 there are LR(0) states and LALR(1) states.
12533
12534 * src/lalr.h (state_t): Remove.
12535 (state_table): Be state_t **, not state_t *.
12536 * src/state.h (core, CORE_ALLOC): Rename as...
12537 (state_t, STATE_ALLOC): this.
12538 Add the LALR(1) members: shifts, reductions, errs.
12539 * src/LR0.c (state_table): Rename as...
12540 (state_hash): this, to avoid name clashes with the global
12541 `state_table'.
12542 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
12543 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
12544
125452001-12-10 Akim Demaille <akim@epita.fr>
12546
12547 Bison dumps core on bash.y.
12548 Reported by Pascal Bart.
12549
12550 * src/warshall.c (bitmatrix_print): New.
12551 (TC): Use it.
12552 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
12553 j must be the outer loop.
12554 * tests/regression.at (Broken Closure): New.
12555
125562001-12-05 Akim Demaille <akim@epita.fr>
12557
12558 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
12559 its argument.
12560 Reported by Peter Hamorsky.
12561
125622001-12-05 Akim Demaille <akim@epita.fr>
12563
12564 * src/conflicts.c (err_table): Remove.
12565 (resolve_sr_conflict): Adjust.
12566 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
12567 Rename as...
12568 (state_t.reductions, state_t.shifts): this.
12569
125702001-12-05 Akim Demaille <akim@epita.fr>
12571
12572 * src/reduce.c (reduce_grammar_tables): No longer disable the
12573 removal of useless rules via CPP but via `if (0)', so that the
12574 compiler still check the code is valid.
12575 For instance, it should have noticed `rline' no longer exists: use
12576 the `line' member of rule_t.
12577 * src/gram.c (dummy, rline): Remove, unused.
12578
125792001-12-05 Akim Demaille <akim@epita.fr>
12580
12581 * src/output.c (pack_vector): Use assert, not berror.
12582 * src/main.c (berror): Remove, unused.
12583
125842001-12-05 Akim Demaille <akim@epita.fr>
12585
12586 New experimental feature: if --verbose --trace output all the
12587 items of a state, not only its kernel.
12588
12589 * src/print.c (print_core): If `trace_flag', then invoke closure
12590 before outputting the items of the state (print_core is no longer
12591 a correct name them).
12592 (print_results): Invoke new_closure/free_closure if needed.
12593
125942001-12-05 Akim Demaille <akim@epita.fr>
12595
12596 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
12597 * src/closure.c, src/closure.h (itemsetsize): Rename as...
12598 (nitemset): for consistency with the rest of the project.
12599
126002001-12-05 Akim Demaille <akim@epita.fr>
12601
12602 * src/closure.c (print_closure): Improve.
12603 (closure): Use it for printing input and output.
12604
126052001-12-05 Akim Demaille <akim@epita.fr>
12606
12607 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
12608 indexed by nonterminals.
12609
126102001-12-05 Akim Demaille <akim@epita.fr>
12611
12612 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
12613 what it was!).
12614 * src/warshall.h: Remove accidental duplication of the content.
12615
126162001-12-05 Akim Demaille <akim@epita.fr>
12617
12618 * src/closure.c (set_fderives): De-obfuscate.
12619
126202001-12-05 Akim Demaille <akim@epita.fr>
12621
12622 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
12623
126242001-12-05 Akim Demaille <akim@epita.fr>
12625
12626 * src/closure.c (set_firsts): De-obfuscate.
12627
126282001-12-05 Akim Demaille <akim@epita.fr>
12629
12630 * src/output.c (action_row): De-obfuscate
12631 using the good o' techniques: arrays not pointers, variable
12632 locality, BITISSET, RESETBIT etc.
12633
126342001-12-05 Akim Demaille <akim@epita.fr>
12635
12636 Pessimize the code to simplify it: from now on, all the states
12637 have a valid SHIFTS, which NSHIFTS is possibly 0.
12638
12639 * src/LR0.c (shifts_new): Be global and move to..
12640 * src/state.c, src/state.h: here.
12641 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
12642 * src/print_graph: Adjust.
12643
126442001-12-05 Akim Demaille <akim@epita.fr>
12645
12646 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
12647 * src/conflicts.c: Use it.
12648 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
12649 incorrectly ``simplified''.
12650
126512001-12-05 Akim Demaille <akim@epita.fr>
12652
12653 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
12654 using the good o' techniques: arrays not pointers, variable
12655 locality, BITISSET, RESETBIT etc.
12656
126572001-12-05 Akim Demaille <akim@epita.fr>
12658
12659 * src/state.h (SHIFT_SYMBOL): New.
12660 * src/conflicts.c: Use it to deobfuscate.
12661
126622001-12-05 Akim Demaille <akim@epita.fr>
12663
12664 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
12665 (print_reductions): De-obfuscate using the good o' techniques:
12666 arrays not pointers, variable locality, BITISSET.
12667
126682001-12-05 Akim Demaille <akim@epita.fr>
12669
12670 * src/conflicts.c (print_reductions): Arrays, not pointers.
12671 Use BITISSET.
12672
126732001-12-05 Akim Demaille <akim@epita.fr>
12674
12675 * src/conflicts.c (print_reductions): Pessimize, but clarify.
12676
126772001-12-05 Akim Demaille <akim@epita.fr>
12678
12679 * src/conflicts.c (print_reductions): Improve variable locality.
12680
126812001-12-05 Akim Demaille <akim@epita.fr>
12682
12683 * src/conflicts.c (print_reductions): Pessimize, but clarify.
12684
126852001-12-05 Akim Demaille <akim@epita.fr>
12686
12687 * src/conflicts.c (print_reductions): Improve variable locality.
12688
126892001-12-05 Akim Demaille <akim@epita.fr>
12690
12691 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
12692 * src/lalr.c: Use them.
12693
126942001-12-05 Akim Demaille <akim@epita.fr>
12695
12696 * src/LR0.c (augment_automaton): Formatting changes.
12697 Better variable locality.
12698
126992001-12-05 Akim Demaille <akim@epita.fr>
12700
12701 * src/lalr.c (matrix_print): New.
12702 (transpose): Use it.
12703 Use arrays instead of pointers.
12704
127052001-12-05 Akim Demaille <akim@epita.fr>
12706
12707 * src/lalr.c (maxrhs): Move to...
12708 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
12709 * src/lalr.c (build_relations): Adjust.
12710
127112001-12-05 Akim Demaille <akim@epita.fr>
12712
12713 * src/lalr.c (transpose): Free the memory allocated to the
12714 argument, as it is replaced by the results by the unique caller.
12715 (build_relations): Merely invoke transpose: it handles the memory
12716 deallocation.
12717 Improve variable locality.
12718 Avoid variables used as mere abbreviations.
12719 (compute_lookaheads): Use arrays instead of pointers.
12720
127212001-12-05 Akim Demaille <akim@epita.fr>
12722
12723 * src/lalr.c (initialize_F): Improve variable locality.
12724 Avoid variables used as mere abbreviations.
12725
127262001-12-05 Akim Demaille <akim@epita.fr>
12727
12728 * src/derives.c (print_derives): Display the ruleno.
12729 * src/lalr.c (initialize_F, transpose): Better variable locality
12730 to improve readability.
12731 Avoid variables used as mere abbreviations.
12732
127332001-12-05 Akim Demaille <akim@epita.fr>
12734
12735 * src/lalr.c (traverse): Use arrays instead of pointers.
12736
127372001-12-05 Akim Demaille <akim@epita.fr>
12738
12739 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
12740 the handling of squeue.
12741 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
12742
127432001-12-05 Akim Demaille <akim@epita.fr>
12744
12745 Because useless nonterminals are now kept alive (instead of being
12746 `destroyed'), we now sometimes examine them, and store information
12747 related to them. Hence we need to know their number, and adjust
12748 memory allocations.
12749
12750 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
12751 static.
12752 * src/LR0.c (allocate_itemsets): The memory allocated to
12753 `symbol_count' was used for two different purpose: once to count
12754 the number of occurrences of each symbol, and later reassigned to
12755 `shift_symbol', containing the symbol that can be shifted from a
12756 given state.
12757 Deobfuscate, i.e., allocate, use and free `symbol_count' here
12758 only, and...
12759 (new_itemsets): Allocate `shift_symbol' here.
12760 (allocate_itemsets): symbol_count includes useless nonterminals.
12761 Make room for them.
12762 (free_storage): Use `free', not `XFREE', for pointers that cannot
12763 be null.
12764
127652001-12-05 Akim Demaille <akim@epita.fr>
12766
12767 * src/nullable.c (set_nullable): Deobfuscate the handling of
12768 ritem.
12769 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
12770
127712001-12-05 Akim Demaille <akim@epita.fr>
12772
12773 * src/gram.c, src/gram.h (ritem_print): New.
12774 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
12775 (This useless function was defined only to work around VMS linkers
12776 that can't handle compilation units with variables only).
12777 * src/reduce.c (dump_grammar): Use it to trace the construction of
12778 ritem.
12779
127802001-12-04 Paul Eggert <eggert@twinsun.com>
12781
12782 * src/bison.simple (union yyalloc): Change member names
12783 to be the same as the stack names.
12784 (yyparse): yyptr is now union yyalloc *, not char *.
12785 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
12786 and may generate better code on some machines.
12787 (yystpcpy): Use prototype if __STDC__ is defined, not just
12788 if __cplusplus is defined.
12789
127902001-11-30 Akim Demaille <akim@epita.fr>
12791
12792 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
12793 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
12794 Gettext doesn't compile cleanly, and dies with -Werror.
12795 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
12796 Include WARNING_CFLAGS here.
12797 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
12798 before being defined.
12799
128002001-11-27 Paul Eggert <eggert@twinsun.com>
12801
12802 * lib/quotearg.h (quotearg_n, quotearg_n_style):
12803 First arg is int, not unsigned.
12804 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
12805 (SIZE_MAX, UINT_MAX): New macros.
12806 (quotearg_n_options): Abort if N is negative.
12807 Avoid overflow check on hosts where size_t is 64 bits and int
12808 is 32 bits, as overflow is impossible there.
12809 Fix off-by-one typo that caused unnecessary reallocation.
12810
128112001-11-29 Paul Eggert <eggert@twinsun.com>
12812
12813 Name space cleanup in generated parser.
12814
12815 * doc/bison.texinfo (Bison Parser): Discuss system headers
12816 and their effect on the user name space.
12817
12818 * src/bison.simple:
12819 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
12820 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
12821 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
12822
12823 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
12824 on user names when possible.
12825
12826 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
12827 Simplify test for whather <alloca.h> exists.
12828
12829 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
12830
12831 (<stdio.h>): Include if YYDEBUG.
12832
12833 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
12834 ! defined (yyoverflow) && ! defined (yymemcpy).
12835
12836 (yymemcpy, yyparse): Rename local variables as needed so that
12837 they all begin with 'yy'.
12838
12839 (yystrlen, yystpcpy): New functions.
12840
12841 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
12842 All uses changed.
12843
12844 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
12845 instead of relying on string.h functions. Use YYSTACK_ALLOC
12846 and YYSTACK_FREE instead of malloc and free.
12847
128482001-11-30 Akim Demaille <akim@epita.fr>
12849
12850 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
12851 before their first uses.
12852 (YYBISON, YYPURE): Move to the top of the output.
12853
128542001-11-30 Akim Demaille <akim@epita.fr>
12855
12856 * tests/reduce.at (Useless Nonterminals): Fix.
12857
128582001-11-30 Akim Demaille <akim@epita.fr>
12859
12860 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
12861 if body instead of `;' to pacify GCC's warnings.
12862
128632001-11-30 Akim Demaille <akim@epita.fr>
12864
12865 Instead of mapping the LHS of unused rules to -1, keep the LHS
12866 valid, but flag the rules as invalid.
12867
12868 * src/gram.h (rule_t): `useful' is a new member.
12869 * src/print.c (print_grammar): Adjust.
12870 * src/derives.c (set_derives): Likewise.
12871 * src/reader.c (packgram, reduce_output): Likewise.
12872 * src/reduce.c (reduce_grammar_tables): Likewise.
12873 * tests/reduce.at (Underivable Rules, Useless Rules): New.
12874
128752001-11-30 Akim Demaille <akim@epita.fr>
12876
12877 * src/reduce.c (reduce_output): Formatting changes.
12878 * src/print.c (print_results, print_grammar): Likewise.
12879 * tests/regression.at (Rule Line Numbers)
12880 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
12881
128822001-11-30 Akim Demaille <akim@epita.fr>
12883
12884 * src/reduce.c (nonterminals_reduce): Instead of throwing away
12885 useless nonterminals, move them at the end of the symbol arrays.
12886 (reduce_output): Adjust.
12887 * tests/reduce.at (Useless Nonterminals): Adjust.
12888
128892001-11-30 Akim Demaille <akim@epita.fr>
12890
12891 * src/reduce.c: Various comment/formatting changes.
12892 (nonterminals_reduce): New, extracted from...
12893 (reduce_grammar_tables): here.
12894 (reduce_grammar): Call nonterminals_reduce.
12895
128962001-11-29 Paul Eggert <eggert@twinsun.com>
12897
12898 * src/bison.simple (YYSTACK_REALLOC): Remove.
12899 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
12900 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
12901 New macros.
12902 (union yyalloc): New type.
12903 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
12904 an arbitrary restriction on hosts where size_t is wider than int.
12905
12906 (yyparse): Don't dump core if alloca or malloc fails; instead, report
12907 a parser stack overflow. Allocate just one block of memory for all
12908 three stacks, instead of allocating three blocks; this typically is
12909 faster and reduces fragmentation.
12910
12911 Do not limit the number of items in the stack to a value that fits
12912 in 'int', as this is an arbitrary limit on hosts with 64-bit
12913 size_t and 32-bit int.
12914
129152001-11-29 Marc Autret <autret_m@epita.fr>
12916
12917 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
12918 of defining YYERROR_VERBOSE.
12919 [AT_DATA]: $4 is now out of C declarations in the prologue.
12920
129212001-11-28 Marc Autret <autret_m@epita.fr>
12922
12923 * src/reader.c (parse_dquoted_param): New.
12924 (parse_skel_decl): Use it.
12925 * src/lex.h: Add its prototype.
12926 * src/lex.c (literalchar): Become not static.
12927
129282001-11-28 Marc Autret <autret_m@epita.fr>
12929
12930 * src/output.h: And put its extern declaration here.
12931 * src/output.c (error_verbose): Define here.
12932 (prepare): Echo name modification.
12933 * src/getargs.h: Clean its extern declaration.
12934 * src/getargs.c (error_verbose_flag): Remove.
12935 (getargs): Remove case 'e'.
12936 * src/options.c (option_table): 'error-verbose' is now seen as simple
12937 percent option.
12938 Include output.h.
12939
12940 * src/reader.c (read_declarations): Remove case tok_include.
12941 (parse_include_decl): Remove.
12942 * src/lex.h (token_t): Remove tok_include.
12943 * src/options.c (option_table): 'include' is now a simple command line
12944 option.
12945
129462001-11-28 Marc Autret <autret_m@epita.fr>
12947
12948 * src/bison.simple: Adjust muscle names.
12949 * src/muscle_tab.c (muscle_init): Also rename the muscles.
12950 * src/output.c (prepare): s/_/-/ for the muscles names.
12951 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
12952
129532001-11-28 Marc Autret <autret_m@epita.fr>
12954
12955 * src/bison.simple: Fix debug.
12956 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
12957
129582001-11-28 Akim Demaille <akim@epita.fr>
12959
12960 * src/LR0.c (shifts_new): New.
12961 (save_shifts, insert_start_shift, augment_automaton): Use it.
12962
129632001-11-28 Akim Demaille <akim@epita.fr>
12964
12965 * src/closure.c (closure): `b' and `ruleno' denote the same value:
12966 keep ruleno only.
12967
129682001-11-28 Akim Demaille <akim@epita.fr>
12969
12970 * src/closure.c (closure): Instead of looping over word in array
12971 then bits in words, loop over bits in array.
12972
129732001-11-28 Akim Demaille <akim@epita.fr>
12974
12975 * src/closure.c (closure): No longer optimize the special case
12976 where all the bits of `ruleset[r]' are set to 0, to make the code
12977 clearer.
12978
129792001-11-28 Akim Demaille <akim@epita.fr>
12980
12981 * src/closure.c (closure): `r' and `c' are new variables, used to
12982 de-obfuscate accesses to RULESET and CORE.
12983
129842001-11-28 Akim Demaille <akim@epita.fr>
12985
12986 * src/reduce.c (reduce_print): Use ngettext.
12987 (dump_grammar): Improve the trace accuracy.
12988
129892001-11-28 Akim Demaille <akim@epita.fr>
12990
12991 * src/reduce.c (dump_grammar): Don't translate trace messages.
12992
129932001-11-28 Akim Demaille <akim@epita.fr>
12994
12995 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
12996 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
12997 as all tags are free'ed afterwards.
12998 From Enrico Scholz.
12999
130002001-11-27 Paul Eggert <eggert@twinsun.com>
13001
13002 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
13003 use alloca when we didn't want to, and vice versa.
13004
130052001-11-27 Marc Autret <autret_m@epita.fr>
13006
13007 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
13008 initialization.
13009 * src/output.c (prepare): Remove its update.
13010
130112001-11-27 Marc Autret <autret_m@epita.fr>
13012
13013 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
13014 Use %error-verbose.
13015
130162001-11-27 Marc Autret <autret_m@epita.fr>
13017
13018 * src/bison.simple: Remove YYERROR_VERBOSE using.
13019 Use %%error_verbose.
13020 (yyparse): Likewise.
13021 * src/output.c (prepare): Give its final value.
13022 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
13023 * src/getargs.h: Add its extern declaration.
13024 * src/getargs.c (error_verbose_flag): New int.
13025 (getargs): Update to catch new case.
13026 * src/options.c (option_table): 'error-verbose' is a new option.
13027 (shortopts): Update.
13028
130292001-11-27 Akim Demaille <akim@epita.fr>
13030
13031 * src/system.h: Use intl/libgettext.h.
13032 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
13033
130342001-11-27 Akim Demaille <akim@epita.fr>
13035
13036 * tests/torture.at (Exploding the Stack Size with Malloc):
13037 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
13038
130392001-11-27 Akim Demaille <akim@epita.fr>
13040
13041 * src/files.c: Include error.h.
13042 Reported by Hans Aberg.
13043
130442001-11-26 Marc Autret <autret_m@epita.fr>
13045
13046 * src/reader.c (parse_include_decl): New, not yet implemented.
13047 (read_declarations): Add case tok_include.
13048 * src/getargs.h (include): Add its extern definition.
13049 * src/getargs.c (include): New const char *.
13050 (getargs): Add case '-I'.
13051 * src/options.c (option_table): Add include as command line and
13052 percent option.
13053 * src/lex.h (token_t): Add tok_include.
13054
130552001-11-26 Akim Demaille <akim@epita.fr>
13056
13057 * src/reader.c (readgram): Make sure rules for mid-rule actions
13058 have a lineno equal to that of their host rule.
13059 Reported by Hans Aberg.
13060 * tests/regression.at (Rule Line Numbers): New.
13061
130622001-11-26 Akim Demaille <akim@epita.fr>
13063
13064 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
13065 size_ts.
13066
130672001-11-26 Akim Demaille <akim@epita.fr>
13068
13069 * src/complain.c, src/complain.h (error): Remove, provided by
13070 lib/error.[ch].
13071
130722001-11-26 Akim Demaille <akim@epita.fr>
13073
13074 * src/reader.c (read_declarations): Don't abort on tok_illegal,
13075 issue an error message.
13076 * tests/regression.at (Invalid %directive): New.
13077 Reported by Hans Aberg.
13078
130792001-11-26 Akim Demaille <akim@epita.fr>
13080
13081 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
13082 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
13083
130842001-11-26 Akim Demaille <akim@epita.fr>
13085
13086 * src/conflicts.c (conflicts_print): Don't complain at all when
13087 there are no reduce/reduce conflicts, and as many shift/reduce
13088 conflicts as expected.
13089 * tests/regression.at (%expect right): Adjust.
13090
130912001-11-23 Akim Demaille <akim@epita.fr>
13092
13093 * lib/alloca.c: Update, from fileutils.
13094
130952001-11-23 Akim Demaille <akim@epita.fr>
13096
13097 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
13098
130992001-11-23 Akim Demaille <akim@epita.fr>
13100
13101 * src/system.h: Include alloca.h.
13102 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
13103
131042001-11-23 Akim Demaille <akim@epita.fr>
13105
13106 * src/print_graph.c (print_actions): Remove `rule', unused.
13107 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
13108 pacify GCC's signed < unsigned warnings.
13109 * src/closure.c (itemsetsize): Likewise.
13110 * src/reader.c (symbol_list_new): Static.
13111
131122001-11-23 Akim Demaille <akim@epita.fr>
13113
13114 Attaching lineno to buckets is stupid, since only one copy of each
13115 symbol is kept, only the line of the first occurrence is kept too.
13116
13117 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
13118 * src/reader.c (rline_allocated): Remove, unused.
13119 (symbol_list): Have a `line' member.
13120 (symbol_list_new): New.
13121 (readgram): Use it.
13122 * src/print.c (print_grammar): Output the rule line numbers.
13123 * tests/regression.at (Solved SR Conflicts)
13124 (Unresolved SR Conflicts): Adjust.
13125 Reported by Hans Aberg.
13126
131272001-11-22 Marc Autret <autret_m@epita.fr>
13128
13129 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
13130
131312001-11-22 Marc Autret <autret_m@epita.fr>
13132
13133 * src/muscle_tab.c (muscle_init): Remove initialization of
13134 skeleton muscle.
13135 * src/output.c (output_master_parser): Do it here.
13136
131372001-11-20 Akim Demaille <akim@epita.fr>
13138
13139 * po/sv.po: New.
13140 * configure.in (ALL_LINGUAS): Adjust.
13141 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
13142 longer contains strings to translate.
13143
131442001-11-19 Akim Demaille <akim@epita.fr>
13145
13146 * src/conflicts.c (conflicts_print): Add a missing \n.
13147
131482001-11-19 Akim Demaille <akim@epita.fr>
13149
13150 * src/nullable.c (nullable_print): New.
13151 (set_nullable): Call it when tracing.
13152 Better locality of variables.
13153
131542001-11-19 Akim Demaille <akim@epita.fr>
13155
13156 * src/print.c (print_actions): Better locality of variables.
13157
131582001-11-19 Akim Demaille <akim@epita.fr>
13159
13160 * src/derives.c (print_derives): Fix and enrich.
13161 * src/closure.c (print_fderives): Likewise.
13162
131632001-11-19 Akim Demaille <akim@epita.fr>
13164
13165 * src/closure.c (itemsetend): Remove, replaced with...
13166 (itemsetsize): new.
13167
131682001-11-19 Akim Demaille <akim@epita.fr>
13169
13170 * src/LR0.c (kernel_end): Remove, replaced with...
13171 (kernel_size): new.
13172
131732001-11-19 Akim Demaille <akim@epita.fr>
13174
13175 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
13176 to clarify.
13177
131782001-11-19 Akim Demaille <akim@epita.fr>
13179
13180 * src/closure.c (closure): Use arrays instead of pointers to clarify.
13181
131822001-11-19 Akim Demaille <akim@epita.fr>
13183
13184 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
13185 trace messages.
13186 * src/LR0.c: Likewise.
13187 (allocate_itemsets): Use arrays instead of pointers to clarify.
13188
131892001-11-19 Akim Demaille <akim@epita.fr>
13190
13191 * src/getargs.c (statistics_flag): Replace with...
13192 (trace_flag): New.
13193 (longopts): Accept --trace instead of --statistics.
13194 * src/getargs.h, src/options.c: Adjust.
13195 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
13196 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
13197
131982001-11-19 Akim Demaille <akim@epita.fr>
13199
13200 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
13201 pointers to clarify the code.
13202 (save_reductions, save_shifts): Factor common parts of alternatives.
13203
132042001-11-19 Akim Demaille <akim@epita.fr>
13205
13206 * src/LR0.c (new_state, get_state): Complete TRACE code.
13207 * src/closure.c: Include `reader.h' to get `tags', needed by the
13208 trace code.
13209 Rename the conditional DEBUG as TRACE.
13210 Output consistently TRACEs to stderr, not stdout.
13211 * src/derives.c: Likewise.
13212 * src/reduce.c: (inaccessable_symbols): Using if is better style
13213 than goto.
13214 Use `#if TRACE' instead of `#if 0' for tracing code.
13215
132162001-11-19 Akim Demaille <akim@epita.fr>
13217
13218 * src/system.h (LIST_FREE, shortcpy): New.
13219 * src/LR0.c: Use them.
13220 * src/output.c (free_itemsets, free_reductions, free_shifts):
13221 Remove, replaced by LIST_FREE.
13222
132232001-11-19 Akim Demaille <akim@epita.fr>
13224
13225 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
13226 (REDUCTIONS_ALLOC): New.
13227 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
13228 allocation.
13229
132302001-11-19 Akim Demaille <akim@epita.fr>
13231
13232 * src/LR0.c (new_state): Complete trace code.
13233 * src/nullable.c (set_nullable): Don't translate traces.
13234
132352001-11-19 Akim Demaille <akim@epita.fr>
13236
13237 * src/print_graph.c (print_core): Better locality of variables.
13238 * src/print.c (print_core): Likewise.
13239
132402001-11-19 Akim Demaille <akim@epita.fr>
13241
13242 * src/vcg.c: You do the output, so you are responsible of the
13243 handling of VCG syntax, in particular: use quotearg.
13244 * src/print_graph.c: Don't.
13245 (print_actions): Don't output the actions as part of the nodes,
13246 since that's the job of the edges.
13247 (print_state): Don't output by hand: fill the node description,
13248 and ask for its output.
13249
132502001-11-19 Akim Demaille <akim@epita.fr>
13251
13252 * src/bison.simple (yyparse): When verbosely reporting an error,
13253 no longer put additional quotes around token names.
13254 * tests/calc.at: Adjust.
13255
132562001-11-19 Akim Demaille <akim@epita.fr>
13257
13258 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
13259 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
13260 * src/output.c: Adjust.
13261
132622001-11-19 Akim Demaille <akim@epita.fr>
13263
13264 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
13265 (rule_t): this.
13266 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
13267
132682001-11-19 Akim Demaille <akim@epita.fr>
13269
13270 * src/gram.h (rule_t): New.
13271 (rule_table): New.
13272 (rrhs, rlhs): Remove, part of state_t.
13273 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
13274 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13275 * src/reader.c, src/reduce.c: Adjust.
13276
132772001-11-19 Akim Demaille <akim@epita.fr>
13278
13279 * src/reader.c (symbols_output): New, extracted from...
13280 (packsymbols): Here.
13281 (reader): Call it.
13282
132832001-11-19 Akim Demaille <akim@epita.fr>
13284
13285 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
13286 (maxrhs): this new function.
13287
132882001-11-19 Akim Demaille <akim@epita.fr>
13289
13290 * src/lalr.c (F): New macro to access the variable F.
13291 Adjust.
13292
132932001-11-19 Akim Demaille <akim@epita.fr>
13294
13295 * src/lalr.h (LA): New macro to access the variable LA.
13296 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13297 * src/lalr.c: Adjust.
13298
132992001-11-19 Akim Demaille <akim@epita.fr>
13300
13301 * src/lalr.c (initialize_LA): Only initialize LA. Let...
13302 (set_state_table): handle the `lookaheads' members.
13303
133042001-11-19 Akim Demaille <akim@epita.fr>
13305
13306 * src/lalr.h (lookaheads): Removed array, whose contents is now
13307 a member of...
13308 (state_t): this structure.
13309 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13310 Adjust.
13311
133122001-11-19 Akim Demaille <akim@epita.fr>
13313
13314 * src/lalr.h (consistent): Removed array, whose contents is now
13315 a member of...
13316 (state_t): this structure.
13317 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13318 Adjust.
13319
133202001-11-19 Akim Demaille <akim@epita.fr>
13321
13322 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
13323 contents are now members of...
13324 (state_t): this structure.
13325 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13326 Adjust.
13327
133282001-11-19 Akim Demaille <akim@epita.fr>
13329
13330 * src/lalr.h (state_t): New.
13331 (state_table): Be a state_t * instead of a core **.
13332 (accessing_symbol): Remove, part of state_t.
13333 * src/lalr.c: Adjust.
13334 (set_accessing_symbol): Merge into...
13335 (set_state_table): this.
13336 * src/print_graph.c, src/conflicts.c: Adjust.
13337
133382001-11-14 Akim Demaille <akim@epita.fr>
13339
13340 * tests/calc.at, tests/output.at, tests/regression.at,
13341 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
13342 now the tests are run in private dirs, therefore AC_CLEANUP and
13343 family can be simplified to 0-ary.
13344 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
13345 use abs. path to find config.h.
13346 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
13347 stderr, there can be way too much random noise.
13348 Instead pass -Werror to GCC and rely on the exit status.
13349 Reported by Wolfram Wagner.
13350
133512001-11-14 Akim Demaille <akim@epita.fr>
13352
13353 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
13354 defined only if yyoverflow is defined, to avoid `warning: unused
13355 variable `yyvs1''.
13356 Reported by The Test Suite.
13357
133582001-11-14 Akim Demaille <akim@epita.fr>
13359
13360 * src/print.c: Include reduce.h.
13361 Reported by Hans Aberg.
13362
133632001-11-14 Akim Demaille <akim@epita.fr>
13364
13365 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
13366 Revert a previous patch: these are really const.
13367 * src/conflicts.c (conflict_report): Additional useless pair of
13368 braces to pacify GCC's warnings for `if () if () {} else {}'.
13369 * src/lex.c (parse_percent_token): Replace equal_offset with
13370 arg_offset.
13371 arg is const.
13372 Be sure to strdup `arg' when used, since there is no reason for
13373 token_buffer not to change.
13374
133752001-11-14 Akim Demaille <akim@epita.fr>
13376
13377 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
13378 definition.
13379 * src/main.c (main): Use them.
13380 Suggested by Hans Aberg.
13381
133822001-11-12 Akim Demaille <akim@epita.fr>
13383
13384 * src/system.h (ngettext): Now that we use ngettext, be sure to
13385 provide a default definition when NLS are not used.
13386
133872001-11-12 Akim Demaille <akim@epita.fr>
13388
13389 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
13390 Use @kbd to denote user input.
13391 (Language and Grammar): ANSIfy the example.
13392 Adjust its layout for info/notinfo.
13393 (Location Tracking Calc): Output error messages to stderr.
13394 Output locations in a more GNUtically correct way.
13395 Fix a couple of Englishos.
13396 Adjust @group/@end group pairs.
13397
133982001-11-12 Akim Demaille <akim@epita.fr>
13399
13400 %expect was not functioning at all.
13401
13402 * src/conflicts.c (expected_conflicts): Set to -1.
13403 (conflict_report): Use ngettext.
13404 (conflicts_print): Check %expect and make its violation an error.
13405 * doc/bison.texinfo (Expect Decl): Adjust.
13406 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
13407 * tests/regression.at (%expect not enough, %expect right)
13408 (%expect too much): New.
13409
134102001-11-12 Akim Demaille <akim@epita.fr>
13411
13412 * tests/regression.at (Conflicts): Rename as...
13413 (Unresolved SR Conflicts): this.
13414 (Solved SR Conflicts): New.
13415
134162001-11-12 Akim Demaille <akim@epita.fr>
13417
13418 * src/reduce.c (print_results): Rename as...
13419 (reduce_output): This.
13420 Output to OUT, passed as argument, instead of output_obstack.
13421 (dump_grammar): Likewise.
13422 (reduce_free): New.
13423 Also free V1.
13424 (reduce_grammar): No longer call reduce_output, since...
13425 * src/print.c (print_results): do it.
13426 * src/main.c (main): Call reduce_free;
13427
134282001-11-12 Akim Demaille <akim@epita.fr>
13429
13430 * src/conflicts.c (print_reductions): Accept OUT as argument.
13431 Output to it, not to output_obstack.
13432 * src/print.c (print_actions): Adjust.
13433
134342001-11-12 Akim Demaille <akim@epita.fr>
13435
13436 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
13437 the result instead of using...
13438 (src_total, rrc_total, src_count, rrc_count): Remove.
13439 (any_conflicts): Remove.
13440 (print_conflicts): Split into...
13441 (conflicts_print, conflicts_output): New.
13442 * src/conflicts.h: Adjust.
13443 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
13444 * src/print.c (print_grammar): Issue `\n' between two rules.
13445 * tests/regression.at (Conflicts): New.
13446 Reported by Tom Lane.
13447
134482001-11-12 Akim Demaille <akim@epita.fr>
13449
13450 * tests/regression.at (Invalid input): Remove, duplicate with
13451 ``Invalid input: 1''.
13452
134532001-11-12 Akim Demaille <akim@epita.fr>
13454
13455 * tests/torture.at (AT_DATA_STACK_TORTURE)
13456 (Exploding the Stack Size with Alloca)
13457 (Exploding the Stack Size with Malloc): New.
13458
134592001-11-12 Akim Demaille <akim@epita.fr>
13460
13461 * src/bison.simple (YYSTACK_REALLOC): New.
13462 (yyparse) [!yyoverflow]: Use it and free the old stack.
13463 Reported by Per Allansson.
13464
134652001-11-12 Pascal Bart <pascal.bart@epita.fr>
13466
13467 * src/bison.simple: Define type yystype instead of YYSTYPE, and
13468 define CPP macro, which substitute YYSTYPE by yystype.
13469 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
13470 with yyltype/YYLTYPE. This allows inclusion of the generated
13471 header within the parser if the compiler, such as GGC, accepts
13472 multiple equivalent #defines.
13473 From Akim.
13474
134752001-11-05 Akim Demaille <akim@epita.fr>
13476
13477 * src/reader.c (symbols_output): New, extracted from...
13478 (packsymbols): here.
13479 (reader): Adjust.
13480
134812001-11-05 Akim Demaille <akim@epita.fr>
13482
13483 * src/lex.c (parse_percent_token): s/quotearg/quote/.
13484
134852001-11-05 Akim Demaille <akim@epita.fr>
13486
13487 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
13488 pattern.
13489
134902001-11-05 Akim Demaille <akim@epita.fr>
13491
13492 * src/options.h (struct option_table_struct): set_flags is void*.
13493 * src/options.c (longopts): Support `--output' and `%output'.
13494 (usage): Adjust.
13495 * src/lex.h (tok_setopt): Remove, replaced with...
13496 (tok_intopt, tok_stropt): these new guys.
13497 * src/lex.c (getopt.h): Not needed.
13498 (token_buffer, unlexed_token_buffer): Not const.
13499 (percent_table): Promote `-' over `_' in directive names.
13500 Active `%name-prefix', `file-prefix', and `output'.
13501 (parse_percent_token): Accept possible arguments to directives.
13502 Promote `-' over `_' in directive names.
13503
135042001-11-04 Akim Demaille <akim@epita.fr>
13505
13506 * doc/bison.texinfo (Decl Summary): Split the list into
13507 `directives for grammars' and `directives for bison'.
13508 Sort'em.
13509 Add description of `%name-prefix', `file-prefix', and `output'.
13510 Promote `-' over `_' in directive names.
13511 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
13512 Simplify the description of `--name-prefix'.
13513 Promote `-' over `_' in directive names.
13514 Promote `--output' over `--output-file'.
13515 Fix the description of `--defines'.
13516 * tests/output.at: Exercise %file-prefix and %output.
13517
135182001-11-02 Akim Demaille <akim@epita.fr>
13519
13520 * doc/refcard.tex: Update.
13521
135222001-11-02 Akim Demaille <akim@epita.fr>
13523
13524 * src/symtab.h (SUNDEF): New.
13525 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
13526 stand for `uninitialized', instead of 0.
13527 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
13528 * src/lex.c (lex): Adjust.
13529
13530 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
13531 Number it 0.
13532 Let yylex return it instead of a plain 0.
13533 Reported by Dick Streefland.
13534
135352001-11-02 Akim Demaille <akim@epita.fr>
13536
13537 * tests/regression.at (Mixing %token styles): New test.
13538
135392001-11-02 Akim Demaille <akim@epita.fr>
13540
13541 * src/reader.c (parse_thong_decl): Formatting changes.
13542 (token_translations_init): New, extracted from...
13543 (packsymbols): Here.
13544 Adjust.
13545
135462001-11-01 Akim Demaille <akim@epita.fr>
13547
13548 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
13549 Check that `9foo.y' produces correct cpp guards.
13550 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
13551 guards.
13552 Reported by Wwp.
13553
135542001-11-01 Akim Demaille <akim@epita.fr>
13555
13556 * tests/regression.at (Invalid input: 2): New.
13557 * src/lex.c (unlexed_token_buffer): New.
13558 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
13559 too.
13560 Reported by Wwp.
13561
135622001-11-01 Akim Demaille <akim@epita.fr>
13563
13564 * tests/calc.at: Catch up with 1.30.
13565 * configure.in: Bump to 1.49a.
13566 Adjust to newer Autotest.
13567
135682001-10-19 Pascal Bart <pascal.bart@epita.fr>
13569
13570 * src/conflicts.c: Move global variables rrc_total and src_total ...
13571 (print_conflicts): here.
13572 * src/output.c (output): Free global variable user_toknums.
13573 * src/lex.c (token_obstack): Become static.
13574
135752001-10-18 Akim Demaille <akim@epita.fr>
13576
13577 * tests/atlocal.in (GCC): Add.
13578 * tests/calc.at: s/m4_match/m4_bmatch/.
13579 s/m4_patsubst/m4_bpatsubst/.
13580 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
13581 * configure.in: AC_SUBST(GCC).
13582
135832001-10-14 Marc Autret <autret_m@epita.fr>
13584
13585 * src/options.c (create_long_option_table): Fix.
13586
135872001-10-10 Akim Demaille <akim@epita.fr>
13588
13589 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
13590
135912001-10-04 Akim Demaille <akim@epita.fr>
13592
13593 * src/reader.c (parse_union_decl): Push the caracters in
13594 union_obstack, not attrs_obstack.
13595
135962001-10-04 Akim Demaille <akim@epita.fr>
13597
13598 Merge in the branch 1.29.
13599
13600 * src/reader.c (packsymbols): Use a temporary obstack for
13601 `%%tokendef', since output_stack is already used elsewhere.
13602
13603 2001-10-02 Akim Demaille <akim@epita.fr>
13604
13605 Bump 1.29d.
13606
13607 2001-10-02 Akim Demaille <akim@epita.fr>
13608
13609 Version 1.29c.
13610
13611 2001-10-02 Akim Demaille <akim@epita.fr>
13612
13613 * tests/regression.at (Invalid CPP headers): New.
13614 From Alexander Belopolsky.
13615 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
13616
13617 2001-10-02 Akim Demaille <akim@epita.fr>
13618
13619 * tests/regression.at (Invalid input): New.
13620 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
13621 Reported by Shura.
13622
13623 2001-10-02 Akim Demaille <akim@epita.fr>
13624
13625 * tests/calc.at: Now that --debug works, the tests must be adjusted.
13626
13627 2001-10-02 Akim Demaille <akim@epita.fr>
13628
13629 * src/output.c (output_parser): Assert `skeleton'.
13630 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
13631 systems.
13632 From Shura.
13633
13634 2001-10-01 Marc Autret <autret_m@epita.fr>
13635
13636 * src/lex.h: Echo modifications.
13637 * src/lex.c (unlex): Parameter is now token_t.
13638 From Hans Aberg.
13639
13640 2001-10-01 Marc Autret <autret_m@epita.fr>
13641
13642 * src/main.c: Include lex.h.
13643 From Hans Aberg.
13644
13645 2001-09-29 Akim Demaille <akim@epita.fr>
13646
13647 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
13648
13649 2001-09-28 Akim Demaille <akim@epita.fr>
13650
13651 * tests/testsuite.at: Update to newer Autotest.
13652 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
13653
13654 2001-09-27 Akim Demaille <akim@epita.fr>
13655
13656 Position independent wrapper.
13657
13658 * tests/bison: Remove.
13659 * tests/bison.in: New.
13660 * configure.in: Adjust.
13661
13662 2001-09-27 Paul Eggert <eggert@twinsun.com>
13663
13664 Port quotearg fixes from tar 1.13.24.
13665
13666 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
13667 tm to be declared.
13668 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
13669 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
13670
13671 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
13672 * m4/mbrtowc.m4: New file.
13673 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
13674 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
13675
13676 2001-09-27 Akim Demaille <akim@epita.fr>
13677
13678 Bump to 1.29c.
13679
13680 2001-09-27 Akim Demaille <akim@epita.fr>
13681
13682 Version 1.29b.
13683
13684 2001-09-25 Akim Demaille <akim@epita.fr>
13685
13686 * src/system.h: Include `xalloc.h'.
13687 Remove it from the C files.
13688 * src/files.c (output_files): Free the obstacks.
13689 * src/lex.c (init_lex): Rename as...
13690 (lex_init): this.
13691 (lex_free): New.
13692 * src/main.c (main): Use it.
13693
13694 2001-09-24 Marc Autret <autret_m@epita.fr>
13695
13696 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
13697 to output informations in fout (FILE*).
13698 (open_graph, close_graph): Likewise.
13699 (output_graph, output_edge, output_node): Likewise.
13700 * src/vcg.h: Update function prototypes.
13701 * src/print_graph.c (print_graph): Open output graph file.
13702 (print_actions): Adjust.
13703 * src/files.h: Remove extern declaration.
13704 * src/files.c: Remove graph_obstack declaration.
13705 (open_files): Remove graph_obstack initialization.
13706 (output_files): Remove graph_obstack saving.
13707
13708 2001-09-24 Marc Autret <autret_m@epita.fr>
13709
13710 * src/files.c (compute_output_file_names): Fix.
13711
13712 2001-09-24 Marc Autret <autret_m@epita.fr>,
13713 Akim Demaille <akim@epita.fr>
13714
13715 * src/reader.c (reader): Remove call to free_symtab ().
13716 * src/main.c (main): Call it here.
13717 Include symtab.h.
13718 * src/conflicts.c (initialize_conflicts): Rename as...
13719 (solve_conflicts): this.
13720 * src/print.c (print_core, print_actions, print_state)
13721 (print_grammar): Dump to a file instead a `output_obstack'.
13722 (print_results): Dump `output_obstack', and then proceed with the
13723 FILE *.
13724 * src/files.c (compute_output_file_names, close_files): New.
13725 (output_files): Adjust.
13726 * src/main.c (main): Adjust.
13727
13728 2001-09-23 Marc Autret <autret_m@epita.fr>
13729
13730 * src/files.c (compute_header_macro): Computes header macro name
13731 from spec_defines_file when given.
13732
13733 2001-09-23 Marc Autret <autret_m@epita.fr>
13734
13735 * src/files.c (output_files): Add default extensions.
13736
13737 2001-09-22 Akim Demaille <akim@epita.fr>
13738
13739 * src/conflicts.c (finalize_conflicts): Rename as...
13740 (free_conflicts): this.
13741
13742 2001-09-22 Akim Demaille <akim@epita.fr>
13743
13744 * src/gram.c (gram_free): Rename back as...
13745 (dummy): this.
13746 (output_token_translations): Free `token_translations'.
13747 * src/symtab.c (free_symtab): Free the tag field.
13748
13749 2001-09-22 Akim Demaille <akim@epita.fr>
13750
13751 Remove `translations' as it is always set to true.
13752
13753 * src/gram.h: Adjust.
13754 * src/reader.c (packsymbols, parse_token_decl): Adjust
13755 * src/print.c (print_grammar): Adjust.
13756 * src/output.c (output_token_translations): Adjust.
13757 * src/lex.c (lex): Adjust.
13758 * src/gram.c: Be sure the set pointers to NULL.
13759 (dummy): Rename as...
13760 (gram_free): this.
13761
13762 2001-09-22 Akim Demaille <akim@epita.fr>
13763
13764 * configure.in: Invoke AM_LIB_DMALLOC.
13765 * src/system.h: Use dmalloc.
13766 * src/LR0.c: Be sure to have pointers initialized to NULL.
13767 (allocate_itemsets): Allocate kernel_items only if needed.
13768
13769 2001-09-22 Akim Demaille <akim@epita.fr>
13770
13771 * configure.in: Bump to 1.29b.
13772 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
13773 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
13774 need xmalloc.c in calc.y.
13775 From Pascal Bart.
13776
13777 2001-09-21 Akim Demaille <akim@epita.fr>
13778
13779 Version 1.29a.
13780 * Makefile.maint, config/config.guess, config/config.sub,
13781 * config/missing: Update from masters.
13782 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
13783 upon package.m4.
13784 * configure.in (ALL_LINGUAS): Add `tr'.
13785
13786 2001-09-21 Akim Demaille <akim@epita.fr>
13787
13788 * tests/Makefile.am (package.m4): Move to...
13789 ($(srcdir)/$(TESTSUITE)): here.
13790
13791 2001-09-20 Akim Demaille <akim@epita.fr>
13792
13793 * src/complain.c: No longer try to be standalone: use system.h.
13794 Don't assume __STDC__ is defined to 1. Just test if it is defined.
13795 * src/complain.h: Likewise.
13796 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
13797 Remove the unused variable `n'.
13798 From Albert Chin-A-Young.
13799
13800 2001-09-18 Marc Autret <autret_m@epita.fr>
13801
13802 * doc/bison.1: Update.
13803 * doc/bison.texinfo (Bison Options): Update --defines and --graph
13804 descriptions.
13805 (Option Cross Key): Update.
13806 Add --graph.
13807
13808 2001-09-18 Marc Autret <autret_m@epita.fr>
13809
13810 * tests/regression.at: New test (comment in %union).
13811
13812 2001-09-18 Marc Autret <autret_m@epita.fr>
13813
13814 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
13815 do that.
13816 Reported by Keith Browne.
13817
13818 2001-09-18 Marc Autret <autret_m@epita.fr>
13819
13820 * tests/output.at: Add tests for --defines and --graph.
13821
13822 2001-09-18 Marc Autret <autret_m@epita.fr>
13823
13824 * tests/output.at: Removes tests of %{header,src}_extension features.
13825
13826 2001-09-18 Akim Demaille <akim@epita.fr>
13827
13828 * tests/Makefile.am (package.m4): New.
13829 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
13830 (_AT_CHECK_CALC_ERROR): Likewise.
13831 Factor the `, ' part of verbose error messages.
13832
13833 2001-09-18 Marc Autret <autret_m@epita.fr>
13834
13835 * src/getargs.c (longopts): Declare --defines and --graph as options
13836 with optional arguments.
13837 * src/files.h: Add extern declarations.
13838 * src/files.c (spec_graph_file, spec_defines_file): New.
13839 (output_files): Update.
13840 Remove CPP-outed code.
13841
13842 2001-09-18 Marc Autret <autret_m@epita.fr>
13843
13844 Turn off %{source,header}_extension feature.
13845
13846 * src/files.c (compute_exts_from_gf): Update.
13847 (compute_exts_from_src): Update.
13848 (output_files): CPP-out useless code.
13849 * src/files.h: Remove {header,source}_extension extern declarations.
13850 * src/reader.c (parse_dquoted_param): CPP-out.
13851 (parse_header_extension_decl): Remove.
13852 (parse_source_extension_decl): Remove.
13853 (read_declarations): Remove cases tok_{hdrext,srcext}.
13854 * src/lex.c (percent_table): Remove {header,source}_extension entries.
13855 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
13856
13857 2001-09-10 Akim Demaille <akim@epita.fr>
13858
13859 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
13860 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
13861 (AT_CHECK_OUTPUT): this.
13862 Merely check ls' exit status, its output is useless.
13863
13864 2001-09-10 Akim Demaille <akim@epita.fr>
13865
13866 * tests/calc.at: Use m4_match.
13867 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
13868
13869 2001-09-10 Marc Autret <autret_m@epita.fr>,
13870 Akim Demaille <akim@epita.fr>
13871
13872 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
13873 enum color_e.
13874 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
13875 to `normal'.
13876 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
13877 * src/lex.h: Adjust prototype.
13878 (token_t): Add `tok_undef'.
13879 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
13880 (parse_percent_token): Now returns token_t.
13881 Add default statement in switch.
13882 (lex): Separate `c' as an input variable, from the token_t result
13883 part.
13884 (unlexed): Is a token_t.
13885
13886 2001-09-10 Akim Demaille <akim@epita.fr>
13887
13888 * configure.in: Bump to 1.29a.
13889
13890 2001-09-07 Akim Demaille <akim@epita.fr>
13891
13892 Version 1.29.
13893
13894 2001-08-30 Akim Demaille <akim@epita.fr>
13895
13896 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
13897 * m4/atconfig.m4: Remove.
13898 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
13899 * tests/bison: New.
13900 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
13901 m4_if, m4_patsubst, and m4_regexp.
13902 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
13903 `input' file instead of echo.
13904
13905 2001-08-29 Akim Demaille <akim@epita.fr>
13906
13907 Bump to 1.28e.
13908
13909 2001-08-29 Akim Demaille <akim@epita.fr>
13910
13911 Version 1.28d.
13912
13913 2001-08-29 Paul Eggert <eggert@twinsun.com>
13914
13915 * src/bison.simple (yyparse): Don't take the address of an
13916 item before the start of an array, as that doesn't conform to
13917 the C Standard.
13918
13919 2001-08-29 Robert Anisko <anisko_r@epita.fr>
13920
13921 * doc/bison.texinfo (Location Tracking Calc): New node.
13922
13923 2001-08-29 Paul Eggert <eggert@twinsun.com>
13924
13925 * src/output.c (output): Do not define const, as this now
13926 causes more problems than it cures.
13927
13928 2001-08-29 Akim Demaille <akim@epita.fr>
13929
13930 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
13931 the nodes.
13932 Be sure to tag the `detailmenu'.
13933
13934 2001-08-29 Akim Demaille <akim@epita.fr>
13935
13936 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
13937 download in a tmp dir.
13938
13939 2001-08-28 Marc Autret <autret_m@epita.fr>
13940
13941 * config/depcomp: New file.
13942
13943 2001-08-28 Marc Autret <autret_m@epita.fr>
13944
13945 * doc/bison.1 (mandoc): Adjust.
13946 From Juan Manuel Guerrero.
13947
13948 2001-08-28 Marc Autret <autret_m@epita.fr>
13949
13950 * src/print_graph.c (print_state): Fix.
13951
13952 2001-08-27 Marc Autret <autret_m@epita.fr>
13953
13954 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
13955 char * members.
13956 Echo modifications to the functions prototypes.
13957 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
13958
13959 2001-08-27 Marc Autret <autret_m@epita.fr>
13960
13961 * src/vcg.c: Include `xalloc.h'.
13962 (add_colorentry): New.
13963 (add_classname): New.
13964 (add_infoname): New.
13965 * src/vcg.h: Add new prototypes.
13966
13967 2001-08-27 Akim Demaille <akim@epita.fr>
13968
13969 * Makefile.maint: Sync. again with CVS Autoconf.
13970
13971 2001-08-27 Akim Demaille <akim@epita.fr>
13972
13973 * Makefile.maint: Formatting changes.
13974 (po-update, cvs-update, update): New targets.
13975 (AMTAR): Remove.
13976
13977 2001-08-27 Akim Demaille <akim@epita.fr>
13978
13979 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
13980 * Makefile.maint: Sync. with CVS Autoconf.
13981
13982 2001-08-27 Marc Autret <autret_m@epita.fr>
13983
13984 * src/vcg.h (struct infoname_s): New.
13985 (struct colorentry_s): New.
13986 (graph_s): New fields {vertical,horizontal}_order in structure.
13987 Add `infoname' field.
13988 Add `colorentry' field;
13989 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
13990 (G_HORIZONTAL_ORDER): New.
13991 (G_INFONAME): New.
13992 (G_COLORENTRY): New.
13993 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
13994 Add output of `infoname'.
13995 Add output of `colorentry'.
13996
13997 2001-08-27 Marc Autret <autret_m@epita.fr>
13998
13999 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
14000 This one shadowed a global parameter.
14001
14002 2001-08-24 Marc Autret <autret_m@epita.fr>
14003
14004 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
14005 instead of `unsigned'.
14006 (print_state): Do not call obstack_object_size () in obstack_grow ()
14007 to avoid macro variables shadowing.
14008
14009 2001-08-23 Marc Autret <autret_m@epita.fr>
14010
14011 * src/lex.c (percent_table): Typo: s/naem/name/.
14012 Add graph option.
14013 Normalize new options declarations.
14014
14015 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
14016
14017 * tests/suite.at: Exercise %header_extension and %source_extension.
14018
14019 2001-08-16 Marc Autret <autret_m@epita.fr>
14020
14021 * src/reader.c (parse_dquoted_param): New.
14022 (parse_header_extension_decl): Use it.
14023 (parse_source_extension_decl): Likewise.
14024
14025 2001-08-16 Marc Autret <autret_m@epita.fr>
14026
14027 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
14028 (get_xxxx_str): Use assert () instead of complain ().
14029 Remove return invokations in default cases.
14030 (get_decision_str): Modify default behaviour. Remove second argument.
14031 Echo modifications on calls.
14032 (output_graph): Fix.
14033
14034 2001-08-16 Marc Autret <autret_m@epita.fr>
14035
14036 * src/getargs.c (usage): Update with ``-g, --graph''.
14037
14038 2001-08-16 Marc Autret <autret_m@epita.fr>
14039
14040 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
14041 (Option Cross Key): Likewise.
14042 * doc/bison.1: Update.
14043
140442001-09-25 Pascal Bart <pascal.bart@epita.fr>
14045
14046 * src/output.c (output_master_parser): Don't finish action_obstack.
14047 (output_parser): Don't care about the muscle action, here.
14048 (prepare): Copy the action_obstack in the action muscle.
14049 (output): Free action_obstack.
14050
140512001-09-23 Pascal Bart <pascal.bart@epita.fr>
14052
14053 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
14054 will contain `%union' declaration.
14055 (parse_union_decl): Delete #line directive output.
14056 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
14057 informations about %union.
14058 (parse_union_decl): Copy the union_obstack in the muscle stype.
14059 * src/bison.simple: Add new #line directive.
14060 Add typdef %%stype YYSTYPE.
14061
140622001-09-23 Pascal Bart <pascal.bart@epita.fr>
14063
14064 * src/bison.simple: Add new `#line' directive.
14065
140662001-09-22 Pascal Bart <pascal.bart@epita.fr>
14067
14068 * src/bison.simple: New `#line' directive.
14069 * src/output.c (output_parser): Support new dynamic muscle input_line.
14070
140712001-09-22 Marc Autret <autret_m@epita.fr>
14072
14073 * src/output.c (output_master_parser): New.
14074 (output_parser): Be more re-entrant.
14075
140762001-09-21 Marc Autret <autret_m@epita.fr>
14077
14078 * src/reader.c (copy_definition, parse_union_decl): Update and use
14079 `linef' muscle.
14080 (copy_action): Likewise.
14081 Use obstack_1grow ().
14082 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
14083
140842001-09-21 Marc Autret <autret_m@epita.fr>
14085
14086 * src/options.c (option_table): Adjust.
14087 * src/lex.c (parse_percent_token): Fix.
14088
140892001-09-20 Pascal Bart <pascal.bart@epita.fr>
14090
14091 * src/options.c (symtab.h): Include it, need by lex.h.
14092
140932001-09-20 Pascal Bart <pascal.bart@epita.fr>
14094
14095 * src/lex.c (parse_percent_token): Change type of variable `tx', which
14096 is now an option_table_struct*.
14097 (option_strcmp): New function option_strcmp.
14098 (parse_percent_token): Call option_strcmp.
14099 * src/getargs.c (xalloc.h, options.h): Include it.
14100 (getargs): Call create_long_option_table.
14101 (getargs): Free longopts at the end of the function.
14102 (shortopts): Move in options.c.
14103 * src/options.c (create_long_option_table): New function. Convert
14104 information from option_table to option structure.
14105 * src/reader.c (options.h): Include it.
14106
14107 * src/Makefile.am: Adjust.
14108 * src/options.c (option_table): Create from longopts and percent_table.
14109 * src/getargs.c (longopts): Delete.
14110 * src/lex.c (struct percent_table_struct): Delete.
14111 (percent_table): Delete.
14112 (options.h): Include it.
14113 * src/options.c: Create.
14114 * src/options.h: Create.
14115 Declare enum opt_access_e.
14116 Define struct option_table_struct.
14117
141182001-09-20 Marc Autret <autret_m@epita.fr>
14119
14120 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
14121 sections of Bison.
14122
141232001-09-19 Pascal Bart <pascal.bart@epita.fr>
14124
14125 * src/bison.simple: s/%%filename/%%skeleton.
14126 * src/muscle_tab.c (getargs.h): Include it.
14127 (muscle_init): Insert new muscle skeleton.
14128
141292001-09-18 Pascal Bart <pascal.bart@epita.fr>
14130
14131 * src/output.c (output_parser): Delete unused variable actions_dumped.
14132
141332001-09-07 Pascal Bart <pascal.bart@epita.fr>
14134
14135 * src/output.c (output): Delete call to reader_output_yylsp.
14136 * src/reader.c (reader): Likewise.
14137 * src/reader.h: Delete declaration of reader_output_yylsp.
14138
141392001-09-02 Marc Autret <autret_m@epita.fr>
14140
14141 * src/reader.c: Include muscle_tab.h.
14142 (parse_union_decl): Update.
14143 (parse_macro_decl): Rename parse_muscle_decl.
14144 Update to use renamed functions and variable.
14145 (read_declarations, copy_action, read_additionnal_code, : Updated
14146 with correct variables and functions names.
14147 (packsymbols, reader): Likewise.
14148
14149 * src/reader.h (muscle_obstack): Extern declaration update.
14150
14151 * src/output.c: Include muscle_tab.h
14152 In all functions using macro_insert, change by using muscle_insert ().
14153 (macro_obstack): Rename muscle_obstack.
14154 Echo modifications in the whole file.
14155 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
14156 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
14157 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
14158
14159 * src/muscle_tab.h: Update double inclusion macros.
14160 (macro_entry_s): Rename muscle_entry_s.
14161 Update prototypes.
14162
14163 * src/muscle_tab.c: Include muscle_tab.h.
14164 Rename macro_tabble to muscle_table.
14165 (mhash1, mhash2, mcmp): Use muscle_entry.
14166 (macro_init): Rename muscle_init. Update.
14167 (macro_insert): Rename muscle_insert. Update.
14168 (macro_find): Rename muscle_find. Update.
14169
14170 * src/main.c: Include muscle_tab.h.
14171 (main): Call muscle_init ().
14172 * src/Makefile.am (bison_SOURCES): Echo modifications.
14173
141742001-09-02 Marc Autret <autret_m@epita.fr>
14175
14176 Now the files macro_tab.[ch] are named muscle_tab.[ch].
14177
14178 * src/muscle_tab.c, src/muscle_tab.h: Add files.
14179
141802001-09-02 Marc Autret <autret_m@epita.fr>
14181
14182 * src/macrotab.c, src/macrotab.h: Remove.
14183
141842001-09-01 Pascal Bart <pascal.bart@epita.fr>
14185
14186 * src/reader.c (copy_guard): Use muscle to specify the `#line'
14187 filename.
14188
141892001-09-01 Marc Autret <autret_m@epita.fr>
14190
14191 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
14192 to an explicit value to activate the feature. We do it here.
14193
141942001-08-31 Pascal Bart <pascal.bart@epita.fr>
14195
14196 * src/output.c (prepare): Delete the `filename' muscule insertion.
14197 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
14198 (parse_union_decl): Likewise.
14199 * src/macrotab.c (macro_init): Initialize filename by infile.
14200
142012001-08-31 Marc Autret <autret_m@epita.fr>
14202
14203 * src/bison.simple (YYLSP_NEEDED): New definition.
14204 * src/output.c (prepare): Add macro insertion of `locations_flag'
14205
142062001-08-31 Pascal Bart <pascal.bart@epita.fr>
14207
14208 * src/output.c (prepare): Delete insertion of previous muscles,
14209 and insert the `prefix' muscles.
14210 * src/macrotab.c (macro_init): Likewise.
14211 (macro_init): Initialization prefix directive by `yy'.
14212 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
14213 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
14214 yylval, yydebug, yyerror, yynerrs and yyparse.
14215 New directive `#define' to substitute yydebug, ... with option
14216 name_prefix.
14217
142182001-08-31 Pascal Bart <pascal.bart@epita.fr>
14219
14220 * src/main.c (main): Standardize.
14221 * src/output.c (output_table_data, output_parser): Likewise.
14222 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
14223
142242001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
14225
14226 * src/reader.c (read_additionnal_code): Rename %%user_code to
14227 %%epilogue.
14228 * src/output.c (output): Rename %%declarations to %%prologue.
14229 * src/bison.simple: Echo modifications.
14230
142312001-08-31 Marc Autret <autret_m@epita.fr>
14232
14233 * src/reader.c (readgram): CleanUp.
14234 (output_token_defines): Likewise.
14235 (packsymbols): Likewise.
14236 (reader): Likewise.
14237 * src/output.c (output): CPP-out useless code.
14238
142392001-08-31 Pascal Bart <pascal.bart@epita.fr>
14240
14241 * src/reader.c (reader): Delete obsolete call to function
14242 output_trailers and output_headers.
14243 * src/output.h: Remove obsolete functions prototypes of output_headers
14244 and output_trailers.
14245
142462001-08-30 Pascal Bart <pascal.bart@epita.fr>
14247
14248 * src/main.c: Include macrotab.h.
14249 * src/macrotab.h (macro_entry_s): Constify fields.
14250 Adjust functions prototypes.
14251 * src/macrotab.c (macro_insert): Constify key and value.
14252 (macro_find): Constify key.
14253 (macro_insert): Include 'xalloc.h'
14254 (macro_insert): Use XMALLOC.
14255 (macro_find): Constify return value.
14256 * src/output.c (output_table_data): Rename table to table_data.
14257 (output_parser): Constify macro_key, macro_value.
14258
142592001-08-30 Marc Autret <autret_m@epita.fr>
14260
14261 * src/reader.c (parse_skel_decl): New.
14262 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
14263 * src/lex.h (token_t): New token `tok_skel'.
14264 * src/lex.c (percent_table): Add skeleton option entry.
14265 Standardize.
14266
142672001-08-29 Marc Autret <autret_m@epita.fr>
14268
14269 * src/bison.simple: Add %%user_code directive at the end.
14270 * src/reader.c (read_additionnal_code): New.
14271 (reader): Use it.
14272 * src/output.c (output_program): Remove.
14273 (output): Update.
14274
142752001-08-28 Marc Autret <autret_m@epita.fr>
14276
14277 * src/output.c (output_actions): Clean up.
14278 (output_gram): CPP-out useless code.
14279 * src/reader.c (reader): Clean up, CPP-out useless code.
14280
142812001-08-28 Pascal Bart <pascal.bart@epita.fr>
14282
14283 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
14284 directive.
14285 * src/bison.simple: Add `%%definitions'.
14286
142872001-08-28 Marc Autret <autret_m@epita.fr>
14288
14289 * config/depcomp: New file.
14290
142912001-08-27 Paul Eggert <eggert@twinsun.com>
14292
14293 * src/bison.simple (yyparse): Don't take the address of an
14294 item before the start of an array, as that doesn't conform to
14295 the C Standard.
14296
142972001-08-27 Robert Anisko <robert.anisko@epita.fr>
14298
14299 * src/output.c (output): Remove the initialization of the macro
14300 obstack. It was done too late here.
14301
14302 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
14303 completely wrong.
14304 (reader): Initialize the macro obstack here, since we need it to grow
14305 '%define' directives.
14306
14307 * src/reader.h: Declare the macro obstack as extern.
14308
143092001-08-27 Robert Anisko <robert.anisko@epita.fr>
14310
14311 * src/output.c (output_parser): Fix. Store single '%' characters in
14312 the output obstack instead of throwing them away.
14313
143142001-08-27 Akim Demaille <akim@epita.fr>
14315
14316 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
14317
143182001-08-25 Robert Anisko <robert.anisko@epita.fr>
14319
14320 * lib/Makefile.am: Adjust.
14321
143222001-08-25 Robert Anisko <robert.anisko@epita.fr>
14323
14324 * src/bison.simple: Update and add '%%' directives.
14325
143262001-08-25 Robert Anisko <robert.anisko@epita.fr>
14327
14328 * src/reader.c (reader): Remove calls to 'output_headers' and
14329 'output_trailers'. Remove some C output.
14330 (readgram): Disable a piece of code that was writing a default
14331 definition for 'YYSTYPE'.
14332 (reader_output_yylsp): Remove.
14333 (packsymbols): Output token defintions to a macro.
14334 (copy_definition): Disable C output.
14335
14336 * src/reader.c (parse_macro_decl): New function used to parse macro
14337 declarations.
14338 (copy_string2): Put the body of copy_string into this new function.
14339 Add a parameter to let the caller choose whether he wants to copy the
14340 string delimiters or not.
14341 (copy_string): Be a simple call to copy_string2 with the last argument
14342 bound to true.
14343 (read_declarations): Add case for macro definition.
14344 (copy_identifier): New.
14345 (parse_macro_decl): Read macro identifiers using copy_identifier
14346 rather than lex.
14347
143482001-08-25 Robert Anisko <robert.anisko@epita.fr>
14349
14350 * src/output.c (prepare): Add prefixed names.
14351 (output_parser): Output semantic actions.
14352 (output_parser): Fix bug on '%%line' directives.
14353
14354 * src/output.c (output_headers): Remove. The C code printed by this
14355 function should now be in the skeletons.
14356 (output_trailers): Remove.
14357 (output): Disable call to 'reader_output_yylsp'.
14358 (output_rule_data): Do not output tables to the table obstack.
14359
14360 * src/output.c: Remove some C dedicated output.
14361 Improve the use of macro and output obstacks.
14362 (output_defines): Remove.
14363
14364 * src/output.c (output_token_translations): Associate 'translate'
14365 table with a macro. No output to the table obstack.
14366 (output_gram): Same for 'rhs' and 'prhs'.
14367 (output_stos): Same for 'stos'.
14368 (output_rule_data): Same for 'r1' and 'r2'.
14369 (token_actions): Same for 'defact'.
14370 (goto_actions): Same for 'defgoto'.
14371 (output_base): Same for 'pact' and 'pgoto'.
14372 (output_table): Same for 'table'.
14373 (output_check): Same for 'check'.
14374
14375 * src/output.c (output_table_data): New function.
14376 (output_short_table): Remove.
14377 (output_short_or_char_table): Remove.
14378
14379 * src/output.c (output_parser): Replace most of the skeleton copy code
14380 with something new. Skeletons are now processed character by character
14381 rather than line by line, and Bison looks for '%%' macros. This is the
14382 first step in making Bison's output process (a lot) more flexible.
14383 (output_parser): Use the macro table.
14384
143852001-08-25 Robert Anisko <robert.anisko@epita.fr>
14386
14387 * src/main.c (main): Initialize the macro table.
14388
143892001-08-25 Robert Anisko <robert.anisko@epita.fr>
14390
14391 * src/lex.c (percent_table): Add tok_define.
14392 * src/lex.h: Add tok_define.
14393
143942001-08-25 Robert Anisko <robert.anisko@epita.fr>
14395
14396 * src/macrotab.c: New file.
14397 * src/macrotab.h: New file.
14398 * src/Makefile.am: Update.
14399
144002001-08-25 Robert Anisko <robert.anisko@epita.fr>
14401
14402 * lib/hash.c: New file.
14403 * lib/hash.h: New file.
14404 * lib/Makefile.am: Update.
14405
144062001-08-15 Akim Demaille <akim@epita.fr>
14407
14408 Version 1.28c.
14409
144102001-08-15 Marc Autret <autret_m@epita.fr>
14411
14412 * src/reader.c (readgram): Indent output macro YYSTYPE.
14413 (packsymbols): Likewise.
14414 (output_token_defines): Likewise.
14415 * src/files.c: Standardize.
14416 (compute_header_macro): New.
14417 (defines_obstack_save): New. Use compute_header_macro.
14418 (output_files): Update. Use defines_obstack_save.
14419
144202001-08-15 Akim Demaille <akim@epita.fr>
14421
14422 * doc/bison.texinfo (Table of Symbols): Document
14423 YYSTACK_USE_ALLOCA.
14424
144252001-08-15 Akim Demaille <akim@epita.fr>
14426
14427 * missing: Update from CVS Automake.
14428 * config/config.guess, config/config.sub, config/texinfo.tex:
14429 Update from gnu.org.
14430
144312001-08-15 Akim Demaille <akim@epita.fr>
14432
14433 * Makefile.maint: Sync with CVS Autoconf.
14434
144352001-08-14 Pascal Bart <pascal.bart@epita.fr>
14436
14437 * doc/bison.texinfo: Include GNU Free Documentation License from
14438 `fdl.texi'.
14439 * doc/fdl.texi: Add to package.
14440
144412001-08-14 Marc Autret <autret_m@epita.fr>
14442
14443 Turn on %{source,header}_extension features.
14444
14445 * src/lex.c (percent_table): Un-CPP out header_extension and
14446 source_extension.
14447 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
14448 (compute_exts_from_src): Remove conditions. It restores priorities
14449 between options.
14450
144512001-08-14 Marc Autret <autret_m@epita.fr>
14452
14453 * src/files.c (compute_base_names): Add extensions computing when
14454 `--file-prefix' used.
14455 Standardize function calls.
14456
144572001-08-13 Marc Autret <autret_m@epita.fr>
14458
14459 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
14460 defining it (defined but null disables alloca).
14461
144622001-08-13 Marc Autret <autret_m@epita.fr>
14463
14464 * src/bison.simple (_yy_memcpy): CPP reformat.
14465
144662001-08-13 Pascal Bart <pascal.bart@epita.fr>
14467
14468 * tests/atconfig.in (CPPFLAGS): Fix.
14469
144702001-08-10 Pascal Bart <pascal.bart@epita.fr>
14471
14472 * doc/bison.texinfo: Include GNU General Public License from
14473 `gpl.texi'.
14474 * doc/gpl.texi: Add to package.
14475
144762001-08-10 Marc Autret <autret_m@epita.fr>
14477
14478 * src/print_graph.h: Fix.
14479 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
14480
144812001-08-10 Akim Demaille <akim@epita.fr>
14482
14483 * src/system.h: Provide default declarations for stpcpy, strndup,
14484 and strnlen.
14485
144862001-08-10 Robert Anisko <anisko_r@epita.fr>
14487
14488 * doc/bison.texinfo (Locations): Update @$ stuff.
14489
144902001-08-09 Robert Anisko <anisko_r@epita.fr>
14491
14492 * src/bison.simple (YYLLOC_DEFAULT): Update.
14493 (yyparse): Adjust.
14494
144952001-08-08 Marc Autret <autret_m@epita.fr>
14496
14497 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
14498 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
14499 Reported by Fabrice Bauzac.
14500
145012001-08-08 Marc Autret <autret_m@epita.fr>
14502
14503 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
14504 * src/vcg.c (output_node): Fix.
14505 * src/vcg.h: Cleanup.
14506 * src/print_graph.c: Add comments.
14507 (node_output_size): New global variable. Simplify the formatting of
14508 the VCG graph output.
14509 (print_actions): Unused code is now used. It notifies the final state
14510 and no action states in the VCG graph. It also give the reduce actions.
14511 The `shift and goto' edges are red and the `go to state' edges are
14512 blue.
14513 Get the current node name and node_obstack by argument.
14514 (node_obstack): New variable.
14515 (print_state): Manage node_obstack.
14516 (print_core): Use node_obstack given by argument.
14517 A node is not only computed here but in print_actions also.
14518 (print_graph): CPP out useless code instead of commenting it.
14519
145202001-08-07 Pascal Bart <pascal.bart@epita.fr>
14521
14522 * tests/atconfig.in (CPPFLAGS): Fix.
14523
145242001-08-07 Akim Demaille <akim@epita.fr>
14525
14526 * src/print_graph.c (quote): New.
14527 (print_core): Use it.
14528
145292001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
14530
14531 * src/vcg.c (complain.h): Include it.
14532 Unepitaize `return' invocations.
14533 [NDEBUG] (main): Remove.
14534 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
14535 * src/files.c (open_files): Initialize graph_obstack.
14536 * src/print_graph.c (print_actions): CPP out useless code.
14537 (print_core): Don't output the last `\n' in labels.
14538 Use `quote'.
14539 * src/files.c (output_files): Output the VCG file.
14540 * src/main.c (main): Invoke print_graph ();
14541
145422001-08-06 Marc Autret <autret_m@epita.fr>
14543
14544 Automaton VCG graph output.
14545 Using option ``-g'' or long option ``--graph'', you can generate
14546 a gram_filename.vcg file containing a VCG description of the LALR (1)
14547 automaton of your grammar.
14548
14549 * src/main.c: Call to print_graph() function.
14550 * src/getargs.h: Update.
14551 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
14552 (graph_flag): New flag.
14553 (longopts): Update.
14554 (getargs): Add case `g'.
14555 * src/files.c (graph_obstack): New obstack struct.
14556 (open_files): Initialize new obstack.
14557 (output_files): Saves graph_obstack if required.
14558 * src/files.h (graph_obstack): New extern declaration.
14559 * src/Makefile.am: Add new source files.
14560
145612001-08-06 Marc Autret <autret_m@epita.fr>
14562
14563 * src/print_graph.c, src/print_graph.h (graph): New.
14564 * src/vcg.h: New file.
14565 * src/vcg.c: New file, VCG graph handling.
14566
145672001-08-06 Marc Autret <autret_m@epita.fr>
14568
14569 Add of %source_extension and %header_extension which specify
14570 the source or/and the header output file extension.
14571
14572 * src/files.c (compute_base_names): Remove initialisation of
14573 src_extension and header_extension.
14574 (compute_exts_from_gf): Update.
14575 (compute_exts_from_src): Update.
14576 (output_files): Update.
14577 * src/reader.c (parse_header_extension_decl): New.
14578 (parse_source_extension_decl): New.
14579 (read_declarations): New case statements for the new tokens.
14580 * src/lex.c (percent_table): Add entries for %source_extension
14581 and %header_extension.
14582 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
14583
145842001-08-06 Marc Autret <autret_m@epita.fr>
14585
14586 * configure.in: Bump to 1.28c.
14587 * doc/bison.texinfo: Texinfo thingies.
14588
145892001-08-04 Pascal Bart <pascal.bart@epita.fr>
14590
14591 * tests/atconfig.in (CPPFLAGS): Add.
14592 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
14593
145942001-08-03 Akim Demaille <akim@epita.fr>
14595
14596 Version 1.28b.
14597
145982001-08-03 Akim Demaille <akim@epita.fr>
14599
14600 * tests/Makefile.am (check-local): Ship testsuite.
14601 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
14602 Include `string.h'.
14603
146042001-08-03 Akim Demaille <akim@epita.fr>
14605
14606 * configure.in: Try using -Wformat when compiling.
14607
146082001-08-03 Akim Demaille <akim@epita.fr>
14609
14610 * configure.in: Bump to 1.28b.
14611
146122001-08-03 Akim Demaille <akim@epita.fr>
14613
14614 * src/complain.c: Adjust strerror_r portability issues.
14615
146162001-08-03 Akim Demaille <akim@epita.fr>
14617
14618 Version 1.28a.
14619
146202001-08-03 Akim Demaille <akim@epita.fr>
14621
14622 * src/getargs.c, src/getarg.h (skeleton)): Constify.
14623 * src/lex.c (literalchar): Avoid name clashes on `buf'.
14624 * src/getargs.c: Include complain.h.
14625 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
14626 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
14627
146282001-08-03 Akim Demaille <akim@epita.fr>
14629
14630 * src/reader.c (readgram): Display hidden chars in error messages.
14631
146322001-08-03 Akim Demaille <akim@epita.fr>
14633
14634 Update to gettext 0.10.39.
14635
146362001-08-03 Akim Demaille <akim@epita.fr>
14637
14638 * lib/strspn.c: New.
14639
146402001-08-01 Marc Autret <autret_m@epita.fr>
14641
14642 * doc/bison.texinfo: Update.
14643 * doc/bison.1 (mandoc): Update.
14644 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
14645 * src/files.c: Support output files extensions computing.
14646 (src_extension): New static variable.
14647 (header_extension): New static variable.
14648 (tr): New function.
14649 (get_extension_index): New function, gets the index of an extension
14650 filename in a string.
14651 (compute_exts_from_gf): New function, computes extensions from the
14652 grammar file extension.
14653 (compute_exts_from_src): New functions, computes extensions from the
14654 C source file extension, file given by ``-o'' option.
14655 (compute_base_names): Update.
14656 (output_files): Update.
14657
146582001-08-01 Robert Anisko <anisko_r@epita.fr>
14659
14660 * doc/bison.texi: Document @$.
14661 (Locations): New section.
14662
146632001-07-18 Akim Demaille <akim@epita.fr>
14664
14665 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
14666 * config/prev-version.txt, config/move-if-change: New.
14667 * Makefile.am: Adjust.
14668
146692001-07-08 Pascal Bart <pascal.bart@epita.fr>
14670
14671 * src/bison.simple (yyparse): Suppress warning `comparaison
14672 between signed and unsigned'.
14673
146742001-07-05 Pascal Bart <pascal.bart@epita.fr>
14675
14676 * src/getargs.h (raw_flag): Remove.
14677 * src/getargs.c: Die on `-r'/`--raw'.
14678 * src/lex.c (parse_percent_token): Die on `%raw'.
14679 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
14680 * tests/calc.at: Suppress test with option `--raw'.
14681
146822001-07-14 Akim Demaille <akim@epita.fr>
14683
14684 * config/: New.
14685 * configure.in: Require Autoconf 2.50.
14686 Update to gettext 0.10.38.
14687
146882001-03-16 Akim Demaille <akim@epita.fr>
14689
14690 * doc/bison.texinfo: ANSIfy the examples.
14691
146922001-03-16 Akim Demaille <akim@epita.fr>
14693
14694 * getargs.c (skeleton): New variable.
14695 (longopts): --skeleton is a new option.
14696 (shortopts, getargs): -S is a new option.
14697 * getargs.h: Declare skeleton.
14698 * output.c (output_parser): Use it.
14699
147002001-03-16 Akim Demaille <akim@epita.fr>
14701
14702 * m4/strerror_r.m4: New.
14703 * m4/error.m4: Run AC_FUNC_STRERROR_R.
14704 * lib/error.h, lib/error.c: Update.
14705
147062001-03-16 Akim Demaille <akim@epita.fr>
14707
14708 * src/getargs.c (longopts): Clean up.
14709
147102001-02-21 Akim Demaille <akim@epita.fr>
14711
14712 * src/reader.c (gensym): `gensym_count' is your own.
14713 Use a static buf to create the symbol name, as token_buffer is no
14714 longer a buffer.
14715
147162001-02-08 Akim Demaille <akim@epita.fr>
14717
14718 * src/conflicts.c (conflict_report): Be sure not to append to res
14719 between two calls, which could happen if both first sprintf were
14720 skipped, but not the first cp += strlen.
14721
147222001-02-08 Akim Demaille <akim@epita.fr>
14723
14724 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
14725 New, from fileutils 4.0.37.
14726 * configure.in: Require Autoconf 2.49c. I took some time before
14727 making this decision. This is the only way out for portability
14728 issues in Bison, it would mean way too much duplicate effort to
14729 import in Bison features implemented in 2.49c since 2.13.
14730 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
14731
147322001-02-02 Akim Demaille <akim@epita.fr>
14733
14734 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
14735 * lib/xalloc.h, lib/xmalloc.c: Update.
14736
147372001-01-19 Akim Demaille <akim@epita.fr>
14738
14739 Get rid of the ad hoc handling of token_buffer in the scanner: use
14740 the obstacks.
14741
14742 * src/lex.c (token_obstack): New.
14743 (init_lex): Initialize it. No longer call...
14744 (grow_token_buffer): this. Remove it.
14745 Adjust all the places which used it to use the obstack.
14746
147472001-01-19 Akim Demaille <akim@epita.fr>
14748
14749 * src/lex.h: Rename all the tokens:
14750 s/\bENDFILE\b/tok_eof/g;
14751 s/\bIDENTIFIER\b/tok_identifier/g;
14752 etc.
14753 Let them be enums, not #define, to ease debugging.
14754 Adjust all the code.
14755
147562001-01-18 Akim Demaille <akim@epita.fr>
14757
14758 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
14759 * src/lex.c (maxtoken, grow_token_buffer): Static.
14760
147612001-01-18 Akim Demaille <akim@epita.fr>
14762
14763 Since we now use obstacks, more % directives can be enabled.
14764
14765 * src/lex.c (percent_table): Also accept `%yacc',
14766 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
14767 `%debug'.
14768 Handle the actions for `%semantic_parser' and `%pure_parser' here,
14769 instead of returning a token.
14770 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
14771 * src/reader.c (read_declarations): Adjust.
14772 * src/files.c (open_files): Don't call `compute_base_names', don't
14773 compute `attrsfile' since they depend upon data which might be
14774 *in* the input file now.
14775 (output_files): Do it here.
14776 * src/output.c (output_headers): Document the fact that this patch
14777 introduces a guaranteed SEGV for semantic parsers.
14778 * doc/bison.texinfo: Document them.
14779 * tests/suite.at: Exercise these %options.
14780
147812000-12-20 Akim Demaille <akim@epita.fr>
14782
14783 Also handle the output file (--verbose) with obstacks.
14784
14785 * files.c (foutput): Remove.
14786 (output_obstack): New.
14787 Adjust all dependencies.
14788 * src/conflicts.c: Return a string.
14789 * src/system.h (obstack_grow_string): Rename as...
14790 (obstack_sgrow): this. Be ready to work with non literals.
14791 (obstack_fgrow4): New.
14792
147932000-12-20 Akim Demaille <akim@epita.fr>
14794
14795 * src/files.c (open_files): Fix the computation of short_base_name
14796 in the case of `-o foo.tab.c'.
14797
147982000-12-20 Akim Demaille <akim@epita.fr>
14799
14800 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
14801 (copy_dollar): Now that everything uses obstacks, get rid of the
14802 FILE * parameters.
14803
148042000-12-20 Akim Demaille <akim@epita.fr>
14805
14806 * src/files.c (open_files): Actually the `.output' file is based
14807 on the short_base_name, not base_name.
14808 * tests/suite.at (Checking output file names): Adjust.
14809
148102000-12-20 Akim Demaille <akim@epita.fr>
14811
14812 * src/bison.s1: Remove, we now use directly...
14813 * src/bison.simple: this.
14814 * src/Makefile.am: Use pkgdata instead of data.
14815
148162000-12-20 Akim Demaille <akim@epita.fr>
14817
14818 * src/files.c (guard_obstack): New.
14819 (open_files): Initialize it.
14820 (output_files): Dump it...
14821 * src/files.h: Export it.
14822 * src/reader.c (copy_guard): Use it.
14823
148242000-12-19 Akim Demaille <akim@epita.fr>
14825
14826 * src/files.c (outfile, defsfile, actfile): Removed as global
14827 vars.
14828 (open_files): Don't compute them.
14829 (output_files): Adjust.
14830 (base_name, short_base_name): Be global.
14831 Adjust dependencies.
14832
148332000-12-19 Akim Demaille <akim@epita.fr>
14834
14835 * src/files.c (strsuffix): New.
14836 (stringappend): Be just like strcat but allocate.
14837 (base_names): Eve out from open_files.
14838 Try to simplify the rather hairy computation of base_name and
14839 short_base_name.
14840 (open_files): Use it.
14841 * tests/suite.at (Checking output file names): New test.
14842
148432000-12-19 Akim Demaille <akim@epita.fr>
14844
14845 * src/system.h (obstack_grow_literal_string): Rename as...
14846 (obstack_grow_string): this.
14847 * src/output.c (output_parser): Recognize `%% actions' instead of
14848 `$'.
14849 * src/bison.s1: s/$/%% actions/.
14850 * src/bison.hairy: Likewise.
14851
148522000-12-19 Akim Demaille <akim@epita.fr>
14853
14854 * src/output.c (output_parser): Compute the `#line' lines when
14855 there are.
14856 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
14857 Suggested by Hans Aberg.
14858
148592000-12-19 Akim Demaille <akim@epita.fr>
14860
14861 Let the handling of the skeleton files be local to the procedures
14862 that use it.
14863
14864 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
14865 longer static.
14866 (fparser, open_extra_files): Remove.
14867 (open_files, output_files): Don't take care of fparser.
14868 * src/files.h: Adjust.
14869 * src/output.c (output_parser): Open and close the file to the
14870 skeleton.
14871 * src/reader.c (read_declarations): When %semantic_parser, open
14872 fguard.
14873
148742000-12-19 Akim Demaille <akim@epita.fr>
14875
14876 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
14877 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
14878
148792000-12-19 Akim Demaille <akim@epita.fr>
14880
14881 * src/files.c (open_files): Yipee! We no longer need all the code
14882 looking for `/tmp' since we have no tmp file.
14883
148842000-12-19 Akim Demaille <akim@epita.fr>
14885
14886 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
14887 New macros.
14888 * src/files.c (open_files): Less dependency on MSDOS etc.
14889
148902000-12-14 Akim Demaille <akim@epita.fr>
14891
14892 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
14893 Provide a default definition.
14894 Use it when executing the default @ action.
14895 * src/reader.c (reader_output_yylsp): No longer include
14896 `timestamp' and `text' in the default YYLTYPE.
14897
148982000-12-12 Akim Demaille <akim@epita.fr>
14899
14900 * src/reader.c (copy_definition, parse_union_decl, copy_action)
14901 (copy_guard): Quote the file names.
14902 Reported by Laurent Mascherpa.
14903
149042000-12-12 Akim Demaille <akim@epita.fr>
14905
14906 * src/output.c (output_headers, output_program, output): Be sure
14907 to escape special characters when outputting filenames.
14908 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
14909 (output_headers): Don't depend on them, Use ACTSTR.
14910
149112000-11-17 Akim Demaille <akim@epita.fr>
14912
14913 * lib/obstack.h: Formatting changes.
14914 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
14915 prevents type checking.
14916 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
14917 cast the value to (void *): assigning a `foo *' to a `void *'
14918 variable is valid.
14919 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
14920 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
14921 append characters.
14922
149232000-11-17 Akim Demaille <akim@epita.fr>
14924
14925 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
14926 as...
14927 (suite.m4, regression.m4, calc.m4): these.
14928 * tests/atgeneral.m4: Update from CVS Autoconf.
14929
149302000-11-17 Akim Demaille <akim@epita.fr>
14931
14932 * tests/regression.m4 (%union and --defines): New test,
14933 demonstrating a current bug in the obstack implementation.
14934
149352000-11-17 Akim Demaille <akim@epita.fr>
14936
14937 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
14938 macros.
14939 Use them to declare the variables which are global or local to
14940 `yyparse'.
14941
149422000-11-17 Akim Demaille <akim@epita.fr>
14943
14944 * acconfig.h: Remove, no longer used.
14945
149462000-11-07 Akim Demaille <akim@epita.fr>
14947
14948 * src: s/Copyright (C)/Copyright/g.
14949
149502000-11-07 Akim Demaille <akim@epita.fr>
14951
14952 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
14953 defining.
14954 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
14955
149562000-11-07 Akim Demaille <akim@epita.fr>
14957
14958 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
14959 Merge in a single CPP if/else.
14960
149612000-11-07 Akim Demaille <akim@epita.fr>
14962
14963 * src/output.c (output): Remove useless variables.
14964 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
14965 argument `data' for consistency with the prototypes.
14966 Qualify it `const'.
14967 (obstack_copy, obstack_copy0): Rename the second argument as
14968 `address' for consistency. Qualify it `const'.
14969 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
14970 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
14971 `const' their input argument (`data' or `address').
14972 Adjust the corresponding macros to include `const' in casts.
14973
149742000-11-03 Akim Demaille <akim@epita.fr>
14975
14976 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
14977 s/PFILE1/BISON_HAIRY/.
14978 Adjust dependencies.
14979
149802000-11-03 Akim Demaille <akim@epita.fr>
14981
14982 For some reason, this was not applied.
14983
14984 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
14985 `unlink': it's no longer used.
14986
149872000-11-03 Akim Demaille <akim@epita.fr>
14988
14989 * src/files.c (skeleton_find): New function, eved out of...
14990 (open_files, open_extra_files): here.
14991
149922000-11-03 Akim Demaille <akim@epita.fr>
14993
14994 Don't use `atexit'.
14995
14996 * src/files.c (obstack_save): New function.
14997 (done): Rename as...
14998 (output_files): this.
14999 Use `obstack_save'.
15000 * src/main.c (main): Don't use `atexit' to register `done', since
15001 it no longer has to remove tmp files, just call `output_files'
15002 when there are no errors.
15003
150042000-11-02 Akim Demaille <akim@epita.fr>
15005
15006 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15007 `unlink': it's no longer used.
15008 * src/files.h: Formatting changes.
15009
150102000-11-02 Akim Demaille <akim@epita.fr>
15011
15012 Remove the last uses of mktemp and unlink/delete.
15013
15014 * src/files.c (fdefines, ftable): Removed.
15015 (defines_ostack, table_obstack): New.
15016 Adjust dependencies of the former into uses of the latter.
15017 * src/output.c (output_short_or_char_table, output_short_table):
15018 Convert to using obstacks.
15019 * src/reader.c (copy_comment2): Accept one FILE * and two
15020 obstacks.
15021 (output_token_defines, reader_output_yylsp): Use obstacks.
15022 * src/system.h (obstack_fgrow3): New.
15023 * po/POTFILES.in: Adjust.
15024
150252000-11-01 Akim Demaille <akim@epita.fr>
15026
15027 Change each use of `fattrs' into a use of `attrs_obstack'.
15028
15029 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
15030 * src/files.c (fattrs): Remove.
15031 (attrs_obstack): New.
15032 Adjust all dependencies.
15033 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
15034
150352000-11-01 Akim Demaille <akim@epita.fr>
15036
15037 Introduce obstacks.
15038 Change each use of `faction' into a use of `action_obstack'.
15039
15040 * lib/obstack.h, lib/obstack.c: New files.
15041 * src/files.c (faction): Remove.
15042 (action_obstack): New.
15043 Adjust all dependencies.
15044
150452000-10-20 Akim Demaille <akim@epita.fr>
15046
15047 * lib/quote.h (PARAMS): New macro. Use it.
15048
150492000-10-16 Akim Demaille <akim@epita.fr>
15050
15051 * src/output.c (output_short_or_char_table): New function.
15052 (output_short_table, output_token_translations): Use it.
15053 (goto_actions): Use output_short_table.
15054
150552000-10-16 Akim Demaille <akim@epita.fr>
15056
15057 * src/symtab.c (bucket_new): New function.
15058 (getsym): Use it.
15059
15060 * src/output.c (output_short_table): New argument to display the
15061 comment associated with the table.
15062 Adjust dependencies.
15063 (output_gram): Use it.
15064 (output_rule_data): Nicer output layout for YYTNAME.
15065
150662000-10-16 Akim Demaille <akim@epita.fr>
15067
15068 * src/lex.c (read_typename): New function.
15069 (lex): Use it.
15070 * src/reader.c (copy_dollar): Likewise.
15071
150722000-10-16 Akim Demaille <akim@epita.fr>
15073
15074 * src/reader.c (copy_comment2): Expect the input stream to be on
15075 the `/' which is suspected to open a comment, instead of being
15076 called after `//' or `/*' was read.
15077 (copy_comment, copy_definition, parse_union_decl, copy_action)
15078 (copy_guard): Adjust.
15079
150802000-10-16 Akim Demaille <akim@epita.fr>
15081
15082 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
15083 `read_signed_integer'.
15084
150852000-10-16 Akim Demaille <akim@epita.fr>
15086
15087 * src/reader.c (copy_dollar): New function.
15088 (copy_guard, copy_action): Use it.
15089
150902000-10-16 Akim Demaille <akim@epita.fr>
15091
15092 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
15093 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
15094 New files, from Fileutils 4.0.27.
15095 * src/main.c (printable_version): Remove.
15096 * src/lex.c, src/reader.c: Use `quote'.
15097
150982000-10-04 Akim Demaille <akim@epita.fr>
15099
15100 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
15101
151022000-10-04 Akim Demaille <akim@epita.fr>
15103
15104 * doc/bison.texinfo: Various typos spotted by Neil Booth.
15105
151062000-10-04 Akim Demaille <akim@epita.fr>
15107
15108 When a literal string is used to define two different tokens,
15109 `bison -v' segfaults.
15110 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
15111
15112 * tests/regression.m4: New file.
15113 Include the core of the sample provided by Piotr Gackiewicz.
15114 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
15115 properly.
15116
151172000-10-04 Akim Demaille <akim@epita.fr>
15118
15119 * src/reader.c (parse_expect_decl): Keep `count' within the size
15120 of `buffer'.
15121 From Neil Booth.
15122
151232000-10-02 Paul Eggert <eggert@twinsun.com>
15124
15125 * bison.s1 (yyparse): Assign the default value
15126 unconditionally, to avoid a GCC warning and make the parser a
15127 tad smaller.
15128
151292000-10-02 Akim Demaille <akim@epita.fr>
15130
15131 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
15132 options.
15133
151342000-10-02 Akim Demaille <akim@epita.fr>
15135
15136 * src/derives.c, src/print.c, src/reduce.c: To ease the
15137 translation, move some `\n' out of the translated strings.
15138
151392000-10-02 Akim Demaille <akim@epita.fr>
15140
15141 The location tracking mechanism is precious for parse error
15142 messages. Nevertheless, it is enabled only when `@n' is used in
15143 the grammar, which is a different issue (you can use it in error
15144 message, but not in the grammar per se). Therefore, there should
15145 be another means to enable it.
15146
15147 * src/getargs.c (getargs): Support `--locations'.
15148 (usage): Report it.
15149 * src/getargs.h (locationsflag): Export it.
15150 * src/lex.c (percent_table): Support `%locations'.
15151 * src/reader.c (yylsp_needed): Remove this variable, now replaced
15152 with `locationsflag'.
15153 * doc/bison.texinfo: Document `--locations' and `%locations'.
15154 Sort the options.
15155 * tests/calc.m4: Test it.
15156
15157 For regularity of the names, replace each
15158 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
15159 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
15160 In addition replace each `flag' with `_flag'.
15161
151622000-10-02 Akim Demaille <akim@epita.fr>
15163
15164 Also test parse error messages, including with YYERROR_VERBOSE.
15165
15166 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
15167 associative).
15168 Use it to check the computations.
15169 Use it to check `nonassoc' is honored.
15170 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
15171 `--yyerror-verbose'.
15172 (_AT_CHECK_CALC): Adjust to this option.
15173 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
15174
151752000-10-02 Akim Demaille <akim@epita.fr>
15176
15177 Test also `--verbose', `--defines' and `--name-prefix'. Testing
15178 the latter demonstrates a flaw in the handling of non debugging
15179 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
15180 was used in order to simplify:
15181
15182 #if YYDEBUG
15183 if (yydebug)
15184 {
15185 ...
15186 }
15187 #endif
15188
15189 into
15190
15191 if (yydebug)
15192 {
15193 ...
15194 }
15195
15196 unfortunately this leads to a CPP conflict when
15197 `--name-prefix=foo' is used since it produces `#define yydebug
15198 foodebug'.
15199
15200 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
15201 (YYDPRINTF): New macro.
15202 Spread its use.
15203 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
15204 the bison options.
15205 Also test `--verbose', `--defines' and `--name-prefix'.
15206
152072000-10-02 Akim Demaille <akim@epita.fr>
15208
15209 Improve the readability of the produced parsers.
15210
15211 * src/bison.s1: Formatting changes.
15212 Improve the comment related to the `$' mark.
15213 (yydefault): Don't fall through to `yyresume': `goto' there.
15214 * src/output.c (output_parser): When the `$' is met, skip the end
15215 of its line.
15216 New variable, `number_of_dollar_signs', to check there's exactly
15217 one `$' in the parser skeleton.
15218
152192000-10-02 Akim Demaille <akim@epita.fr>
15220
15221 * lib/xstrdup.c: New file, from the fileutils.
15222 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
15223 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
15224 instead of strlen + xmalloc + strcpy.
15225 * src/symtab.c (copys): Remove, use xstrdup instead.
15226
152272000-10-02 Akim Demaille <akim@epita.fr>
15228
15229 * src/gram.h (associativity): New enum type which replaces the
15230 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
15231 `right_assoc', `left_assoc' and `non_assoc'.
15232 Adjust all dependencies.
15233 * src/reader.c: Formatting changes.
15234 (LTYPESTR): Don't define it, use it as a literal in
15235 `reader_output_yylsp'.
15236 * src/symtab.h (symbol_class): New enum type which replaces the
15237 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
15238 `sunknown', `stoken and `snterm'.
15239
152402000-10-02 Akim Demaille <akim@epita.fr>
15241
15242 * src/getargs.c (fixed_outfiles): Rename as...
15243 (yaccflag): for consistency and accuracy.
15244 Adjust dependencies.
15245
152462000-10-02 Akim Demaille <akim@epita.fr>
15247
15248 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
15249 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
15250 difficult and introduced a lot of core dump. It turns out that
15251 Bison used an implementation of `xmalloc' based on `calloc', and
15252 at various places it does depend upon the initialization to 0. I
15253 have not tried to isolate the pertinent places, and all the former
15254 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
15255 someone should address this issue.
15256
15257 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
15258 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
15259 files.
15260 Adjust dependencies.
15261 * src/warshall.h: New file.
15262 Propagate.
15263
152642000-10-02 Akim Demaille <akim@epita.fr>
15265
15266 Various anti-`extern in *.c' changes.
15267
15268 * src/system.h: Include `assert.h'.
15269
152702000-10-02 Akim Demaille <akim@epita.fr>
15271
15272 * src/state.h (nstates, final_state, first_state, first_shift)
15273 (first_reduction): Move their exportation from here...
15274 * src/LR0.h: to here.
15275 Adjust dependencies.
15276 * src/getargs.c (statisticsflag): New variable.
15277 Add support for `--statistics'.
15278 Adjust dependencies.
15279
15280 Remove a lot of now useless `extern' statements in most files.
15281
152822000-10-02 Akim Demaille <akim@epita.fr>
15283
15284 * src/LR0.h: New file.
15285 Propagate its use.
15286
152872000-10-02 Akim Demaille <akim@epita.fr>
15288
15289 * src/print.h: New file.
15290 Propagate its use.
15291 * src/print.c: Formatting and ordering changes.
15292 (verbose, terse): Replace with...
15293 (print_results): this new function.
15294 Adjust dependencies.
15295
152962000-10-02 Akim Demaille <akim@epita.fr>
15297
15298 * src/conflicts.c (conflict_report): New function.
15299 (conflict_log, verbose_conflict_log): Replace with...
15300 (print_conflicts): this function.
15301 Adjust dependencies.
15302 * src/conflicts.h: New file.
15303 Propagate its inclusion.
15304
153052000-10-02 Akim Demaille <akim@epita.fr>
15306
15307 * src/nullable.h: New file.
15308 Propagate its inclusion.
15309 * src/nullable.c: Formatting changes.
15310
153112000-10-02 Akim Demaille <akim@epita.fr>
15312
15313 * src/reduce.h: New file.
15314 Propagate its inclusion.
15315 * src/reduce.c: Topological sort and other formatting changes.
15316 (bool, TRUE, FALSE): Move their definition to...
15317 * src/system.h: here.
15318
153192000-10-02 Akim Demaille <akim@epita.fr>
15320
15321 * src/files.c: Formatting changes.
15322 (tryopen, tryclose, openfiles): Rename as...
15323 (xfopen, xfclose, open_files): this.
15324 (stringappend): static.
15325 * src/files.h: Complete the list of exported symbols.
15326 Propagate its use.
15327
153282000-10-02 Akim Demaille <akim@epita.fr>
15329
15330 * src/reader.h: New file.
15331 Propagate its use instead of tedious list of `extern' and
15332 prototypes.
15333 * src/reader.c: Formatting changes, topological sort,
15334 s/register//.
15335
153362000-10-02 Akim Demaille <akim@epita.fr>
15337
15338 * src/lex.h: Prototype `lex.c' exported functions.
15339 * src/reader.c: Adjust.
15340 * src/lex.c: Formatting changes.
15341 (safegetc): Rename as...
15342 (xgetc): this.
15343
153442000-10-02 Akim Demaille <akim@epita.fr>
15345
15346 * src/lalr.h: New file.
15347 Propagate its inclusion instead of prototypes and `extern'.
15348 * src/lalr.c: Formatting changes, topological sorting etc.
15349
153502000-10-02 Akim Demaille <akim@epita.fr>
15351
15352 * src/output.c (token_actions): Introduce a temporary array,
15353 YYDEFACT, that makes it possible for this function to use
15354 output_short_table.
15355
153562000-10-02 Akim Demaille <akim@epita.fr>
15357
15358 `user_toknums' is output as a `short[]' in `output.c', while it is
15359 defined as a `int[]' in `reader.c'. For consistency with the
15360 other output tables, `user_toknums' is now defined as a table of
15361 shorts.
15362
15363 * src/reader.c (user_toknums): Be a short table instead of an int
15364 table.
15365 Adjust dependencies.
15366
15367 Factor the short table outputs.
15368
15369 * src/output.c (output_short_table): New function.
15370 * src/output.c (output_gram, output_stos, output_rule_data)
15371 (output_base, output_table, output_check): Use it.
15372
153732000-10-02 Akim Demaille <akim@epita.fr>
15374
15375 * src/output.c (output): Topological sort of the functions, in
15376 order to get rid of the `static' prototypes.
15377 No longer use `register'.
15378 * src/output.h: New file.
15379 Propagate its inclusion in files explicitly prototyping functions
15380 from output.c.
15381
153822000-09-21 Akim Demaille <akim@epita.fr>
15383
15384 * src/atgeneral.m4: Update from Autoconf.
15385
153862000-09-21 Akim Demaille <akim@epita.fr>
15387
15388 * src/closure.h: New file.
15389 * src/closure.c: Formatting changes, topological sort over the
15390 functions, use of closure.h.
15391 (initialize_closure, finalize_closure): Rename as...
15392 (new_closure, free_closure): these. Adjust dependencies.
15393 * src/LR0.c: Formatting changes, topological sort, use of
15394 cloture.h.
15395 (initialize_states): Rename as...
15396 (new_states): this.
15397 * src/Makefile.am (noinst_HEADERS): Adjust.
15398
153992000-09-20 Akim Demaille <akim@epita.fr>
15400
15401 * src/acconfig.h: Don't protect config.h against multiple
15402 inclusion.
15403 Don't define PARAMS.
15404 * src/system.h: Define PARAMS.
15405 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
15406 purpose of config.h. system.h must not try to fix wrong
15407 definitions in config.h.
15408
154092000-09-20 Akim Demaille <akim@epita.fr>
15410
15411 * src/derives.h: New file.
15412 * src/main.c, src/derives.h: Use it.
15413 Formatting changes.
15414 * src/Makefile.am (noinst_HEADERS): Adjust.
15415
154162000-09-20 Akim Demaille <akim@epita.fr>
15417
15418 * tests/atgeneral.m4: Update from Autoconf.
15419 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
15420 (AT_CHECK_CALC): New macros.
15421 Use these macros to test bison with options `', `--raw',
15422 `--debug', `--yacc', `--yacc --debug'.
15423
154242000-09-19 Akim Demaille <akim@epita.fr>
15425
15426 * src/output.c: Formatting changes.
15427 * src/machine.h: Remove, leaving its contents in...
15428 * src/system.h: here.
15429 Include stdio.h.
15430 Adjust all dependencies on stdio.h and machine.h.
15431 * src/getargs.h: New file.
15432 Let all `extern' declarations about getargs.c be replaced with
15433 inclusion of `getargs.h'.
15434 * src/Makefile.am (noinst_HEADERS): Adjust.
15435
15436 * tests/calc.m4 (yyin): Be initialized in main, not on the global
15437 scope.
15438 (yyerror): Returns void, not int.
15439 * doc/bison.texinfo: Formatting changes.
15440
154412000-09-19 Akim Demaille <akim@epita.fr>
15442
15443 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
15444 portable.
15445
154462000-09-18 Akim Demaille <akim@epita.fr>
15447
15448 * configure.in: Append WARNING_CFLAGS to CFLAGS.
15449 * src/Makefile.am (INCLUDES): Don't.
15450 Be ready to fetch headers in lib/.
15451
154522000-09-18 Akim Demaille <akim@epita.fr>
15453
15454 * doc/bison.texinfo: Update the copyright.
15455 ANSIfy and GNUify the examples.
15456 Remove the old menu.
15457
154582000-09-18 Akim Demaille <akim@epita.fr>
15459
15460 First set of tests: use the `calc' example from the documentation.
15461
15462 * src/bison.s1 (yyparse): Condition the code using `yytname' which
15463 is defined only when YYDEBUG is.
15464 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
15465 * src/files.c (tryopen, tryclose): Formatting changes.
15466 Move to the top and be static.
15467 * src/reader.c (read_signed_integer): Likewise.
15468 * tests/calc.m4: New file.
15469 * Makefile.am, suite.m4: Adjust.
15470 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
15471
154722000-09-18 Akim Demaille <akim@epita.fr>
15473
15474 Add support for an Autotest test suite for Bison.
15475
15476 * m4/m4.m4, m4/atconfig.m4: New files.
15477 * m4/Makefile.am (EXTRA_DIST): Adjust.
15478 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
15479 files.
15480 * src/getargs.c: Display a more standard --version message.
15481 * src/reader.c (reader): Formatting changes.
15482 No longer depend upon VERSION_STRING.
15483 * configure.in: No longer use `dnl'.
15484 Set up the test suite and the new directory `tests/.
15485 (VERSION_STRING): Remove.
15486
154872000-04-14 Akim Demaille <akim@epita.fr>
15488
15489 * src/reader.c (copy_comment2): New function, same as former
15490 `copy_comment', but outputs into two FILE *.
15491 (copy_comment): Use it.
15492 (parse_union_decl): Use it.
15493 (get_type, parse_start_decl): Use the same `invalid' message.
15494 (parse_start_decl, parse_union_decl): Use the same `multiple'
15495 message.
15496 (parse_union_decl, copy_guard, copy_action): Use the same
15497 `unmatched' message.
15498 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
15499
155002000-03-31 Akim Demaille <akim@epita.fr>
15501
15502 * src/files.c (tryopen, tryclose): Move to the top.
15503 Be static.
15504
155052000-03-31 Akim Demaille <akim@epita.fr>
15506
15507 * src/main.c (main): Don't call `done', exit does it.
15508
155092000-03-31 Akim Demaille <akim@epita.fr>
15510
15511 * allocate.c: s/return (foo)/return foo/.
15512 * lalr.c: Likewise.
15513 * LR0.c: Likewise.
15514 * output.c: Likewise.
15515 * reader.c: Likewise.
15516 * symtab.c: Likewise.
15517 * vmsgetargs.c: Likewise.
15518
155192000-03-31 Akim Demaille <akim@epita.fr>
15520
15521 Clean up the error reporting functions.
15522
15523 * src/report.c: New file.
15524 * src/report.h: Likewise.
15525 * src/Makefile.am: Adjust.
15526 * m4/error.m4: New file.
15527 * m4/Makefile.am: Adjust.
15528 * configure.in (jm_PREREQ_ERROR): Call it.
15529 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
15530 Remove.
15531 (fatal, fatals): Remove. All callers use complain.c::fatal.
15532 (warn, warni, warns, warnss, warnss): Remove. All callers use
15533 complain.c::complain.
15534 (toomany): Remove, use fatal instead.
15535 * src/files.c (done): No argument, use complain_message_count.
15536 * src/main.c (main): Register `done' to `atexit'.
15537
15538 * src/getargs.c (usage): More `fputs', less `fprintf'.
15539
155402000-03-28 Akim Demaille <akim@epita.fr>
15541
15542 * lib/: New directory.
15543 * Makefile.am (SUBDIRS): Adjust.
15544 * configure.in: Adjust.
15545 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
15546 useless.
15547 * src/alloca.c: Moved to lib/.
15548 * src/getopt.c: Likewise.
15549 * src/getopt1.c: Likewise.
15550 * src/getopt.h: Likewise.
15551 * src/ansi2knr.c: Likewise.
15552 * src/ansi2knr.1: Likewise.
15553 * src/Makefile.am: Adjust.
15554 * lib/Makefile.am: New file.
15555
155562000-03-28 Akim Demaille <akim@epita.fr>
15557
15558 * src/getargs.c (usage): Refresh the help message.
15559
155602000-03-17 Akim Demaille <akim@epita.fr>
15561
15562 * src/getopt1.c: Updated from textutils 2.0e
15563 * src/getopt.c: Likewise.
15564 * src/getopt.h: Likewise.
15565
155662000-03-17 Akim Demaille <akim@epita.fr>
15567
15568 * src/Makefile.am (bison.simple): Fix the awk program: quote only
15569 the file name, not the whole `#line LINE FILE'.
15570
155712000-03-17 Akim Demaille <akim@epita.fr>
15572
15573 On syntax errors, report the token on which we choked.
15574
15575 * src/bison.s1 (yyparse): In the label yyerrlab, when
15576 YYERROR_VERBOSE, add yychar in msg.
15577
155782000-03-17 Akim Demaille <akim@epita.fr>
15579
15580 * src/reader.c (copy_at): New function.
15581 (copy_guard): Use it.
15582 (copy_action): Use it.
15583
155842000-03-17 Akim Demaille <akim@epita.fr>
15585
15586 Be kind to translators, save some useless translations.
15587
15588 * src/main.c (banner): New function.
15589 (fatal_banner): Use it.
15590 (warn_banner): Use it.
15591
155922000-03-17 Akim Demaille <akim@epita.fr>
15593
15594 * src/reader.c (copy_definition): Use copy_string and
15595 copy_comment. Removed now unused `match', `ended',
15596 `cplus_comment'.
15597 (copy_comment, copy_string): Moved, to be visible from
15598 copy_definition.
15599
156002000-03-17 Akim Demaille <akim@epita.fr>
15601
15602 * src/reader.c (copy_string): Declare `static inline'. No
15603 problems with inline, since it is checked by configure.
15604 (copy_comment): Likewise.
15605
156062000-03-17 Akim Demaille <akim@epita.fr>
15607
15608 * src/reader.c (packsymbols): Formatting changes.
15609
156102000-03-17 Akim Demaille <akim@epita.fr>
15611
15612 * src/reader.c (copy_comment): New function, factored out from:
15613 (copy_action): Use it. Removed now unused `match', `ended',
15614 `cplus_comment'.
15615 (copy_guard): Likewise.
15616
156172000-03-17 Akim Demaille <akim@epita.fr>
15618
15619 * src/reader.c (copy_string): New function, factored out from:
15620 (copy_action): Use it.
15621 (copy_guard): Likewise.
15622
156232000-03-17 Akim Demaille <akim@epita.fr>
15624
15625 Change the handling of @s so that they behave exactly like $s.
15626 There is now a pseudo variable @$ (readble and writable), location
15627 of the lhs of the rule (by default ranging from the location of
15628 the first symbol of the rhs, to the location of the last symbol,
15629 or, if the rhs is empty, YYLLOC).
15630
15631 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
15632 yyval.
15633 (yyparse): When providing a default semantic action, provide a
15634 default location action.
15635 (after the $): No longer change `*YYLSP', just stack YYLOC the
15636 same way you stack YYVAL.
15637 * src/reader.c (read_declarations): Use warns.
15638 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
15639 (copy_action, case '@'): Likewise.
15640 Use a standard error message, to save useless work from
15641 translators.
15642
156432000-03-17 Akim Demaille <akim@epita.fr>
15644
15645 * src/bison.s1: Formatting and cosmetics changes.
15646 * src/reader.c: Likewise.
15647 Update the Copyright notice.
15648
156492000-03-17 Akim Demaille <akim@epita.fr>
15650
15651 * src/bison.s1 (#line): All set to `#line' only, since the
15652 Makefile now handles them.
15653
156542000-03-16 Akim Demaille <akim@epita.fr>
15655
15656 * src/output.c (output_rule_data): Output the documentation of
15657 some of the tables.
15658 (Copyright notice): Update.
15659 Formatting changes.
15660
156612000-03-16 Akim Demaille <akim@epita.fr>
15662
15663 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
15664 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
15665 One `#if YYDEBUG' remains, since it uses variables which are
15666 defined only if `YYDEBUG != 0'.
15667
156682000-03-16 Akim Demaille <akim@epita.fr>
15669
15670 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
15671 and related variables so that the similarities are highlighted.
15672
156732000-03-16 Akim Demaille <akim@epita.fr>
15674
15675 * src/bison.s1: Properly indent CPP directives.
15676
156772000-03-16 Akim Demaille <akim@epita.fr>
15678
15679 * src/bison.s1: Properly indent the `alloca' CPP section.
15680
156812000-03-16 Akim Demaille <akim@epita.fr>
15682
15683 Do not hard code values of directories in `configure.in'.
15684 Update the `configure' tool chain.
15685
15686 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
15687 src/makefile.am.
15688 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
15689 (AC_OUTPUT): Add m4/Makefile.
15690 Bump to bison 1.28a, 1.29 has never been released.
15691 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
15692 handled via src/Makefile.am.
15693 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
15694 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
15695 autoheader.
15696 * Makefile.am (SUBDIRS): Add m4.
15697 (ACLOCAL_AM_FLAGS): New variable.
15698 (AUTOMAKE_OPTIONS): Add check-news.
15699 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
15700 the proper line number and file name.
15701 (DEFS): Propagate the location of bison library files and of the
15702 locale files.
15703 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
15704 builddir.
15705 * acinclude.m4: Remove, replaced by the directory m4.
15706 * m4/Makefile.am (EXTRA_DIST): New variable.
15707 * m4/gettext.m4: New file, from the fileutils.
15708 * m4/lcmessage.m4: Likewise
15709 * m4/progtest.m4: Likewise.
15710 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
15711
157122000-03-10 Akim Demaille <akim@epita.fr>
15713
15714 * src/closure.c:
15715 Formatting changes of various comments.
15716 Respect the GNU coding standards at various places.
15717 Don't use `_()' when no translation is needed.
15718
157191999-12-13 Jesse Thilo <jthilo@gnu.org>
15720
15721 * src/files.c:
15722 OS/2 honors TMPDIR environment variable.
15723
157241999-12-13 Jesse Thilo <jthilo@gnu.org>
15725
15726 * doc/bison.texinfo: Tweaked spelling and grammar.
15727 Updated ISBN.
15728 Removed reference to price of printed copy.
15729 Mention BISON_SIMPLE and BISON_HAIRY.
15730
157311999-12-13 Jesse Thilo <jthilo@gnu.org>
15732
15733 * configure.in, NEWS:
15734 Bison 1.29 released.
15735
157361999-10-27 Jesse Thilo <jthilo@gnu.org>
15737
15738 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
15739 Added reference card.
15740
157411999-07-26 Jesse Thilo <jthilo@gnu.org>
15742
15743 * po/ru.po: Added Russian translation.
15744
157451999-07-26 Jesse Thilo <jthilo@gnu.org>
15746
15747 * configure.in: Added Russian translation.
15748
157491999-07-06 Jesse Thilo <jthilo@gnu.org>
15750
15751 * configure.in, NEWS, README:
15752 Released version 1.28.
15753
157541999-06-14 Jesse Thilo <jthilo@gnu.org>
15755
15756 * src/system.h:
15757 Squashed redefinition warning on some systems.
15758
15759 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
15760 Have configure build version string instead of relying on ANSI string
15761 concatentation.
15762
157631999-06-14 Jesse Thilo <jthilo@gnu.org>
15764
15765 * po/POTFILES.in: Got rid of version.c.
15766
157671999-06-14 Jesse Thilo <jthilo@gnu.org>
15768
15769 * acconfig.h, configure.in:
15770 Have configure build version string instead of relying on ANSI string
15771 concatentation.
15772
157731999-06-08 Jesse Thilo <jthilo@gnu.org>
15774
15775 * doc/bison.1:
15776 Dropped mention of `+' for long-named options.
15777
157781999-05-30 Jesse Thilo <jthilo@gnu.org>
15779
15780 * src/files.c: Added <unistd.h> for unlink().
15781
15782 * src/Makefile.am, src/system.h:
15783 I18n fixes.
15784
157851999-05-30 Jesse Thilo <jthilo@gnu.org>
15786
15787 * README: Added a FAQ list.
15788
15789 * configure.in, acconfig.h:
15790 I18n fixes.
15791
157921999-05-30 Jesse Thilo <jthilo@gnu.org>
15793
15794 * doc/FAQ, doc/Makefile.am:
15795 Added a FAQ list.
15796
157971999-05-19 Jesse Thilo <jthilo@gnu.org>
15798
15799 * src/alloc.h, src/symtab.h, src/version.c:
15800 Protected inclusion of "config.h" with HAVE_CONFIG_H.
15801
158021999-04-18 Jesse Thilo <jthilo@gnu.org>
15803
15804 * src/.cvsignore, src/Makefile.am:
15805 Reorganized: sources in `src', documentation in `doc'.
15806
15807 * src/lex.c (literalchar):
15808 fixed the code for escaping double quotes (thanks
15809 Jonathan Czisny.)
15810
158111999-04-18 Jesse Thilo <jthilo@gnu.org>
15812
15813 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
15814 Adjusted paths to reflect directory reorganization.
15815
158161999-04-18 Jesse Thilo <jthilo@gnu.org>
15817
15818 * doc/.cvsignore, doc/Makefile.am:
15819 Reorganized: sources in `src', documentation in `doc'.
15820
158211999-04-18 Jesse Thilo <jthilo@gnu.org>
15822
15823 * configure.in:
15824 Updated AC_INIT file to reflect directory reorganization.
15825
15826 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
15827 Reorganized: sources in `src', documentation in `doc'.
15828
158291999-04-13 Jesse Thilo <jthilo@gnu.org>
15830
15831 * src/allocate.c:
15832 Don't declare calloc() and realloc() if not necessary.
15833
158341999-04-13 Jesse Thilo <jthilo@gnu.org>
15835
15836 * configure.in, acconfig.h, acinclude.m4:
15837 Don't declare calloc() and realloc() if not necessary.
15838
158391999-03-23 Jesse Thilo <jthilo@gnu.org>
15840
15841 * po/.cvsignore: Added i18n support.
15842
158431999-03-23 Jesse Thilo <jthilo@gnu.org>
15844
15845 * acconfig.h, configure.in, Makefile.am:
15846 Added i18n support.
15847
158481999-03-22 Jesse Thilo <jthilo@gnu.org>
15849
15850 * src/bison.s1: Fixed #line numbers.
15851
158521999-03-15 Jesse Thilo <jthilo@gnu.org>
15853
15854 * po/es.po, po/fr.po, po/nl.po, po/de.po:
15855 Added PO files from Translation Project.
15856
158571999-03-03 Jesse Thilo <jthilo@gnu.org>
15858
15859 * Makefile.am:
15860 Added support for non-ANSI compilers (ansi2knr).
15861
158621999-02-16 Jesse Thilo <jthilo@gnu.org>
15863
15864 * configure.in: Bumped version number to 1.27.
15865
15866 * Makefile.am:
15867 Added `bison.simple' to list of files removed by `make distclean'.
15868
158691999-02-12 Jesse Thilo <jthilo@gnu.org>
15870
15871 * src/files.c, src/files.h:
15872 Defined locations of parser files in config.h instead of Makefile.
15873
158741999-02-12 Jesse Thilo <jthilo@gnu.org>
15875
15876 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
15877 Defined locations of parser files in config.h instead of Makefile.
15878
158791999-02-09 Jesse Thilo <jthilo@gnu.org>
15880
15881 * Makefile.am:
15882 Removed inappropriate use of $< macro.
15883
158841999-02-05 Jesse Thilo <jthilo@gnu.org>
15885
15886 * po/Makefile.in.in, po/POTFILES.in:
15887 Add `po' directory skeleton.
15888
158891999-01-27 Jesse Thilo <jthilo@gnu.org>
15890
15891 * README: Document help-bison list.
15892
15893 * configure.in: Add check for mkstemp().
15894
158951999-01-20 Jesse Thilo <jthilo@gnu.org>
15896
15897 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
15898 Hush a few compiler warnings.
15899
15900 * src/files.c:
15901 Add tryclose(), which verifies that fclose was successful.
15902 Hush a couple of compiler warnings.
15903
159041999-01-20 Jesse Thilo <jthilo@gnu.org>
15905
15906 * Makefile.am, OChangeLog:
15907 ChangeLog is now automatically generated. Include the old version as
15908 OChangeLog.
15909
159101999-01-14 Jesse Thilo <jthilo@gnu.org>
15911
15912 * 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:
15913 Update FSF address.
15914
159151999-01-14 Jesse Thilo <jthilo@gnu.org>
15916
15917 * doc/bison.texinfo: Fix formatting glitch.
15918
15919 * doc/bison.texinfo: Update FSF address.
15920
159211999-01-14 Jesse Thilo <jthilo@gnu.org>
15922
15923 * acconfig.h: Update FSF address.
15924
159251999-01-08 Jesse Thilo <jthilo@gnu.org>
15926
15927 * src/system.h:
15928 Don't define PACKAGE here, since config.h defines it.
15929
159301998-12-30 Jesse Thilo <jthilo@gnu.org>
15931
15932 * src/reader.c: Update copyright date.
15933
15934 * src/main.c:
15935 Ditch sprintf to statically-sized buffers in fatal/warn functions in
15936 favor of output directly to stderr (avoids buffer overruns).
15937
15938 * src/reader.c: Some checks for premature EOF.
15939
15940 * 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:
15941 Use prototypes if the compiler understands them.
15942
15943 * src/files.c: Honor TMPDIR on Unix hosts.
15944 Use prototypes if the compiler understands them.
15945
15946 * src/reader.c:
15947 Fix a couple of buffer overrun bugs.
15948 Use prototypes if the compiler understands them.
15949
15950 * src/system.h: Include unistd.h and ctype.h.
15951 Use #ifdef instead of #if for NLS symbols.
15952
159531998-12-30 Jesse Thilo <jthilo@gnu.org>
15954
15955 * doc/bison.texinfo:
15956 Delete comment "consider using @set for edition number, etc..." since
15957 we now are doing so.
15958
159591998-12-30 Jesse Thilo <jthilo@gnu.org>
15960
15961 * configure.in:
15962 Use prototypes if the compiler understands them.
15963
15964 * NEWS: Document 1.26 highlights.
15965
15966 * Makefile.am: Require Automake 1.3 or later.
15967
15968 * acconfig.h:
15969 Use prototypes if the compiler understands them.
15970
159711998-12-29 Jesse Thilo <jthilo@gnu.org>
15972
15973 * src/version.c:
15974 Use VERSION symbol from automake for version number.
15975
159761998-12-29 Jesse Thilo <jthilo@gnu.org>
15977
15978 * acconfig.h, configure.in, version.cin:
15979 Use VERSION symbol from automake for version number.
15980
159811998-11-28 Jesse Thilo <jthilo@gnu.org>
15982
15983 * Makefile.am:
15984 Distribute original version of simple parser (bison.s1), not built
15985 version (bison.simple).
15986
159871998-11-28 Jesse Thilo <jthilo@gnu.org>
15988
15989 * doc/bison.texinfo: Add info dir entry.
15990
15991 * doc/bison.texinfo:
15992 Let automake put version number into documentation.
15993
159941998-11-26 Jesse Thilo <jthilo@gnu.org>
15995
15996 * src/bison.cld, src/build.com, src/vmshlp.mar:
15997 Add non-RCS files from /gd/gnu/bison.
15998
159991998-11-26 Jesse Thilo <jthilo@gnu.org>
16000
16001 * doc/bison.1:
16002 Document the BISON_HAIRY and BISON_SIMPLE variables.
16003
160041998-11-25 Jesse Thilo <jthilo@gnu.org>
16005
16006 * src/version.c: Build version.c automatically.
16007
16008 * src/reader.c:
16009 Fix token numbering (used to start at 258, not 257).
16010
16011 * src/system.h: Include config.h.
16012
16013 * src/getargs.c: Update bug report address.
16014
16015 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
16016 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
16017
160181998-11-25 Jesse Thilo <jthilo@gnu.org>
16019
16020 * Makefile.am:
16021 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16022
16023 * configure.in, version.cin:
16024 Build version.c automatically.
16025
16026 * AUTHORS: Add AUTHORS file.
16027
16028 * README: Update bug report address.
16029
16030 * bison.simple:
16031 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16032
16033 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
16034 Add automake stuff.
16035
160361998-11-25 Jesse Thilo <jthilo@gnu.org>
16037
16038 * doc/bison.texinfo: Clean up some formatting.
16039
160401998-05-05 Richard Stallman <rms@gnu.org>
16041
16042 * doc/bison.texinfo:
16043 Explain better why to make a pure parser.
16044
160451998-01-05 Richard Stallman <rms@gnu.org>
16046
16047 * src/files.c (openfiles):
16048 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
16049 find a temporary directory, if possible. Do not unlink files while
16050 they are open.
16051
160521997-08-25 Richard Stallman <rms@gnu.org>
16053
16054 * src/reader.c (stack_offset;):
16055 Change some warni to warns.
16056
16057 * src/lex.c (literalchar): Use warns, not warni.
16058
160591997-06-28 Richard Stallman <rms@gnu.org>
16060
16061 * src/bison.s1: Add a Bison version comment.
16062
16063 * src/main.c (fatal, warn, berror):
16064 Use program_name.
16065
160661997-06-28 Richard Stallman <rms@gnu.org>
16067
16068 * Makefile.in (bison_version): New variable.
16069 (dist): Use that variable.
16070 (bison.s1): Substitute the Bison version into bison.simple.
16071
16072 * bison.simple: Add a Bison version comment.
16073
160741997-06-18 Richard Stallman <rms@gnu.org>
16075
16076 * src/main.c (fatal, warn, berror):
16077 Make error messages standard.
16078 (toomany): Improve error message text.
16079
16080 * 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:
16081 new.h renamed to alloc.h.
16082
160831997-06-18 Richard Stallman <rms@gnu.org>
16084
16085 * Makefile.in: new.h renamed to alloc.h.
16086
160871997-05-24 Richard Stallman <rms@gnu.org>
16088
16089 * src/lex.c (literalchar):
16090 Fix the code for escaping \, " and '.
16091
16092 (lex): Avoid trouble when there are many chars
16093 to discard in a char literal with just several chars in it.
16094
160951997-05-17 Richard Stallman <rms@gnu.org>
16096
16097 * src/bison.s1:
16098 Use malloc, if using alloca is troublesome.
16099 (YYSTACK_USE_ALLOCA): New flag macro.
16100 Define it for some systems and compilers.
16101 (YYSTACK_ALLOC): New macro.
16102 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16103 If it was malloc'd, free it.
16104
161051997-05-17 Richard Stallman <rms@gnu.org>
16106
16107 * bison.simple:
16108 Use malloc, if using alloca is troublesome.
16109 (YYSTACK_USE_ALLOCA): New flag macro.
16110 Define it for some systems and compilers.
16111 (YYSTACK_ALLOC): New macro.
16112 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16113 If it was malloc'd, free it.
16114
161151997-04-23 Richard Stallman <rms@gnu.org>
16116
16117 * src/bison.s1:
16118 (alloca) [__hpux]: Always define as __builtin_alloca.
16119
161201997-04-23 Richard Stallman <rms@gnu.org>
16121
16122 * bison.simple:
16123 (alloca) [__hpux]: Always define as __builtin_alloca.
16124
161251997-04-22 Richard Stallman <rms@gnu.org>
16126
16127 * src/bison.s1:
16128 [__hpux]: Include alloca.h (right for HPUX 10)
16129 instead of declaring alloca (right for HPUX 9).
16130
16131 * src/bison.s1 (__yy_memcpy):
16132 Declare arg `count' as unsigned int.
16133 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16134
161351997-04-22 Richard Stallman <rms@gnu.org>
16136
16137 * bison.simple:
16138 [__hpux]: Include alloca.h (right for HPUX 10)
16139 instead of declaring alloca (right for HPUX 9).
16140
16141 * bison.simple (__yy_memcpy):
16142 Declare arg `count' as unsigned int.
16143 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16144
161451997-01-03 Richard Stallman <rms@gnu.org>
16146
16147 * src/allocate.c: [__STDC__ or _MSC_VER]:
16148 Declare calloc and realloc to return void *.
16149
161501997-01-02 Richard Stallman <rms@gnu.org>
16151
16152 * src/system.h:
16153 [_MSC_VER]: Include stdlib.h and process.h.
16154 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
16155
16156 * src/main.c (main): Return FAILURE as a value.
16157 (printable_version): Declare arg as int, not char.
16158
161591997-01-02 Richard Stallman <rms@gnu.org>
16160
16161 * Makefile.in (dist):
16162 Explicitly check for symlinks, and copy them.
16163
161641996-12-19 Richard Stallman <rms@gnu.org>
16165
16166 * src/files.c:
16167 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
16168
161691996-12-18 Paul Eggert <eggert@gnu.org>
16170
16171 * src/bison.s1 (yyparse):
16172 If __GNUC__ and YYPARSE_PARAM are both defined,
16173 declare yyparse to have a void * argument.
16174
161751996-12-18 Paul Eggert <eggert@gnu.org>
16176
16177 * bison.simple (yyparse):
16178 If __GNUC__ and YYPARSE_PARAM are both defined,
16179 declare yyparse to have a void * argument.
16180
161811996-12-17 Richard Stallman <rms@gnu.org>
16182
16183 * src/reduce.c (nbits): Add some casts.
16184
161851996-08-12 Richard Stallman <rms@gnu.org>
16186
16187 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
16188
161891996-08-12 Richard Stallman <rms@gnu.org>
16190
16191 * bison.simple: Test _MSDOS as well as _MSDOS_.
16192
161931996-07-31 Richard Stallman <rms@gnu.org>
16194
16195 * src/bison.s1:
16196 [__sun && __i386]: Include alloca.h.
16197
161981996-07-31 Richard Stallman <rms@gnu.org>
16199
16200 * bison.simple:
16201 [__sun && __i386]: Include alloca.h.
16202
162031996-07-30 Richard Stallman <rms@gnu.org>
16204
16205 * src/bison.s1: Comment change.
16206
16207 * src/bison.s1: Test _MSDOS_, not MSDOS.
16208
162091996-07-30 Richard Stallman <rms@gnu.org>
16210
16211 * bison.simple: Comment change.
16212
16213 * bison.simple: Test _MSDOS_, not MSDOS.
16214
162151996-06-01 Richard Stallman <rms@gnu.org>
16216
16217 * 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:
16218 Insert `_' macro around many string constants.
16219
16220 * src/main.c:
16221 Insert `_' macro around many string constants.
16222
16223 (main): Call setlocale, bindtextdomain and textdomain.
16224
16225 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
16226 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
16227 [ENABLE_NLS]: Include libintl.h.
16228 [ENABLE_NLS] (gettext): Define.
16229 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
16230 (N_, PACKAGE, LOCALEDIR): New macros.
16231
162321996-06-01 Richard Stallman <rms@gnu.org>
16233
16234 * POTFILES.in: New file.
16235
16236 * Makefile.in (allocate.o):
16237 Define target explicitly.
16238
16239 * Makefile.in (CFLAGS): Set to @CFLAGS@.
16240 (LDFLAGS): Set to @LDFLAGS@.
16241 (configure): Run autoconf only if preceding `cd' succeeds.
16242 (bison.s1): Redirect output to temporary file then move the
16243 temporary to the target, rather than redirecting directly to bison.s1.
16244 (clean): Remove config.status and config.log.
16245 (distclean): Don't remove config.status here.
16246
162471996-05-12 Richard Stallman <rms@gnu.org>
16248
16249 * src/bison.s1:
16250 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16251
162521996-05-12 Richard Stallman <rms@gnu.org>
16253
16254 * bison.simple:
16255 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16256
162571996-05-11 Richard Stallman <rms@gnu.org>
16258
16259 * src/bison.s1 (__yy_memcpy):
16260 Really reorder the args, as was supposedly done on Feb 14 1995.
16261 (yyparse): Calls changed accordingly.
16262
162631996-05-11 Richard Stallman <rms@gnu.org>
16264
16265 * Makefile.in (dist): Don't use $(srcdir).
16266
16267 * bison.simple (__yy_memcpy):
16268 Really reorder the args, as was supposedly done on Feb 14 1995.
16269 (yyparse): Calls changed accordingly.
16270
162711996-01-27 Richard Stallman <rms@gnu.org>
16272
16273 * src/output.c (output_rule_data):
16274 Test YYERROR_VERBOSE in the conditional
16275 around the definition of ttyname.
16276
162771995-12-29 Richard Stallman <rms@gnu.org>
16278
16279 * src/bison.s1:
16280 Fix line numbers in #line commands.
16281
162821995-12-29 Richard Stallman <rms@gnu.org>
16283
16284 * bison.simple:
16285 Fix line numbers in #line commands.
16286
162871995-12-27 Richard Stallman <rms@gnu.org>
16288
16289 * src/bison.s1 (YYPARSE_PARAM_DECL):
16290 In C++, make it always null.
16291 (YYPARSE_PARAM_ARG): New macro.
16292 (yyparse): Use YYPARSE_PARAM_ARG.
16293
162941995-12-27 Richard Stallman <rms@gnu.org>
16295
16296 * bison.simple (YYPARSE_PARAM_DECL):
16297 In C++, make it always null.
16298 (YYPARSE_PARAM_ARG): New macro.
16299 (yyparse): Use YYPARSE_PARAM_ARG.
16300
163011995-11-29 Richard Stallman <rms@gnu.org>
16302
16303 * doc/bison.texinfo:
16304 Describe literal string tokens, %raw, %no_lines, %token_table.
16305
163061995-11-29 Daniel Hagerty <hag@gnu.org>
16307
16308 * doc/bison.texinfo: Fixed update date
16309
163101995-10-16 Richard Stallman <rms@gnu.org>
16311
16312 * src/version.c: Version 1.25.
16313
163141995-10-16 Richard Stallman <rms@gnu.org>
16315
16316 * NEWS: *** empty log message ***
16317
163181995-10-16 Richard Stallman <rms@gnu.org>
16319
16320 * doc/bison.1, doc/bison.rnh:
16321 Add new options.
16322
163231995-10-15 Richard Stallman <rms@gnu.org>
16324
16325 * src/vmsgetargs.c, src/getargs.c:
16326 Added -n, -k, and -raw switches.
16327 (noparserflag, toknumflag, rawtoknumflag): New variables.
16328
16329 * src/symtab.h (SALIAS):
16330 New #define for adding aliases to %token.
16331 (struct bucket): Added `alias' field.
16332
16333 * src/reduce.c (reduce_grammar):
16334 Revise error message.
16335 (print_notices): Remove final `.' from error message.
16336
16337 * src/reader.c (reader_output_yylsp):
16338 New function.
16339 (readgram): Use `#if 0' around code that accepted %command
16340 inside grammar rules: The documentation doesn't allow it,
16341 and it will fail since the %command processors scan for the next %.
16342 (parse_token_decl): Extended the %token
16343 declaration to allow a multi-character symbol as an alias.
16344 (parse_thong_decl): New function.
16345 (read_declarations): Added %thong declarations.
16346 (read_declarations): Handle NOOP to deal with allowing
16347 % declarations as another means to specify the flags.
16348 (readgram): Allow %prec prior to semantics embedded in a rule.
16349 (skip_to_char, read_declarations, copy_definition)
16350 (parse_token_decl, parse_start_decl, parse_type_decl)
16351 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
16352 (get_type_name, copy_guard, copy_action, readgram)
16353 (get_type, packsymbols): Revised most error messages.
16354 Changed `fatal' to `warnxxx' to avoid aborting for error.
16355 Revised and use multiple warnxxx functions to avoid using VARARGS1.
16356 (read_declarations): Improve the error message for
16357 an invalid character. Do not abort.
16358 (read_declarations, copy_guard, copy_action): Use
16359 printable_version to avoid unprintable characters in printed output.
16360 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
16361 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
16362 Allow the type of a non-terminal can be given
16363 more than once, as long as all specifications give the same type.
16364
16365 * src/output.c:
16366 (output_headers, output_trailers, output, output_gram)
16367 (output_rule_data): Implement noparserflag variable.
16368 Implement toknumflag variable.
16369 (output): Call reader_output_yylsp to output LTYPESTR.
16370
16371 * src/main.c (main):
16372 If reader sees an error, don't process the grammar.
16373 (fatals): Updated to not use VARARGS1.
16374 (printable_version, int_to_string, warn, warni, warns, warnss)
16375 (warnsss): New error reporting functions. Avoid abort for error.
16376
16377 * src/lex.h:
16378 Added THONG and NOOP for alias processing.
16379 Added SETOPT for the new code that allows setting options with %flags.
16380
16381 * src/lex.c:
16382 Include getopt.h. Add some extern decls.
16383 (safegetc): New function to deal with EOF gracefully.
16384 (literalchar); new function to deal with reading \ escapes.
16385 (lex): Use literalchar.
16386 (lex): Implemented "..." tokens.
16387 (literalchar, lex, parse_percent_token): Made tokenbuffer
16388 always contain the token. This includes growing the token
16389 buffer while reading an integer.
16390 (parse_percent_token): Replaced if-else statement with percent_table.
16391 (parse_percent_token): Added % declarations as another
16392 way to specify the flags -n, -l, and -r. Also added hooks for
16393 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
16394 major changes to files.c.
16395 (lex) Retain in the incoming stream a character following
16396 an incorrect '/'.
16397 (skip_white_space, lex): Revised most error messages
16398 and changed fatal to warn to avoid aborting.
16399 (percent_table): Added %thong declarations.
16400
16401 * src/gram.h: Comment changes.
16402
16403 * src/files.c (openfiles, open_extra_files, done):
16404 Add faction flag
16405 and actfile file. Handle noparserflag. Both for -n switch.
16406
16407 * src/conflicts.c (resolve_sr_conflict):
16408 Remove use of alloca.
16409
164101995-06-01 Jim Meyering <meyering@gnu.org>
16411
16412 * doc/bison.texinfo: *** empty log message ***
16413
164141995-05-06 Richard Stallman <rms@gnu.org>
16415
16416 * src/bison.s1: Comment change.
16417
164181995-05-06 Richard Stallman <rms@gnu.org>
16419
16420 * bison.simple: Comment change.
16421
164221995-05-03 Richard Stallman <rms@gnu.org>
16423
16424 * src/version.c: Version now 1.24.
16425
16426 * src/bison.s1: Change distribution terms.
16427
16428 * src/version.c: Version now 1.23.
16429
164301995-05-03 Richard Stallman <rms@gnu.org>
16431
16432 * doc/bison.texinfo:
16433 Rewrite "Conditions for Using Bison".
16434 Update version to 1.24.
16435
164361995-05-03 Richard Stallman <rms@gnu.org>
16437
16438 * bison.simple: Change distribution terms.
16439
164401995-02-23 Richard Stallman <rms@gnu.org>
16441
16442 * src/files.c: Test __VMS_POSIX as well as VMS.
16443
164441995-02-14 Jim Meyering <meyering@gnu.org>
16445
16446 * src/bison.s1 (__yy_memcpy):
16447 Renamed from __yy_bcopy to avoid
16448 confusion. Reverse FROM and TO arguments to be consistent with
16449 those of memcpy.
16450
164511995-02-14 Jim Meyering <meyering@gnu.org>
16452
16453 * bison.simple (__yy_memcpy):
16454 Renamed from __yy_bcopy to avoid
16455 confusion. Reverse FROM and TO arguments to be consistent with
16456 those of memcpy.
16457
164581994-11-10 David J. MacKenzie <djm@gnu.org>
16459
16460 * NEWS: reformat
16461
16462 * NEWS: New file.
16463
16464 * Makefile.in (DISTFILES): Include NEWS.
16465
16466 * Makefile.in (DISTFILES):
16467 Include install-sh, not install.sh.
16468
16469 * configure.in: Update to Autoconf v2 macro names.
16470
164711994-10-05 David J. MacKenzie <djm@gnu.org>
16472
16473 * Makefile.in: fix typo
16474
16475 * Makefile.in (prefix, exec_prefix):
16476 Let configure set them.
16477
164781994-09-28 David J. MacKenzie <djm@gnu.org>
16479
16480 * Makefile.in: Set datadir to $(prefix)/share.
16481
164821994-09-15 Richard Stallman <rms@gnu.org>
16483
16484 * src/bison.s1:
16485 Update copyright notice and GPL version.
16486
164871994-09-15 Richard Stallman <rms@gnu.org>
16488
16489 * bison.simple:
16490 Update copyright notice and GPL version.
16491
164921994-07-12 Richard Stallman <rms@gnu.org>
16493
16494 * src/reduce.c, src/reader.c:
16495 entered into RCS
16496
164971994-05-05 David J. MacKenzie <djm@gnu.org>
16498
16499 * Makefile.in: entered into RCS
16500
165011994-03-26 Richard Stallman <rms@gnu.org>
16502
16503 * src/bison.s1: entered into RCS
16504
165051994-03-26 Richard Stallman <rms@gnu.org>
16506
16507 * bison.simple: entered into RCS
16508
165091994-03-25 Richard Stallman <rms@gnu.org>
16510
16511 * src/main.c: entered into RCS
16512
165131994-03-24 Richard Stallman <rms@gnu.org>
16514
16515 * src/conflicts.c: entered into RCS
16516
165171994-01-02 Richard Stallman <rms@gnu.org>
16518
16519 * Makefile.in: *** empty log message ***
16520
165211993-11-21 Richard Stallman <rms@gnu.org>
16522
16523 * src/bison.s1: *** empty log message ***
16524
165251993-11-21 Richard Stallman <rms@gnu.org>
16526
16527 * doc/bison.texinfo: entered into RCS
16528
16529 * doc/bison.texinfo: *** empty log message ***
16530
165311993-11-21 Richard Stallman <rms@gnu.org>
16532
16533 * bison.simple: *** empty log message ***
16534
165351993-10-25 David J. MacKenzie <djm@gnu.org>
16536
16537 * doc/bison.texinfo: *** empty log message ***
16538
165391993-10-19 Richard Stallman <rms@gnu.org>
16540
16541 * src/bison.s1: *** empty log message ***
16542
165431993-10-19 Richard Stallman <rms@gnu.org>
16544
16545 * bison.simple: *** empty log message ***
16546
165471993-10-14 Richard Stallman <rms@gnu.org>
16548
16549 * src/bison.s1: *** empty log message ***
16550
165511993-10-14 Richard Stallman <rms@gnu.org>
16552
16553 * bison.simple: *** empty log message ***
16554
165551993-09-14 David J. MacKenzie <djm@gnu.org>
16556
16557 * doc/bison.texinfo: *** empty log message ***
16558
165591993-09-13 Noah Friedman <friedman@gnu.org>
16560
16561 * Makefile.in: *** empty log message ***
16562
165631993-09-10 Richard Stallman <rms@gnu.org>
16564
16565 * src/conflicts.c: *** empty log message ***
16566
16567 * src/system.h: entered into RCS
16568
165691993-09-10 Richard Stallman <rms@gnu.org>
16570
16571 * doc/bison.1: entered into RCS
16572
165731993-09-06 Noah Friedman <friedman@gnu.org>
16574
16575 * src/version.c: entered into RCS
16576
165771993-09-06 Noah Friedman <friedman@gnu.org>
16578
16579 * Makefile.in: *** empty log message ***
16580
165811993-07-30 David J. MacKenzie <djm@gnu.org>
16582
16583 * Makefile.in: *** empty log message ***
16584
165851993-07-24 Richard Stallman <rms@gnu.org>
16586
16587 * src/bison.s1: *** empty log message ***
16588
165891993-07-24 Richard Stallman <rms@gnu.org>
16590
16591 * bison.simple: *** empty log message ***
16592
165931993-07-08 David J. MacKenzie <djm@gnu.org>
16594
16595 * Makefile.in: *** empty log message ***
16596
165971993-07-04 Richard Stallman <rms@gnu.org>
16598
16599 * src/bison.s1: *** empty log message ***
16600
166011993-07-04 Richard Stallman <rms@gnu.org>
16602
16603 * bison.simple: *** empty log message ***
16604
166051993-06-26 David J. MacKenzie <djm@gnu.org>
16606
16607 * src/getargs.c: entered into RCS
16608
166091993-06-26 David J. MacKenzie <djm@gnu.org>
16610
16611 * doc/bison.texinfo: *** empty log message ***
16612
16613 * doc/bison.1: New file.
16614
166151993-06-25 Richard Stallman <rms@gnu.org>
16616
16617 * src/getargs.c: New file.
16618
166191993-06-16 Richard Stallman <rms@gnu.org>
16620
16621 * src/bison.s1: *** empty log message ***
16622
166231993-06-16 Richard Stallman <rms@gnu.org>
16624
16625 * bison.simple: *** empty log message ***
16626
166271993-06-03 Richard Stallman <rms@gnu.org>
16628
16629 * src/bison.s1: New file.
16630
166311993-06-03 Richard Stallman <rms@gnu.org>
16632
16633 * doc/bison.texinfo: *** empty log message ***
16634
166351993-06-03 Richard Stallman <rms@gnu.org>
16636
16637 * bison.simple: New file.
16638
166391993-05-19 Richard Stallman <rms@gnu.org>
16640
16641 * doc/bison.texinfo: New file.
16642
166431993-05-07 Noah Friedman <friedman@gnu.org>
16644
16645 * Makefile.in: *** empty log message ***
16646
166471993-04-28 Noah Friedman <friedman@gnu.org>
16648
16649 * src/reader.c: *** empty log message ***
16650
166511993-04-23 Noah Friedman <friedman@gnu.org>
16652
16653 * src/alloc.h: entered into RCS
16654
166551993-04-20 David J. MacKenzie <djm@gnu.org>
16656
16657 * src/version.c: *** empty log message ***
16658
16659 * src/files.c, src/allocate.c:
16660 entered into RCS
16661
16662 * src/reader.c: *** empty log message ***
16663
16664 * src/lex.c: entered into RCS
16665
16666 * src/conflicts.c: New file.
16667
16668 * src/symtab.c: entered into RCS
16669
16670 * src/alloc.h: New file.
16671
16672 * src/LR0.c: entered into RCS
16673
166741993-04-18 Noah Friedman <friedman@gnu.org>
16675
16676 * src/reader.c: New file.
16677
16678 * src/version.c: *** empty log message ***
16679
166801993-04-18 Noah Friedman <friedman@gnu.org>
16681
16682 * Makefile.in: *** empty log message ***
16683
166841993-04-17 Noah Friedman <friedman@gnu.org>
16685
16686 * Makefile.in: *** empty log message ***
16687
166881993-04-15 Richard Stallman <rms@gnu.org>
16689
16690 * src/main.c, src/files.c:
16691 New file.
16692
166931993-04-15 Noah Friedman <friedman@gnu.org>
16694
16695 * configure.in: entered into RCS
16696
16697 * configure.in: *** empty log message ***
16698
16699 * configure.in: New file.
16700
167011993-04-14 Richard Stallman <rms@gnu.org>
16702
16703 * Makefile.in: New file.
16704
167051993-04-13 Richard Stallman <rms@gnu.org>
16706
16707 * src/version.c: New file.
16708
167091993-03-25 Richard Stallman <rms@gnu.org>
16710
16711 * src/output.c: entered into RCS
16712
167131992-09-25 Richard Stallman <rms@gnu.org>
16714
16715 * configure.bat: entered into RCS
16716
167171992-06-22 Richard Stallman <rms@gnu.org>
16718
16719 * src/vmsgetargs.c: entered into RCS
16720
167211992-06-22 Richard Stallman <rms@gnu.org>
16722
16723 * doc/bison.rnh: entered into RCS
16724
167251992-04-20 David J. MacKenzie <djm@gnu.org>
16726
16727 * README: entered into RCS
16728
167291992-01-22 Richard Stallman <rms@gnu.org>
16730
16731 * src/machine.h: entered into RCS
16732
167331991-12-21 Richard Stallman <rms@gnu.org>
16734
16735 * src/lalr.c, src/closure.c:
16736 entered into RCS
16737
167381991-12-20 Richard Stallman <rms@gnu.org>
16739
16740 * src/state.h: entered into RCS
16741
167421991-12-18 Richard Stallman <rms@gnu.org>
16743
16744 * src/print.c, src/nullable.c, src/derives.c:
16745 entered into RCS
16746
167471991-11-03 David J. MacKenzie <djm@gnu.org>
16748
16749 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
16750 entered into RCS
16751
167521988-09-09 Richard Stallman <rms@gnu.org>
16753
16754 * src/bison.hairy: entered into RCS
16755
167561987-12-16 Richard Stallman <rms@gnu.org>
16757
16758 * REFERENCES: entered into RCS
16759
16760
16761 -----
16762
16763 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
16764 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
16765 Software Foundation, Inc.
16766
16767 Copying and distribution of this file, with or without
16768 modification, are permitted provided the copyright notice and this
16769 notice are preserved.
16770
16771$Id$