]> git.saurik.com Git - bison.git/blame_incremental - ChangeLog
* data/c.m4 (b4_null, b4_case): Define.
[bison.git] / ChangeLog
... / ...
CommitLineData
12006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
2
3 * data/c.m4 (b4_null, b4_case): Define.
4 * src/output.c (prepare_symbols): Use b4_null.
5 (user_actions_output): Use b4_case.
6
72006-09-11 Paul Eggert <eggert@cs.ucla.edu>
8
9 * data/glr.c (b4_shared_declarations): Put start-header first,
10 before any #includes that we generate, so that feature-test
11 macros work. Problem reported by Michael Deutschmann in
12 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
13 * data/lalr1.cc: Likewise.
14 * doc/bison.texinfo (Prologue): Document that feature-test macros
15 should be defined before any Bison declarations.
16 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
17 that depend on location.hh after, not before, Bison decls, since
18 we now include location.hh after the first user prologue.
19
20 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
21 Sander Brandenburg in
22 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
23 Also, fix minor white space and comment issues.
24 (Prologue): Mention that it's better to define feature-test macros
25 before Bison declarations. Problem reported by Michael Deutschmann.
26
27 * README-cvs: Fix typo: "&" should be "&&". Problem reported
28 by Jim Meyering.
29 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
30 This adjusts to recent gnulib changes.
31
322006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
33
34 Finish implementation of per-type %destructor/%printer. Discussed
35 starting at
36 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
37 and
38 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
39 * NEWS (2.3+): Add a description of this feature to the default
40 %destructor/%printer description.
41 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
42 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
43 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
44 list node contains a semantic type.
45 * src/symtab.c, src/symtab.h: Extend with a table that associates
46 semantic types with their %destructor's and %printer's.
47 (semantic_type_from_uniqstr, semantic_type_get,
48 semantic_type_destructor_set, semantic_type_printer_set): New functions
49 composing the public interface of that table.
50 (symbol_destructor_get, symbol_destructor_location_get,
51 symbol_printer_get, symbol_printer_location_get): If there's no
52 per-symbol %destructor/%printer, look up the per-type before trying
53 the default.
54 * tests/actions.at (Per-type %printer and %destructor): New test case.
55 * tests/input.at (Default %printer and %destructor redeclared):
56 Extend to check that multiple occurrences of %symbol-default in a
57 single %destructor/%printer declaration is an error.
58 (Per-type %printer and %destructor redeclared, Unused values with
59 per-type %destructor): New test cases.
60
612006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
62
63 Require default %destructor/%printer to be declared using
64 %symbol-default instead of an empty symbol list, and start working on
65 new per-type %destructor/%printer. Discussed at
66 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
67 * NEWS (2.3+): Add %symbol-default to example.
68 * bison.texinfo (Freeing Discarded Symbols): Likewise.
69 (Bison Symbols): Add entry for %symbol-default.
70 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
71 (generic_symlist, generic_symlist_item): New nonterminals for creating
72 a list in which each item is a symbol, semantic type, or
73 %symbol-default.
74 (grammar_declaration): Use generic_symlist in %destructor and %printer
75 declarations instead of symbols.1 or an empty list.
76 (symbol_declaration, precedence_declaration, symbols.1): Update actions
77 for changes to symbol_list.
78 * src/reader.c: Update for changes to symbol_list.
79 * src/scan-code.l: Likewise.
80 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
81 * src/symlist.c, src/symlist.h: Extend such that a list node may
82 represent a semantic type or a %symbol-default in addition to just an
83 ordinary symbol. Add switched functions for setting %destructor's and
84 %printer's.
85 * tests/actions.at, tests/input.at: Add %symbol-default to all default
86 %destructor/%printer declarations.
87
882006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
89
90 Whether the default %destructor/%printer applies to a particular symbol
91 isn't a question of whether the user *declares* that symbol (in %token,
92 for example). It's a question of whether the user by any means
93 *defines* the symbol at all (by simply using a char token, for
94 example). $end is defined by Bison whereas any other token with token
95 number 0 is defined by the user. The error token is always defined by
96 Bison regardless of whether the user declares it with %token, but we
97 may one day let the user define error as a nonterminal instead.
98 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
99 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
100 the meaning of "user-defined".
101 * tests/actions.at (Default %printer and %destructor for user-declared
102 end token): Rename to...
103 (Default %printer and %destructor for user-defined end token): ...
104 this.
105
106 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
107 computation of whether to apply the default, don't maintain a list of
108 every Bison-defined symbol. Instead, just check for a first character
109 of '$', which a user symbol cannot have, and check for the error token.
110
1112006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
112
113 Don't apply the default %destructor or %printer to the error token,
114 $undefined, or $accept. This change fits the general rule that the
115 default %destructor and %printer are only for user-declared symbols,
116 and it solves several difficulties that are described in the new test
117 cases listed below.
118 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
119 * tests/actions.at (Default %printer and %destructor are not for error
120 or $undefined, Default %printer and %destructor are not for $accept):
121 New test cases.
122
1232006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
124
125 Allow %start after the first rule.
126 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
127 when parsing the first rule.
128 (check_and_convert_grammar): Search for it here after all grammar
129 declarations have been parsed. Skip midrules, which have dummy LHS
130 nonterminals.
131 * src/symtab.c (symbol_is_dummy): New function.
132 * src/symtab.h (symbol_is_dummy): Declare it.
133 * tests/input.at (%start after first rule): New test.
134
1352006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
136
137 Redo some of the previous commit: add back the ability to use
138 non-aliased/undeclared string literals since it might be useful to
139 those declaring %token-table.
140 * src/reader.c (check_and_convert_grammar): Undo changes in previous
141 commit: don't worry about complaints from symbols_pack.
142 * src/symtab.c (symbol_new, symbol_class_set,
143 symbol_check_alias_consistency): Undo changes in previous commit: count
144 each string literal as a new symbol and token, assign it a symbol
145 number, and don't complain about non-aliased string literals.
146 (symbols_pack): Since symbol_make_alias still does not decrement symbol
147 and token counts but does still set aliased tokens to the same number,
148 symbol_pack_processor now leaves empty slots in the symbols array.
149 Remove those slots.
150 * tests/regression.at (Undeclared string literal): Remove test case
151 added in previous commit since non-aliased string literals are allowed
152 again.
153 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
154 remove unnecessary string literal declarations.
155 * tests/sets.at (Firsts): Likewise.
156
1572006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
158
159 Don't allow an undeclared string literal, but allow a string literal to
160 be used before its declaration.
161 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
162 symbols_pack complained.
163 * src/symtab.c (symbol_new): Don't count a string literal as a new
164 symbol.
165 (symbol_class_set): Don't count a string literal as a new token, and
166 don't assign it a symbol number since symbol_make_alias does that.
167 (symbol_make_alias): It's not necessary to decrement the symbol and
168 token counts anymore. Don't assume that an alias declaration occurs
169 before any uses of the identifier or string, and thus don't assert that
170 one of them has the highest symbol number so far.
171 (symbol_check_alias_consistency): Complain if there's a string literal
172 that wasn't declared as an alias.
173 (symbols_pack): Bail if symbol_check_alias_consistency failed since
174 symbol_pack asserts that every token has been assigned a symbol number
175 although undeclared string literals have not.
176 * tests/regression.at (String alias declared after use, Undeclared
177 string literal): New test cases.
178 (Characters Escapes, Web2c Actions): Declare string literals as
179 aliases.
180 * tests/sets.at (Firsts): Likewise.
181
1822006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
183
184 In the grammar scanner, STRING_FINISH unclosed constructs and return
185 them to the parser in order to improve error messages.
186 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
187 SC_BRACED_CODE, SC_PROLOGUE): Implement.
188 * tests/input.at (Unclosed constructs): New test case.
189 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
190 seen.
191
192 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
193 unused global.
194
1952006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
196
197 Handle string aliases for character tokens correctly.
198 * src/symtab.c (symbol_user_token_number_set): If the token has an
199 alias, check and set its alias's user token number instead of its own,
200 which is set to indicate the alias. Previously, every occurrence of
201 the character token in the grammar overwrote that alias indicator with
202 the character code.
203 * tests/input.at (String aliases for character tokens): New test.
204
2052006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
206
207 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
208
2092006-08-11 Paul Eggert <eggert@cs.ucla.edu>
210
211 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
212 to prevent failures when building on older platforms.
213 Check for autopoint failure.
214 Set XGETTEXT_OPTIONS to values that check for C format strings,
215 so that translators are warned about them (this also helps
216 prevent core dumps).
217
218 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
219 function, since it simplifies our code a bit.
220
221 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
222 rather than -W, so we don't get bogus warnings about sign comparisons.
223 Add -Wpointer-arith, since that warning is useful (it reports code
224 that does not conform to C89 and that some compilers reject).
225 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
226 since it's no longer needed.
227
2282006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
229
230 Clean up scanners a bit.
231 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
232 definitions so gcc won't warn when obstack_for_string is unused.
233 * src/scan-code.l: config.h and system.h are already #include'd by
234 scan-code-c.c, so get rid of them here.
235 * src/scan-gram.l: Likewise.
236 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
237 definitions rather than duplicating the rest of it.
238 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
239
2402006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
241
242 Suppress signed/unsigned comparison warnings for yycheck.
243 * data/c.m4 (b4_safest_int_type): New macro.
244 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
245 a signed int type, cast it to b4_safest_int_type first.
246 * data/yacc.c: Likewise.
247 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
248 also overwritten.
249
2502006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
251
252 * doc/bison.texinfo: Fix some typos.
253
2542006-08-02 Paul Eggert <eggert@cs.ucla.edu>
255
256 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
257 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
258
259 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
260 the latest gnulib does this a different way.
261 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
262 translation was patched, so stop omitting it.
263
2642006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
265
266 Enable declaration of default %printer/%destructor. Make the parser
267 use these for all user-declared grammar symbols for which the user does
268 not declare a specific %printer/%destructor. Thus, the parser uses it
269 for token 0 if the user declares it but not if Bison generates it as
270 $end. Discussed starting at
271 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
272 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
273 and
274 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
275 * NEWS (2.3+): Mention.
276 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
277 declare a %destructor for a mid-rule's semantic value. It's just
278 impossible to declare one specific to it.
279 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
280 code. Describe default %destructor form.
281 * src/parse-gram.y (grammar_declaration): Parse default
282 %printer/%destructor declarations.
283 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
284 and symbol_destructor_location_get rather than accessing the destructor
285 and destructor_location members of struct symbol.
286 (symbol_printers_output): Likewise but for %printer's.
287 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
288 again.
289 * src/symtab.c (default_destructor, default_destructor_location,
290 default_printer, default_printer_location): New static global
291 variables to record the default %destructor and %printer.
292 (symbol_destructor_get, symbol_destructor_location_get,
293 symbol_printer_get, symbol_printer_location_get): New functions to
294 compute the appropriate %destructor and %printer for a symbol.
295 (default_destructor_set, default_printer_set): New functions to set the
296 default %destructor and %printer.
297 * src/symtab.h: Prototype all those new functions.
298 * tests/actions.at (Default %printer and %destructor): New test to
299 check that the right %printer and %destructor are called, that they're
300 not called for $end, and that $$ and @$ work correctly.
301 (Default %printer and %destructor for user-declared end token): New
302 test to check that the default %printer and %destructor are called for
303 a user-declared end token.
304 * tests/input.at (Default %printer and %destructor redeclared, Unused
305 values with default %destructor): New tests to check related grammar
306 warnings and errors.
307
3082006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
309
310 Clean up handling of %destructor for the end token (token 0).
311 Discussed starting at
312 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
313 and
314 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
315
316 Make the skeletons consistent in how they pop the end token and invoke
317 its %destructor.
318 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
319 state, which has token number 0, since this would invoke the
320 %destructor for the end token.
321 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
322 until after shifting the end token, or else it won't be popped.
323 * data/yacc.c (yyparse): Likewise.
324
325 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
326 it's the end token. Upon termination, destroy an unshifted lookahead
327 even when it's the end token.
328 * data/lalr1.cc (yy::parser::parse): Likewise.
329 * data/yacc.c (yyparse): Likewise.
330
331 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
332 value warnings for the end token when the user gives the end token a
333 %destructor.
334
335 * tests/actions.at (Printers and Destructors): Test all the above.
336
3372006-07-24 Paul Eggert <eggert@cs.ucla.edu>
338
339 Update to latest gnulib and gettext versions.
340 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
341 Add fopen-safer.
342 (gnulib_files): Add m4/warning.m4. Don't worry about files
343 overwritten by autopoint.
344 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
345 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
346 rejects them.
347 Don't use autoreconf; instead, invoke autopoint etc. by hand,
348 so that we can remove the intl files at a better time.
349 (intl_files_to_remove): Remove aclocal.m4, since it gets
350 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
351 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
352 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
353 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
354 Remove datarootdir hack; no longer needed.
355 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
356 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
357 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
358 strdup.h.
359 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
360 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
361
3622006-07-20 Paul Eggert <eggert@cs.ucla.edu>
363
364 * bootstrap: Adjust to today's change to gnulib-tool by invoking
365 it with --assume-autoconf='latest-stable'.
366
3672006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
368
369 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
370 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
371 YYSTYPE' and `{'.
372 * src/muscle_tab.h (muscle_grow): Replace the header comments with
373 those from muscle_tab.c since the old ones are misleading.
374
3752006-07-13 Akim Demaille <akim@epita.fr>
376
377 Support %define "KEY" {VALUE}.
378 * src/scan-code.h, src/scan-code.l (translate_action)
379 (translate_rule_action, translate_symbol_action, translate_code):
380 Return char *, not const char *.
381 * src/parse-gram.y (declaration): Rename as...
382 (prologue_declaration): this.
383 (string_content): Remove this nonterminal, use STRING.
384 (braceless, content, content.opt): New nonterminal.
385 Use them.
386 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
387 as value.
388 * src/scan-gram.l (getargs.h): Don't include it.
389
3902006-07-12 Paul Eggert <eggert@cs.ucla.edu>
391
392 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
393 rather than a for-loop that declares a local bool variable. This
394 should work around a compatibility problem with a Cray x1e C++
395 compiler reported by Hung Nguyen in
396 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
397 The for-loop was introduced in the 2004-11-17 change but I don't
398 know why it was needed.
399
4002006-07-12 Akim Demaille <akim@epita.fr>
401
402 * data/c.m4: Comment changes.
403
4042006-07-10 Akim Demaille <akim@lrde.epita.fr>
405
406 * src/complain.c (error_message, ERROR_MESSAGE): New.
407 To factor...
408 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
409 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
410
4112006-07-09 Paul Eggert <eggert@cs.ucla.edu>
412
413 * NEWS: Instead of %union, you can define and use your own union type
414 YYSTYPE if your grammar contains at least one <type> tag.
415 Your YYSTYPE need not be a macro; it can be a typedef.
416 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
417 (Union Decl, Decl Summary): Document this.
418 * data/glr.c (YYSTYPE): Implement this.
419 * data/glr.cc (YYSTYPE): Likewise.
420 * data/lalr1.cc (YYSTYPE): Likewise.
421 * data/yacc.c (YYSTYPE): Likewise.
422 * src/output.c (prepare): Output tag_seen_flag.
423 * src/parse-gram.y (declaration, grammar_declaration):
424 Use 'union_seen' rather than 'typed' to determine whether
425 %union has been seen, since grammars can now be typed without
426 %union.
427 (symbol_declaration, type.opt, symbol_def):
428 Keep track of whether a tag has been seen.
429 * src/reader.c (union_seen, tag_seen): New vars.
430 (typed): remove.
431 * src/reader.h (union_seen, tag_seen, typed): Likewise.
432 * src/scan-code.l (untyped_var_seen): New variable.
433 (handle_action_dollar): Adjust to above changes.
434 (handle_action_dollar, handle_action_at):
435 Improve overflow checking for outlandish numbers.
436 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
437 avoid new diagnostics generated by above changes.
438 * tests/regression.at (YYSTYPE typedef): Add test to check
439 for type tags without %union.
440
441 * src/symlist.c (symbol_list_length): Return int, not unsigned
442 int, since callers expect int. This may need to get revisited
443 once we have proper integer overflow checking.
444
445 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
446 object is now static.
447
448 * src/getargs.c (flags_argmatch): Return void, not int,
449 to pacify ./configure --enable-gcc-warnings.
450
451 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
452 since last_string is already defined to FLEX_PREFIX (last_string).
453
4542006-07-09 Akim Demaille <akim@lrde.epita.fr>
455
456 Implement --warnings/-W.
457 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
458 replaced by...
459 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
460 Adjust callers.
461 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
462 (warnings_args, warnings_types): New.
463 (getargs, short_options, long_options): Accept -W/--warnings.
464 Sort the options by alphabetical order, upper case letter right
465 before its lower case.
466
4672006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
468
469 Change %merge result type clash warnings to errors. Discussed at
470 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
471 * src/reader.c (record_merge_function_type): Use complain_at.
472 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
473 declared later): Update test case results.
474
4752006-07-09 Akim Demaille <akim@lrde.epita.fr>
476
477 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
478 to be in alphabetical order.
479 (trace_args): Spelling fixes.
480
4812006-07-09 Paul Eggert <eggert@cs.ucla.edu>
482
483 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
484 so they don't collide with user-defined macros.
485 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
486 this was never guaranteed, and now that we're using gnulib stdint,
487 which defines int_fast16_t to long int, the problem is exposed.
488
4892006-07-08 Paul Eggert <eggert@cs.ucla.edu>
490
491 * data/c.m4 (b4_basename): Simplify a bit, since we don't
492 need the full POSIX semantics (and weren't implementing them
493 anyway).
494
495 Adjust to Autoconf 2.60 and today's gnulib.
496 * bootstrap (gnulib_modules): Add stdint.
497 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
498 no longer copies it.
499 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
500 since stdint needs the former and wcwidth (which is now required
501 by mbswidth) needs the latter.
502 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
503 work around a compatibility glitch between gettext 0.14.6 and
504 Autoconf 2.60.
505 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
506 Do not check for uintptr_t, since new stdint module does the right
507 thing.
508 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
509 Add stdint.h, stdint_.h, wcwidth.h.
510 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
511 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
512 stdint.m4, wchar_t.m4, wcwidth.m4.
513 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
514 usual order for ../lib/*.h files.
515 (file_name_split): Use last_component, not base_name, to adjust
516 to gnulib changes.
517 * src/parse-gram.h: Include <strverscmp.h> in the usual order
518 for ../lib/*.h files.
519 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
520 Define unconditionally, since we now assume the stdint module.
521 * src/scan-skel.l: Include <dirname.h>.
522 (BASE_QPUTS): Use last_component, not base_name.
523 * src/system.h: Include <unlocked-io.h> in the usual order
524 for ../lib/*.h files. Include <stdint.h> unconditionally,
525 since we now use the stdint module.
526 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
527 HAVE_UINTPTR_T, since we now use the stdint module.
528 (base_name): Remove decl, since files now include <dirname.h>
529 to get the decl.
530
5312006-07-08 Akim Demaille <akim@lrde.epita.fr>
532
533 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
534 New, default to 1.
535 * data/yacc.c, data/glr.c, data/location.cc: Use them.
536 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
537 default.
538 * tests/calc.at: Adjust.
539
5402006-07-08 Akim Demaille <akim@lrde.epita.fr>
541
542 * data/c.m4 (b4_basename): New.
543 (b4_syncline): Also output the location of its invocation (from
544 the skeleton).
545 (b4_user_action, b4_define_user_action, b4_user_actions)
546 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
547 (b4_user_stype): New.
548 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
549
5502006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
551
552 In the grammar file, the first column is 1 not 0 on the first line as
553 on every other line.
554 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
555 * tests/input.at (Torturing the Scanner): Update output.
556
557 * src/scan-gram.l (scanner_cursor): Declare it static.
558
5592006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
560
561 In warnings, say "previous declaration" rather than "first
562 declaration".
563 * src/symtab.c (redeclaration): Do that here.
564 * src/reader.c (record_merge_function_type): In the case of a result
565 type clash, report the previous declaration rather than the very first
566 one in the grammar file.
567 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
568 declared later): Add a third declaration to check this behavior.
569 * tests/input.at (Incompatible Aliases): Update output.
570
5712006-06-27 Akim Demaille <akim@epita.fr>
572
573 * doc/Doxyfile.in: New.
574 * doc/Makefile.am: Use it.
575 * src/lalr.h, src/symtab.h: Initial doxygenation.
576
5772006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
578
579 Don't miss %merge result type warnings just because the LHS types are
580 declared after the %merge. This continues the effort of the previous
581 patch.
582 * src/reader.c (get_merge_function): Don't set the merger type yet.
583 (record_merge_function_type): New function for setting the merger type
584 and checking for clashes.
585 (grammar_current_rule_merge_set): Set the location of the %merge for
586 the current rule.
587 (packgram): Invoke record_merge_function_type for each rule now that
588 all symbol type declarations have been parsed.
589 * src/reader.h (merger_list.type_declaration_location): New member
590 storing the location of the first %merge from which the type for this
591 merging function was derived.
592 * src/symlist.h (symbol_list.merger_declaration_location): New member
593 storing the location of a rule's %merge, if any.
594 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
595 declared later): New test to catch the error fixed by the above patch.
596
5972006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
598
599 Get action warnings (grammar_rule_check) right even when symbol
600 declarations appear after the rules. Discussed at
601 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
602 and
603 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
604 Don't mistake the type of $$ in a midrule to be that of its parent
605 rule's $$.
606 * src/reader.c (grammar_current_rule_end): Don't invoke
607 grammar_rule_check yet since not all symbol declarations may have been
608 parsed yet.
609 (grammar_midrule_action): Likewise.
610 Don't record whether the midrule's $$ has been used yet since actions
611 haven't been translated yet.
612 Record the midrule's parent rule and its RHS index within the parent
613 rule.
614 (grammar_current_rule_action_append): Don't translate the action yet
615 since not all symbol declarations may have been parsed yet and, thus,
616 warnings about types for $$, $n, @$, and @n can't be reported yet.
617 (packgram): Translate the action and invoke grammar_rule_check now that
618 all symbol declarations have been parsed.
619 * src/scan-code.l (handle_action_dollar): Now that this is invoked
620 after parsing the entire grammar file, the symbol list here in the case
621 of a midrule is actually the midrule's empty RHS, so reference its
622 parent rule's RHS where necessary.
623 On the other hand, now that you can already know it's a midrule, you
624 aren't forced to think $$ has the same type as its parent rule's $$.
625 (handle_action_at): In the case of a midrule, reference the parent rule
626 where necessary.
627 * src/symlist.c (symbol_list_new): Initialize new midrule-related
628 members.
629 (symbol_list_length): Now that this is invoked after all rules have
630 been parsed, a NULL symbol (rather than a NULL symbol list node)
631 terminates a rule. symbol_list_print already does this correctly.
632 * src/symlist.h (symbol_list.midrule_parent_rule,
633 symbol_list.midrule_parent_rhs_index): New members so that midrules can
634 remember their relationships with their parents.
635 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
636 fixed by the above patch.
637 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
638 implementing...
639 (Unused values): ... this old test case and...
640 (Unused values before symbol declarations): ... this new test case.
641 This one is the same as `Unused values' except that all symbol
642 declarations appear after the rules in order to catch the rest of the
643 errors fixed by the above patch.
644
6452006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
646
647 More cleanup.
648 * src/reader.c (current_rule): Declare it static since it's no longer
649 used outside this file.
650 (grammar_current_rule_action_append): Remove redundant arguments from
651 translate_rule_action invocation.
652 * src/reader.h (current_rule): Remove this unused extern.
653 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
654 * src/scan-code.l (translate_rule_action): Likewise.
655
6562006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
657
658 Clean up yesterday's patch.
659 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
660 to...
661 * src/reader.c (grammar_current_rule_action_append): ... here for
662 consistency with grammar_current_rule_symbol_append.
663 * tests/regression.at (Braced code in declaration in rules section):
664 Make yyerror and yylex static as usual.
665
6662006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
667
668 Fix bug that mistakes braced code in a declaration in the rules section
669 to be a rule action. Mentioned at
670 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
671 * src/scan-gram.l: Move midrule action detection from the start of the
672 scanning of any braced code to...
673 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
674 action. For readability, use $2 and @2 rather than the equivalent
675 global variables.
676 * tests/regression.at (Braced code in declaration in rules section):
677 New test to catch the error fixed by the above patch.
678
679 Work on code readability some.
680 * src/scan-code.l (current_rule): Get rid of this misleading and
681 redundant declaration: it's actually extern'ed in reader.h.
682 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
683 translate_action): Add a rule argument and use it instead of the global
684 current_rule.
685 (translate_rule_action): This already receives current_rule through an
686 argument, so pass it on to translate_action instead of assigning
687 current_rule to current_rule.
688 (translate_symbol_action, translate_code): Pass rule = NULL to
689 translate_action.
690
6912006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
692
693 Rename %before-definitions to %start-header and %after-definitions to
694 %end-header. Don't use these declarations to separate pre-prologue
695 blocks from post-prologue blocks. Add new order-independent
696 declarations %before-header and %after-header as alternatives to the
697 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
698 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
699 * NEWS (2.3+): Update for these changes.
700 * data/glr.c (b4_before_definitions): Update to...
701 (b4_start_header): ... this.
702 (b4_after_definitions): Update to...
703 (b4_end_header): ... this.
704 * data/glr.cc: Likewise.
705 * data/lalr1.cc: Likewise.
706 * data/yacc.c: Likewise.
707 * doc/bison.texinfo (The prologue): Update names, and replace remaining
708 prologue blocks with %*-header declarations.
709 (Calc++ Parser): Likewise.
710 (Bison Declaration Summary): Update names.
711 (Bison Symbols): Update description.
712 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
713 (PERCENT_END_HEADER): ... this.
714 (PERCENT_BEFORE_DEFINITIONS): Update to...
715 (PERCENT_START_HEADER): ... this.
716 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
717 (declaration): Update token names and m4 macro names.
718 When parsing %end-header and %start-header, invoke translate_code
719 before muscle_code_grow, and no longer set global booleans to remember
720 whether these declarations have been seen.
721 Parse new %after-header and %before-header.
722 * src/reader.c (before_definitions, after_definitions): Remove.
723 (prologue_augment): Accept a new bool argument to specify whether to
724 augment the pre-prologue or post-prologue.
725 * src/reader.h (before_definitions, after_definitions): Remove these
726 extern's.
727 (prologue_augment): Add new bool argument.
728 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
729 (PERCENT_END_HEADER): ... this.
730 (PERCENT_BEFORE_DEFINITIONS): Update to...
731 (PERCENT_START_HEADER): ... this.
732 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
733 * tests/actions.at (Printers and Destructors): Update names.
734
7352006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
736
737 Add comparison operators for C++ location classes. Discussed at
738 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
739 * data/c++.m4 (b4_define_location_comparison): New boolean %define
740 declaration indicating whether filename_type has an operator==. If
741 filename_type is `std::string', it defaults to `1', `0' otherwise.
742 * data/location.cc: Iff b4_define_location_comparison is `1', add
743 operator== and operator!= for class position and for class location.
744
745 Some minor fixes.
746 * src/scan-action.l: Remove unused file.
747 * src/symtab.c (symbol_printer_set): Use printer_location not
748 destructor_location.
749 * src/symtab.h (struct symbol): Replace incorrect source comment for
750 printer members.
751 * tests/input.at (Incompatible Aliases): Update output with correct
752 printer location.
753
7542006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
755
756 Don't put the pre-prologue in the header file. For the yacc.c code
757 file and the glr.c header and code files, move the pre-prologue before
758 the token definitions. Add new %before-definitions and
759 %after-definitions to declare code that will go in both the header file
760 and code file. Discussed at
761 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
762 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
763 and
764 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
765 * NEWS (2.3+): Describe these changes.
766 * data/glr.c (b4_pre_prologue): Move from within to before...
767 (b4_shared_declarations): ... this.
768 Add new b4_before_definitions before b4_token_enums.
769 Add new b4_after_definitions at the end.
770 * data/glr.cc (b4_pre_prologue): Replace with...
771 (b4_before_definitions): ... this in the header file.
772 (b4_after_definitions): New near the end of the header file.
773 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
774 code file right before including the header file.
775 (b4_before_definitions): New in the previous position of
776 b4_pre_prologue in the header file.
777 (b4_after_definitions): New near the end of the header file.
778 * data/yacc.c: Clean up some m4 quoting especially in the header file.
779 (b4_token_enums_defines): In the code file, move to right before
780 YYSTYPE for consistency with the header file.
781 (b4_before_definitions): New right before b4_token_enums_defines in
782 both the header and code file.
783 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
784 header and code file.
785 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
786 of prologues for %union dependencies.
787 (Bison Declaration Summary): In %defines description, mention the
788 effect of %before-definitions and %after-definitions on the header
789 file.
790 (Calc++ Parser): Forward declare driver in a %before-definitions rather
791 than in the pre-prologue so that make check succeeds.
792 (Bison Symbols): Add entries for %before-definitions and
793 %after-definitions.
794 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
795 %before-definitions.
796 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
797 (declaration): Parse those declarations and append to
798 b4_before_definitions and b4_after_definitions, respectively.
799 * src/reader.c (before_definitions, after_definitions): New bools to
800 track whether those declarations have been seen.
801 (prologue_augment): Add to the post-prologue if %union,
802 %before-definitions, or %after-definitions has been seen.
803 * src/reader.h (before_definitions, after_definitions): New extern's.
804 * src/scan-gram.l: Scan the new declarations.
805 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
806 prologue block in a %before-definitions or a %after-definitions based
807 on whether the %union is declared.
808 * tests/regression.at (Early token definitions with --yacc, Early token
809 definitions without --yacc): Move tests for token definitions into the
810 post-prologue since token names are no longer defined in the
811 pre-prologue.
812
8132006-06-20 Akim Demaille <akim@epita.fr>
814
815 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
816 (symbol_get): Use it.
817 * src/parse-gram.y: Use it.
818
8192006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
820
821 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
822 build succeeds when configured with --enable-gcc-warnings.
823
8242006-06-19 Paul Eggert <eggert@cs.ucla.edu>
825
826 * src/parse-gram.y (char_name): New function.
827 (CHAR, STRING, string_content): For %printer, properly escape.
828 (ID): Prefer fputs to fprintf.
829 (id): Reindent to be consistent with other rules.
830 Properly quote char.
831
832 The Translation Project changed its way of publishing translations
833 to maintainers. I haven't received any responses to my request
834 for supporting the old way, or for documenting the new way. I
835 have modified 'bootstrap' to use screen scraping
836 (in this case, HTML scraping). This is unreliable and inelegant,
837 but I don't see any better way. Yuck.
838 * bootstrap (TP_URL, WGET_COMMAND): New vars.
839 (get_translations): New function, which uses HTML scraping to
840 deduce locations of latest translations.
841 Use this function to grab both bison and bison-runtime .po files.
842 Don't bother priming the pump for the runtime-po domain any more,
843 as it's now translated better than bison is.
844
8452006-06-19 Akim Demaille <akim@epita.fr>
846
847 * src/scan-gram.l: No longer "parse" things after `%union' until
848 `{'. Rather, return a single "%union" token.
849 No longer make symbols: return strings, and leave the conversion
850 to symbols to the parser.
851 (SC_PRE_CODE, token_type): Remove.
852 * src/parse-gram.y (%union): New field `character'.
853 Sort tokens.
854 (CHAR): New token.
855 (ID, ID_COLON): Now that the scanner no longer makes them
856 identifiers, adjust all uses to invoke symbol_get.
857 (id_colon): New, wraps the conversion from string to symbol.
858 (%union): Accept a possible union_name.
859 (symbol): Now can be a char.
860 * data/c.m4 (b4_union_name): Leave a default value.
861 * data/glr.c, data/yacc.c: Use it.
862
8632006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
864
865 For associating token numbers with token names for "yacc.c", don't use
866 #define statements unless `--yacc' is specified; always use enum
867 yytokentype. Most important discussions start at:
868 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
869 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
870 and
871 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
872 * NEWS (2.3+): Mention.
873 * data/c.m4 (b4_yacc_if): New.
874 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
875 token #define's.
876 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
877 on token name definitions.
878 * src/getargs.c (usage): Capitalize `Yacc' in English.
879 * src/output.c (prepare): Define b4_yacc_flag.
880 * tests/regression.at (Early token definitions): Test that tokens names
881 are defined before the pre-prologue not just before the post-prologue.
882 Remove this test case and copy to...
883 (Early token definitions with --yacc): ... this to test #define's.
884 (Early token definitions without --yacc): ... and this to test enums.
885
8862006-06-11 Paul Eggert <eggert@cs.ucla.edu>
887
888 * NEWS: Reword the post-2.3 change to not be so optimistic about
889 removing the old "look-ahead" spelling.
890 Update previous look-ahead/lookahead change reports.
891 * REFERENCES: look-ahead -> lookahead (since that's
892 what he actually wrote).
893 * doc/refcard.tex: look ahead -> lookahead,
894 look-ahead -> lookahead
895
8962006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
897
898 For consistency, use `lookahead' instead of `look-ahead' or
899 `look_ahead'. Discussed starting at
900 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
901 and then at
902 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
903 * NEWS: For the next release, note the change to `--report'.
904 * TODO, doc/bison.1: Update English.
905 * doc/bison.texinfo: Update English.
906 (Understanding Your Parser, Bison Options): Document as
907 `--report=lookahead' rather than `--report=look-ahead'.
908 * src/conflicts.c: Update English in comments.
909 (lookahead_set): Rename from look_ahead_set.
910 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
911 (resolve_sr_conflict): Rename local look_ahead_tokens to
912 lookahead_tokens, and update other uses.
913 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
914 count_rr_conflicts, conflicts_free): Update uses.
915 * src/getargs.c (report_args): Move "lookahead" before alternate
916 spellings.
917 (report_types): Update uses.
918 (usage): For `--report' usage description, state `lookahead' spelling
919 rather than `look-ahead'.
920 * src/getargs.h (report.report_lookahead_tokens): Rename from
921 report_look_ahead_tokens.
922 * src/lalr.c: Update English in comments.
923 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
924 (state_lookahead_tokens_count): Rename from
925 state_look_ahead_tokens_count.
926 Rename local n_look_ahead_tokens to n_lookahead_tokens.
927 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
928 Rename local n_look_ahead_tokens to n_lookahead_tokens.
929 Update other uses.
930 Update English in output.
931 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
932 * src/print.c: Update English in comments.
933 (lookahead_set): Rename from look_ahead_set.
934 (print_reduction): Rename argument lookahead_token from
935 look_ahead_token.
936 (print_core, state_default_rule, print_reductions, print_results):
937 Update uses.
938 * src/print_graph.c: Update English in comments.
939 (print_core): Update uses.
940 * src/state.c: Update English in comments.
941 (reductions_new): Update uses.
942 (state_rule_lookahead_tokens_print): Rename from
943 state_rule_look_ahead_tokens_print, and update other uses.
944 * src/state.h: Update English in comments.
945 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
946 (state_rule_lookahead_tokens_print): Rename from
947 state_rule_look_ahead_tokens_print.
948 * src/tables.c: Update English in comments.
949 (conflict_row, action_row): Update uses.
950 * tests/glr-regression.at
951 (Incorrect lookahead during deterministic GLR,
952 Incorrect lookahead during nondeterministic GLR): Rename
953 print_look_ahead to print_lookahead.
954 * tests/torture.at: Update English in comments.
955 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
956 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
957 (Many lookahead tokens): Update uses.
958 * data/glr.c: Update English in comments.
959 * lalr1.cc: Likewise.
960 * yacc.c: Likewise.
961 * src/conflicts.h: Likewise.
962 * src/lalr.h: Likewise.
963 * src/main.c: Likewise.
964 * src/output.c: Likewise.
965 * src/parse-gram.c: Likewise.
966 * src/tables.h: Likewise.
967 * tests/calc.at: Likewise.
968
9692006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
970
971 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
972
9732006-06-07 Paul Eggert <eggert@cs.ucla.edu>
974
975 * TODO: Add request from Nelson H. F. Beebe to be able to install
976 Bison without installing the yacc script.
977
9782006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
979
980 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
981 and yytext if they're already #define'd.
982 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
983 * src/scan-code-c.c: ... here.
984 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
985 <config.h>.
986
9872006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
988
989 Get Bison to build again when configured with --enable-gcc-warnings.
990 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
991 missing #include's.
992 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
993 loc argument as it shadows a global.
994 * src/scan-gram.l: Remove stray comma that prevents boundary_set
995 invocation.
996
997 * src/.cvsignore: Add scan-code.c.
998
9992006-06-07 Akim Demaille <akim@epita.fr>
1000
1001 * src/scan-gram.l: Move the "add a trailing ; to actions" code
1002 to...
1003 * src/scan-code.l: here.
1004 * tests/input.at (Torturing the Scanner): Fix another location
1005 error.
1006
10072006-06-07 Akim Demaille <akim@epita.fr>
1008
1009 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
1010
10112006-06-06 Akim Demaille <akim@epita.fr>
1012
1013 Extract the parsing of user actions from the grammar scanner.
1014 As a consequence, the relation between the grammar scanner and
1015 parser is much simpler. We can also split "composite tokens" back
1016 into simple tokens.
1017 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
1018 * src/scan-gram.l (add_column_width, adjust_location): Move to and
1019 rename as...
1020 * src/location.h, src/location.c (add_column_width)
1021 (location_compute): these.
1022 Fix the column count: the initial column is 0.
1023 (location_print): Be robust to ending column being 0.
1024 * src/location.h (boundary_set): New.
1025 * src/main.c: Adjust to scanner_free being renamed as
1026 gram_scanner_free.
1027 * src/output.c: Include scan-code.h.
1028 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
1029 Use boundary_set.
1030 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
1031 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
1032 which is now, again, a separate token.
1033 Adjust all dependencies.
1034 Whereever actions with $ and @ are used, use translate_code.
1035 (action): Remove this nonterminal which is now useless.
1036 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
1037 (grammar_current_rule_action_append): Use translate_code.
1038 (packgram): Bound check ruleno, itemno, and rule_length.
1039 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
1040 (last_string, last_braced_code_loc, max_left_semantic_context)
1041 (scanner_initialize, scanner_free, scanner_last_string_free)
1042 (gram_out, gram_lineno, YY_DECL_): Move to...
1043 * src/scan-gram.h: this new file.
1044 (YY_DECL): Rename as...
1045 (GRAM_DECL): this.
1046 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
1047 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
1048 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
1049 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
1050 Move these declarations, and...
1051 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
1052 these to...
1053 * src/flex-scanner.h: this new file.
1054 * src/scan-gram.l (rule_length, rule_length_overflow)
1055 (increment_rule_length): Remove.
1056 (last_braced_code_loc): Rename as...
1057 (gram_last_braced_code_loc): this.
1058 Adjust to the changes of the parser.
1059 Move all the handling of $ and @ into...
1060 * src/scan-code.l: here.
1061 * src/scan-gram.l (handle_dollar, handle_at): Remove.
1062 (handle_action_dollar, handle_action_at): Move to...
1063 * src/scan-code.l: here.
1064 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
1065 scan-code.h, scan-code-c.c, scan-gram.h.
1066 (EXTRA_bison_SOURCES): Add scan-code.l.
1067 (BUILT_SOURCES): Add scan-code.c.
1068 (yacc): Be robust to white spaces.
1069
1070 * tests/conflicts.at, tests/input.at, tests/reduce.at,
1071 * tests/regression.at: Adjust the column numbers.
1072 * tests/regression.at: Adjust the error message.
1073
10742006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1075
1076 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1077 Use Akim's wording from
1078 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
1079
10802006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1081
1082 Between Bison releases, manually append `+' to the previous Bison
1083 release number, and use that as a signal to automatically print the
1084 ChangeLog's CVS Id keyword from --version. Discussed starting at
1085 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
1086 * ChangeLog: Add Id header.
1087 * configure.ac (AC_INIT): Append `+' to `2.3'.
1088 * src/.cvsignore: Add revision.c.
1089 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
1090 (BUILT_SOURCES): Add revision.c.
1091 (revision.c): New target rule. This file defines a new global variable
1092 named revision. It initializes it with either the Id from ChangeLog
1093 or, if VERSION doesn't contain `+', with the empty string.
1094 * src/getargs.c (version): Print the value of revision.
1095 * src/revision.h: Extern revision.
1096
10972006-06-05 Paul Eggert <eggert@cs.ucla.edu>
1098
1099 * NEWS: Version 2.3.
1100 * configure.ac (AC_INIT): Likewise.
1101
11022006-05-30 Paul Eggert <eggert@cs.ucla.edu>
1103
1104 * data/glr.c (YYRECOVERING): Define to be a function-like macro
1105 with no arguments, not as an object-like macro. This is for
1106 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
1107 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
1108 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
1109 Document this.
1110
11112006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
1112
1113 * src/getargs.c (usage): Back out yesterday's modification of the
1114 --help output so that we don't have to wait for translation before
1115 releasing 2.3.
1116
11172006-05-29 Paul Eggert <eggert@cs.ucla.edu>
1118
1119 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
1120 Problem reported by Akim Demaille.
1121
11222006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
1123
1124 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1125
11262006-05-26 Paul Eggert <eggert@cs.ucla.edu>
1127
1128 * data/yacc.c (yy_reduce_print): Omit trailing white space in
1129 generated source code. Problem reported by Frans Englich in
1130 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
1131
11322006-05-22 Paul Eggert <eggert@cs.ucla.edu>
1133
1134 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
1135 shell, not within 'make', so that 'make' by an ordinary builder
1136 (using GNU make) does not worry about configuring gzip. This also
1137 works around a bug reported independently by Keith Thompson and by
1138 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
1139 stderr rather than stdout, messing up the build logs.
1140
11412006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1142
1143 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
1144 to make sure that YYID will never be unused. This fixes a 'make
1145 maintainer-check' failure caused by the recent changes to the 'Trivial
1146 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
1147 not used.
1148 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
1149
11502006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1151
1152 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
1153 state before an empty RHS is always resolved here. Only the location
1154 of that state is guaranteed to be resolved, and that's enough. This
1155 fixes the remaining bug reported by Derek M. Jones in
1156 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1157 * tests/glr-regression.at (Uninitialized location when reporting
1158 ambiguity): Test the above case.
1159 Also, the embedded comments in this test case claim it checks the case
1160 of an empty RHS that has inherited the initial location. However, the
1161 corresponding LHS was already resolved, so yyresolveLocations didn't
1162 actually have reason to modify it. Fix this by forcing
1163 nondeterministic operation at the beginning of the parse.
1164
11652006-05-20 Paul Eggert <eggert@cs.ucla.edu>
1166
1167 * data/c.m4 (b4_yy_symbol_print_generate):
1168 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
1169 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
1170 of the bugs reported today by Derek M Jones in
1171 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1172 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
1173 defined to be a type name without parens or brackets.
1174 (Location Type): Similarly for YYLTYPE.
1175 * tests/regression.at (Trivial grammars): Put in a test for this
1176 bug that will be caught by 'make maintainer-check' (though not,
1177 alas, by 'make check' unless your compiler is picky).
1178
11792006-05-19 Paul Eggert <eggert@cs.ucla.edu>
1180
1181 * NEWS: Version 2.2.
1182 * configure.ac (AC_INIT): Likewise.
1183
11842006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
1185
1186 * data/glr.c (yyreportTree): Make room in yystates for the state
1187 preceding the RHS. This fixes the segmentation fault reported by Derek
1188 M. Jones in
1189 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
1190 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
1191 to the user. Reported for yyreportTree by Derek M. Jones later in the
1192 same thread.
1193 * THANKS: Add Derek M. Jones.
1194 Update my email address.
1195 Fix typo in Steve Murphy's name.
1196
11972006-05-14 Paul Eggert <eggert@cs.ucla.edu>
1198
1199 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
1200 checking against YYLAST that caused the parser to miss a potential
1201 alternative in its diagnostic.
1202 Problem reported by Maria Jose Moron Fernandez in
1203 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
1204 * data/lalr1.cc (yysyntax_error_): Likewise.
1205 * data/yacc.c (yysyntax_error): Likewise.
1206 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
1207 tokens, in case we run into an older C compiler.
1208 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
1209 Use them to check for the off-by-one error fixed above.
1210
1211 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
1212 YYSIZE_T, not size_t.
1213 * tests/regression.at (Trivial grammars): New test, to catch
1214 the error fixed by the above patch.
1215
12162006-05-14 Akim Demaille <akim@lrde.epita.fr>
1217
1218 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
1219 scheme.
1220 Reported by Steve Murphy.
1221
12222006-05-14 Akim Demaille <akim@lrde.epita.fr>
1223
1224 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
1225 * data/glr.cc: b4_location_flag is now b4_locations_flag.
1226
12272006-05-14 Akim Demaille <akim@lrde.epita.fr>
1228
1229 Implement --trace=m4.
1230 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
1231 * src/output.c (output_skeleton): When set, pass -dV to m4.
1232
1233 Factor the handling of flags in m4.
1234 * src/output.c (prepare): Rename the muscle names debug, defines,
1235 error_verbose to debug_flag, defines_flag, error_verbose_flag.
1236 * data/c.m4: Adjust.
1237 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
1238 Use b4_define_flag_if to define other b4_FLAG_if macros.
1239 (b4_location_if): As a consequence, rename as...
1240 (b4_locations_if): this, for consistency.
1241 Adjust all the skeletons.
1242
12432006-05-14 Akim Demaille <akim@lrde.epita.fr>
1244
1245 * etc/bench.pm: Shorten bench names.
1246
12472006-05-14 Akim Demaille <akim@lrde.epita.fr>
1248
1249 * src/output.h, src/output.c (error_verbose): Move to...
1250 * src/getargs.h, src/getargs.c: here.
1251 Sort the flags.
1252 Adjust dependencies.
1253
12542006-05-13 Paul Eggert <eggert@cs.ucla.edu>
1255
1256 * data/c.m4 (b4_copyright): Put the special exception for Bison
1257 skeletons here, so we don't have to put it in each skeleton. All
1258 uses changed. Suggested by Akim Demaille. Also, wrap the
1259 copyright notice, in case it is longer than 80 columns. Replace
1260 comma by newline after title.
1261
12622006-05-11 Paul Eggert <eggert@cs.ucla.edu>
1263
1264 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
1265 incompatibility, not a bug. Mention that it wasn't fixed as of
1266 flex 2.5.33.
1267
12682006-05-11 Akim Demaille <akim@lrde.epita.fr>
1269
1270 * examples/extexi: Enforce the precedence of concatenation over
1271 >>.
1272 Reported by Tommy Nordgren.
1273
12742006-05-11 Akim Demaille <akim@lrde.epita.fr>
1275
1276 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
1277 with the member "token".
1278 Reported by Martin Nylin.
1279
12802006-05-08 Paul Eggert <eggert@cs.ucla.edu>
1281
1282 * data/glr.c: Switch to Bison 2.2 special-exception language in
1283 the copyright notice. Use more-regular format for titles and
1284 copyright notices.
1285 * data/glr.cc: Likewise.
1286 * data/location.cc: Likewise.
1287 * data/yacc.cc: Likewise.
1288 * doc/bison.texinfo (Conditions): Document this.
1289 * NEWS: likewise. Upgrade version to 2.2.
1290
12912006-04-27 Akim Demaille <akim@lrde.epita.fr>
1292
1293 * data/glr.cc: Remove dead code.
1294
12952006-04-25 Paul Eggert <eggert@cs.ucla.edu>
1296
1297 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
1298 that variable and the line breaks the bootstrap. Problem reported
1299 by Juan M. Guerrero.
1300
13012006-04-24 Akim Demaille <akim@lrde.epita.fr>
1302
1303 * doc/bison.texinfo (Multiple start-symbols): New.
1304
13052006-04-24 Akim Demaille <akim@lrde.epita.fr>
1306
1307 * etc/README, etc/bench.pl: New.
1308
13092006-04-03 Akim Demaille <akim@lrde.epita.fr>
1310
1311 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
1312 rule.
1313 Reported by Mickael Labau.
1314 * tests/input.at (Torturing the Scanner): Test it.
1315
13162006-03-16 Paul Eggert <eggert@cs.ucla.edu>
1317
1318 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
1319 Problem reported by Bob Rossi.
1320
13212006-03-13 Paul Eggert <eggert@cs.ucla.edu>
1322
1323 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
1324 and didn't really work.
1325 For the index, use @ifnotinfo, not @iftex.
1326 Minor cleanups of spacing and terminology.
1327
13282006-03-12 Akim Demaille <akim@lrde.epita.fr>
1329
1330 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
1331 of AT_NAME_PREFIX when %name-prefix is not used.
1332
13332006-03-12 Akim Demaille <akim@lrde.epita.fr>
1334
1335 Apply --prefix to C++ skeletons too: they change the namespace.
1336 The test suite already exercize these cases.
1337 * data/c++.m4 (b4_namespace): New.
1338 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
1339 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
1340 * data/yacc.c, data/glr.c: Remove a useless `[]'.
1341 * doc/bison.texinfo: Document it.
1342 (Option Cross Key): Use @multitable in all formats. It looks
1343 nicer, even in TeX outputs.
1344 (Rules): Use the same code whatever the output type is.
1345 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
1346 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
1347 * tests/calc.at: Use it, instead of hard coding `yy'.
1348
13492006-03-10 Akim Demaille <akim@lrde.epita.fr>
1350
1351 * TODO: Remove dead items.
1352
13532006-03-10 Akim Demaille <akim@lrde.epita.fr>
1354
1355 * doc/FAQ: Remove, merged into...
1356 * doc/bison.texinfo (FAQ): this.
1357 * doc/Makefile.am (EXTRA_DIST): Adjust.
1358
13592006-03-10 Akim Demaille <akim@lrde.epita.fr>
1360
1361 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
1362 even if empty.
1363 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
1364 * doc/bison.texinfo (Calc++ Scanner): Use it.
1365
13662006-03-09 Paul Eggert <eggert@cs.ucla.edu>
1367
1368 Fix two nits reported by twlevo, plus one more that I discovered.
1369
1370 * src/assoc.h (assoc_to_string): Give a name to the arg, as
1371 this is the usual Bison style.
1372 * src/location.h (location_print): Likewise.
1373
1374 * src/reader.h (token_name): Likewise.
1375
13762006-03-08 Paul Eggert <eggert@cs.ucla.edu>
1377
1378 Fix some nits reported by twlevo.
1379 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
1380 and "POSIX". Use more-modern syntax for URLs. Mention C++
1381 and ask for Java. Don't hardwire OS version numbers. Add
1382 copyright notice.
1383 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
1384 * src/conflicts.c (solved_conflicts_obstack): Now static.
1385
13862006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1387
1388 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
1389 page. Say "you can use it" not "you may use it" as on the web page;
1390 we're describing capabilities not granting permission.
1391
13922006-03-06 Paul Eggert <eggert@cs.ucla.edu>
1393
1394 * data/glr.c (yyresolveLocations): Rename local variables to avoid
1395 shadowing warnings. Use usual patter for iterating through RHS.
1396 * tests/glr-regression.at
1397 (Uninitialized location when reporting ambiguity):
1398 Modify yylex so that it uses its argument, rather than trying
1399 to rely on ARGSUSED (which doesn't work for gcc with warnings).
1400 const char -> char const.
1401
1402 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
1403 Don't use tabs inside commands; it messes up 'ps'.
1404 Problem reported by twlevo.
1405
14062006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
1407
1408 * tests/glr-regression.at (Uninitialized location when reporting
1409 ambiguity): New test case.
1410 * data/glr.c (yyresolveLocations): New function, which uses
1411 YYLLOC_DEFAULT.
1412 (yyresolveValue): Invoke yyresolveLocations before reporting an
1413 ambiguity.
1414 * doc/bison.texinfo (Default Action for Locations): Note
1415 YYLLOC_DEFAULT's usage for ambiguity locations.
1416 (GLR Semantic Actions): Cross-reference those notes.
1417
14182006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
1419
1420 * tests/glr-regression.at (Leaked semantic values when reporting
1421 ambiguity): Remove unnecessary union and type declarations.
1422 (Leaked lookahead after nondeterministic parse syntax error): New test
1423 case.
1424 * data/glr.c (yyparse): Check for zero stacks remaining before
1425 attempting to shift the lookahead so that you don't lose it.
1426
14272006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1428
1429 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
1430 * tests/glr-regression.at (Leaked semantic values when reporting
1431 ambiguity): New test case.
1432 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
1433 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
1434 now unnecessary yystackp parameter.
1435 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
1436 destructors can be called.
1437
1438 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
1439 in existing testcases.
1440
14412006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1442
1443 Don't leak semantic values for parent RHS when a user action cuts the
1444 parser, and clean up related code a bit.
1445 * tests/glr-regression.at (Leaked merged semantic value if user action
1446 cuts parse): Rename to...
1447 (Leaked semantic values if user action cuts parse): ... this. Add check
1448 for leaked parent RHS values.
1449 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
1450 between an unresolved state (non-empty chain of semantic options) and
1451 an incomplete one (signaled by an empty chain).
1452 (yyresolveStates): Document the interface. Move all manipulation of a
1453 successfully or unsuccessfully resolved yyGLRState to...
1454 (yyresolveValue): ... here so that yyresolveValue always leaves a
1455 yyGLRState with consistent data and thus is easier to understand.
1456 Remove the yyvalp and yylocp parameters since they are always just
1457 taken from the yys parameter. When reporting a discarded merged value
1458 in debugging output, note that it is incompletely merged. Document the
1459 interface.
1460 (yyresolveAction): If resolving any of the RHS states fails, destroy
1461 them all rather than leaking them. Thus, as long as user actions are
1462 written to clean up the RHS correctly, yyresolveAction always cleans up
1463 the RHS of a semantic option. Document the interface.
1464
14652006-02-27 Paul Eggert <eggert@cs.ucla.edu>
1466
1467 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
1468 led to a segmentation fault in GNU Pascal. Problem reported
1469 by Waldek Hebisch.
1470
14712006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
1472
1473 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
1474 mid-rule action inside a nonterminal symbol in order to declare a
1475 destructor for its semantic value.
1476
14772006-02-16 Paul Eggert <eggert@cs.ucla.edu>
1478
1479 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
1480 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
1481 __cplusplus && ! defined _STDLIB_H && !
1482 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
1483 defined free))]: Include <stdlib.h> rather than rolling our own
1484 declarations of malloc and free, to avoid problems with
1485 incompatible declarations (using 'throw') C++'s stdlib.h. This
1486 should fix Debian bug 340012
1487 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
1488 reported by Guillaume Melquiond.
1489
14902006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1491
1492 * NEWS: Clarify symbols versus types in unused-value warnings.
1493
1494 * configure.ac (AC_INIT): Bump version number.
1495
14962006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1497
1498 * NEWS: Version 2.1a.
1499 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
1500 since C99 requires this.
1501
15022006-02-11 Paul Eggert <eggert@cs.ucla.edu>
1503
1504 * m4/c-working.m4: New file.
1505 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
1506
15072006-02-10 Paul Eggert <eggert@cs.ucla.edu>
1508
1509 * Makefile.maint: Merge from coreutils.
1510
15112006-02-09 Paul Eggert <eggert@cs.ucla.edu>
1512
1513 More portability fixes for problems summarized by Nelson H. F. Beebe.
1514
1515 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
1516 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
1517 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
1518 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
1519 messes up because C++ code is compiled in 32-bit mode but linked
1520 in 64-bit mode.
1521
15222006-02-08 Paul Eggert <eggert@cs.ucla.edu>
1523
1524 More portability fixes for problems summarized by Nelson H. F. Beebe.
1525
1526 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
1527 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
1528
1529 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
1530 nodist_PROGRAMS, since we don't need to actually compile the
1531 example if we're just doing a plain 'make'. This avoids bothering
1532 the installer unnecessarily about problems due to weird C++
1533 compilers.
1534
15352006-02-06 Paul Eggert <eggert@cs.ucla.edu>
1536
1537 More portability fixes for problems summarized by Nelson H. F. Beebe.
1538
1539 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
1540 than #include "...", and compile with -I'.'. The old method was
1541 not portable, according to Posix and the C standard, and it does
1542 not work with Sun C 5.7, where previous #line directives affect
1543 the working directory used in later #include "..." directives.
1544
15452006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1546
1547 Various DJGGP specific issues in /djgpp
1548
15492006-02-02 Paul Eggert <eggert@cs.ucla.edu>
1550
1551 More portability fixes for problems summarized by Nelson H. F. Beebe.
1552
1553 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
1554 '#include <map>' works and that you can apply ++ to iterators.
1555
15562006-02-01 Paul Eggert <eggert@cs.ucla.edu>
1557
1558 Work around portability problems summarized by Nelson H. F. Beebe in
1559 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
1560
1561 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
1562 that '#include <string>' works.
1563
1564 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
1565 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
1566 "warning: sorry: semantics of inline function static data `const
1567 unsigned char translate_table[262]' are wrong (you'll wind up with
1568 multiple copies)".
1569
1570 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
1571 or, xor to not_, and_, or_, and xor_, respectively. This works
1572 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
1573 random system header somewhere that includes the equivalent of
1574 <iso646.h>.
1575
1576 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
1577 -E" works; it apparently doesn't work with PathScale EKO Compiler
1578 Suite Version 2.0.
1579
15802006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
1581
1582 During deterministic GLR operation, user actions should be able to
1583 influence the parse by changing yychar. To make this easier to fix and
1584 to make glr.c easier to evolve in general, don't maintain yytoken in
1585 parallel with yychar; just compute yytoken when needed.
1586 * tests/glr-regression.at (Incorrect lookahead during deterministic
1587 GLR): Check that setting yychar in a user action has the intended
1588 effect.
1589 * data/glr.c (yyGLRStack): Remove yytokenp member.
1590 (yyclearin): Don't set *yytokenp.
1591 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
1592 yychar rather than *yytokenp to determine the current lookahead.
1593 Compute yytoken locally when needed.
1594 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
1595 point to.
1596
1597 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
1598 after `--report' documentation.
1599
16002006-01-30 Paul Eggert <eggert@cs.ucla.edu>
1601
1602 * src/parse-gram.y (grammar_declaration): Location of printer
1603 symbol is @1, not list->location. Bug reported by twlevo.
1604 * tests/input.at (Incompatible Aliases): Adjust to above change.
1605
16062006-01-29 Paul Eggert <eggert@cs.ucla.edu>
1607
1608 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
1609 all the test at once. This makes the output easier to read in the
1610 normal case.
1611
1612 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
1613 got from <http://bro-ids.org/download.html>. The bug is that
1614 when two actions appeared in succession, the second one was
1615 scanned before the first one was added to the grammar rule
1616 as a midrule action. Bison then output the incorrect warning
1617 "parse.y:905.17-906.36: warning: unused value: $3".
1618 * src/parse-gram.y (BRACED_CODE, action): These are no longer
1619 associated with a value.
1620 (rhs): Don't invoke grammar_current_rule_action_append.
1621 (action): Invoke it here instead.
1622 * src/reader.c (grammar_midrule_action): Now extern.
1623 (grammar_current_rule_action_append): Don't invoke
1624 grammar_midrule_action; that is now the scanner's job.
1625 * src/reader.h (last_string, last_braced_code_loc):
1626 (grammar_midrule_action): New decls.
1627 * src/scan-gram.l (last_string): Now extern, sigh.
1628 (last_braced_code_loc): New extern variable.
1629 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
1630 rule already has an action.
1631 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
1632 * tests/input.at (AT_CHECK_UNUSED_VALUES):
1633 Add some tests to check that the above changes fixed the bug.
1634
16352006-01-27 Paul Eggert <eggert@cs.ucla.edu>
1636
1637 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
1638 All used changed. Check whether the symbol has a destructor,
1639 not whether it is typed.
1640 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
1641 that the values are still reported as unused. All line numbers
1642 adjusted.
1643
16442006-01-23 Paul Eggert <eggert@cs.ucla.edu>
1645
1646 Work around a bug in bro 0.8, which underparenthesizes its
1647 definition of YYLLOC_DEFAULT.
1648 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
1649 their arguments.
1650 * data/lalr1.cc: Likewise.
1651 * data/yacc.cc: Likewise.
1652
16532006-01-22 Paul Eggert <eggert@cs.ucla.edu>
1654
1655 Work around a bug in Pike 7.0, and give the Pike folks a
1656 better way to override the usual int widths.
1657 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
1658 user can override the types.
1659 (short): #undef, to work around a bug in Pike 7.0.
1660 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
1661 (union yyalloc.yyss): Use yytype_int16 rather than short.
1662 All uses changed.
1663 (yysigned_char): Remove.
1664 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
1665 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
1666 * tests/regression.at (Web2c Actions): Adjust to above changes.
1667
1668 * src/reader.c (check_and_convert_grammar): New function.
1669 (reader): Close the input file even if something went wrong during
1670 parsing. Minor file descriptor leak reported by twlevo.
1671
1672 * src/assoc.c (assoc_to_string): Use a default: abort (); case
1673 to pacify gcc -Wswitch-default.
1674 * src/scan-gram.l (adjust_location): Use a default: break; case
1675 to pacify gcc -Wswitch-default.
1676 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
1677 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
1678 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
1679 Move these decls to scan-skel.l, since they don't need to be
1680 visible elsewhere.
1681 * src/scan-skel.l: Accept the above decls.
1682 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
1683 is used.
1684
16852006-01-21 Paul Eggert <eggert@cs.ucla.edu>
1686
1687 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
1688 since we don't want to insist on a version number at the start
1689 of the changelog every time.
1690 * Makefile.maint: Sync from coreutils a bit better.
1691 (sc_trailing_blank): Renamed from sc_trailing_space.
1692 All uses changed.
1693 (sc_no_if_have_config_h, sc_require_config_h):
1694 (sc_prohibit_assert_without_use): New rules.
1695 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
1696 (sc_dd_max_sym_length): Fix leading spaces in rule.
1697 (sc_system_h_headers): Prefix with @.
1698 (sc_useless_cpp_parens, m4-check): Output line numbers.
1699 (changelog-check): Allow version only in head.
1700 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
1701 satisfy new Makefile.maint rule.
1702 * data/glr.c: Likewise.
1703 * data/glr.cc: Likewise.
1704 * data/lalr1.cc: Likewise.
1705 * data/yacc.c: Likewise.
1706 * lib/ebitsetv.c: Likewise.
1707 * lib/lbitset.c: Likewise.
1708 * lib/subpipe.c: Likewise.
1709 * lib/timevar.c: Likewise.
1710 * src/system.h: Likewise.
1711 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
1712 * djgpp/Makefile.maint: Add copyright notice.
1713 * djgpp/README.in: Likewise.
1714 * djgpp/config.bat: Likewise.
1715 * djgpp/config.site: Likewise.
1716 * djgpp/config_h.sed: Likewise.
1717 * djgpp/djunpack.bat: Likewise.
1718 * djgpp/config.sed: Fix copyright notice to match standard format.
1719 * djgpp/subpipe.h: Likewise.
1720 * lib/bitsetv-print.c: Likewise.
1721 * lib/bitsetv.c: Likewise.
1722 * lib/subpipe.h: Likewise.
1723 * lib/timevar.c: Likewise.
1724 * lib/timevar.h: Likewise.
1725 * djgpp/subpipe.c: Use standard recipe for config.h.
1726 * lib/abitset.c: Likewise.
1727 * lib/bitset.c: Likewise.
1728 * lib/bitset_stats.c: Likewise.
1729 * lib/bitsetv-print.c: Likewise.
1730 * lib/bitsetv.c: Likewise.
1731 * lib/ebitsetv.c: Likewise.
1732 * lib/get-errno.c: Likewise.
1733 * lib/lbitset.c: Likewise.
1734 * lib/subpipe.c: Likewise.
1735 * lib/timevar.c: Likewise.
1736 * lib/vbitset.c: Likewise.
1737 * tests/local.at: Likewise.
1738 * src/scan-gram.l: Don't include verify.h, since system.h does
1739 that for us.
1740 * .x-sc_require_config_h: New file.
1741 * .x-sc_unmarked_diagnostics: New file.
1742
17432006-01-20 Paul Eggert <eggert@cs.ucla.edu>
1744
1745 Be a bit more systematic about using 'abort'.
1746 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
1747 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
1748 Put 'default: abort ();' before some other case, to satisfy older
1749 pedantic compilers.
1750 * lib/bitset_stats.c (bitset_stats_init): Likewise.
1751 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
1752 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
1753 * src/conflicts.c (resolve_sr_conflict): Likewise.
1754 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
1755 (get_decision_str, get_orientation_str, get_node_alignment_str):
1756 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
1757 (get_linestyle_str, get_arrowstyle_str): Likewise.
1758 * src/conflicts.c (resolve_sr_conflict):
1759 Use a default case rather than one for the one remaining enum
1760 value, to catch invalid enum values as well.
1761 * src/lalr.c (set_goto_map, map_goto):
1762 Prefer "assert (FOO);" to "if (!FOO) abort ();".
1763 * src/nullable.c (nullable_compute, token_definitions_output):
1764 Likewise.
1765 * src/reader.c (packgram, reader): Likewise.
1766 * src/state.c (transitions_to, state_new, state_reduction_find):
1767 Likewise.
1768 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
1769 (symbol_pack): Likewise.
1770 * src/tables.c (conflict_row, pack_vector): Likewise.
1771 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
1772 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
1773 * src/system.h: Don't include <assert.h>.
1774 (assert): New macro.
1775
1776 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
1777 (Destructor Decl, Parser Function, Pure Calling):
1778 Describe rules for braces inside C code more carefully.
1779
17802006-01-19 Paul Eggert <eggert@cs.ucla.edu>
1781
1782 Fix some porting glitches found by Nelson H. F. Beebe.
1783 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
1784 compilers that don't understand that abort () does not return.
1785 * src/state.c (transitions_to): Likewise.
1786 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
1787 that '#include <cstdlib>' works.
1788 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
1789 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
1790 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
1791 for the benefit of some pre-C99 compilers.
1792
1793 * bootstrap: Undo changes to gnulib files that autoreconf made.
1794
1795 Minor fixups to get 'make maintainer-check' to work.
1796 * configure.ac: Don't use -Wnested-externs, as it's incompatible
1797 with the new verify.h implementation.
1798 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
1799 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
1800 * data/yacc.c (YYUSE): Likewise.
1801 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
1802 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
1803 * src/parse-gram.y (declaration): Don't pass a string constant
1804 to a function that expects char *, since GCC might complain
1805 about the constant value.
1806 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
1807 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
1808 before #defining them.
1809 * tests/glr-regression.at
1810 (Incorrectly initialized location for empty right-hand side in GLR):
1811 In yyerror, use the msg arg.
1812 (Corrupted semantic options if user action cuts parse):
1813 (Incorrect lookahead during deterministic GLR):
1814 (Incorrect lookahead during nondeterministic GLR):
1815 Don't name a local var 'index'; it shadows string.h's 'index'.
1816
18172006-01-19 Akim Demaille <akim@epita.fr>
1818
1819 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
1820 location, not just parts of it.
1821
18222006-01-18 Paul Eggert <eggert@cs.ucla.edu>
1823
1824 * NEWS: Document the fact that multiple %unions are now allowed.
1825 * doc/bison.texinfo (Union Decl): Likewise.
1826 * TODO: This feature is now implemented, so remove it from
1827 the wishlist.
1828
1829 * Makefile.maint: Merge with coreutils Makefile.maint.
1830 (CVS_LIST): Use build-aux version if available.
1831 (VERSION_REGEXP): New macro.
1832 (syntax-check-rules): Add sc_no_if_have_config_h,
1833 sc_prohibit_assert_without_use, sc_require_config_h,
1834 sc_useless_cpp_parens.
1835 (sc_obsolete_symbols): Check for O_NDELAY.
1836 (sc_dd_max_sym_length): Track coreutils.
1837 (sc_unmarked_diagnostics): Look in all files, not just *.c.
1838 (sc_useless_cpp_parens): New rule.
1839 (news-date-check): Look for version or today's date.
1840 (changelog-check): Don't require version number near head.
1841 (copyright-check): Use current year instead of hardwiring 2005.
1842 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
1843 (announcement): Add --gpg-key-ID.
1844
1845 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
1846 with "file system".
1847
1848 Avoid undefined behavior that addressed just before the start of an
1849 array. Problem reported by twlevo.
1850 * src/reader.c (packgram): Prepend a new sentinel before ritem.
1851 * src/lalr.c (build_relations): Rely on new sentinel.
1852 * src/gram.c (gram_free): Adjust to new sentinel.
1853
18542006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
1855
1856 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
1857 yylookaheadNeeds. All uses updated.
1858 (yysplitStack): Rename local yynewLookaheadStatuses to
1859 yynewLookaheadNeeds.
1860 * data/glr-regression.at (Incorrect lookahead during nondeterministic
1861 GLR): In comments, change `lookahead status' to `lookahead need'.
1862
18632006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1864
1865 * data/glr.c (yysplitStack): A little stylistic rewrite.
1866
18672006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1868
1869 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
1870
18712006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
1872
1873 * doc/bison.texinfo: Fix some typos.
1874 (GLR Semantic Actions): New subsection discussing special
1875 considerations because GLR semantic actions might be deferred.
1876 (Actions): Mention look-ahead usage of yylval.
1877 (Actions and Locations): Mention look-ahead usage of yylloc.
1878 (Special Features for Use in Actions): Add YYEOF entry and mention it
1879 in the yychar entry.
1880 In the yychar entry, remove mention of the local yychar case (pure
1881 parser) since this is irrelevant information when writing semantic
1882 actions and since it's already discussed in `Bison Symbols' where
1883 yychar is otherwise described as an external variable.
1884 In the yychar entry, don't call it the `current' look-ahead since it
1885 isn't when semantic actions are deferred.
1886 In the yychar and yyclearin entries, add note about deferred semantic
1887 actions.
1888 Add yylloc and yylval entries discussing look-ahead usage.
1889 (Look-Ahead Tokens): When discussing yychar, don't call it the
1890 `current' look-ahead, and do mention yylval and yylloc.
1891 (Error Recovery): Cross-reference `Action Features' when mentioning
1892 yyclearin.
1893 (Bison Symbols): In the yychar entry, don't call it the `current'
1894 look-ahead.
1895 In the yylloc and yylval entries, mention look-ahead usage.
1896
18972006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
1898
1899 * tests/glr-regression.at: Update copyright year to 2006.
1900
19012006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1902
1903 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
1904 use during nondeterministic operation to track which stacks have
1905 actually needed the current lookahead.
1906 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
1907 Allocate, deallocate, resize, and otherwise shuffle space for
1908 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
1909 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
1910 appropriately during nondeterministic operation.
1911 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
1912 members to store the current lookahead to be used by the deferred
1913 user action.
1914 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
1915 from which the RHS is taken. Set the lookahead members of the new
1916 yySemanticOption according to the lookahead status for stack yyk.
1917 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
1918 yyaddDeferredAction.
1919 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
1920 members of yySemanticOption before invoking yyuserAction, and then set
1921 them back to their current values afterward.
1922 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
1923 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
1924 * tests/glr-regression.at: Remove `.' from the ends of recent test case
1925 titles for consistency.
1926 (Leaked merged semantic value if user action cuts parse): In order to
1927 suppress lint warnings, use arguments in merge function, and assign
1928 char value < 128 in main.
1929 (Incorrect lookahead during deterministic GLR): New test case.
1930 (Incorrect lookahead during nondeterministic GLR): New test case.
1931
19322006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1933
1934 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
1935 !yyvaluep as signal that no semantic value is available to print.
1936 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
1937 to print a semantic value.
1938
19392006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1940
1941 * tests/glr-regression.at: For consistency with my newer test cases,
1942 don't thank myself.
1943
19442006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
1945
1946 * data/glr.c (yyresolveValue): When merging semantic options, if at
1947 least one user action succeeds but a later one cuts the parse, then
1948 destroy the semantic value before returning rather than leaking it.
1949 (yyresolveStates): If a user action cuts the parse and thus
1950 yyresolveValue fails, ignore the (unset) semantic value rather than
1951 corrupting the yyGLRState, and empty the semantic options list since
1952 the user actions should have called all necessary destructors.
1953 Simplify code with YYCHK.
1954 * tests/glr-regression.at (Corrupted semantic options if user action
1955 cuts parse): New test case.
1956 (Undesirable destructors if user action cuts parse): New test case.
1957 Before applying any of this patch, this test case never actually failed
1958 for me... but only because the corrupted semantic options usually
1959 masked this bug.
1960 (Leaked merged semantic value if user action cuts parse): New test
1961 case.
1962
19632006-01-05 Akim Demaille <akim@epita.fr>
1964
1965 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
1966
19672006-01-04 Paul Eggert <eggert@cs.ucla.edu>
1968
1969 * data/c.m4 (b4_c_modern): New macro, with a new provision for
1970 _MSC_VER. Problem reported by Cenzato Marco.
1971 (b4_c_function_def): Use it.
1972 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
1973 b4_c_modern.
1974 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
1975 than rolling our own.
1976
19772006-01-04 Akim Demaille <akim@epita.fr>
1978
1979 Also warn about non-used mid-rule values.
1980 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
1981 member.
1982 (symbol_list_new): Adjust.
1983 * src/reader.c (symbol_typed_p): New.
1984 (grammar_rule_check): Use it.
1985 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
1986 Check its rule.
1987 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
1988 Use it.
1989 * tests/actions.at (Exotic Dollars): Adjust.
1990
19912006-01-04 Akim Demaille <akim@epita.fr>
1992
1993 * src/reader.c (grammar_midrule_action): If $$ is set in a
1994 mid-rule, move the `used' bit to its lhs.
1995 * tests/input.at (Unused values): New.
1996 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
1997
19982006-01-03 Paul Eggert <eggert@cs.ucla.edu>
1999
2000 * doc/bison.texinfo (Bison Options): Say more accurately what
2001 --yacc does.
2002 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
2003 about declarations in the grammar when in Yacc mode, as POSIX does
2004 not require a diagnostic when the grammar uses extensions.
2005
2006 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
2007
2008 Warn about dubious constructions like "%token T T".
2009 Reported by twlevo.
2010 * src/symtab.h (struct symbol.declared): New member.
2011 * src/symtab.c (symbol_new): Initialize it to false.
2012 (symbol_class_set): New arg DECLARING, specifying whether
2013 this is a declaration that we want to warn about, if there
2014 is more than one of them. All uses changed.
2015
2016 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
2017 Allow multiple %union directives, whose contents concatenate.
2018 * src/parse-gram.y (grammar_declaration): Likewise.
2019 Use muscle_code_grow, so that we don't need stype_line any more.
2020 All uses changed.
2021
2022 * src/muscle_tab.c (muscle_grow): Fix comment.
2023
2024 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
2025 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
2026 Update copyright year to 2006.
2027
20282006-01-03 Akim Demaille <akim@epita.fr>
2029
2030 Have glr.cc pass (some of) the calc.at tests.
2031 * data/glr.cc (b4_parse_param_orig): New.
2032 (b4_parse_param): Improve its definition, and bound it more
2033 clearly in the skeleton.
2034 (b4_epilogue): Append, instead of prepending, in order to keep
2035 #line consistency.
2036 Simplify the generation of auxiliary functions: locations and
2037 purity are mandated.
2038 (b4_global_tokens_and_yystype): Honor it.
2039 * data/location.cc (c++.m4): Don't include it.
2040 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
2041 and AT_SKEL_CC_IF.
2042 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
2043 AT_LALR1_CC_IF.
2044 Be sure to initialize the first position's filename.
2045 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
2046 mandated anyway.
2047 (AT_CHECK_CALC_GLR_CC): New.
2048 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
2049
20502006-01-02 Akim Demaille <akim@epita.fr>
2051
2052 * src/output.c (output_skeleton): Don't hard wire the inclusion of
2053 c.m4.
2054 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
2055 * data/glr.cc: Do not include stack.hh.
2056
20572006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2058
2059 * data/glr.c: Reformat whitespace with tabs.
2060 (b4_lpure_formals): Remove this unused m4 macro.
2061 * tests/cxx-type.at: Reformat whitespace with tabs.
2062 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
2063 since it's a member. Rename type to isNterm for clarity.
2064
20652005-12-29 Akim <akim@sulaco.local>
2066
2067 Let glr.cc catch up with symbol_value_print.
2068 * data/glr.cc (b4_yysymprint_generate): Replace by...
2069 (b4_yy_symbol_print_generate): this.
2070 (yy_symbol_print, yy_symbol_value_print): Declare them.
2071
20722005-12-28 Paul Eggert <eggert@cs.ucla.edu>
2073
2074 * src/location.h (boundary): Note that a line or column equal
2075 to INT_MAX indicates an overflow.
2076 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
2077 (rule_length_overflow, increment_rule_length, add_column_width):
2078 New functions.
2079 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
2080 (<SC_BRACED_CODE>"}"):
2081 Use increment_rule_length rather than incrementing it by hand.
2082 (adjust_location, handle_syncline): Diagnose overflow.
2083 (handle_action_dollar, handle_action_at):
2084 Fix bug with monstrosities like $-2147483648.
2085 Remove now-unnecessary checks.
2086 (scan_integer): Verify assumptions and remove now-unnecessary checks.
2087 (convert_ucn_to_byte): Verify assumptions.
2088 (handle_syncline): New arg LOC. All callers changed.
2089 Don't store through a value derived from char const * pointer.
2090
2091 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
2092 GCC warnings.
2093
20942005-12-27 Paul Eggert <eggert@cs.ucla.edu>
2095
2096 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
2097 Remove unnecessary forward static decls.
2098
20992005-12-27 Akim Demaille <akim@epita.fr>
2100
2101 * src/reader.c (grammar_current_rule_check): Also check that $$
2102 is used.
2103 Take the rule to check as argument, hence rename as...
2104 (grammar_rule_check): this.
2105 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
2106 Rename as...
2107 (grammar_rule_begin, grammar_rule_end): these, for consistency.
2108 (grammar_midrule_action, grammar_symbol_append): Now static.
2109 * tests/torture.at (input): Don't rely on the default action
2110 being always performed.
2111 * tests/calc.at: "Set" $$ even when the action is "cut" with
2112 YYERROR or other.
2113 * tests/actions.at (Exotic Dollars): Instead of using unused
2114 values, check that the warning is issued.
2115
21162005-12-22 Paul Eggert <eggert@cs.ucla.edu>
2117
2118 * NEWS: Improve wording for unused-value warnings.
2119
21202005-12-22 Akim Demaille <akim@epita.fr>
2121
2122 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
2123 (b4_yysymprint_generate): Rename as...
2124 (b4_yy_symbol_print_generate): this.
2125 Generate yy_symbol_print instead of yysymprint.
2126 Generate also yy_symbol_value_print, and use it.
2127
21282005-12-22 Akim Demaille <akim@epita.fr>
2129
2130 * NEWS: Warn about unused values.
2131 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
2132 a `used' member.
2133 (symbol_list_n_get, symbol_list_n_used_set): New.
2134 (symbol_list_n_type_name_get): Use symbol_list_n_get.
2135 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
2136 * src/reader.c (grammar_current_rule_check): Check that values are
2137 used.
2138 * src/symtab.c (symbol_print): Accept 0.
2139 * tests/existing.at: Remove the type information.
2140 Empty the actions.
2141 Remove useless actions (beware of mid-rule actions: perl -000
2142 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
2143 * tests/actions.at (Exotic Dollars): Use unused values.
2144 * tests/calc.at: Likewise.
2145 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2146 Likewise.
2147
2148 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
2149 rule_useful_p.
2150
21512005-12-21 Paul Eggert <eggert@cs.ucla.edu>
2152
2153 Undo 2005-12-01 tentative license wording change. The wording is
2154 still being reviewed by the lawyers, and we don't want to wait for
2155 them before publishing a test release. For now, revert to the
2156 previous wording.
2157 * NEWS: Undo 2005-12-01 change.
2158 * data/glr.c: Revert to previous license wording.
2159 * data/glr.cc: Likewise.
2160 * data/lalr1.cc: Likewise.
2161 * data/location.cc: Likewise.
2162 * data/yacc.c: Likewise.
2163
2164 * NEWS: Reword %destructor vs YYABORT etc.
2165 * data/glr.c: Use American spacing, for consistency.
2166 * data/glr.cc: Likewise.
2167 * data/lalr1.cc: Likewise.
2168 * data/yacc.c: Likewise.
2169 * data/yacc.c: Reformat comments slightly.
2170 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
2171 for consistency. Fix some spelling errors and reword recently-included
2172 text slightly.
2173 * tests/cxx-type.at: Cast results of malloc, for C++.
2174
21752005-12-21 Joel E. Denny <address@hidden>
2176
2177 * tests/cxx-type.at: Construct a tree, count the parents of shared
2178 nodes, and free each node once and only once. Previously, the memory
2179 for semantic values was leaked instead.
2180
21812005-12-21 Joel E. Denny <address@hidden>
2182
2183 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
2184 (yylval, yylloc): If pure, #define to yystackp->yyval and
2185 yystackp->yyloc similar to yychar and yynerrs.
2186 (yyparse): If pure, remove local yylval and yylloc. Add local
2187 yystackp to accommodate pure definitions of yylval and yylloc.
2188 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
2189 yylvalp and yyllocp to &yylval and &yylloc.
2190 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
2191 namespace. Previously, nerrs and char were missing, but lval and lloc
2192 weren't necessary.
2193 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
2194 yylvalp and yyllocp parameters since, if pure, these are now always
2195 accessible through yystackp. If not pure, they are still accessible
2196 globally.
2197 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
2198 `if (YYID (N))' to pacify lint.
2199
22002005-12-21 Akim Demaille <akim@epita.fr>
2201
2202 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
2203 destroy the RHS symbols of a rule.
2204 * data/yacc.c (yylen): Initialize to 0.
2205 Keep its value to the number of items to possibly shift.
2206 In particular, a regular successful parse that ends on YYFINAL by
2207 a (internal) YYACCEPT must not have yylen != 0.
2208 (yyerrorlab, yyreturn): Pop the RHS.
2209 Reorder a bit to emphasize the `shifting' bits of code.
2210 (YYPOPSTACK): Now accept a number of items to pop.
2211 * data/lalr1.cc: Likewise.
2212 * data/glr.c: Formatting changes.
2213 Use goto instead of fall through.
2214 * doc/bison.texinfo (Destructor Decl): Complete.
2215
22162005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2217
2218 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2219 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
2220 * djgpp/config.bat: Replace every occurence of the file name
2221 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2222 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2223 * djgpp/config.sed: Replace every occurence of the file name
2224 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2225 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2226 * djgpp/djunpack.bat: DJGPP specific file.
2227 * djgpp/fnchange.lst: DJGPP specific file.
2228 * djgpp/README.in: Add new information about how to unpack the bison
2229 source on MSDOS and other systems which have 8.3 file name restrictions
2230 using djunpack.bat and fnchange.lst.
2231
22322005-12-12 Paul Eggert <eggert@cs.ucla.edu>
2233
2234 * bootstrap (build_cvs_prefix): Remove; unused.
2235 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
2236 when getting gnulib.
2237
22382005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
2239
2240 * data/glr.c: Reorder typedef declarations for structs to match order
2241 of struct declarations.
2242 Rename yystack everywhere to yystackp except in yyparse where it's not
2243 a pointer.
2244 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
2245 consistency.
2246 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
2247 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
2248 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
2249 lint.
2250
22512005-12-09 Paul Eggert <eggert@cs.ucla.edu>
2252
2253 * tests/sets.at (Accept): Fix typos in regular expression used to
2254 sed out the final state number.
2255
2256 Work around portability problem on Solaris 10: flex-generated
2257 files include <stdio.h> before <config.h>, which messes up
2258 because the latter defines __EXTENSIONS__. Address the problem
2259 by creating two new little files that include <config.h> first,
2260 then include the flex-generated files. Rewrite everyone else
2261 to include <config.h> first, as well.
2262 * lib/timevar.c: Always include "config.h".
2263 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
2264 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
2265 (EXTRA_bison_SOURCES): New macro.
2266 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
2267 * src/system.h: Don't include config.h.
2268 * src/LR0.c: Include <config.h> first.
2269 * src/assoc.c: Likewise.
2270 * src/closure.c: Likewise.
2271 * src/complain.c: Likewise.
2272 * src/conflicts.c: Likewise.
2273 * src/derives.c: Likewise.
2274 * src/files.c: Likewise.
2275 * src/getargs.c: Likewise.
2276 * src/gram.c: Likewise.
2277 * src/lalr.c: Likewise.
2278 * src/location.c: Likewise.
2279 * src/main.c: Likewise.
2280 * src/muscle_tab.c: Likewise.
2281 * src/nullable.c: Likewise.
2282 * src/output.c: Likewise.
2283 * src/parse-gram.y: Likewise.
2284 * src/print.c: Likewise.
2285 * src/print_graph.c: Likewise.
2286 * src/reader.c: Likewise.
2287 * src/reduce.c: Likewise.
2288 * src/relation.c: Likewise.
2289 * src/state.c: Likewise.
2290 * src/symlist.c: Likewise.
2291 * src/symtab.c: Likewise.
2292 * src/tables.c: Likewise.
2293 * src/uniqstr.c: Likewise.
2294 * src/vcg.c: Likewise.
2295
2296 * src/parse-gram.y: Fix minor problems uncovered by lint.
2297 (current_lhs, current_lhs_location): Now static.
2298 (current_assoc): Remove unused variable.
2299
2300 Cleanups so that Bison-generated parsers have less lint.
2301 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
2302 Prepend /*ARGSUSED*/, for lint's sake.
2303 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
2304 definition if 'lint' is defined.
2305 (YYID): New macro (or function, if lint).
2306 All uses of /*CONSTCOND*/0 replaced by YYID(0).
2307 * data/yacc.c: Likewise.
2308 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
2309 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
2310 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
2311 is C++ only.
2312 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
2313 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
2314 Use YYID(0) rather than 0, for lint.
2315 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
2316 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
2317
23182005-12-07 Paul Eggert <eggert@cs.ucla.edu>
2319
2320 * tests/glr-regression.at
2321 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
2322 Close memory leak reported by twlevo.
2323
23242005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
2325
2326 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
2327 all stacks.
2328 (yyparse): Iterate another stack in order to call user destructors.
2329 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2330 New test case.
2331 (Duplicated user destructor for lookahead): This test now is expected
2332 to succeed.
2333
23342005-12-01 Paul Eggert <eggert@cs.ucla.edu>
2335
2336 * NEWS: Document the following change.
2337 * data/yacc.c: Say "parser skeleton" rather than "file", since
2338 it's no longer just a file.
2339 * data/glr.c: Grant a special exception for C GLR parsers, that
2340 reads like the already-existing exception for C LALR(1) parsers.
2341 * data/glr.cc: Likewise.
2342 * data/lalr1.cc: Likewise.
2343 * data/location.cc: Likewise.
2344 * data/yacc.c: Reword the "written by" statement to clarify that
2345 it was the parser skeleton, not the entire output file.
2346 * data/glr.c: Written by Paul Hilfinger.
2347 * data/glr.cc: Written by Akim Demaille.
2348 * data/lalr1.cc: Likewise.
2349
23502005-11-18 Paul Eggert <eggert@cs.ucla.edu>
2351
2352 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
2353 Fix typos in previous change that broke 'make check'.
2354 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
2355 supported in C.
2356 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
2357 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
2358 We can revert this once things settle down.
2359
2360 * src/conflicts.c (conflicts_print): Don't print file name twice
2361 when %expect fails because there were no conflicts.
2362 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
2363 change.
2364 * tests/conflicts.at (%expect not enough, %expect too much):
2365 (%expect with reduce conflicts): Adjust to new behavior.
2366
23672005-11-18 Akim Demaille <akim@epita.fr>
2368
2369 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
2370 errors.
2371 * NEWS: Document this.
2372 * doc/bison.texinfo (Expect Decl): Likewise.
2373
23742005-11-16 Akim Demaille <akim@epita.fr>
2375
2376 Generalize the display of semantic values and locations in traces.
2377 * data/glr.c (yy_reduce_print): Fix indices (again).
2378 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
2379 literal integers.
2380 * data/lalr1.cc (yyreduce_print): Rename as...
2381 (yy_reduce_print): this.
2382 Display values and locations.
2383 * data/yacc.c (yy_reduce_print): Likewise.
2384 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
2385 (yysymprint): Move higher to be visible from yy_reduce_print).
2386 (yyparse): Adjust.
2387 * tests/calc.at: Adjust the expected length of the traces.
2388
23892005-11-14 Akim Demaille <akim@epita.fr>
2390
2391 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
2392 from 1 to N, while values and location start at 0.
2393 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
2394
23952005-11-14 Akim Demaille <akim@epita.fr>
2396
2397 * data/glr.c (yy_reduce_print): Fix the $ number.
2398
23992005-11-14 Akim Demaille <akim@epita.fr>
2400
2401 "Use" parse parameters.
2402 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
2403 * data/glr.c, data/glr.cc: Use them.
2404 * data/glr.c (YYUSE): Have a C++ definition that supports
2405 non-pointer types.
2406
24072005-11-14 Akim Demaille <akim@epita.fr>
2408
2409 * data/glr.c (yyexpandGLRStack): Declare only if defined.
2410
24112005-11-14 Akim Demaille <akim@epita.fr>
2412
2413 * data/glr.cc: New.
2414 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
2415
24162005-11-12 Akim Demaille <akim@epita.fr>
2417
2418 Let position and location be PODs.
2419 * data/location.cc (position::initialize, location::initialize): New.
2420 (position::position, location::location): Define only if
2421 b4_location_constructors is defined.
2422 * data/lalr1.cc (b4_location_constructors): Define it for backward
2423 compatibility.
2424 * doc/bison.texinfo (Initial Action Decl): Use initialize.
2425
24262005-11-12 Akim Demaille <akim@epita.fr>
2427
2428 * data/lalr1.cc: Move the body of the ctor and dtor into the
2429 parser file (instead of the header).
2430 Wrap the implementations in a "namespace yy".
2431
24322005-11-12 Akim Demaille <akim@epita.fr>
2433
2434 Have glr.c include its header file when created.
2435 * data/glr.c (b4_shared_declarations): New.
2436 Output them verbatim in the parser if !%defines, otherwise
2437 output then in the header file, and include it instead.
2438
24392005-11-11 Akim Demaille <akim@epita.fr>
2440
2441 * data/glr.c: Comment changes.
2442
24432005-11-11 Akim Demaille <akim@epita.fr>
2444
2445 When yydebug, report semantic and location values for reductions.
2446 * data/glr.c (yy_reduce_print): Report the semantic values and the
2447 locations.
2448 (YY_REDUCE_PRINT): Adjust.
2449 (yyglrReduce): Use them.
2450 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
2451 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
2452 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
2453 traces.
2454
24552005-11-10 Akim Demaille <akim@epita.fr>
2456
2457 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
2458 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
2459 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
2460
24612005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
2462
2463 * m4/cxx.m4, examples/Makefile.am: Don't build
2464 examples/calc++ if no C++ compiler is available. (trivial change)
2465
24662005-11-09 Akim Demaille <akim@epita.fr>
2467
2468 * src/scan-skel.l: Use a couple of asserts.
2469
24702005-11-03 Akim Demaille <akim@epita.fr>
2471
2472 In some (weird) cases, the final state number is incorrect.
2473 Reported by Alexandre Duret-Lutz.
2474 * src/LR0.c (state_list_append): Remove the computation of
2475 final_state.
2476 (save_reductions): Do it here.
2477 (get_state): Alpha conversion.
2478 (generate_states): Use a for loop.
2479 * src/gram.h (item_number_is_rule_number)
2480 (item_number_is_symbol_number): New.
2481 * src/state.c: Use assert.
2482 * src/system.h: Include assert.h.
2483 * tests/sets.at (Accept): New.
2484
24852005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2486
2487 * data/glr.c (yyfill): Adjust comment.
2488 (yyresolveAction): Initialize default location properly
2489 for empty right-hand sides.
2490 (yydoAction): Ditto.
2491 Add comment explaining apparently dead code.
2492 * tests/glr-regression.at
2493 (Incorrectly initialized location for empty right-hand side in GLR):
2494 New test.
2495
24962005-10-30 Paul Eggert <eggert@cs.ucla.edu>
2497
2498 * bootstrap (cleanup_gnulib): New function. Use it to clean up
2499 gnulib when interrupted. This fixes some race conditions and
2500 works around some portability problems (one noted by Paul
2501 Hilfinger).
2502
25032005-10-22 Akim <akim@epita.fr>
2504
2505 * Makefile.cfg: Adjust to config -> build-aux.
2506 Reported by twledo.
2507
25082005-10-21 Akim Demaille <akim@epita.fr>
2509
2510 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
2511 the %parse-params.
2512 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
2513 * data/yacc.c (b4_Pure_if): Rename as...
2514 (b4_yacc_pure_if): this.
2515 (YY_SYMBOL_PRINT, yyparse): Adjust.
2516 * doc/bison.texinfo: Formatting changes.
2517
25182005-10-21 Akim Demaille <akim@epita.fr>
2519
2520 Finish the transition config -> build-aux.
2521 * configure.ac, Makefile.am: Use build-aux.
2522 * config/prev-version, config/announce-gen, config/Makefile.am:
2523 Move to...
2524 * build-aux/prev-version, build-aux/announce-gen,
2525 * build-aux/Makefile.am: here.
2526
25272005-10-14 Akim Demaille <akim@epita.fr>
2528
2529 * examples/calc++/test: Use set -x only when VERBOSE.
2530
25312005-10-13 Paul Eggert <eggert@cs.ucla.edu>
2532
2533 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
2534 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
2535
25362005-10-13 Akim Demaille <akim@epita.fr>
2537
2538 * src/scan-skel.l: Output the base name parts of the parser and
2539 header file names.
2540 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
2541 additional checks.
2542 Use this to exercise C++ outputs in subdirs.
2543 Reported by Oleg Smolsky.
2544
25452005-10-12 Paul Eggert <eggert@cs.ucla.edu>
2546
2547 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
2548 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
2549 Problem reported by John P. Hartmann.
2550 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
2551 already defined it.
2552
25532005-10-12 Akim Demaille <akim@epita.fr>
2554
2555 * src/parse-gram.y (version_check): Exit 63 to please missing
2556 (stands for "version mismatch).
2557 * tests/input.at, doc/bison.texinfo: Adjust.
2558
25592005-10-10 Paul Eggert <eggert@cs.ucla.edu>
2560
2561 Work around portability problems with Visual Age C compiler
2562 (xlc and xlC_r) reported by John P. Hartmann.
2563 * data/location.cc (initial_column, initial_line): Remove.
2564 All uses replaced by 0 and 1.
2565 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
2566 that xlc complains about.
2567 * src/scan-skel.l (skel_wrap): Likewise.
2568 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
2569 as __STDC__.
2570 * data/yacc.c (YYMODERN_C): New macro, which also looks at
2571 __STDC_VERSION__. Use it everywhere instead of looking at
2572 __STDC__ and __cplusplus.
2573
25742005-10-10 Akim Demaille <akim@epita.fr>
2575
2576 * examples/calc++/test: Be quiet unless VERBOSE.
2577
25782005-10-05 Paul Eggert <eggert@cs.ucla.edu>
2579
2580 * data/c.m4 (yydestruct, yysymprint):
2581 Use YYUSE instead of casting to void.
2582 * data/glr.c (YYUSE): New macro.
2583 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2584 Use it instead of rolling our own.
2585 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2586 (YYCHK1):
2587 Use /*CONSTCOND*/ to suppress lint warnings.
2588 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2589 (YY_STACK_PRINT): Use 'false' not '0'.
2590 (YYUSE): New macro.
2591 (yysymprint_, yydestruct_): Use it instead of rolling our own.
2592 * data/yacc.c (YYUSE): New macro.
2593 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
2594 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
2595 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
2596
2597
2598 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
2599 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
2600
26012005-10-04 Paul Eggert <eggert@cs.ucla.edu>
2602
2603 Undo the parts of the unlocked-I/O change that substituted
2604 putc or puts for printf. This might hurt performance a bit,
2605 but some people prefer the printf style.
2606 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
2607 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
2608 All uses replaced by YYFPRINTF and YYDPRINTF.
2609 * data/yacc.c: Likewise.
2610 * lib/bitset.c (bitset_print): Likewise.
2611 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
2612 putc and puts.
2613 * lib/lbitset.c (debug_lbitset): Likewise.
2614 * src/closure.c (print_firsts, print_fderives): Likewise.
2615 * src/gram.c (grammar_dump): Likewise.
2616 * src/lalr.c (look_ahead_tokens_print): Likewise.
2617 * src/output.c (escaped_output): Likewise.
2618 (user_actions_output): Break apart two printfs.
2619 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
2620 * src/reduce.c (reduce_print): Likewise.
2621 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2622 * src/system.h: Include unlocked-io.h rathe than stdio.h.
2623
2624 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2625 Use assignments rather than casts-to-void to suppress
2626 unused-variable warnings. This pacifies 'lint'.
2627 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
2628 unused-variable warnings.
2629
26302005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2631
2632 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2633
26342005-10-02 Paul Eggert <eggert@cs.ucla.edu>
2635
2636 Use unlocked I/O for a minor performance improvement on hosts like
2637 GNU/Linux and Solaris that support unlocked I/O. The basic idea
2638 is to use the gnlib unlocked-io module, and to prefer putc and
2639 puts to printf when either will work (since the latter doesn't
2640 come in an unlocked flavor).
2641 * bootstrap (gnulib_modules): Add unlocked-io.
2642 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
2643 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
2644 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
2645 and similarly for puts and putc and printf.
2646 * data/yacc.c: Likewise.
2647 * lib/bitset.c (bitset_print): Likewise.
2648 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
2649 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
2650 to printf.
2651 * lib/lbitset.c (debug_lbitset): Likewise.
2652 * src/closure.c (print_firsts, print_fderives): Likewise.
2653 * src/gram.c (grammar_dump): Likewise.
2654 * src/lalr.c (look_ahead_tokens_print): Likewise.
2655 * src/output.c (escaped_output): Likewise.
2656 (user_actions_output): Coalesce two printfs.
2657 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
2658 * src/reduce.c (reduce_print): Likewise.
2659 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2660 * src/system.h: Include unlocked-io.h rather than stdio.h.
2661
2662 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
2663 this confuses xgettext.
2664
26652005-10-02 Akim Demaille <akim@epita.fr>
2666
2667 * bootstrap (gnulib_modules): Add strverscmp.
2668 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
2669 * m4/.cvsignore: Add strverscmp.m4.
2670 * src/parse-gram.y (%require): New token, new rule.
2671 (version_check): New.
2672 * src/scan-gram.l (%require): Adjust.
2673 * tests/input.at (AT_REQUIRE): New.
2674 Use it.
2675 * doc/bison.texinfo (Require Decl): New.
2676 (Calc++ Parser): Use %require.
2677
26782005-10-02 Akim Demaille <akim@epita.fr>
2679
2680 * data/location.cc: New.
2681
26822005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
2683 Akim Demaille <akim@epita.fr>
2684
2685 Make sure -odir/foo.cc creates dir/location.hh etc.
2686 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
2687 (spec_file_prefix, spec_verbose_file, spec_graph_file)
2688 (spec_defines_file): Now const.
2689 (dir_prefix): New.
2690 (short_base_name): Remove.
2691 * src/files.c: Adjust.
2692 (dirname.h): Include.
2693 (base_name): Don't prototype it.
2694 (finput): Remove, duplicates gram_in.
2695 (full_base_name, short_base_name): Replace by...
2696 (all_but_ext, all_but_tab_ext): these.
2697 (compute_base_names): Rename as...
2698 (compute_file_name_parts): this.
2699 Update to compute the new variables, including dir_prefix.
2700 Adjust dependencies.
2701 * src/output.c (prepare): Output them.
2702 * src/reader.c: Adjust to use gram_in, not finput.
2703 * src/scan-skel.l (@dir_prefix@): New.
2704
27052005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2706
2707 * lib/subpipe.c: New function end_of_output_subpipe() added
2708 to allow support for non-posix systems. This is a no-op function
2709 for posix systems.
2710
2711 * lib/subpipe.h: New function end_of_output_subpipe() added
2712 to allow support for non-posix systems. This is a no-op function
2713 for posix systems.
2714
2715 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
2716 handle the lack of pipe/fork functionality on non-posix systems.
2717
2718 * djgpp/Makefile.maint: DJGPP specific file.
2719
2720 * djgpp/README.in: DJGPP specific file.
2721
2722 * djgpp/config.bat: DJGPP specific configuration file.
2723
2724 * djgpp/config.sed: DJGPP specific configuration file.
2725
2726 * djgpp/config.site: DJGPP specific configuration file.
2727
2728 * djgpp/config_h.sed: DJGPP specific configuration file.
2729
2730 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
2731
2732 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
2733
27342005-10-02 Akim Demaille <akim@epita.fr>
2735
2736 * data/location.cc: New, extract from...
2737 * data/lalr1.cc: here.
2738 (location.hh): Include it after the user prologue, in case the
2739 filename type is defined by the user.
2740 Forward declation location and position before the pre-prologue.
2741 (yyresult_): Rename as...
2742 (yyresult): this, it's a local variable, not an attribute.
2743 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
2744
27452005-10-01 Akim Demaille <akim@epita.fr>
2746
2747 * examples/extexi: Restore the #line generation.
2748
27492005-09-30 Akim Demaille <akim@epita.fr>,
2750 Alexandre Duret-Lutz <adl@gnu.org>
2751
2752 Move the token type and YYSTYPE in the parser class.
2753 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
2754 (parser::token): New, from the moved free definition of tokens.
2755 (parser::semantic_value): Now a full definition instead of an
2756 indirection to YYSTYPE.
2757 (b4_post_prologue): No longer included in the header file, but
2758 in the implementation file.
2759 * doc/bison.texi (C+ Language Interface): Update.
2760 * src/parse-gram.y: Support unary %define.
2761 * tests/actions.at: Define global_tokens_and_yystype for backward
2762 compatibility until we update the tests.
2763 * tests/calc.at: Idem.
2764 (first_line, first_column, last_line, last_column): Define for lalr1.cc
2765 to simplify the code.
2766
27672005-09-29 Paul Eggert <eggert@cs.ucla.edu>
2768
2769 Port to SunOS 4.1.4, which lacks strtoul and strerror.
2770 Ah, the good old days! Problem reported by Peter Klein.
2771 * bootstrap (gnulib_modules): Add strerror, strtoul.
2772 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
2773 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
2774
27752005-09-29 Akim Demaille <akim@epita.fr>
2776
2777 * data/c.m4 (b4_error_verbose_if): New.
2778 * data/lalr1.cc: Use it.
2779 (YYERROR_VERBOSE_IF): Remove.
2780 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
2781 parser members, replaced by...
2782 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
2783 local variables.
2784 (yysyntax_error_): Takes the state number as argument.
2785 (yyreduce_print_): Use the argument yyrule, not the former
2786 attribute yyn_.
2787
27882005-09-26 Paul Eggert <eggert@cs.ucla.edu>
2789
2790 * bootstrap (gnulib_modules): Add verify.
2791 * lib/.cvsignore: Add verify.h.
2792 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
2793 * src/system.h (verify): Remove.
2794 Include verify.h instead.
2795 * src/tables.c (tables_generate): Use new API for 'verify'.
2796
27972005-09-21 Paul Eggert <eggert@cs.ucla.edu>
2798
2799 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
2800 local variables whose names begin with 'yy'.
2801 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
2802 Trivial changes from Joel E. Denny.
2803
2804 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
2805 it itself.
2806 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
2807 don't use alloca any more.
2808
2809 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
2810 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
2811 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
2812 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
2813 to match yacc.c, to test more hosts.
2814
28152005-09-20 Paul Eggert <eggert@cs.ucla.edu>
2816
2817 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
2818 doesn't affect behavior.
2819 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
2820 Solaris, AIX, MSC.
2821 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
2822 This works a bit better with glibc, if user code has already included
2823 stdlib.h.
2824 * doc/bison.texinfo (Bison Parser): Document that users can't
2825 arbitrarily use malloc and free for other purposes. Document
2826 that <alloca.h> and <malloc.h> might be included.
2827 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
2828 user must declare alloca.
2829
2830 * HACKING (release): Forwarn the Translation Project about
2831 stable releses.
2832
28332005-09-20 Akim Demaille <akim@epita.fr>
2834
2835 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
2836
28372005-09-19 Paul Eggert <eggert@cs.ucla.edu>
2838
2839 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
2840 (YYSTACK_ALLOC_MAXIMUM): Use it.
2841 (yysyntax_error): New function.
2842 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
2843 multiple syntax errors are reported, and alloca is being used.
2844 Instead, reallocate buffers twice as big each time, so that
2845 we waste at most half the allocated memory. Start with a small
2846 (128-byte) buffer that will suffice in most cases anyway.
2847 Use yysyntax_error to do most of the work.
2848
2849 * doc/bison.texinfo (Error Reporting, Table of Symbols):
2850 yynerrs is the number of errors reported, not the number of
2851 errors encountered.
2852
2853 * tests/glr-regression.at (Duplicated user destructor for lookahead):
2854 Mark it as expected to fail.
2855 Cast result of malloc; problem reported by twlevo@xs4all.nl.
2856 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
2857 Don't start user-code symbols with "yy", to avoid name space problems.
2858
28592005-09-19 Akim Demaille <akim@epita.fr>
2860
2861 Remove the traits, failed experiment.
2862 It never proved useful, and anyway because of the current
2863 definition, it was not possible to have several specialization of
2864 this traits, making it useless.
2865 * data/lalr1.cc (yy:traits): Remove.
2866 Inline its definitions in the parser class.
2867
28682005-09-19 Akim Demaille <akim@epita.fr>
2869
2870 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
2871 least Mac OSX with a /usr/local install of gettext.
2872
28732005-09-19 Akim Demaille <akim@epita.fr>
2874
2875 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
2876 and yytoken for similarity with the other skeletons.
2877
28782005-09-19 Akim Demaille <akim@epita.fr>
2879
2880 * NEWS, configure.ac: update version number to 2.1a.
2881
28822005-09-16 Paul Eggert <eggert@cs.ucla.edu>
2883
2884 * NEWS: Version 2.1.
2885
2886 * NEWS: Remove notice of yytname change, since it was never in an
2887 official release.
2888 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
2889 diagnostic.
2890 * src/output.c (prepare): Likewise.
2891 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
2892 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
2893 is not defined. This is an awful hack, but it's enough for now.
2894 All callers changed.
2895 * tests/glr-regression-at (make_value): Args are const pointers now,
2896 to avoid GCC warning.
2897 (Duplicated user destructor for lookahead): New test. Currently
2898 skipped. It fails on my host but I'm not sure it'll always fail.
2899
29002005-09-16 Akim Demaille <akim@epita.fr>
2901
2902 * src/symtab.h (struct symbol): Declare the printer and destructor
2903 as const, to avoid accidental calls to free.
2904 (symbol_destructor_set, symbol_printer_set): Adjust.
2905 * src/symtab.c: Adjust.
2906
29072005-09-16 Akim Demaille <akim@epita.fr>
2908
2909 * data/c.m4 (b4_token_enums): New.
2910 (b4_token_defines): Rename as...
2911 (b4_token_enums_defines): this.
2912 (b4_token_defines): New, output only the #defines.
2913 * data/yacc.c, data/glr.c: Adjust.
2914 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
2915 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
2916 as default values.
2917
29182005-09-16 Akim Demaille <akim@epita.fr>
2919
2920 * data/lalr1.cc (yylex_): Remove, inline its code.
2921 (yyreport_syntax_error_): Remove, replaced by...
2922 (yysyntax_error_): this which returns a string and leaves to the
2923 caller the call to the users' error function.
2924 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
2925 Move from members of the parser object...
2926 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
2927 to local variables of the parse function.
2928
29292005-09-16 Akim Demaille <akim@epita.fr>
2930
2931 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
2932 since it's in Bison's name space.
2933
29342005-09-15 Paul Eggert <eggert@cs.ucla.edu>
2935
2936 * data/glr.c (yyresolveValue): Add default case to pacify
2937 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
2938
2939 * NEWS: Document when yyparse started to return 2.
2940 * doc/bison.texinfo (Parser Function): Document when yyparse
2941 returns 2.
2942
2943 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
2944 (b4_filename_type): Renamed back from b4_file_name_type. All uses
2945 changed.
2946 (class position): file_name -> filename (reverting). All uses changed.
2947
29482005-09-14 Paul Eggert <eggert@cs.ucla.edu>
2949
2950 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
2951 do anything if $@ exists. This reverts part of the 2005-07-07
2952 patch.
2953
29542005-09-11 Paul Eggert <eggert@cs.ucla.edu>
2955
2956 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
2957 contains obsolete information and isn't worth distributing as a
2958 separate file anyway.
2959 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
2960 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
2961 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
2962 (yyparse): Abort if user code uses longjmp to throw an unexpected
2963 value.
2964
29652005-09-09 Paul Eggert <eggert@cs.ucla.edu>
2966
2967 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
2968 Suggested by twlevo@xs4all.nl.
2969
2970 * data/glr.c (YYCHK1): Do not assume YYE is in range.
2971 This avoids a diagnostic from gcc -Wswitch-enum.
2972 Problem reported by twlevo@xs4all.nl.
2973
2974 * doc/bison.texinfo: Don't use "filename", as per GNU coding
2975 standards. Use "file name" or "file" or "name", depending on
2976 the context.
2977 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
2978 not to hack/foo.tab.c.
2979 (Calc++ Top Level): 2nd arg of main is not const.
2980 * data/glr.c: b4_filename -> b4_file_name.
2981 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
2982 All uses changed.
2983 (class position): filename -> file_name. All uses changed.
2984 * data/yacc.c: b4_filename -> b4_file_name.
2985 * lib/bitset.h: filename -> file_name in local vars.
2986 * lib/bitset_stats.c: Likewise.
2987 * src/files.c: Likewise.
2988 * src/scan-skel.l ("@output ".*\n): Likewise.
2989 * src/files.c (file_name_split): Renamed from filename_split.
2990 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
2991
29922005-09-08 Paul Eggert <eggert@cs.ucla.edu>
2993
2994 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
2995 to accommodate latest gnulib.
2996
2997 * tests/glr-regression.at (Duplicate representation of merged trees):
2998 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
2999
3000 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
3001 needed.
3002
30032005-08-26 Paul Eggert <eggert@cs.ucla.edu>
3004
3005 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
3006 All uses changed. Invoke user destructor after an error during a
3007 split parse (trivial change from Joel E. Denny).
3008
3009 * tests/glr-regression.at
3010 (User destructor after an error during a split parse): New test case.
3011 Problem reported by Joel E. Denny in:
3012 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
3013
30142005-08-25 Paul Eggert <eggert@cs.ucla.edu>
3015
3016 * README-cvs: Give URLs for recommended tools.
3017 Mention Gzip version problem, and bootstrapping issues.
3018 Remove troubleshooting section, as it's somewhat obsolete.
3019
3020 * bootstrap (no_cache): New var, to accommodate different wget
3021 variants. Use it instead of '-C off'. Problem reported by
3022 twlevo@xs4all.nl.
3023
3024 * data/glr.c (yydestroyStackItem): New function.
3025 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
3026 debugging information. Problem reported by Joel E. Denny.
3027
30282005-08-25 Akim Demaille <akim@epita.fr>
3029
3030 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
3031
30322005-08-24 Paul Eggert <eggert@cs.ucla.edu>
3033
3034 * data/glr.c (yyrecoverSyntaxError, yyreturn):
3035 Don't invoke destructor on unresolved entries.
3036 * tests/glr-regression.at
3037 (User destructor for unresolved GLR semantic value): New test case.
3038 Problem reported by Joel E. Denny in:
3039 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
3040
30412005-08-21 Paul Eggert <eggert@cs.ucla.edu>
3042
3043 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
3044 Add strnlen.c.
3045 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
3046 lib-prefix.m4, po.m4.
3047
3048 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
3049 in yydestruct diagnostic, since it might not be an error.
3050 Problem reported by Joel Denny near end of
3051 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
3052 * data/lalr1.cc (yyerturn): Likewise.
3053 * data/yacc.c (yyreturn): Likewise.
3054 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
3055
3056 * src/files.c: Remove obsolete FIXME comment.
3057
3058 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
3059 with the other templates, and to fix bogus run-on messages such
3060 as the one reported at the end of
3061 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
3062 All callers changed to avoid the newline.
3063 (yyprocessOneStack): Output two lines rather than one, to accommodate
3064 the above change. This changes the debug output format slightly.
3065
3066 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
3067 reported by Joel E. Denny in
3068 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
3069 (trivial change).
3070 * tests/glr-regression.at (Duplicate representation of merged trees):
3071 New test, from Joel E. Denny in:
3072 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
3073 * THANKS: Add Joel E. Denny.
3074
3075 * configure.ac (AC_INIT): Bump to 2.0c.
3076
30772005-07-24 Paul Eggert <eggert@cs.ucla.edu>
3078
3079 * NEWS: Version 2.0b.
3080
3081 * Makefile.am (SUBDIRS): Put examples before tests, so that
3082 "make check" doesn't finish with "All 1 tests passed".
3083
3084 * tests/regression.at (Token definitions): Don't rely on
3085 AT_PARSER_CHECK for data that contains backslashes. It currently
3086 uses 'echo', and 'echo' isn't portable if its argument contains
3087 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
3088 that the byte '\0xff' is not printable in the C locale; it is,
3089 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
3090 not printable, so use '\0x81' to test.
3091
3092 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
3093 version of GCC, since the macro is used with non-GCC compilers.
3094
3095 Fix core dump reported by Pablo De Napoli in
3096 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
3097 * tests/regression.at (Invalid inputs with {}): New test.
3098 * src/parse-gram.y (token_name): Translate type before using
3099 it as an index.
3100
3101 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
3102 the user's name space. All uses changed to __attribute__
3103 ((__unused__)).
3104 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
3105 Add __attribute__ ((__noreturn__)).
3106
3107 * etc/clcommit: Remove. We weren't using it, and it failed
3108 "make maintainer-distcheck".
3109 * Makefile.maint: Merge from coreutils.
3110 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
3111 (syntax-check-rules): Change list of rules as described below.
3112 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
3113 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
3114 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
3115 (sc_trailing_space): New rules.
3116 (sc_xalloc_h_in_src): Remove.
3117 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
3118 (sc_space_tab, sc_error_exit_success, sc_changelog):
3119 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
3120 (makefile-check, po-check, author_mark_check):
3121 (makefile_path_separator_check, copyright-check):
3122 Use grep -n, to make it easier to find violations.
3123 Use CVS_LIST and CVS_LIST_EXCEPT.
3124 (header_regexp, h_re): Remove.
3125 (dd_c): New macro.
3126 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
3127 (my-distcheck): Use more-modern GCC flags.
3128 (signatures, %.asc): Remove.
3129 (rel-files, announcement): Remove signatures.
3130 Restore old updating code, even though we don't use it, so
3131 that we're the same as coreutils.
3132 (alpha, beta, major): Depend on news-date-check.
3133 Make the upload commands.
3134
3135 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
3136 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
3137 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
3138 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
3139 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
3140 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
3141 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
3142 * tests/sets.at: Likewise.
3143
3144 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
3145 we comment out the Autoconf version number.
3146 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
3147 it's error-prone and "make maintainer-distcheck" rejects it.
3148
3149 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
3150 Indent calls to "error" to pacify "make maintainer-distcheck",
3151 when the calls are not intended to be translated.
3152 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
3153
3154 * src/Makefile.am (DEFS): Use +=, to pacify
3155 "make maintainer-distcheck".
3156 (bison_SOURCES): Add scan-skel.h.
3157 (sc_tight_scope): New rule, from coreutils.
3158
3159 * src/files.c (src_extension, header_extension):
3160 Now static, not extern.
3161 * src/getargs.c (short_options): Likewise.
3162 * src/muscle_tab.c (muscle_table): Likewise.
3163 * src/parse-gram.y (current_class, current_type, current_prec):
3164 Likewise.
3165 * src/reader.c (grammar_end, previous_rule_end): Likewise.
3166 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
3167 * src/main.c (main): Cast bindtextdomain and textdomain calls to
3168 void, to avoid warning when NLS is disabled.
3169 * src/output.c: Include scan-skel.h.
3170 (scan_skel): Remove decl, since scan-skel.h does this.
3171 (output_skeleton):
3172 Indent calls to "error" to pacify "make maintainer-distcheck".
3173 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
3174 * src/reader.h (gram_end, gram_lineno): New decls to pacify
3175 "make maintainer-distcheck".
3176 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
3177 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
3178 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
3179 (skel_lex_destroy, scan_skel): Move these decls to...
3180 * src/scan-skel.h: New file.
3181 * src/uniqstr.c (uniqstr_assert):
3182 Indent calls to "error" to pacify "make maintainer-distcheck".
3183
3184 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
3185 not @VAR@.
3186
3187 * tests/torture.at: Revamp to avoid misuse of atoi that
3188 "make maintainer-distcheck" complained about.
3189
3190 * examples/extexi (message): Don't print a message more than once,
3191 and omit line-number decoration that makes Emacs compile think
3192 that informative messages are worth worrying about.
3193
31942005-07-22 Paul Eggert <eggert@cs.ucla.edu>
3195
3196 * configure.ac: Update version number.
3197
3198 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
3199 accidentally.
3200 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
3201 autogenerated by the maintainer.
3202 * examples/calc++/.cvsignore: Add *.yy.
3203
3204 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
3205 * lib/bitset_stats.c (bitset_stats_init): Likewise.
3206 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3207
3208 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
3209
3210 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
3211 from maintainer-distcheck about casting the argument of 'free'.
3212
3213 * NEWS: Mention recent yytname changes.
3214 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
3215
3216 * bootstrap: For translations that have not yet been upgraded to
3217 the new runtime-po domain, prime the pump by extracting the
3218 relevant strings from the obsolete translations. This code can be
3219 removed once the bison-runtime domain has been translated by each
3220 team.
3221
3222 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
3223 now that token names are already quoted.
3224
3225 Fix problem reported by Anthony Heading.
3226 * data/glr.c (YYTOKEN_TABLE): New macro.
3227 (yytname): Define if YYTOKEN_TABLE.
3228 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
3229 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
3230 (YYERROR_VERBOSE): Define the same way the other skeletons do.
3231 * src/output.c (prepare_symbols): Output token_table_flag.
3232
32332005-07-21 Paul Eggert <eggert@cs.ucla.edu>
3234
3235 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
3236 again if the first call fails.
3237
3238 * data/glr.c (yytnamerr): New function.
3239 (yyreportSyntaxError): Use it to dequote most string literals.
3240 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
3241 with other skeletons. All uses changed.
3242 (yytnameerr_): New function.
3243 (yyreport_syntax_error): Use it to dequote most string literals.
3244 * data/yacc.c (yytnamerr): New function.
3245 (yyerrlab): Use it to decode most string literals.
3246 * doc/bison.texinfo (Decl Summary, Calling Convention):
3247 Clarify quoting convention of yytname.
3248 * src/output.c (prepare_symbols): Quote all names. This undoes
3249 the 2005-04-17 change, which is now accomplished (mostly) via
3250 changes in the parsers as described above.
3251 * tests/regression.at (Token definitions, Web2c Actions):
3252 Undo most 2005-04-17 change here, too.
3253
32542005-07-20 Paul Eggert <eggert@cs.ucla.edu>
3255
3256 Fix more problems reported by twlevo@xs4all.nl.
3257 * tests/cxx-type.at: Don't pipe output of ./types through sed to
3258 remove trailing spaces. This loses the exit status of ./types,
3259 and isn't needed since ./types shouldn't be emitting trailing
3260 spaces.
3261 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
3262 as the stack isn't valid in that case.
3263
3264 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
3265 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
3266 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
3267 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
3268 is used.
3269 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
3270 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
3271 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
3272 Likewise.
3273
3274 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
3275 overly-picky compilers that reject 'char *foo = "bar";'.
3276
3277 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
3278 to FILE * parameter, not to stderr. This fixes a typo introduced
3279 in the 2005-07-12 change.
3280
3281 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
3282 warnings from GCC 4.
3283
3284 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
3285 (yyglrShiftDefer, yysplitStack):
3286 Remove unused parameters b4_pure_formals. All uses changed.
3287 (yyglrShift): Remove unused parameters b4_user_formals.
3288 All uses changed.
3289 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
3290
32912005-07-18 Paul Eggert <eggert@cs.ucla.edu>
3292
3293 Destructor cleanups and regularization among the three skeletons.
3294 * NEWS: Document the behavior changes.
3295 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
3296 stack before failing, as the cleanup code will do it for us now.
3297 * data/lalr1.cc (yyerrlab): Likewise.
3298 * data/glr.c (yyparse): Pop everything off the stack before
3299 freeing it, so that destructors get called properly.
3300 * data/lalr1.cc (yyreturn): Likewise.
3301 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
3302 This is more consistent.
3303 * doc/bison.texinfo (Destructor Decl): Mention more reasons
3304 why destructors might be called. 1.875 -> 2.1.
3305 (Destructor Decl, Decl Summary, Table of Symbols):
3306 Some English-language cleanups for %destructor.
3307 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
3308 Add output line for destructor of start symbol.
3309 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
3310 because of that same extra output line.
3311
3312 * NEWS: Document minor wording changes in diagnostics of
3313 Bison-generated parsers.
3314 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
3315 Remove unused formals. All uses changed.
3316 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
3317 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
3318 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
3319 Rename yyoverflowab to yyexhaustedlab.
3320 When memory exhaustion occurs during syntax-error reporting,
3321 report it separately rather than in a single diagnostic; this
3322 eases translation.
3323 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
3324 (Memory Exhausted): Renamed from Parser Stack Overflow.
3325 Revamp wording slightly to prefer "memory exhaustion".
3326 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
3327
3328 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
3329
3330 Add i18n support to the GLR skeleton. Partially fix the C++
3331 skeleton; a C++ expert needs to finish this. Remove debugging
3332 msgids; there's little point to having them translated, since they
3333 can be understood only by someone who can read the
3334 (English-language) source code.
3335
3336 Generate runtime-po/bison-runtime.pot automatically, so that we
3337 don't have to worry about garbage getting in that file. We'll
3338 make sure after the next official release that old msgids don't
3339 get lost. See
3340 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
3341
3342 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
3343 Now auto-generated.
3344 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
3345 Fix typos in explanations of the runtime file.
3346 * bootstrap: Change gettext keyword from YYI18N to YY_.
3347 Use standard Makefile.in.in in runtime-po, since we'll arrange
3348 for backward-compatible bison-runtime.po files in a different way.
3349 * data/glr.c (YY_): New macro, from yacc.c.
3350 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
3351 Translate messages intended for users.
3352 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
3353 the wording in the other skeletons. We don't know that the memory
3354 is virtual.
3355 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
3356 Use same method that yacc.c uses.
3357 Don't translate debugging messages.
3358 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
3359 it doesn't work (yet), and requires C++ expertise to fix.
3360 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
3361 Move defn to a more logical place, to be consistent with other
3362 skeletons.
3363 Don't translate debugging messages.
3364 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
3365 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
3366 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
3367 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
3368
3369 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
3370 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
3371 void, not int.
3372 * tests/glr-regression.at (Badly Collapsed GLR States):
3373 Likewise.
3374 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3375 yylex should return 0 at EOF rather than aborting.
3376
3377 Improve tests for stack overflow in GLR parser.
3378 Problem reported by twlevo@xs4all.nl.
3379 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
3380 All uses removed.
3381 (yyStackOverflow): Just longjmp, but with value 2 so that caller
3382 can handle the problem.
3383 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
3384 (yyparse): New local variable yyresult to record the result.
3385 Use result of setjmp to set it, rather than storing itinto
3386 struct.
3387 (yyDone): Remove label.
3388 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
3389 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
3390 if YYABORT is used).
3391 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
3392 yyparse status; put status > 1 into diagnostic.
3393 Check that status==2 works.
3394 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
3395 Use exit status 3 for failure to open (which shouldn't happen).
3396
33972005-07-17 Paul Eggert <eggert@cs.ucla.edu>
3398
3399 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
3400 1 on syntax error; just let yyparse do its thing.
3401 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
3402 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
3403 (Exploding the Stack Size with Alloca):
3404 (Exploding the Stack Size with Malloc):
3405 Expect exit status 2, not 1, since the parser is supposed to blow
3406 its stack. Problem reported by twlevo@xs4all.nl.
3407
3408 * data/glr.c (yyparse): Don't assume that the initial calls
3409 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
3410 Print a stack-overflow message and fail instead.
3411 Initialize the line-number information before creating the stack,
3412 so that the stack-overflow message can report line zero safely.
3413
34142005-07-14 Paul Eggert <eggert@cs.ucla.edu>
3415
3416 Fix problems reported by twlevo@xs4all.nl.
3417 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
3418 (yyuserMerge): Provide a default case if b4_mergers is empty.
3419 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
3420 * tests/glr-regression.at
3421 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3422 Add casts to pacify C++ compilers.
3423 * tests/glr-regression.at (Improper merging of GLR delayed action
3424 sets): Declare yylex before using it.
3425 * tests/Makefile.am (maintainer-check-g++): Fix a stray
3426 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
3427 test for valgrind; valgrind is independent of g++.
3428 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
3429 for compatibility with POSIX 1003.1-2001 (if running coreutils).
3430 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
3431 Use a destructor, so that we can expand the stack. Change
3432 YYSTYPE to char * so that we can free it. Cast result of malloc.
3433
34342005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3435
3436 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
3437 a valgrind failure. Problem reported by twlevo@xs4all.nl.
3438
34392005-07-13 Paul Eggert <eggert@cs.ucla.edu>
3440
3441 * PACKAGING: New file, suggested by Bruno Haible and taken from
3442 similar wording in gettext's PACKAGING file.
3443 * NEWS: Mention PACKAGING.
3444 * Makefile.am (EXTRA_DIST): Add PACKAGING.
3445
34462005-07-12 Paul Eggert <eggert@cs.ucla.edu>
3447
3448 * NEWS: Document recent i18n improvements.
3449 * bootstrap: Get runtime translations into runtime-po.
3450 Create runtime-po files automatically, if possible.
3451 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
3452 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
3453 does not infringe on the user's name space.
3454 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
3455 * doc/bison.texinfo (Internationalization): Revamp the English
3456 and Texinfo syntax a bit, to try to make it clearer.
3457 (Bison Options, Option Cross Key): Mention --print-localedir.
3458 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
3459 YYENABLE_NLS. Quote a bit more.
3460 * runtime-po/.cvsignore: New file.
3461 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
3462 * runtime-po/Rules-quot: Remove; now created by bootstrap.
3463 * runtime-po/quot.sed: Likewise.
3464 * runtime-po/boldquot.sed: Likewise.
3465 * runtime-po/en@quot.header: Likewise.
3466 * runtime-po/en@boldquot.header: Likewise.
3467 * runtime-po/insert-header.sin: Likewise.
3468 * runtime-po/remove-potcdate.sin: Likewise.
3469 * runtime-po/Makevars: Likewise.
3470 * runtime-po/LINGUAS: Likewise.
3471 * runtime-po/de.po: Likewise; we will rely on the translation project
3472 to maintain this, so "bootstrap" should get it.
3473 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
3474 its value.
3475 * src/main.c (main): Bind the bison-runtime domain, too.
3476
34772005-07-12 Bruno Haible <bruno@clisp.org>
3478
3479 * data/yacc.c: Include <libintl.h> when NLS is enabled.
3480 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
3481 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
3482 * runtime-po: New directory.
3483 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
3484 $(DOMAIN).pot-update rule, so that old messages are never dropped.
3485 * runtime-po/Rules-quot: New file, copied from po/.
3486 * runtime-po/quot.sed: Likewise.
3487 * runtime-po/boldquot.sed: Likewise.
3488 * runtime-po/en@quot.header: Likewise.
3489 * runtime-po/en@boldquot.header: Likewise.
3490 * runtime-po/insert-header.sin: Likewise.
3491 * runtime-po/remove-potcdate.sin: Likewise.
3492 * runtime-po/Makevars: New file.
3493 * runtime-po/POTFILES.in: New file.
3494 * runtime-po/LINGUAS: New file.
3495 * runtime-po/bison-runtime.pot: New file.
3496 * runtime-po/de.po: New file.
3497 * m4/bison.m4: New file.
3498 * Makefile.am (SUBDIRS): Add runtime-po.
3499 (aclocaldir, aclocal_DATA): New variables.
3500 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
3501 Define aclocaldir.
3502 * src/getargs.c (usage): Document --print-localedir option.
3503 (PRINT_LOCALEDIR_OPTION): New enum item.
3504 (long_options): Add --print-localedir option.
3505 (getargs): Handle --print-localedir option.
3506 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
3507 (Internationalization): New section.
3508
35092005-07-12 Akim Demaille <akim@epita.fr>
3510
3511 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
3512 for consistency with the rest of the code.
3513 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
3514 Add separators.
3515
35162005-07-12 Akim Demaille <akim@epita.fr>
3517
3518 * src/parse-gram.y: Use %printer instead of YYPRINT.
3519
35202005-07-12 Akim Demaille <akim@epita.fr>
3521
3522 * src/symtab.h, src/symtab.c (symbol_print): New.
3523 * src/symlist.h, src/symlist.c (symbol_list_print): New.
3524 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
3525
35262005-07-12 Akim Demaille <akim@epita.fr>
3527
3528 * data/glr.c (b4_syncline): Fix (swap) the definitions of
3529 b4_at_dollar and b4_dollar_dollar.
3530
35312005-07-11 Paul Eggert <eggert@cs.ucla.edu>
3532
3533 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
3534 and Pennello's paper.
3535
35362005-07-09 Paul Eggert <eggert@cs.ucla.edu>
3537
3538 * data/yacc.c (yyparse): Undo previous patch. Instead,
3539 set yylsp[0] and yyvsp[0] only if the initial action
3540 sets yylloc and yylval, respectively.
3541
3542 * data/yacc.c (yyparse): In the initial action, set
3543 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
3544 This avoids the use of undefined variables if the initial
3545 action does not set yylloc and/or yylval.
3546
35472005-07-07 Paul Eggert <eggert@cs.ucla.edu>
3548
3549 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
3550 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
3551 Remove from CVS. These files are automatically generated.
3552 * examples/extexi: Clarify that this file is now part of Bison,
3553 not GNU M4, and that it works with any POSIX-compatible Awk.
3554 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
3555 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
3556 so that we also get calc++-parser.yy. Geneate it.
3557 Use $(AWK), not gawk, since any conforming Awk will do.
3558 Put comment before action, since older 'make' can't handle comment
3559 in action.
3560 $(BUILT_SOURCES): List all built sources, not just some of them.
3561 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
3562 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
3563 $($(calc_sources_generated)): Remove unnecessary test for existence
3564 of target. (This had a shell syntax error anyway; a stray "x".)
3565 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
3566 calc++-parser.yy.
3567 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
3568
3569 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
3570 implied by the other modules.
3571
35722005-07-06 Akim Demaille <akim@epita.fr>
3573
3574 Bind examples/calc++ to the package.
3575 * examples/calc++/Makefile: Remove, replaced by...
3576 * examples/calc++/Makefile.am: ... this new file.
3577 * examples/calc++/test: Remove input.
3578 * examples/calc++/compile: Remove.
3579 * examples/Makefile.am: New.
3580 * configure.ac, Makefile.am: Adjust.
3581 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
3582
35832005-07-05 Paul Eggert <eggert@cs.ucla.edu>
3584
3585 * data/glr.c (yyFail): Drastically simplify; since the format argument
3586 never had any % directives, we can simply pass it to yyerror.
3587 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
3588 be modified later, as that is the usual style in glr.c.
3589 Problems reported by Paul Hilfinger.
3590
3591 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
3592 and size overflow errors.
3593 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
3594 in case the user prolog sets feature-test macros like _GNU_SOURCE.
3595 (YYSIZEMAX): New macro.
3596 (yystpcpy): New function, taken from yacc.c.
3597 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
3598 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
3599 so that we don't have to maintain their signatures.
3600 (yyFail): Check for buffer overflow, by using vsnprintf rather
3601 than vsprintf. Allocate a bigger buffer if possible.
3602 Report an error if buffer allocation fails.
3603 (yyStackOverflow): New function.
3604 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
3605 the initialization was successful. It might fail if storage was
3606 exhausted.
3607 (yyexpandGLRStack): Add more checks for storage allocation failure.
3608 Use yyStackOverflow to report failures.
3609 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
3610 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
3611 Don't assume stack number fits in int.
3612 (yysplitStack): Check for storage allocation failure.
3613 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
3614 can print diagnostics on storage allocation failure. All callers
3615 changed.
3616 (yyresolveValue): Use yybool for boolean.
3617 (yyreportSyntaxError): Check for size-calculation overflow.
3618 This code is taken from yacc.c.
3619 (yyparse): Check for storage allocation errors when allocating
3620 the initial stack.
3621
36222005-07-05 Akim Demaille <akim@epita.fr>
3623
3624 Extract calc++ from the documentation.
3625 * doc/bison.texinfo (Calc++): Add the extraction marks.
3626 * examples/extexi: New, from the aborted GNU Programming 2E.
3627 Separate the different paragraph of a file with empty lines.
3628 * examples/Makefile: Use it to extract the whole calc++ example.
3629
36302005-06-24 Akim Demaille <akim@epita.fr>
3631
3632 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
3633 class typedefs.
3634
36352005-06-22 Akim Demaille <akim@epita.fr>
3636
3637 * doc/bison.texinfo (C++ Language Interface): First stab.
3638 (C++ Parsers): Remove.
3639
36402005-06-22 Akim Demaille <akim@epita.fr>
3641
3642 * data/lalr1.cc (yylex_): Honor %lex-param.
3643
36442005-06-22 Akim Demaille <akim@epita.fr>
3645
3646 Start a set of simple examples.
3647 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
3648 * examples/calc++/calc++-driver.hh,
3649 * examples/calc++/calc++-parser.yy,
3650 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
3651 * examples/calc++/compile, examples/calc++/test: New.
3652
36532005-06-09 Paul Eggert <eggert@cs.ucla.edu>
3654
3655 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
3656 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
3657 which stems from the 2005-05-27 patch.
3658
36592005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3660
3661 * data/glr.c: Modify treatment of unused parameters to permit use
3662 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
3663
36642005-05-30 Paul Eggert <eggert@cs.ucla.edu>
3665
3666 Fix infringement on user name space reported by Janos Zoltan Szabo.
3667 * data/yacc.c (yyparse): strlen -> yystrlen.
3668
36692005-05-30 Akim Demaille <akim@epita.fr>
3670
3671 * data/lalr1.cc (_): New.
3672 Translate the various messages.
3673
36742005-05-27 Paul Eggert <eggert@cs.ucla.edu>
3675
3676 Fix infringement on user name space reported by Bruno Haible.
3677 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
3678 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
3679 the user's name space.
3680 (alloca): Include <stdlib.h> to get it, if it's not built in.
3681 (YYMALLOC, YYFREE): Define only if needed.
3682 (malloc, free): Declare, but only if needed, as this infringes on
3683 the user name space.
3684
36852005-05-25 Paul Eggert <eggert@cs.ucla.edu>
3686
3687 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
3688 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
3689 with %d format.
3690 * lib/ebitset.c (min, max): Undef before defining.
3691 * lib/vbitset.c (min, max): Likewise.
3692 * lib/subpipe.c (create_subpipe): Save local variables in case
3693 vfork clobbers them.
3694
36952005-05-24 Bruno Haible <bruno@clisp.org>
3696
3697 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
3698 error message syntax used by gcc-4.0.
3699
37002005-05-23 Paul Eggert <eggert@cs.ucla.edu>
3701
3702 * README: Mention m4 1.4.3. Remove obsolete advice about
3703 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
3704
3705 * bootstrap: Remove workaround for problem I encountered with
3706 gettext 0.14.1; it seems to be fixed now.
3707
37082005-05-22 Paul Eggert <eggert@cs.ucla.edu>
3709
3710 * NEWS: Version 2.0a.
3711
3712 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
3713 the previous change.
3714
3715 Various maintainer cleanups.
3716 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
3717 conftest*, for benefit of CVS commands run at the same time as
3718 "configure". Add build-aux, since "bootstrap" now creates it and
3719 its subfiles.
3720 * Makefile.cfg (move_if_change): Remove.
3721 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
3722 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
3723 (po_repo, do-po-update, po-update, wget_files, get-targets):
3724 (config.guess-url_prefix, config.sub-url_prefix):
3725 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
3726 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
3727 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
3728 Remove.
3729 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
3730 this is now the recommended name.
3731 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
3732 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
3733 ylwrap. These files now go into build-aux.
3734 * config/move-if-change: Remove.
3735 * config/prev-version.txt: Bump from 1.75 to 2.0.
3736
3737 * bootstrap: Add stdio-safer, unistd-safer modules.
3738 Remove m4/glibc2.m4 (introduced by latest gnulib, but
3739 we don't need it).
3740 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
3741 fopen-safer.c, stdio-safer.h, unistd-safer.h.
3742 * lib/subpipe.c: Include "unistd-safer.h".
3743 (create_subpipe): Make sure all the newly-created
3744 file descriptors are > 2, so that diagnostics don't
3745 get sent down them (which might cause Bison to hang, in theory).
3746 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
3747 * src/files.c (xfopen): Use fopen_safer, not fopen.
3748
3749 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
3750 yesterday's yacc.c fix.
3751
37522005-05-21 Paul Eggert <eggert@cs.ucla.edu>
3753
3754 * data/glr.c, data/lalr1.cc: Update copyright date.
3755
3756 Fix a destructor bug reported by Wolfgang Spraul in
3757 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
3758 * data/yacc.c (yyabortlab): Don't call destructor, and
3759 don't set yychar to EMPTY.
3760 (yyoverflowlab): Don't call destructor.
3761 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
3762 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
3763 since we no longer output the message "discarding lookahead token
3764 end of input ()".
3765
37662005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3767
3768 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
3769 fix a small glitch in debugging output.
3770 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
3771 after YY_SYMBOL_PRINT where needed.
3772
3773 (struct yyGLRState): Add some comments.
3774 (struct yySemanticOption): Add some comments.
3775 (union yyGLRStackItem): Add comment.
3776
3777 (yymergeOptionSets): Correct this to properly perform the union,
3778 avoiding infinite reported by Michael Rosien.
3779 Update comment.
3780
3781 * tests/glr-regression.at: Add test for GLR merging error reported
3782 by M. Rosien.
3783
37842005-05-13 Paul Eggert <eggert@cs.ucla.edu>
3785
3786 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
3787 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
3788 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
3789 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
3790 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
3791 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
3792 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
3793 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
3794 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
3795 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
3796 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
3797 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
3798 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
3799 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
3800 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
3801 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
3802 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
3803 src/derives.h, src/files.c, src/files.h, src/getargs.c,
3804 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
3805 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
3806 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
3807 src/output.h, src/parse-gram.c, src/parse-gram.h,
3808 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
3809 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
3810 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
3811 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
3812 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
3813 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
3814 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
3815 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
3816 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
3817 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
3818 tests/reduce.at, tests/regression.at, tests/sets.at,
3819 tests/synclines.at, tests/testsuite.at, tests/torture.at:
3820 Update FSF postal mail address.
3821
38222005-05-11 Paul Eggert <eggert@cs.ucla.edu>
3823
3824 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
3825 Problem reported by Ralf Menzel.
3826
38272005-05-01 Paul Eggert <eggert@cs.ucla.edu>
3828
3829 * tests/actions.at: Test that stack overflow invokes destructors.
3830 From Marcus Holland-Moritz.
3831 * data/yacc.c (yyerrlab): Move the code that destroys the stack
3832 from here....
3833 (yyreturn): to here. That way, destructors are called properly
3834 even if the stack overflows, or the user calls YYACCEPT or
3835 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
3836 (yyoverflowlab): Destroy the lookahead.
3837
38382005-04-24 Paul Eggert <eggert@cs.ucla.edu>
3839
3840 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
3841
38422005-04-17 Paul Eggert <eggert@cs.ucla.edu>
3843
3844 * NEWS: Bison-generated C parsers no longer quote literal strings
3845 associated with tokens.
3846 * src/output.c (prepare_symbols): Don't escape strings,
3847 since users don't want to see C escapes.
3848 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
3849 in diagnostics.
3850 * tests/input.at (Torturing the Scanner): Likewise.
3851 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
3852
38532005-04-16 Paul Eggert <eggert@cs.ucla.edu>
3854
3855 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
3856 the data size is known to be too small and we can't increase it.
3857 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
3858
38592005-04-15 Paul Eggert <eggert@cs.ucla.edu>
3860
3861 * src/parse-gram.y: Include quotearg.h.
3862 (string_as_id): Quote $1 before using it as a key, since the
3863 lexer no longer quotes it for us.
3864 (string_content): Don't strip quotes, since lexer no longer
3865 quotes it for us.
3866 * src/scan-gram.l: Include quotearg.h.
3867 ("\""): Omit quote.
3868 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
3869 a key, since the rest of the lexer doesn't quote it.
3870 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
3871 * tests/regression.at (Token definitions): Check for backslashes
3872 in token strings.
3873
3874 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
3875 (YYSIZE_T): Define to unsigned long int when using an older compiler.
3876 (yyparse): Revamp code to generate long syntax error message, to
3877 make it easier to translate, and to avoid problems with arithmetic
3878 overflow. Change "virtual memory" to "memory" in diagnostic, since
3879 we don't know whether the memory is virtual.
3880
38812005-04-13 Paul Eggert <eggert@cs.ucla.edu>
3882
3883 * NEWS: Bison-generated C parsers now use the _ macro to
3884 translate strings.
3885 * data/yacc.c (_) [!defined _]: New macro.
3886 All English strings wrapped inside this macro.
3887 * doc/bison.texinfo (Bison Parser): Document _.
3888 * po/POTFILES.in: Include src/parse-gram.c, since it now
3889 includes translateable strings that parse-gram.y doesn't.
3890
38912005-04-12 Paul Eggert <eggert@cs.ucla.edu>
3892
3893 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
3894 reverting the 2004-10-11 change to this function.
3895 (symbol_check_alias_consistency): Don't call symbol_type_set
3896 if the type name is already correct.
3897 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
3898
38992005-03-25 Paul Eggert <eggert@cs.ucla.edu>
3900
3901 * tests/regression.at (Token definitions): Don't use a token named
3902 c, as that generates a "#define c ..." that runs afoul of buggy
3903 stdlib.h that uses the identifier c as a member of struct
3904 drand48_data. Problem reported by Horst Wente.
3905
39062005-03-21 Paul Eggert <eggert@cs.ucla.edu>
3907
3908 * bootstrap: Change translation URL from
3909 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
3910 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
3911 redirection glitches. Problem reported by twlevo@xs4all.nl.
3912
39132005-03-20 Paul Eggert <eggert@cs.ucla.edu>
3914
3915 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
3916 after operands; POSIX says this isn't portable for the c99 command.
3917
39182005-03-18 Paul Eggert <eggert@cs.ucla.edu>
3919
3920 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
3921 immediately if a data overrun has occurred; this may help us track
3922 down what may be a spurious failure on MacOS.
3923
39242005-03-17 Paul Eggert <eggert@cs.ucla.edu>
3925
3926 Respond to problems reported by twlevo@xs4all.nl.
3927
3928 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
3929
3930 * src/vcg.h: Comment fix.
3931 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
3932 (G_CMAX): Change to -1 instead of INT_MAX.
3933
3934 * data/yacc.c (yyparse): Omit spaces before #line.
3935
39362005-03-15 Paul Eggert <eggert@cs.ucla.edu>
3937
3938 * src/tables.c (state_number_to_vector_number): Put it inside an
3939 "#if 0", since it's not currently used. Problem reported by
3940 Roland McGrath.
3941
39422005-03-06 Paul Eggert <eggert@cs.ucla.edu>
3943
3944 * src/output.c (escaped_output): Renamed from
3945 escaped_file_name_output, since we now use it for symbol tags as
3946 well. All uses changed.
3947 (symbol_destructors_output, symbol_printers_output):
3948 Escape symbol tags too.
3949 Problem reported by Matyas Forstner in
3950 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
3951
3952 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
3953 not needed.
3954 * src/output.c (user_actions_output, token_definitions_output,
3955 symbol_destructors_output, symbol_printers_output): Likewise.
3956 * src/reader.c (prologue_augment): Likewise.
3957 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
3958
3959 * src/vcg.c (output_edge): Don't quote linestyle arg.
3960 Problem reported by twlevo@xs4all.nl.
3961
39622005-02-28 Paul Eggert <eggert@cs.ucla.edu>
3963
3964 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
3965 example, reported by Derek M Jones. Also, make the example even
3966 more outrageous, to better illustrate how bad the problem is.
3967
39682005-02-24 Paul Eggert <eggert@cs.ucla.edu>
3969
3970 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
3971 putsym. Typo reported by Sebastian Piping.
3972
39732005-02-23 Paul Eggert <eggert@cs.ucla.edu>
3974
3975 * doc/bison.texinfo (Language and Grammar): some -> same
3976 (Epilogue): int he -> in the
3977 Typos reported by Sebastian Piping via Justin Pence.
3978
39792005-02-07 Paul Eggert <eggert@cs.ucla.edu>
3980
3981 * tests/glr-regression.at (Improper handling of embedded actions
3982 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
3983 embedded actions and $-N in GLR parsers", work around an Autoconf bug
3984 with dollar signs in test names.
3985 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
3986 for a similar reason.
3987
39882005-01-28 Paul Eggert <eggert@cs.ucla.edu>
3989
3990 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
3991 wants to redefine G_VIEW.
3992
39932005-01-27 Paul Eggert <eggert@cs.ucla.edu>
3994
3995 * src/vcg.c (get_view_str): Remove case for normal_view.
3996 Problem reported by twlevo@xs4all.nl.
3997
39982005-01-24 Paul Eggert <eggert@cs.ucla.edu>
3999
4000 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
4001 Problem reported by twlevo@xs4all.nl.
4002
4003 * doc/bison.texinfo: Change @dircategory from "GNU programming
4004 tools" to "Software development". Requested by Richard Stallman
4005 via Karl Berry.
4006
40072005-01-23 Paul Eggert <eggert@cs.ucla.edu>
4008
4009 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
4010 Problem reported by twlevo@xs4all.nl.
4011
40122005-01-21 Paul Eggert <eggert@cs.ucla.edu>
4013
4014 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
4015 keyword; it's not needed with modern compilers, and it doesn't
4016 affect correctness with older compilers. Suggested by
4017 twlevo@xs4all.nl.
4018
40192005-01-17 Paul Eggert <eggert@cs.ucla.edu>
4020
4021 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
4022 gcc -Wswitch-default.
4023 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
4024 * data/yacc.c (yyparse): Likewise.
4025
40262005-01-12 Paul Eggert <eggert@cs.ucla.edu>
4027
4028 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
4029 already. Let config.h define any nonstandard values.
4030
40312005-01-10 Paul Eggert <eggert@cs.ucla.edu>
4032
4033 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
4034 for the benefit of slower hosts. Problem reported by
4035 Nelson H. F. Beebe.
4036
40372005-01-07 Paul Eggert <eggert@cs.ucla.edu>
4038
4039 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
4040 being defined and not used.
4041 * data/lalr1.cc (yyparse): Likewise.
4042 Use "if (false)" rather than "if (0)".
4043
40442005-01-05 Paul Eggert <eggert@cs.ucla.edu>
4045
4046 * TODO: Mention that we should allow NUL bytes in tokens.
4047
40482005-01-02 Paul Eggert <eggert@cs.ucla.edu>
4049
4050 * src/scan-skel.l (<<EOF>>): Don't close standard output.
4051 Problem reported by Hans Aberg.
4052
40532005-01-01 Paul Eggert <eggert@cs.ucla.edu>
4054
4055 * src/getargs.c (version): Happy new year; update overall
4056 program copyright date from 2004 to 2005.
4057
4058 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
4059 Problem reported by Hans Aberg.
4060 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
4061 (Output file names.): Add a test for the case when standard output
4062 is closed.
4063
40642004-12-26 Paul Eggert <eggert@cs.ucla.edu>
4065
4066 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
4067 to fix an oversight in the Bison 2.0 manual.
4068
40692004-12-25 Paul Eggert <eggert@cs.ucla.edu>
4070
4071 * NEWS: Version 2.0. Reformat the existing news items since
4072 1.875, so that related items are grouped together.
4073 * configure.ac (AC_INIT): Bump version to 2.0.
4074 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
4075
4076 * tests/torture.at (Exploding the Stack Size with Alloca): Set
4077 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
4078 otherwise, we're not testing alloca. Unfortunately there's no
4079 simple way to consult HAVE_ALLOCA here.
4080
4081 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
4082 for yymsg, too.
4083
4084 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
4085 hand. This avoids a warning about comparing int to size_t when
4086 GCC warnings are enabled.
4087
40882004-12-22 Paul Eggert <eggert@cs.ucla.edu>
4089
4090 * NEWS: Bison-generated parsers no longer default to using the
4091 alloca function (when available) to extend the parser stack, due
4092 to widespread problems in unchecked stack-overflow detection.
4093 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
4094 responsibility to set it to a positive value. This lets the user
4095 specify a value that is not a preprocessor constant.
4096 * data/yacc.c (YYMAXDEPTH): Likewise.
4097 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
4098 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
4099 to be a compile-time constant. However, explain the constraints on it.
4100 Also, explain the constraints on YYINITDEPTH.
4101 (Table of Symbols): Explain that alloca is no longer the default.
4102 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
4103 to 1.
4104
4105 * doc/bison.texinfo (Location Default Action): Mention that n must
4106 be zero when k is zero. Suggested by Frank Heckenbach.
4107
41082004-12-22 Akim Demaille <akim@epita.fr>
4109
4110 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
4111 (parser::state_type, parser::semantic_type, parser::location_type):
4112 Private, not public.
4113 (parser::parse): Return ints, not bool.
4114 Returning a bool introduces a problem: 0 corresponds to false, and
4115 it seems weird to return false on success. Returning true changes
4116 the conventions for yyparse.
4117 Alternatively we could return void and send an exception.
4118 There is no clear consensus (yet?).
4119 (state_stack, semantic_stack, location_stack): Rename as...
4120 (state_stack_type, semantic_stack_type, location_stack_type): these.
4121 Private, not public.
4122 * tests/c++.at: New.
4123 * tests/testsuite.at, tests/Makefile.am: Adjust.
4124
41252004-12-21 Akim Demaille <akim@epita.fr>
4126
4127 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
4128
41292004-12-21 Akim Demaille <akim@epita.fr>
4130
4131 Don't impose std::string for filenames.
4132
4133 * data/lalr1.cc (b4_filename_type): New.
4134 (position::filename): Use it.
4135 (parser.hh): Move the inclusion of stack.hh and location.hh below
4136 the user code, so that needed headers for the filename type can be
4137 included first.
4138 Forward declare them before the user code.
4139 * tests/Makefile.am (check-local, installcheck-local): Pass
4140 TESTSUITEFLAGS to the TESTSUITE.
4141
41422004-12-20 Akim Demaille <akim@epita.fr>
4143
4144 Use more STL like names: my_class instead of MyClass.
4145
4146 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
4147 (SemanticStack, SemanticType, StateStack, StateType)
4148 (TokenNumberType, Stack, Slice, Traits, Parser::location)
4149 (Parser::value): Rename as...
4150 (location_stack, location_type, rhs_number_type, semantic_stack)
4151 (semantic_type, state_stack, state_type, token_number_type, stack)
4152 (slice, traits, parser::yylloc, parser::yylval): these.
4153
4154 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
4155
41562004-12-19 Paul Eggert <eggert@cs.ucla.edu>
4157
4158 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
4159 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
4160
41612004-12-17 Paul Eggert <eggert@cs.ucla.edu>
4162
4163 Remove uses of 'short int' and 'unsigned short int'. This raises
4164 some arbitrary limits. It uses more memory but nowadays that's
4165 not much of an issue.
4166
4167 This change does not affect the generated parsers; that's a different
4168 task, as some users will want to conserve memory there.
4169
4170 Ideally we should use size_t to represent all object counts, and
4171 something like ptrdiff_t to represent signed differences of object
4172 counts; but that will require more code-cleanup than I have the
4173 time to do right now.
4174
4175 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
4176 Use size_t, not int or short int, to count objects.
4177 * src/closure.c (nritemset, closure): Likewise.
4178 * src/closure.h (nritemset, closure): Likewise.
4179 * src/nullable.c (nullable_compute): Likewise.
4180 * src/print.c (print_core): Likewise.
4181 * src/print_graph.c (print_core): Likewise.
4182 * src/state.c (state_compare, state_hash): Likewise.
4183 * src/state.h (struct state): Likewise.
4184 * src/tables.c (default_goto, goto_actions): Likewise.
4185
4186 * src/gram.h (rule_number, rule): Use int, not short int.
4187 * src/output.c (prepare_rules): Likewise.
4188 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
4189 errs, reductions): Likewise.
4190 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
4191 Likewise.
4192 * src/tables.c (vector_number, tally, action_number,
4193 ACTION_NUMBER_MINIMUM): Likewise.
4194 * src/output.c (muscle_insert_short_int_table): Remove.
4195
41962004-12-17 Akim Demaille <akim@epita.fr>
4197
4198 * data/lalr1.cc: Extensive Doxygenation.
4199 (error_): Rename as...
4200 (error): this, since it is visible to the user.
4201 Adjust callers.
4202 (Parser::message): Now an automatic variable from...
4203 (Parser::yyreport_syntax_error_): here.
4204 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
4205 Parser::error.
4206 * tests/input.at: Escape $.
4207
42082004-12-16 Paul Eggert <eggert@cs.ucla.edu>
4209
4210 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
4211 Parenthesize rhs to avoid obscure problems with mistakes like
4212 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
4213 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4214 b4_rhs_location): Likewise.
4215 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4216 b4_rhs_location): Likewise.
4217
42182004-12-16 Akim Demaille <akim@epita.fr>
4219
4220 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
4221 yacc.c: be sure to stay within yycheck_.
4222 * tests/actions.at: Re-enable C++ tests.
4223
42242004-12-16 Akim Demaille <akim@epita.fr>
4225
4226 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
4227 real.
4228
42292004-12-16 Akim Demaille <akim@epita.fr>
4230
4231 Use #define to handle the %name-prefix.
4232
4233 * data/glr.c, data/yacc.c: Comment changes.
4234 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
4235 so that one can refer to yylex in the parser file, and have it
4236 renamed, as is the case with other skeletons.
4237
42382004-12-16 Akim Demaille <akim@epita.fr>
4239
4240 Move lalr1.cc internals into yy*.
4241
4242 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
4243 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
4244 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
4245 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
4246 (empty_, final_, terror_, errcode_, ntokens_)
4247 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
4248 (looka_, ilooka_, error_range_, nerrs_):
4249 Rename as...
4250 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
4251 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
4252 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
4253 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
4254 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
4255 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
4256 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
4257 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
4258 these.
4259
42602004-12-15 Paul Eggert <eggert@cs.ucla.edu>
4261
4262 Fix some problems reported by twlevo at xs4all.
4263 * src/symtab.c (symbol_new): Report an error if the input grammar
4264 contains too many symbols. This is better than calling abort() later.
4265 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
4266 (struct node, struct graph):
4267 Rename member expand to stretch. All uses changed.
4268 (struct graph): Remove member layoutalgorithm. All uses removed.
4269 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
4270 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
4271 All uses changed.
4272 (N_STRETCH): Rename from N_EXPAND. All uses changed.
4273
42742004-12-15 Akim Demaille <akim@epita.fr>
4275
4276 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
4277 Add more Doxygen comments.
4278 (symprint_, stack_print_, reduce_print_, destruct_, pop)
4279 (report_syntax_error_, translate_): Rename as...
4280 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
4281 (yypop_, yyreport_syntax_error_, yytranslate_): this.
4282
42832004-12-15 Akim Demaille <akim@epita.fr>
4284
4285 * data/lalr1.cc (lex_): Rename as...
4286 (yylex_): this.
4287 Move the trace here.
4288 Take the %name-prefix into account.
4289 Reported by Alexandre Duret-Lutz.
4290
42912004-12-15 Akim Demaille <akim@epita.fr>
4292
4293 Simplify the C++ parser constructor.
4294
4295 * data/lalr1.cc (debug_): Rename as...
4296 (yydebug_): so that the parser's internals are always in the yy*
4297 pseudo namespace.
4298 Adjust uses.
4299 (b4_parse_param_decl): Remove the leading comma as it is now only
4300 called as unique argument list.
4301 (Parser::Parser): Remove the constructor accepting a location and
4302 an initial debugging level.
4303 Remove from the other ctor the argument for the debugging level.
4304 (debug_level_type, debug_level, set_debug_level): New.
4305
4306 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
4307 constructor calls.
4308
43092004-12-15 Akim Demaille <akim@epita.fr>
4310
4311 Remove b4_root related material: failure experiment
4312 (which goal was to allow to derive from a class).
4313
4314 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
4315 definitions and uses.
4316
43172004-12-14 Paul Eggert <eggert@cs.ucla.edu>
4318
4319 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
4320 not 2, since it's not portable to subtract 1 from the start of an
4321 array. The new item 0 is never set or used. All uses changed.
4322
4323 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
4324 the default definition of YYLLOC_DEFAULT. Problem reported
4325 by Frank Heckenbach.
4326
43272004-12-12 Paul Eggert <eggert@cs.ucla.edu>
4328
4329 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
4330 the normal case and one for the error case. Just use the
4331 first one uniformly. Problem reported by Frank Heckenbach.
4332 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
4333 use exactly the same macro in both places.
4334 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
4335 so that the normal-case YYRHSLOC works for the error case too.
4336 All uses changed.
4337 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
4338 (YYLLOC_DEFAULT): Use the same macro as glr.c.
4339 * doc/bison.texinfo (Location Default Action): Don't claim that
4340 we have an array of locations. Use the same macro for both glr
4341 and lalr parsers. Mention YYRHSLOC. Mention what happens when
4342 the index is 0.
4343
43442004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4345
4346 * HACKING: Update email addresses to send announcements to.
4347
4348 * configure.ac (AC_INIT): Bump version to 1.875f.
4349
43502004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4351
4352 * NEWS: Version 1.875e.
4353 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
4354
4355 * src/scan-skel.l: Include "complain.h", for "fatal".
4356
4357 * src/relation.h (relation_print, relation_digraph):
4358 Relation sizes are of type relation_node, not size_t (this is
4359 merely a doc fix, since the two types are equivalent).
4360 (relation_transpose): Relation sizes are of type relation_node,
4361 not int.
4362 * src/relation.c: Likewise.
4363 (top, infinity): Now of type relation_node, not int.
4364 (traverse, relation_transpose): Use relation_node, not int.
4365
4366 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
4367 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
4368 (yyparse): Remove unused local introduced in 2004-10-25 patch.
4369
4370 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
4371 specifying whether the test should be skipped. Use it tp
4372 specify that the [%defines %skeleton "lalr1.cc"] tests currently
4373 fail on some hosts, and should be skipped.
4374
43752004-12-08 Paul Eggert <eggert@cs.ucla.edu>
4376
4377 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
4378 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
4379 unless otherwise specified below.
4380
4381 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
4382 to allocate kernel_base, kernel_items, kernel_size, since
4383 they needn't be initialized to 0.
4384 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
4385 * src/closure.c (new_closure): Likewise, for itemset.
4386 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
4387 * src/lalr.c (set_goto_map): Likewise, for temp_map.
4388 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
4389 (build_relations): Likewise for edge, states1, includes.
4390 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
4391 * src/reader.c (packgram): Likewise, for ritem, rules.
4392 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
4393 * src/relation.c (relation_digraph): Likewise for VERTICES.
4394 (relation_transpose): Likewise for new_R, end_R.
4395 * src/symtab.c (symbols_token_translations_init): Likewise for
4396 token_translations.
4397 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
4398 (token_actions): Likewise for yydefact, actrow, conflrow,
4399 conflict_list.
4400 (save_column): Likewise for froms[symno], tos[symno].
4401 (goto_actions): Likewise for state_count.
4402 (pack_table): Likewise for base, pos, check.
4403 (tables_generate): Likewise for width.
4404
4405 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
4406 for initial core. Just have a separate core, so we needn't worry
4407 about whether kernel_size and kernel_base are initialized.
4408
4409 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
4410 kernel_size, kernel_items): Remove unnecessary initialization.
4411 * src/conflicts.c (conflicts): Likewise.
4412 * src/derives.c (derives): Likewise.
4413 * src/muscle_tablc (muscle_insert): Likewise.
4414 * src/relation.c (relation_digraph): Likewise.
4415 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
4416 conflrow, conflict_table, conflict_list, table, check):
4417 Likewise.
4418
4419 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
4420 This is because all callers pass unsigned int.
4421 * src/closure.h (new_closure): Likewise.
4422
4423 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
4424 (build_relations): Initialize includes[i] in all cases.
4425 * src/reader.c (packgram): Always initialize rules[ruleno].prec
4426 and rules[ruleno].precsym. Initialize members in order.
4427 * src/relation.c (relation_transpose): Always initialize new_R[i]
4428 and end_R[i].
4429 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
4430
4431 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
4432 conflict_list[0] was always 0, but now it isn't initialized.
4433
4434 * src/table.c (table_grow): When conflict_table grew, the grown
4435 area wasn't cleared. Fix this.
4436
4437 * lib/.cvsignore: Add strdup.c, strdup.h.
4438 * m4/.cvsignore: Add strdup.m4.
4439
44402004-12-07 Paul Eggert <eggert@cs.ucla.edu>
4441
4442 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
4443 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
4444 GOTO_NUMBER_MAXIMUM, since we occasionally compute
4445 ngotos + 1 without checking for overflow.
4446 (build_relations): Use END_NODE, not -1, to denote end of edges.
4447 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
4448 build_relations): Use goto_number, not int, for goto numbers.
4449 * src/tables.c (save_column, default_goto): Likewise.
4450
44512004-11-23 Akim Demaille <akim@epita.fr>
4452
4453 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
4454 of #defining from yystype.
4455 Don't typedef yystype, C++ does not need it.
4456 This lets it possible to forward declare it as union.
4457
44582004-11-23 Paul Eggert <eggert@cs.ucla.edu>
4459
4460 * bootstrap (gnulib_modules): Add extensions.
4461 Problem reported by Jim Meyering.
4462
44632004-11-22 Paul Eggert <eggert@cs.ucla.edu>
4464
4465 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
4466 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
4467 src/system.h, src/tables.c: XFREE -> free, to accommodate
4468 recent change to gnulib xalloc.h.
4469 Problem reported by Jim Meyering.
4470
44712004-11-17 Akim Demaille <akim@epita.fr>
4472
4473 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
4474
44752004-11-17 Akim Demaille <akim@epita.fr>,
4476 Alexandre Duret-Lutz <adl@gnu.org>
4477
4478 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
4479 changes.
4480 (YYCDEBUG): Adjust.
4481 Use it instead of cdebug_.
4482 (Parser::debug_stream, Parser::set_debug_stream): New.
4483 (Parser::symprint_): Define cdebug_ for temporary backward
4484 compatibility.
4485 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
4486 debug_stream ().
4487
44882004-11-17 Akim Demaille <akim@epita.fr>
4489
4490 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
4491 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
4492 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
4493 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
4494
44952004-10-27 Paul Eggert <eggert@cs.ucla.edu>
4496
4497 * data/glr.c (yyloc_default): Remove; not used.
4498 Problem reported by Frank Heckenbach.
4499
45002004-10-25 Akim Demaille <akim@epita.fr>
4501
4502 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
4503 Introduce another definition to address simple location arrays.
4504 (yyGLRStack): New member: yyerror_range.
4505 (yyrecoverSyntaxError, yyparse): Update it.
4506 (yyrecoverSyntaxError): Use it when shifting the error token to
4507 have an accurate range, equivalent to the one computed by both
4508 yacc.c and lalr1.cc.
4509 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
4510 that column numbers start at column 0, as per GNU Coding
4511 Standards, the others tests, and the doc.
4512 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
4513 Adjust to the above change (first column is 0).
4514 And adjust the location of the "<error>", now covering the whole
4515 line.
4516
45172004-10-22 Akim Demaille <akim@epita.fr>
4518 and Paul Eggert <eggert@cs.ucla.edu>
4519
4520 Remove some arbitrary limits on goto numbers and relations.
4521 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
4522 initial values, since they're never used.
4523 (set_goto_map): ngotos is now unsigned, so test for overflow
4524 by seeing whether it wraps around to zero.
4525 * src/lalr.h (goto_number): Now size_t, not short int.
4526 (GOTO_NUMBER_MAXIMUM): Remove.
4527 * src/relation.c (relation_print, traverse, relation_transpose):
4528 Check for END_NODE rather than looking at sign.
4529 * src/relation.h (END_NODE): New macro.
4530 (relation_node): Now size_t, not short int.
4531
45322004-10-22 Paul Eggert <eggert@cs.ucla.edu>
4533
4534 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
4535 keyword, not an identifier. Problem reported by Baron Schwartz in
4536 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
4537
45382004-10-11 Akim Demaille <akim@epita.fr>
4539
4540 * src/symtab.c (symbol_check_alias_consistency): Also check
4541 type names, destructors, and printers.
4542 Reported by Alexandre Duret-Lutz.
4543 Recode the handling of associativity and precedence in terms
4544 of symbol_precedence_set.
4545 Accept no redeclaration at all, not even equal to the previous
4546 value.
4547 (redeclaration): New.
4548 Use it to factor redeclaration complaints.
4549 (symbol_make_alias): Don't set the type of the alias, let
4550 symbol_check_alias_consistency do it as for other features.
4551 * src/symtab.h (symbol): Add new member prec_location, and
4552 type_location.
4553 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
4554 * tests/input.at (Incompatible Aliases): New.
4555
45562004-10-09 Paul Eggert <eggert@cs.ucla.edu>
4557
4558 .cvsignore fixes to accommodate gnulib changes,
4559 and the practice of naming build directories "_build".
4560 * .cvsignore: Add "_*". Sort.
4561 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
4562 * m4/.cvsignore: Add "*_gl.m4".
4563
45642004-10-06 Akim Demaille <akim@epita.fr>
4565
4566 * src/parse-gram.y (add_param): Fix the truncation of trailing
4567 spaces.
4568
45692004-10-05 Akim Demaille <akim@epita.fr>
4570
4571 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
4572 whether the reducion was empty or not. This leaves room to
4573 improve the use of YYLLOC_DEFAULT in such a case.
4574 lalr1.cc is still experimental, so changing this is acceptable.
4575 And finally, there are probably not many users who changed the
4576 handling of locations in GLR, so changing is admissible too.
4577
4578 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
4579 empty reduction, set @$ to an empty location ending the previously
4580 stacked symbol.
4581 Adjust uses to make sure the code is triggered on empty
4582 reductions.
4583 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
4584 expected output: empty reductions have empty locations.
4585
45862004-09-29 Akim Demaille <akim@epita.fr>
4587
4588 * data/lalr1.cc: Move towards a more standard C++ coding style
4589 for templates: Class < T > -> Class<T>.
4590
45912004-09-29 Akim Demaille <akim@epita.fr>
4592
4593 * data/lalr1.cc: Reinstall the former ctor, for sake of
4594 compatibility, but warn it will be removed.
4595 Move towards a more standard C++ coding style (i.e., type *var ->
4596 type* var).
4597
45982004-09-27 Paul Eggert <eggert@cs.ucla.edu>
4599
4600 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
4601 since it's less likely to work if NULs are involved in the future.
4602
46032004-09-27 Akim Demaille <akim@epita.fr>
4604
4605 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
4606
46072004-09-27 Akim Demaille <akim@epita.fr>
4608
4609 * data/lalr1.cc (b4_parse_param_decl_1): New.
4610 (b4_parse_param_decl): Use it to have different names between attribute
4611 and argument names.
4612 (b4_cc_constructor_call): Likewise.
4613
46142004-09-24 Akim Demaille <akim@epita.fr>
4615
4616 * src/parse-gram.y (add_param): Strip the leading and trailing
4617 blanks from a formal argument declaration.
4618 (YY_LOCATION_PRINT): New.
4619
46202004-09-24 Akim Demaille <akim@epita.fr>
4621
4622 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
4623 after the location.
4624
46252004-09-24 Akim Demaille <akim@epita.fr>
4626
4627 * doc/bison.texinfo (Table of Symbols): Sort.
4628
46292004-09-21 Akim Demaille <akim@epita.fr>
4630
4631 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
4632 the useless parentheses.
4633 Suggested by Paul Eggert.
4634
46352004-09-20 Akim Demaille <akim@epita.fr>
4636
4637 Let the initial-action act on the look-ahead, and use it for the
4638 "initial push" (corresponding to an hypothetical beginning-of-file).
4639 And let lalr1.cc honor %initial-action.
4640
4641 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
4642 example.
4643 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
4644 (Parser::Parser): Remove the ctor that used to initialize it.
4645 (Parser::parse): Like in the other skeletons, issue the "starting
4646 parse" message before any action.
4647 Honor %initial-action.
4648 Initialize the stacks with the lookahead.
4649 * data/yacc.c: Let $$ and @$ in %initial-action designate the
4650 look-ahead.
4651 Push them in the stacks.
4652 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
4653
46542004-09-20 Akim Demaille <akim@epita.fr>
4655
4656 * doc/bison.texinfo (Initial Action Decl): New.
4657
46582004-09-20 Akim Demaille <akim@epita.fr>
4659
4660 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
4661 clearer criterion to define it.
4662 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
4663 When reducing on an empty RHS, use the latest stacked location as
4664 location.
4665 yylloc is not always available.
4666 * data/glr.c: Likewise.
4667 Also, honor initial-actions.
4668
46692004-09-20 Akim Demaille <akim@epita.fr>
4670
4671 * data/yacc.c (YY_LOCATION_PRINT): New.
4672 Define when we know YYLTYPE's structure, i.e., when the default
4673 YYLLOC_DEFAULT is used.
4674 * data/c.m4 (b4_yysymprint_generate): Use it.
4675 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
4676 value of the result.
4677 (error_start_): Replace with...
4678 (error_range_): this location array.
4679 This allows to replace code relying on the implementation of
4680 locations by portable code.
4681 * data/yacc.c (yylerrsp): Replace with...
4682 (yyerror_range): this.
4683 Every time a token is popped, update yyerror_range[0], to have an
4684 accurate location for the error token.
4685 * data/glr.c (YY_LOCATION_PRINT): New.
4686 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
4687 deference a pointer.
4688 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
4689 report the location in %printers.
4690
4691 * src/scan-skel.l: Instead of abort, report error messages to ease
4692 understanding skeleton scanning failures.
4693
46942004-09-16 Akim Demaille <akim@epita.fr>
4695
4696 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
4697 (iterator, const_iterator): these, to be more in the C++ spirit.
4698 Also, return reverse iterators so that when displaying the stack
4699 we display its bottom first.
4700 (Parser::stack_print_, Parser::reduce_print_): Match the messages
4701 from yacc.c.
4702 We should probably use vector here though.
4703
47042004-09-16 Akim Demaille <akim@epita.fr>
4705
4706 Have more complete shift traces.
4707
4708 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
4709 to report Shifts instead of ad hoc YYDPRINTF invocations,
4710 including for the error token.
4711 * data/lalr1.cc (symprint_): Output the location.
4712 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
4713 output the location within the %printer.
4714 Activate GLR tests, at least to make sure they compile properly.
4715 They still don't pass though.
4716 * tests/calc.at: Adjust expect verbose output, since now "Entering
4717 state..." is on a different line than the "Shifting" message.
4718
47192004-09-08 Akim Demaille <akim@epita.fr>
4720
4721 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
4722 Bison directive from the Bison file to the invocation of this
4723 macro, so that these directives are passed to
4724 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
4725 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
4726 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
4727 the extra Bison directives instead of the whole series.
4728 Change the grammar so that there are recoverable errors, and
4729 unrecoverable errors. Now we can have the parser give up before
4730 consuming the whole input. As a result we now can observe that
4731 the lookahead is freed when needed.
4732 Change the parser source to parse argv[1] instead of a hard coded
4733 string.
4734 Simplify yylex, and give a value and location to EOF.
4735 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
4736 passed directives already coded in the file.
4737 Add some tests to check the location of "error".
4738 For some tests, the C++ parser is correct, and not yacc.c.
4739 For other tests, they provide different, but unsatisfying, values,
4740 so keep the C++ value so that at least one parser is "correct"
4741 according to the test suite.
4742 (Actions after errors): Remove, this is subsumed by the
4743 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
4744
47452004-09-06 Akim Demaille <akim@epita.fr>
4746
4747 * data/lalr1.cc: Adjust the indentation of the labels.
4748 (Parser::pop): New.
4749 Use it.
4750
47512004-09-06 Akim Demaille <akim@epita.fr>
4752
4753 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
4754 argument, an informative message.
4755 Call YY_SYMBOL_PRINT.
4756 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
4757 * data/lalr1.cc (destruct_): Likewise.
4758 In addition, no longer depend on b4_yysymprint_generate and
4759 b4_yydestruct_generate to generate these functions, do it "by
4760 hand".
4761
47622004-09-03 Akim Demaille <akim@epita.fr>
4763
4764 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
4765 invoked, yydestruct the lookahead.
4766 * tests/calc.at (Calculator $1): Update the expected lengths of
4767 traces: there is an added line for the discarded lookahead.
4768 * doc/bison.texinfo (Destructor Decl): Some rewording.
4769 Define "discarded" symbols.
4770
47712004-09-02 Akim Demaille <akim@epita.fr>
4772
4773 * data/lalr1.cc (translate_, destruct_): No reason to be static.
4774
47752004-09-02 Akim Demaille <akim@epita.fr>
4776
4777 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
4778 (YYDSYMPRINTF): Rename as...
4779 (YY_SYMBOL_PRINT): this.
4780 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
4781 two.
4782 Use it instead of direct symprint_ calls.
4783 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
4784 one.
4785
47862004-09-02 Akim Demaille <akim@epita.fr>
4787
4788 * data/lalr1.cc (b4_yysymprint_generate): New.
4789 (symprint_): New member function, defined when YYDEBUG.
4790 Use it consistently instead of token/nterm debugging output by
4791 hand.
4792 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
4793 %printer calls to use cdebug_ when using lalr1.cc.
4794
47952004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
4796
4797 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
4798 with #ifdef YYDEBUG.
4799
48002004-08-26 Akim Demaille <akim@epita.fr>
4801
4802 * doc/bison.texinfo (Implementing Loops): Rename as...
4803 (Implementing Gotos/Loops): this.
4804
48052004-08-13 Paul Eggert <eggert@cs.ucla.edu>
4806
4807 Adjust to latest gnulib.
4808 * bootstrap (gnulib_modules): Add xalloc-die.
4809 Set LC_ALL=C so that file names sort consistently.
4810 Prefer the gnulib copies of gettext.m4, glibc21.m4,
4811 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
4812 uintmax_t.m4, ulonglong.m4.
4813 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
4814 po.m4 since we are now using _gl.m4 instead.
4815
48162004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
4817
4818 * src/scan-action.l: Remove. Scanning of semantic actions is
4819 handled in scan-gram.l.
4820
48212004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
4822
4823 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
4824
4825 * src/location.h (struct): The file member is a uniqstr.
4826 (equal_boundaries): Use UNIQSTR_EQ for comparison.
4827
48282004-07-22 Paul Eggert <eggert@cs.ucla.edu>
4829
4830 Fix bug with non-%union parsers that have printers or destructors,
4831 which led to a Bison core dump. Reported by Peter Fales in
4832 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
4833
4834 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
4835 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
4836 not to our own type.
4837 * src/output.c (symbol_destructors_output, symbol_printers_output):
4838 Don't assume %union.
4839 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
4840 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
4841 UNION-FLAG. All callers changed.
4842 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
4843 Use type char, not unsigned int, when declaring an array of char;
4844 this lets us remove a cast.
4845 (Printers and Destructors): Add non-%union test cases.
4846
48472004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4848
4849 * doc/bison.texinfo: Minor editorial changes, mostly to the new
4850 GLR writeups. E.g., avoid frenchspacing and the future tense,
4851 change "lookahead" to "look-ahead", and change "wrt" to "with
4852 respect to".
4853
48542004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4855
4856 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
4857 New sections, split off from the GLR Parsers section. Put the new
4858 Simple GLR Parser near the start of the GLR section, for clarity.
4859 Rewrite connective text.
4860
48612004-06-21 Frank Heckenbach <frank@g-n-u.de>
4862
4863 * doc/bison.texinfo (Simple GLR Parsers): New section.
4864
48652004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4866
4867 * NEWS, TODO, doc/bison.texinfo:
4868 Use "look-ahead" instead of "lookahead", to be consistent.
4869 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
4870 while we're fixing "look-ahead".
4871 * src/conflicts.c (shift_set): Renamed from shiftset.
4872 (look_ahead_set): Renamed from lookaheadset.
4873 * src/print.c: Likewise.
4874 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
4875 name for "lookahead".
4876 (report_types, usage): Likewise.
4877 * src/getargs.h (report_look_ahead_tokens): Renamed from
4878 report_lookaheads.
4879 * src/lalr.c (compute_look_ahead_tokens): Renamed from
4880 compute_lookaheads.
4881 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
4882 (look_ahead_tokens_print): Renamed from lookaheads_print.
4883 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
4884 state_rule_lookaheads_print.
4885 * src/state.h: Likewise.
4886 (reductions.look_ahead_tokens): Renamed from lookaheads.
4887 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
4888 AT_DATA_LOOKAHEADS_GRAMMAR.
4889
48902004-06-03 Paul Eggert <eggert@cs.ucla.edu>
4891
4892 * README: Update location of patched M4 distribution.
4893
48942004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
4895
4896 Don't assume the C++ compiler takes the same arguments as the C compiler
4897 (trivial change).
4898 * configure.ac (O0CXXFLAGS): New var.
4899 * tests/atlocal.in (CXXFLAGS): Use it.
4900
49012004-05-29 Paul Eggert <eggert@cs.ucla.edu>
4902
4903 Fix some "make check" problems with C++ reported by
4904 Albert Chin-A-Young for Tru64 C++ in this thread:
4905 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
4906
4907 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
4908 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4909 Output to a .cc file for C++, not to a .c file.
4910 * tests/calc.at (AT_CHECK_CALC): Likewise.
4911 * tests/regression.at (AT_CHECK_DANCER): Likewise.
4912 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
4913
49142004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
4915
4916 * tests/calc.at, tests/actions.at: Workaround for SGI
4917 C++ compiler. (trivial change)
4918
49192004-05-27 Paul Eggert <eggert@cs.ucla.edu>
4920
4921 Spent a few hours checking out which prerequisite versions the
4922 current sources actually require. I went all the way back to
4923 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
4924 a seemingly endless set of combinations of versions more recent
4925 than that. The bottom line is that the current sources require
4926 fairly recent versions of the build tools, and it'll be some work
4927 to change this.
4928 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
4929 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
4930 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
4931 Add comments explaining why those particular versions are
4932 currently needed.
4933
4934 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
4935 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
4936 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
4937
4938 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
4939 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
4940
49412004-05-26 Paul Eggert <eggert@cs.ucla.edu>
4942
4943 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
4944 0.11.5. Suggested by Bruno Haible.
4945 * bootstrap: Remove gettext version checking.
4946
4947 * doc/bison.texinfo (Decl Summary): Also mention that %union
4948 can depend on prerequisite types. Problem reported by Tim
4949 Van Holder.
4950
49512004-05-25 Paul Eggert <eggert@cs.ucla.edu>
4952
4953 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
4954 * README-alpha: Don't tell people not to package this.
4955
4956 * bootstrap: Don't assume $(...) works; use `...` instead.
4957 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
4958 gettext better.
4959
4960 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
4961 put into the -d output file, and mention what to do if YYSTYPE is
4962 defined as a macro.
4963
49642004-05-24 Paul Eggert <eggert@cs.ucla.edu>
4965
4966 Undo change made earlier today: it caused autopoint to not bring
4967 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
4968 autopoint's.
4969
4970 * bootstrap: Check that gettext version matches what's in
4971 configure.ac. Warn users to ignore robots.txt ERROR 404.
4972 * bootstrap: Undo today's earlier change (logged below).
4973 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
4974
4975 The gettext version checking is causing more trouble than it's
4976 curing; remove it. Problem reported by Paul Hilfinger.
4977
4978 * bootstrap: Issue a warning that one can expect a message
4979 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
4980 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
4981
49822004-05-23 Paul Eggert <eggert@cs.ucla.edu>
4983
4984 Ensure that the C++ compiler used for testing actually works on a
4985 simple test program; if not, skip the C++-related tests. Problem
4986 reported by Vin Shelton in:
4987 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
4988
4989 * m4/cxx.m4: New file.
4990 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
4991 * tests/atlocal.in (BISON_CXX_WORKS): Add.
4992 * tests/local.at (AT_COMPILE_CXX): Use it.
4993
49942004-05-21 Paul Eggert <eggert@cs.ucla.edu>
4995
4996 * data/glr.c (yylloc): Output this macro even if locations are not
4997 being generated, as the GLR parser needs it even in that case.
4998 Problem reported by Troy A. Johnson
4999 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
5000
5001 * configure.ac (AC_INIT): Update to 1.875e.
5002
50032004-05-21 Paul Eggert <eggert@cs.ucla.edu>
5004
5005 * NEWS: Version 1.875d.
5006 * configure.ac (AC_INIT): Likewise.
5007 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
5008
5009 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
5010 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
5011 lalr1.cc runs afoul of the first, and the last two are no longer
5012 supported by GCC 3.4.0.
5013 * README: Mention GNU m4 1.4 or later; mention m4 patches.
5014 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
5015
50162004-05-06 Paul Eggert <eggert@cs.ucla.edu>
5017
5018 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
5019 unsigned int, for compatibility with latest gnulib hash module.
5020 * src/state.c (state_hash, state_hasher): Likewise.
5021 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
5022 * src/uniqstr.c (hash_uniqstr): Likewise.
5023
50242004-05-03 Paul Eggert <eggert@cs.ucla.edu>
5025
5026 * NEWS: Unescaped newlines are no longer allowed in char & strings.
5027
5028 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
5029 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
5030 character and string literals.
5031 (unexpected_end): New function.
5032 (unexpected_eof): Use it.
5033 (unexpected_newline): New function.
5034 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
5035 actions.
5036
5037 * NEWS: Document %expect-rr.
5038
5039 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
5040 Fix typo by replacing $1 with $option.
5041 Remove more 'intl'-related files.
5042 Don't DEFUN AM_INTL_SUBDIR twice.
5043
5044 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
5045 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
5046 strtoul.c.
5047 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
5048 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
5049 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
5050 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
5051 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
5052 * src/.cvsignore: Add *.output.
5053
5054 * src/parse-gram.y: Put copyright notice inside %{ %} so it
5055 gets copied to the output file.
5056
50572004-04-28 Paul Eggert <eggert@twinsun.com>
5058
5059 Get files from the gnulib and po repositories, instead of relying
5060 on them being in our CVS. Upgrade to latest versions of gnulib
5061 and Automake.
5062
5063 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
5064 * bootstrap: Bootstrap from gnulib and po repositories.
5065 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
5066 * README-cvs: Document these changes. Remove version numbers from
5067 mentions of build tools, since they change so often. Mention Flex.
5068
5069 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
5070 (gl_USE_SYSTEM_EXTENSIONS): Add.
5071 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
5072 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
5073 does this for us.
5074 (AC_ISC_POSIX): Remove; we no longer support this
5075 ancient OS, as it gets in the way of latest Autoconf & gnulib.
5076 (AC_HEADER_STDC): Remove: we now assume C89 or better.
5077 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
5078 Do not check for C89 headers, except for locale.h which is used
5079 by the Yacc library and must port to K&R hosts.
5080 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
5081 Do not check for C89 functions, except for setlocale which is
5082 used by the Yacc library.
5083 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
5084 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
5085 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
5086 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
5087 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
5088 AM_GNU_GETTEXT): Remove; now done by:
5089 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
5090 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
5091 for us.
5092
5093 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
5094 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
5095 Define to empty, as gnulib.mk will do the rest for us.
5096 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
5097 for us.
5098 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
5099 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
5100
5101 * src/files.c: Include gnulib's xstrndup.h.
5102
5103 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
5104 (REALLOC): Use xnrealloc, for likewise.
5105 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
5106 (strnlen, memrchr): Remove decls; functions no longer used.
5107 Include <stpcpy.h>.
5108
5109 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
5110 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
5111 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
5112 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
5113 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
5114 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
5115 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
5116 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
5117 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
5118 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
5119 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
5120 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
5121 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
5122 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
5123 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
5124 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
5125 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
5126 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
5127 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
5128 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
5129 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
5130 Remove, as these files are now generated automatically
5131 by bootstrap or automake.
5132
5133 * po/ChangeLog: Remove: all but one entry was a duplicate
5134 of this file, and I moved that 2000-11-02 entry here.
5135
5136 * config/.cvsignore: Add Makefile, depcomp, install-sh.
5137 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
5138 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
5139 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
5140 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
5141 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
5142 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
5143 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
5144 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
5145 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
5146 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
5147 xstrndup.h.
5148 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
5149 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
5150 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
5151 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
5152 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
5153 * src/.cvsignore: Remove *_.c.
5154
5155
5156 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
5157 support it. (The latest stable gzip doesn't.)
5158
51592004-04-27 Paul Eggert <eggert@twinsun.com>
5160
5161 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
5162 case, as stos_ is now used by destructors due to the 2004-02-09
5163 change.
5164
5165 Remove more K&R C support.
5166 * lib/libiberty.y (PARAMS): Remove. All uses removed.
5167 * lib/subpipe.c (errno): Remove decl.
5168 Include <stdlib.h> unconditionally.
5169 (EXIT_FAILURE): Remove macro.
5170 * src/complain.c (vfprintf, strerror): Remove.
5171 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
5172 unconditionally.
5173 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
5174 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
5175 (strchr, strspn, memchr): Remove decls.
5176 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
5177 unconditionally. Do not declare perror.
5178 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
5179 unconditionally.
5180
5181 * src/complain.c (_): Remove useless defn, as system.h defines this.
5182
5183 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
5184 with latest obstack.h.
5185 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
5186 to procedure types, as obstack.h now does that for us.
5187 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
5188
5189 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
5190 so that this include file can stand alone.
5191 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
5192 does this now. Include subpipe.h first after config.h, to
5193 test whether it can stand alone.
5194
5195 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
5196 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
5197 unused declaration.
5198
5199 * tests/synclines.at (%union synch line): Put a dummy member in
5200 the union, because empty unions aren't allowed in C. Caught
5201 by GCC 3.4.0.
5202
52032004-04-13 Jim Meyering <jim@meyering.net>
5204
5205 * src/conflicts.c (conflicts_print): Correct format string typo:
5206 use `%%' to produce literal `%'. (trivial change)
5207
52082004-03-30 Paul Eggert <eggert@twinsun.com>
5209
5210 * src/getargs.c (version): Update copyright year to 2004.
5211
5212 * data/c.m4 (b4_int_type): Use 'short int' rather than
5213 'short', and similarly for 'long', 'unsigned', etc.
5214 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
5215 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
5216 yy_yypstack, yydumpstack): Likewise.
5217 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
5218 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
5219 Likewise.
5220 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
5221 yy_stack_print, yyparse): Likewise.
5222 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
5223 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
5224 * lib/bitset.c (bitset_print): Likewise.
5225 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
5226 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
5227 * lib/bitsetv.c (bitsetv_dump): Likewise.
5228 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
5229 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
5230 Likewise.
5231 * src/LR0.c (allocate_itemsets): Likewise.
5232 * src/gram.h (rule_number, rule): Likewise.
5233 * src/lalr.h (goto_number): Likewise.
5234 * src/nullable.c (nullable_compute): Likewise.
5235 * src/output.c (prepare_rules): Likewise.
5236 * src/relation.c (relation_print, relation_digraph): Likewise.
5237 * src/relation.h (relation_node): Likewise.
5238 * src/state.h (state_number, transitions, errs, reductions,
5239 struct state): Likewise.
5240 * src/symtab.h (symbol_number, struct symbol): Likewise.
5241 * src/tables.c (vector_number, tally, action_number,
5242 default_goto, goto_actions): Likewise.
5243 * tests/existing.at (GNU Cim Grammar): Likewise.
5244 * tests/regression.at (Web2c Actions): Likewise.
5245
5246 * src/output.c (muscle_insert_short_int_table): Renamed from
5247 muscle_insert_short_table. All uses changed.
5248
52492004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5250
5251 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
5252 (declaration): Replace expected_conflicts with expected_sr_conflicts.
5253 Add %expect-rr rule.
5254
5255 * src/scan-gram.l: Recognize %expect-rr.
5256
5257 * src/conflicts.h (expected_sr_conflicts): Rename from
5258 expected_conflicts.
5259 (expected_rr_conflicts): Declare.
5260
5261 * src/conflicts.c (expected_sr_conflicts): Rename from
5262 expected_conflicts.
5263 (expected_rr_conflicts): Define.
5264 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
5265 for GLR parsers.
5266 Use expected_sr_conflicts in place of expected_conflicts.
5267 Warn if expected_rr_conflicts used in non-GLR parser.
5268
5269 * doc/bison.texinfo: Add documentation for %expect-rr.
5270
52712004-03-08 Paul Eggert <eggert@gnu.org>
5272
5273 Add support for hex token numbers. Suggested by Odd Arild Olsen in
5274 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
5275
5276 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
5277 in lalr1.cc.
5278 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
5279 * src/scan-gram.l (scan_integer): New function.
5280 ({int}): Use it.
5281 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
5282 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
5283 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
5284 Say "long int", not "long", for uniformity with GNU style.
5285
52862004-02-25 Paul Eggert <eggert@twinsun.com>
5287
5288 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
5289 compilers. This fixes a problem with Intel's C++ compiler being
5290 chatty, reported by Guido Trentalancia in
5291 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
5292
52932004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
5294
5295 Support %destructor and merge error locations in lalr1.cc.
5296
5297 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
5298 (Parser::stos_): Define unconditionally.
5299 (Parser::destruct_): New method. Generate its body with
5300 b4_yydestruct_generate.
5301 (Parser::error_start_): New attribute.
5302 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
5303 token which are discarded.
5304 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
5305 error_start_ when erroneous token are discarded.
5306 (Parser::parse) <yyerrlab1>: Compute the location of the error
5307 token so that it covers all the discarded tokens.
5308 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
5309 it can be called with `%skeleton "lalr1.cc"', and do that.
5310
53112004-02-02 Paul Eggert <eggert@twinsun.com>
5312
5313 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
5314 $(top_srcdir)/lib and ../lib. This fixes a bug reported
5315 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
5316 There's no need to mention top_builddir since Automake does that
5317 for us.
5318 (INCLUDES): Remove, as Automake says it's obsolescent.
5319 Contents migrated into AM_CPPFLAGS as described above.
5320 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
5321
53222004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5323
5324 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
5325 (yyreportSyntaxError): Handle case where lookahead token is
5326 YYEMPTY.
5327
53282004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5329
5330 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
5331 resulting parsers are compilable with C++.
5332
53332003-12-23 Paul Eggert <eggert@twinsun.com>
5334
5335 * config/depcomp, config/install-sh: Sync with Automake 1.8.
5336 * src/output.c (output_skeleton): Rename local var.
5337 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
5338 Bison tokens, as this runs afoul of the 2003-10-07 change that
5339 disallowed NUL bytes in character constants or string literals.
5340
5341 * tests/local.at: Require Autoconf 2.59's Autotest.
5342 * tests/testsuite.at: Don't include local.at, since we now assume
5343 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
5344 including it.
5345 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
5346 multiple inclusion warnings.
5347
53482003-12-02 Akim Demaille <akim@epita.fr>
5349
5350 * doc/bison.texinfo (How Can I Reset the Parser): More about start
5351 conditions.
5352 From Bruno Haible.
5353
53542003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
5355
5356 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
5357
53582003-10-07 Paul Eggert <eggert@twinsun.com>
5359
5360 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
5361 if testsuite doesn't exist.
5362
5363 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
5364 literals, unfortunately.
5365 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
5366 Complain about NUL bytes in character constants or string literals.
5367
53682003-10-05 Paul Eggert <eggert@twinsun.com>
5369
5370 * NEWS: Don't document %no-default-prec, as it's still
5371 too experimental.
5372 * doc/bison.texinfo: Document %no-default-prec only if
5373 the defaultprec flag is set. Normally it's not.
5374
53752003-10-04 Paul Eggert <eggert@twinsun.com>
5376
5377 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
5378 non-modifiable lvalue, instead of a modifiable one.
5379 * doc/bison.texinfo (Actions): Document that $$ can
5380 be assigned to. Do not claim that $$ and $N are
5381 array element references: user code should not rely on this.
5382
53832003-10-01 Paul Eggert <eggert@twinsun.com>
5384
5385 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
5386 (grammar_declaration): Use it.
5387 * src/scan-gram.l: New token %no-default-prec.
5388 * tests/conflicts.at: Revamp tests to use %no-default-prec.
5389 * NEWS, doc/bison.texinfo: Document the above.
5390
53912003-10-01 Akim Demaille <akim@epita.fr>
5392
5393 VCG no longer supports long_straight_phase.
5394
5395 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
5396 * src/print_graph.c (print_graph): Adjust.
5397
53982003-09-30 Frank Heckenbach <frank@g-n-u.de>
5399 and Paul Eggert <eggert@twinsun.com>
5400
5401 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
5402 Table of Symbols): Document %default-prec.
5403 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
5404 (grammar_declaration): Set default_prec on %default-prec.
5405 * src/scan-gram.l (%default-prec): New token.
5406 * src/reader.h (default_prec): New flag.
5407 * src/reader.c: Likewise.
5408 (packgram): Handle it.
5409 * tests/conflicts.at (%default-prec without %prec,
5410 %default-prec with %prec, %default-prec 1): New tests.
5411
54122003-09-30 Paul Eggert <eggert@twinsun.com>
5413
5414 * tests/testsuite.at: Include local.at, not input.at, fixing
5415 a typo in the 2003-08-25 patch.
5416
54172003-08-27 Akim Demaille <akim@epita.fr>
5418
5419 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
5420 GCC warnings.
5421
54222003-08-26 Akim Demaille <akim@epita.fr>
5423
5424 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
5425 "<\#" to avoid magic from Gnus when posting parts of this script.
5426
54272003-08-26 Akim Demaille <akim@epita.fr>
5428
5429 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
5430 (Parser::parse): here.
5431 Adjust: nerrs and errstatus is now replaced by...
5432 (Parser::nerrs_, Parser::errstatus_): New.
5433
54342003-08-25 Akim Demaille <akim@epita.fr>
5435
5436 * config/announce-gen, Makefile.cfg: New.
5437 * Makefile.am: Adjust.
5438 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
5439 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
5440
54412003-08-25 Akim Demaille <akim@epita.fr>
5442
5443 When reducing initial empty rules, Bison parser read an initial
5444 location that is not defined. This results in garbage, and that
5445 affects Bison's own parser. Therefore we need (i) to extend Bison
5446 to support a means to initialize this location, and (ii) to use
5447 this CVS Bison to fix CVS Bison's parser.
5448
5449 * src/reader.h, reader.c (epilogue_augment): Remove, replace
5450 with...
5451 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
5452 * src/parse-gram.y: Adjust.
5453 (%initial-action): New.
5454 (%error-verbose): Since we require CVS Bison, there is no reason
5455 not to use it.
5456 * src/scan-gram.l: Adjust.
5457 * src/Makefile.am (YACC): New, to make sure we use our own parser.
5458 * data/yacc.c (yyparse): Use b4_initial_action.
5459
54602003-08-25 Akim Demaille <akim@epita.fr>
5461
5462 * doc/bison.texinfo: Don't promote stdout for error messages.
5463
54642003-08-25 Akim Demaille <akim@epita.fr>
5465
5466 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
5467 From Alexandre Duret-Lutz.
5468
54692003-08-25 Akim Demaille <akim@epita.fr>
5470
5471 Version 1.875c.
5472
54732003-08-25 Akim Demaille <akim@epita.fr>
5474
5475 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
5476 Use them.
5477
54782003-08-25 Akim Demaille <akim@epita.fr>
5479
5480 * data/lalr1.cc (Parser::reduce_print_): New.
5481 Use it.
5482
54832003-08-25 Akim Demaille <akim@epita.fr>
5484
5485 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
5486 error recovery loops. This patch is based on
5487 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
5488 Also, augment the similarity between lalr1.cc and yacc.c.
5489 Note: the locations of error recovery rules are not correct yet.
5490
5491 * data/lalr1.cc: Comment changes to augment the similarity between
5492 lalr1.cc and yacc.c.
5493 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
5494 (yyerrlab1): Remove, but where it used to be (now the bottom part of
5495 yyerrlab), when hitting EOF, pop the whole stack here instead of
5496 merely falling thru the default error handling mechanism.
5497 (yyerrorlab): New label, with the old contents of YYERROR,
5498 plus the following change: pop the stack of rhs corresponding
5499 to the production that invoked YYERROR. That is how Yacc
5500 behaves (required by POSIX).
5501 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
5502 fail.
5503
55042003-08-25 Akim Demaille <akim@epita.fr>
5505
5506 Tune local.at so that people can "autom4te -l autotest calc.at -o
5507 calc" for instance, to extract a sub test suite.
5508
5509 * tests/testsuite.at: Move the initialization, Autotest version
5510 requirement, and AT_TESTED invocation into...
5511 * tests/local.at: here.
5512 * tests/testsuite.at: Include it for compatibility with Autoconf
5513 2.57.
5514 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
5515 be ignore.
5516
55172003-08-04 Paul Eggert <eggert@twinsun.com>
5518
5519 Rework code slightly to avoid gcc -Wtraditional warnings.
5520 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
5521 The returned value is now stored in *YY0. All callers changed.
5522 * src/output.c (merge_output): Adjust to the above change.
5523
55242003-07-26 Paul Eggert <eggert@twinsun.com>
5525
5526 * data/glr.c (YYASSERT): New macro.
5527 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
5528 yyresolveStates, yyprocessOneStack):
5529 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
5530 Derived from a suggestion by Frank Heckenbach.
5531
55322003-07-25 Paul Eggert <eggert@twinsun.com>
5533
5534 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
5535 for portability to K&R C (after ansi2knr, presumably). See
5536 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5537 by Frank Heckenbach, though I have omitted the structure-initialization
5538 part of his glr-knr.diff patch since I recall that the Portable
5539 C Compiler didn't require that change.
5540
5541 Let the user specify how to allocate and free memory.
5542 Derived from a suggestion by Frank Heckenbach in
5543 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
5544 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
5545 All uses of free, malloc, realloc changed to use these macros,
5546 and unnecessary casts removed.
5547 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
5548
55492003-07-06 Matthias Mann <MatthiasMann@gmx.de>
5550
5551 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
5552 use s.empty() rather than s == "" to test for empty string; see
5553 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
5554 (trivial change)
5555
55562003-06-25 Akim Demaille <akim@epita.fr>
5557
5558 * config/depcomp, config/install-sh: Update from masters.
5559
55602003-06-20 Paul Eggert <eggert@twinsun.com>
5561
5562 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
5563 and return properly parenthesized result.
5564 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
5565 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
5566 Remove unnecessary parentheses from uses.
5567 * doc/bison.texinfo (Location Default Action): Describe the
5568 conventions for parentheses.
5569
55702003-06-19 Paul Eggert <eggert@twinsun.com>
5571
5572 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
5573 yyreportTree): Do not assume that size_t is the same width as int,
5574 when printing sizes. Print sizes using an unsigned format.
5575 Problem reported by Frank Heckenbach in
5576 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
5577
5578 Port to Forte Developer 7 C compiler.
5579 * data/glr.c (struct YYLTYPE): If locations are not being used,
5580 declare a single dummy member, as empty structs do not conform
5581 to the C standard.
5582 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
5583 the Forte Developer 7 C compiler complains that end-of-loop
5584 code is not reached.
5585
55862003-06-17 Paul Eggert <eggert@twinsun.com>
5587
5588 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
5589 avoid warnings from picky compilers about redefinition of PARAMS.
5590
55912003-06-17 Paul Eggert <eggert@twinsun.com>
5592
5593 Version 1.875b.
5594
5595 * NEWS: Document 1.875b.
5596
5597 * lib/bbitset.h: Do not include config.h; that's the includer's job.
5598 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
5599 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
5600 Don't use 'index' in comments, as it's a builtin fn on some hosts.
5601 * lib/bitset_stats.c: Include gettext.h unconditionally, as
5602 per recent gettext manual's suggestion.
5603 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
5604 Use prototypes, not old-style definitions.
5605 * lib/lbitset.c (lbitset_unused_clear): Likewise.
5606 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
5607 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
5608 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
5609 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
5610 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
5611 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
5612 vbitset_or_and_cmp, vbitset_copy): Likewise.
5613
5614 * lib/libiberty.h: Do not include config.h; that's the includer's job.
5615 Do not include <stdlib.h>.
5616 (PARAMS): Define unconditionally for C89.
5617 (ATTRIBUTE_NORETURN): Remove.
5618 (ATTRIBUTE_UNUSED): Define unconditionally.
5619
5620 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
5621 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
5622 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
5623 * lib/vbitset.c, lib/vbitset.h: New files.
5624 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
5625 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
5626 from libbitset.
5627
5628 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
5629 `How Can I Reset @code{yyparse}', since texinfo does not allow
5630 arbitrary @ in node names.
5631
5632 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
5633 shouldn't be needed according to the gettext 0.12.1 documentation
5634 but which seem to be needed anyway: codeset.m4 glibc21.m4
5635 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
5636 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
5637 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
5638
5639 * lib/.cvsignore: Add stdbool.h.
5640 * m4/.cvsignore: Add nls.m4, po.m4.
5641
5642 Upgrade to CVS gnulib.
5643 * stdbool_.h: File renamed from stdbool.h.in.
5644 * configure.ac (AM_STDBOOL_H): Invoke this instead of
5645 AC_HEADER_STDBOOL.
5646 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
5647 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
5648 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
5649 (MOSTLYCLEANFILES): New var.
5650 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
5651 (stdbool.h): New rule.
5652 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
5653 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
5654 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
5655 m4/quote.m4: Upgrade to today's gnulib.
5656
5657 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
5658 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
5659 the tests right now.
5660 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
5661 yyerror are declared before use; C99 requires this.
5662
56632003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5664
5665 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
5666 first.
5667 (yyrecoverSyntaxError): Correct the logic for setting and testing
5668 yyerrState.
5669 Correct comment on handling EOF.
5670 Allow states with only a default reduction, rather than failing
5671 (I can't quite reconstruct why these were not allowed before).
5672
5673 Fixes to avoid problem that $-N rules in GLR parsers can cause
5674 buffer overruns, corrupting state.
5675
5676 * src/output.c (prepare_rules): Output max_left_semantic_context
5677 definition.
5678 * src/reader.h (max_left_semantic_context): New variable declaration.
5679 * src/scan-gram.l (max_left_semantic_context): Define.
5680 (handle_action_dollar): Update max_left_semantic_context.
5681 * data/glr.c (YYMAXLEFT): New definition.
5682 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
5683 (yyresolveAction): Ditto.
5684
5685 Fixes to problems with location handling in GLR parsers reported by
5686 Frank Heckenbach (2003/06/05).
5687
5688 * data/glr.c (YYLTYPE): Make trivial if locations not used.
5689 (YYRHSLOC): Add parentheses, and define only if locations used.
5690 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
5691 locations not used.
5692 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
5693 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
5694
5695 * tests/cxx-type.at: Exercise location information; update tests
5696 to differentiate output with and without locations.
5697 Remove forward declarations of yylex and yyerror---caused errors
5698 because default YYLTYPE not yet defined.
5699 Change semantic actions to compute strings, rather than printing
5700 them directly (to test proper passing of semantics values). Change
5701 output to prefix notation and update test data and expected results.
5702 (yylex): Track locations.
5703 (stmtMerge): Return value rather than printing, and include arguments
5704 in value.
5705
57062003-06-03 Paul Eggert <eggert@twinsun.com>
5707
5708 Avoid warnings generated by GCC 2.95.4 when Bison is
5709 configured with --enable-gcc-warnings.
5710 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
5711 yy::]b4_parser_class_name[::translate_,
5712 yy::Stack::operator[] (unsigned),
5713 yy::Stack::operator[] (unsigned) const,
5714 yy::Slice::operator[] (unsigned),
5715 yy::Slice::operator[] (unsigned) const):
5716 Rename local vars to avoid warnings.
5717 * tests/glr-regression.at (Improper handling of embedded actions
5718 and $-N in GLR parsers): Remove unused local variable from yylex.
5719 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
5720 (void) as arg when not pure, since we now assume C89 when building
5721 Bison. Pacify GCC by using parameter.
5722
57232003-06-02 Paul Eggert <eggert@twinsun.com>
5724
5725 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
5726 yy::Location::lines, yy::Location::columns): Rename arguments
5727 to avoid shadowing; this removes a warning generated by GCC 3.3.
5728
57292003-06-01 Paul Eggert <eggert@twinsun.com>
5730
5731 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
5732 to g++, as GCC 3.3 complains if you do it.
5733 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
5734 everything that WARNING_CFLAGS has, except omit warnings
5735 not suitable for C++.
5736 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
5737 * tests/atlocal.in (CXXFLAGS): New var.
5738 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
5739
5740 Fix a GLR parser bug I reported in February; see
5741 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
5742 The problem was that GLR parsers did not conform to the C standard,
5743 because actions like { $1 = $2 + $3; } expanded to expressions
5744 that invoked YYFILL in separate subexpressions, and YYFILL assigned
5745 to a local variable. The C standard says that expressions
5746 like (var = f ()) + (var = f ()) have undefined behavior.
5747 Another problem was that GCC sometimes issues warnings that
5748 yyfill and its parameters are unused.
5749
5750 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
5751 as possibly unused.
5752 (yyfill): New function.
5753 (YYFILL): Use it.
5754 (yyuserAction): Change type of yynormal to bool, so that it matches
5755 the new yyfill signature. Mark it as possibly unused.
5756
5757
5758 Follow up on a bug I reported in February, where a Bison-generated
5759 parser can loop. Provide a test case and a fix for yacc.c. I
5760 don't have a fix for lalr1.cc or for glr.c, unfortunately.
5761 The original bug report is in:
5762 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
5763
5764 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
5765 macro's size was becoming unwieldy.
5766 (yyerrlab): Do not discard an empty lookahead symbol, as this
5767 might destroy garbage.
5768 (yyerrorlab): New label, with the old contents of YYERROR,
5769 plus the following change: pop the stack of rhs corresponding
5770 to the production that invoked YYERROR. That is how Yacc
5771 behaves, and POSIX requires this behavior.
5772 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
5773 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
5774 Define 'alarm' to do nothing if unistd.h is not available.
5775 Add a new rule "exp: '-' error;" to test the above change to
5776 data/yacc.c. Use 'alarm' to abort any test taking longer than
5777 10 seconds, as it's probably looping.
5778 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
5779 Also, the new yacc.c generates two fewer diagnostics for an
5780 existing test.
5781
57822003-05-24 Paul Eggert <eggert@twinsun.com>
5783
5784 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
5785 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
5786 This fixes a problem reported by John Bowman when the Compaq/HP
5787 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
5788 -ansi -Wall -gall).
5789 * data/yacc.c (union yyalloc): Likewise.
5790 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
5791
5792 Switch from 'int' to 'bool' where that makes sense.
5793
5794 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
5795 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
5796 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
5797 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
5798 Return or accept bool, not int. All callers changed.
5799 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
5800 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
5801 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
5802 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
5803 bitset_or_and_cmp_): Likewise.
5804 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
5805 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
5806 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
5807 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
5808 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
5809 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
5810 bitset_stats_or_and_cmp): Likewise.
5811 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
5812 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
5813 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
5814 ebitset_xor_cmp): Likewise.
5815 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
5816 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
5817 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
5818 lbitset_xor_cmp): Likewise.
5819 * lib/bbitset.h: Include <stdbool.h>.
5820 (struct bitset_vtable): The following members now return bool, not
5821 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
5822 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
5823 or_and_cmp).
5824 * src/conflicts.c (count_rr_conflicts): Likewise.
5825 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
5826 All uses changed.
5827 * lib/ebitset.c (ebitset_obstack_init): Likewise.
5828 * lib/lbitset.c (lbitset_obstack_init): Likewise.
5829 * src/getargs.c (debug_flag, defines_flag, locations_flag,
5830 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5831 graph_flag): Likewise.
5832 * src/getargs.h (debug_flag, defines_flag, locations_flag,
5833 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5834 graph_flag): Likewise.
5835 * src/output.c (error_verbose): Likewise.
5836 * src/output.h (error_verbose): Likewise.
5837 * src/reader.c (start_flag, typed): Likewise.
5838 * src/reader.h (typed): Likewise.
5839 * src/getargs.c (LOCATIONS_OPTION): New constant.
5840 (long_options, getargs): Use it.
5841 * src/lalr.c (build_relations): Use bool, not int.
5842 * src/nullable.c (nullable_compute): Likewise.
5843 * src/print.c (print_reductions): Likewise.
5844 * src/tables.c (action_row, pack_vector): Likewise.
5845 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
5846 * src/output.c (prepare): Use it.
5847 * src/output.c (token_definitions_output,
5848 symbol_destructors_output, symbol_destructors_output): Use string,
5849 not boolean integer, to keep track of whether to output separator.
5850 * src/print_graph.c (print_core): Likewise.
5851 * src/state.c (state_rule_lookaheads_print): Likewise.
5852
5853 * config/install-sh: Sync from automake 1.7.5.
5854
58552003-05-14 Paul Eggert <eggert@twinsun.com>
5856
5857 * src/parse-gram.y (rules_or_grammar_declaration): Require a
5858 semicolon after a grammar declaration, in the interest of possible
5859 future changes to the Bison input language.
5860 Do not allow a stray semicolon at the start of the grammar.
5861 (rhses.1): Allow one or more semicolons after any rule, including
5862 just before "|" as required by POSIX.
5863 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
5864 grammar.
5865
58662003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
5867
5868 %parse-param support for lalr1.cc.
5869
5870 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
5871 b4_cc_constructor_calls, b4_cc_constructor_call,
5872 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
5873 definitions.
5874 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
5875 parse-param arguments.
5876 (yy::b4_parser_class_name): Declare instance variables to
5877 hold parse-param arguments.
5878 * tests/calc.at: s/value/semantic_value/ because value clashes
5879 with a member of yy::b4_parser_class_name. Adjust C++ code
5880 to handle %parse-param. Enable %parse-param test in C++.
5881
58822003-05-12 Paul Eggert <eggert@twinsun.com>
5883
5884 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
5885 English a bit. Fix fclose typo. Change "const char" to "char
5886 const", and use ANSI C rather than K&R for "main". Suggest
5887 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
5888 and suggest yy_switch_to_buffer.
5889
58902003-05-05 Paul Eggert <eggert@twinsun.com>
5891
5892 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
5893 C89. This avoids a diagnostic on compilers that define __STDC__
5894 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
5895 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5896
58972003-05-03 Paul Eggert <eggert@twinsun.com>
5898
5899 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
5900 Do not overrun array bounds.
5901 This should fix a bug reported today by Olatunji Oluwabukunmi in
5902 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
5903
59042003-04-29 Akim Demaille <akim@epita.fr>
5905
5906 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
5907 * src/getargs.c, src/getargs.h: here, as bool, not int.
5908 (nondeterministic_parser): New.
5909 * src/parse-gram.y, src/scan-gram.l: Support
5910 %nondeterministic-parser.
5911 * src/output.c (prepare): Use nondeterministic_parser instead
5912 of glr_parser where appropriate.
5913 * src/tables.c (conflict_row, action_row, save_row)
5914 (token_actions, token_actions, pack_vector): Ditto.
5915
59162003-04-29 Akim Demaille <akim@epita.fr>
5917
5918 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
5919
59202003-04-29 Akim Demaille <akim@epita.fr>
5921
5922 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
5923 with %pure-parser and %locations to exercise the patch from Yakov
5924 Markovitch below.
5925
59262003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
5927
5928 * data/yacc.c: (b4_lex_param): Corrected for the case where
5929 %lex-param is provided and %pure-parser isn't.
5930
59312003-04-27 Paul Eggert <eggert@twinsun.com>
5932
5933 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
5934 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
5935 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
5936 if it is not defined.
5937 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
5938
59392003-04-26 Paul Eggert <eggert@twinsun.com>
5940
5941 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
5942 Declare to be of type suitable for the ninf value itself, not of
5943 type suitable for the corresponding table, since the latter might
5944 be unsigned but the ninf value might be negative. This fixes a
5945 bug reported by Alexandre Duret-Lutz in
5946 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
5947
5948 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
5949 invokes it. We shouldn't invoke it twice because it will attempt
5950 to put error.o in the archive twice. This fixes a glitch reported
5951 by Martin Mokrejs in
5952 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5953
59542003-04-21 Paul Eggert <eggert@twinsun.com>
5955
5956 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
5957 to gnulib.
5958
59592003-04-21 Yakov Markovitch <Markovitch@iso.ru>
5960
5961 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
5962 Fix obvious typo that results in uncompilable GLR parsers
5963 when both %pure-parser and %locations are used. (trivial change)
5964
59652003-04-17 Paul Eggert <eggert@twinsun.com>
5966
5967 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
5968 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
5969 Do not insert the expected token via unput, as this runs afoul
5970 of a POSIX-compatibility bug in flex 2.5.31.
5971 All uses changed to BEGIN the parent state,
5972 since we no longer insert the expected token via unput.
5973 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
5974 that is no longer emitted after the above change.
5975
5976 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
5977 the first one. This change is from Paul Hilfinger, and it fixes
5978 regression reported by Werner Lemberg in
5979 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5980
5981 (resolve_sr_conflict): Don't invoke state_errs_set
5982 unless one or more tokens have been explicitly made errors.
5983 Otherwise, the above change causes Bison to abort.
5984
5985 * tests/existing.at (GNU pic Grammar): New test case, taken from
5986 Lemberg's email.
5987
59882003-03-31 Akim Demaille <akim@epita.fr>
5989
5990 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
5991
59922003-03-31 Akim Demaille <akim@epita.fr>
5993
5994 * src/output.c (prepare_symbols): Avoid trailing spaces in the
5995 output.
5996
59972003-03-31 Akim Demaille <akim@epita.fr>
5998
5999 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
6000 From Paul Hilfinger.
6001
60022003-03-29 Akim Demaille <akim@epita.fr>
6003
6004 * m4/error.m4: Do not put under dynamic conditions some code which
6005 expansion is under static control.
6006
60072003-03-29 Akim Demaille <akim@epita.fr>
6008
6009 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
6010
60112003-03-29 Akim Demaille <akim@epita.fr>
6012
6013 * doc/bison.texinfo (Strings are Destroyed): New.
6014
60152003-03-13 Paul Eggert <eggert@twinsun.com>
6016
6017 * .cvsignore: Add configure.lineno.
6018 * src/.cvsignore: Add yacc.
6019 * tests/.cvsignore: Add testsuite.log.
6020 * doc/fdl.texi: Sync with latest FSF version.
6021
60222003-03-12 Paul Eggert <eggert@twinsun.com>
6023
6024 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
6025 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
6026 cursor, instead of leaving it undefined. This fixes a bug
6027 reported by Tim Van Holder in
6028 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
6029 * tests/input.at (Torturing the Scanner): Test the scanner on
6030 an empty input file, which was Tim Van Holder's test case.
6031
6032 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
6033 <sys/resource.h> can be included, include sys/time.h and
6034 sys/times.h first, if available. This works around the SunOS
6035 4.1.4 porting bug reported by Bruce Becker in
6036 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
6037
6038 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
6039 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
6040 AC_HEADER_SYS_WAIT.
6041
6042 Merge changes from gnulib. This was prompted because the CVS
6043 snapshot didn't build on Solaris 7 due to strnlen problems.
6044
6045 These changes need to be merged back into gnulib:
6046 * lib/hash.c: Include <stdbool.h> unconditionally.
6047 * m4/onceonly.m4 (m4_quote): New macro.
6048 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
6049 Quote AC_FOREACH variable-expansions properly.
6050 The 2003-01-03 obstack.h change also needs merging.
6051 {end of changes requiring merging}
6052
6053 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
6054 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
6055 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
6056 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
6057 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
6058 New files, imported from gnulib.
6059 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
6060 above.
6061
6062 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
6063 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
6064 gnulib sources.
6065
6066 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
6067 Add.
6068 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
6069 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
6070 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
6071 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
6072 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
6073 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
6074 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
6075 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
6076 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
6077 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
6078 (jm_PREREQ_ARGMATCH): Remove.
6079 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
6080 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
6081
6082 * src/system.h: Include <stdbool.h> unconditionally.
6083
6084 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
6085 assuming at least C89 in the bitset code for some time now.
6086
60872003-03-03 Akim Demaille <akim@epita.fr>
6088
6089 * ro.po: New.
6090
60912003-03-02 Akim Demaille <akim@epita.fr>
6092
6093 * doc/bison.texinfo (Table of Symbols): Reactivate the
6094 documentation for %lex-param, and %parse-param.
6095
60962003-03-02 Akim Demaille <akim@epita.fr>
6097
6098 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
6099 generate verbose error messages.
6100 Use the number of tokens as an upper bound in yytname, as it
6101 cannot be a non terminal.
6102
61032003-03-02 Akim Demaille <akim@epita.fr>
6104
6105 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
6106 message.
6107
61082003-03-02 Akim Demaille <akim@epita.fr>
6109
6110 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
6111 Use them to exercise yycheck overrun.
6112 Based on Andrew Suffield's grammar.
6113
61142003-03-02 Akim Demaille <akim@epita.fr>
6115
6116 Create tests/local.at for Bison generic testing macros.
6117
6118 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
6119 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
6120 This new file.
6121 * tests/calc.at (AT_CHECK_CALC): Adjust.
6122 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
6123 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
6124 * tests/local.at: here.
6125 (AT_COMPILE_CXX): Tags the tests using it as c++.
6126 Ignore the test if CXX is not functional.
6127
61282003-03-01 Paul Eggert <eggert@twinsun.com>
6129
6130 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
6131 not loc->end, since loc->end might contain garbage and this leads
6132 to undefined behavior on some platforms.
6133 (id_loc, token_start): Use (IF_LINTed) initial values that do not
6134 depend on *loc, so that the reader doesn't give the the false
6135 impression that *loc is initialized.
6136 (<INITIAL>"%%"): Do not bother setting code_start, since its value
6137 does not survive the return.
6138
61392003-03-01 Akim Demaille <akim@epita.fr>
6140
6141 * src/scan-gram.l (code_start): Always initialize it when entering
6142 into yylex, as SC_EPILOGUE is activated *before* the corresponding
6143 yylex invocation. An alternative would be making it static, but
6144 then it starts with the second %%'s beginning, instead of its end.
6145
61462003-02-28 Paul Eggert <eggert@twinsun.com>
6147
6148 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
6149 around a UnixWare 7.1.1 porting bug reported by John Hughes in
6150 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
6151
61522003-02-26 Paul Eggert <eggert@twinsun.com>
6153
6154 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
6155 Remove Sequent/Pyramid discussion (nobody uses them any more).
6156 Merge VMS and MS-DOS discussion; these ports may well be dead
6157 but let's keep mentioning them for now. Put <> around email
6158 addresses. Add copyright notice.
6159
61602003-02-24 Paul Eggert <eggert@twinsun.com>
6161
6162 * data/glr.c (yy_reduce_print): yylineno -> yylno,
6163 to avoid collision with flex use of yylineno.
6164 Problem reported by Bruce Lilly in
6165 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
6166 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
6167 * data/yacc.c (yy_reduce_print): Likewise.
6168
6169 * config/depcomp: Sync with Automake 1.7.3.
6170
61712003-02-21 Akim Demaille <akim@epita.fr>
6172
6173 * data/lalr1.cc: Use temporary variables instead of casts to
6174 change integer types.
6175 Suggested by Paul Eggert.
6176
61772003-02-21 Akim Demaille <akim@epita.fr>
6178
6179 * doc/bison.texinfo: Use "location" consistently to refer to @n,
6180 to avoid confusions with lalr1.cc's notion of Position.
6181 Suggested by Paul Eggert.
6182
61832003-02-20 Akim Demaille <akim@epita.fr>
6184
6185 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
6186 before initial_columns.
6187 (location.hh): Use consistent variable names when defining the
6188 operator<<.
6189 Use "last" so that we subtract from Positions, not from unsigned.
6190
61912003-02-20 Akim Demaille <akim@epita.fr>
6192
6193 * data/lalr1.cc (position.hh): New subfile, including the extended
6194 and Doxygen'ed documentation of class Position.
6195 (location.hh): Use it.
6196 Document a` la Doxygen.
6197 With the help of Benoit Perrot.
6198
61992003-02-20 Akim Demaille <akim@epita.fr>
6200
6201 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
6202 AT_YACC_IF.
6203 Redefine AT_YYERROR_SEES_LOC_IF using it.
6204 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
6205 not defined.
6206 Don't use the location in yy::Parser::error_ and
6207 yy::Parser::print_ when not %locations.
6208 Activate more lalr1.cc tests.
6209
62102003-02-19 Akim Demaille <akim@epita.fr>
6211
6212 * data/lalr1.cc: When displaying a line number, be sure to make it
6213 an int.
6214
62152003-02-19 Akim Demaille <akim@epita.fr>
6216
6217 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
6218 Remove, useless.
6219 (YYABORT, YYACCEPT, YYERROR): New.
6220 * tests/calc.at: Renable the lalr1.cc test.
6221
62222003-02-19 Akim Demaille <akim@epita.fr>
6223
6224 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
6225 error recovery, mixing with/without pops and discarding of the
6226 lookahead.
6227 Exercise YYERROR.
6228 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
6229
62302003-02-17 Paul Eggert <eggert@twinsun.com>
6231
6232 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
6233 * tests/testsuite.at (AT_COMPILE): Use them.
6234 This fixes the testsuite problem reported by Robert Lentz in
6235 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
6236
62372003-02-12 Paul Eggert <eggert@twinsun.com>
6238
6239 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
6240 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
6241 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
6242 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
6243 Check for malloc failure, for consistency with yacc.c.
6244 (yytname_size): Remove, for consistency with yacc.c.
6245
6246 The bug still remains in data/lalr1.cc, as I didn't have time
6247 to fix it there.
6248
62492003-02-06 Akim Demaille <akim@epita.fr>
6250
6251 * configure.ac (GXX): Rename as...
6252 (CXX): this, to keep the original Autoconf semantics.
6253 Require 2.57.
6254 * data/lalr1.cc: Fix b4_copyright invocations.
6255 If YYDEBUG is not defined, don't depend upon name_ being defined.
6256 (location.hh): Include string and iostream.
6257 (Position::filename): New member.
6258 (Position::Position ()): New.
6259 (operator<< (Position)): New.
6260 (operator- (Position, int)): New.
6261 (Location::first, Location::last): Rename as...
6262 (Location::begin, Location::end): these, to mock the conventional
6263 iterator names.
6264 (operator<< (Location)): New.
6265 * tests/atlocal.in (CXX): New.
6266 * tests/testsuite.at (AT_COMPILE_CXX): New.
6267 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
6268 locations in a more synthetic way.
6269 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
6270 lalr1.cc is used.
6271 Adjust the C locations to match those from Emacs: first column is
6272 column 0.
6273 Change all the expected results.
6274 Conform to the GCS: simplify the locations when applicable.
6275 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
6276 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
6277 these CPP macros with the m4 macros new defined by...
6278 (AT_CHECK_PUSHDEFS): this, i.e.:
6279 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
6280 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
6281 New macros.
6282 (AT_CHECK_POPDEFS): Undefine them.
6283 (AT_CHECK_CALC_LALR1_CC): New.
6284 Use it for the first lalr1.cc test.
6285
62862003-02-04 Akim Demaille <akim@epita.fr>
6287
6288 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
6289 Location as is defined.
6290
62912003-02-04 Akim Demaille <akim@epita.fr>
6292
6293 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
6294 name_ being defined.
6295
62962003-02-03 Paul Eggert <eggert@twinsun.com>
6297
6298 * src/gram.h (start_symbol): Remove unused decl.
6299
6300 Use more-consistent naming conventions for local vars.
6301
6302 * src/derives.c (derives_compute): Change type of local var from
6303 int to rule_number.
6304 * src/gram.c (grammar_rules_partial_print): Likewise.
6305 * src/print.c (print_core): Likewise.
6306 * src/reduce.c (reduce_grammar_tables): Likewise.
6307
6308 * src/gram.c (grammar_dump): Change name of item_number *
6309 local var from r to rp.
6310 * src/nullable.c (nullable_compute): Likewise.
6311
6312 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
6313
6314 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
6315 for symbol or symbol_number var.
6316 * src/reader.c (grammar_start_symbol_set): Likewise.
6317 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
6318 Likewise.
6319 * src/state.c (transitions_to): Likewise.
6320 * src/state.h: Likewise.
6321 * src/tables.c (symbol_number_to_vector_number): Likewise.
6322
6323 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
6324 char * var.
6325
6326 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
6327 var.
6328
6329 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
6330 var.
6331
6332 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
6333 Use str, not s, for char * var. Use ch, not c, for character var.
6334 Use size for size var.
6335
6336 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
6337 char * var.
6338 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
6339 uniqstr var.
6340 * src/uniqstr.h: Likewise.
6341
6342 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
6343 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
6344 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
6345 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
6346 param to have same name as that of enum, so that we don't use
6347 "s" to stand for a non-state.
6348
63492003-02-02 Akim Demaille <akim@epita.fr>
6350
6351 * src/scan-skel.l: Scan more than one inert character per yylex
6352 invocation.
6353
63542003-02-01 Paul Eggert <eggert@twinsun.com>
6355
6356 Version 1.875a.
6357
6358 * po/LINGUAS: Add ms.
6359
63602003-01-30 Akim Demaille <akim@epita.fr>
6361
6362 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
6363
63642003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6365
6366 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
6367 of $1.
6368
6369 Changes in response to error report by S. Eken: GLR mode does not
6370 handle negative $ indices or $ indices in embedded rules correctly.
6371 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
6372
6373 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
6374 (b4_rhs_location): Ditto.
6375 (yyfill): New function to copy from stack tree into array
6376 incrementally.
6377 (yyuserAction): Modify to allow incremental move of semantic values
6378 to rhs array when in GLR mode.
6379 Define YYFILL to use in user-defined actions to fill semantic array
6380 as needed.
6381 Remove dummy use of yystack, as there is now a guaranteed use.
6382 (yydoAction): Modify to allow incremental move of semantic values
6383 to rhs array when in GLR mode.
6384 (yyresolveAction): Ditto.
6385 (yyglrShiftDefer): Update comment.
6386 (yyresolveStates): Use X == NULL for pointers, not !X.
6387 (yyglrReduce): Ditto.
6388 (yydoAction): Ditto
6389
6390 * tests/glr-regr1.at: Rename to ...
6391 * tests/glr-regression.at: Add new regression test for the problems
6392 described above (adapted from S. Eken).
6393 Update copyright notice.
6394 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
6395 * tests/Makefile.am: Ditto.
6396
63972003-01-28 Paul Eggert <eggert@twinsun.com>
6398
6399 * data/lalr1.cc: Do not use @output_header_name@ unless
6400 b4_defines_flag is set. This fixes two bugs reported by
6401 Tim Van Holder in
6402 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
6403 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6404
64052003-01-21 Paul Eggert <eggert@twinsun.com>
6406
6407 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
6408 we don't need to worry about yyerrlab1 being reported as an
6409 "unused label" by non-GCC C compilers. The downside is that if
6410 locations are used then a couple of statements are duplicated each
6411 time YYERROR is invoked, but the upside is that the warnings
6412 should vanish.
6413 (yyerrlab1): Move code to YERROR.
6414 (yyerrlab2): Remove. Change uses back to yyerrlab1.
6415 This reverts some of the 2002-12-27 change.
6416
64172003-01-17 Paul Eggert <eggert@twinsun.com>
6418
6419 * src/output.c (symbol_printers_output): Fix typo that led
6420 to core dump. Problem reported by Antonio Rus in
6421 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
6422
64232003-01-13 Akim Demaille <akim@epita.fr>,
6424 Quoc Peyrot <chojin@lrde.epita.fr>,
6425 Robert Anisko <anisko_r@lrde.epita.fr>
6426
6427 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
6428 when the stacks contain one element, as the loop would otherwise
6429 free the last state, and then use the top state (the one we just
6430 popped). This means that the initial elements will not be freed
6431 explicitly, as is the case in yacc.c; it is not a problem, as
6432 these elements have fake values.
6433
64342003-01-11 Paul Eggert <eggert@twinsun.com>
6435
6436 * NEWS: %expect-violations are now just warnings, reverting
6437 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
6438 bootstrapping problem reported by Matthias Klose; see
6439 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
6440 * src/conflicts.c (conflicts_print): Likewise.
6441 * tests/conflicts.at (%expect not enough, %expect too much,
6442 %expect with reduce conflicts): Likewise.
6443 * doc/bison.texinfo (Expect Decl): Document this. Also mention
6444 that the warning is enabled if the number of conflicts changes
6445 (not necessarily increases).
6446
6447 * src/getargs.c (version): Update copyright year.
6448
64492003-01-09 Akim Demaille <akim@epita.fr>
6450
6451 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
6452
64532003-01-08 Paul Eggert <eggert@twinsun.com>
6454
6455 * Makefile.maint (WGETFLAGS):
6456 New macro, containing "-C off" to disable proxy caches.
6457 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
6458 (rel-check): Use $(WGET) instead of wget.
6459
64602003-01-06 Paul Eggert <eggert@twinsun.com>
6461
6462 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
6463 the GLR paper of Scott, Johnstone and Hussain.
6464
64652003-01-04 Paul Eggert <eggert@twinsun.com>
6466
6467 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
6468 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
6469 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
6470 (EXTRA_LIBRARIES): New var, for liby.a.
6471 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
6472 (EXTRA_SCRIPTS): New var, for yacc.
6473
6474 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
6475 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
6476 Problem reported by Nelson H. F. Beebe.
6477
64782003-01-03 Paul Eggert <eggert@twinsun.com>
6479
6480 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
6481 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
6482 when compiling Bison 1.875's `bitset bset = obstack_alloc
6483 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
6484
6485 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
6486 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
6487 grow to a huge size with typical invocation.
6488
6489 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
6490 Use the pattern recommended by Autoconf 2.57, except also protect
6491 against double-definition.
6492 * src/system.h: Likewise.
6493 Portability issues reported by Nelson H. F. Beebe.
6494
6495 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
6496 All uses changed. Provide a definition in both C and C++.
6497 (yytrue, yyfalse): Define even if defined (__cplusplus).
6498
6499 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
6500 Reported by Nelson H. F. Beebe.
6501
6502 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
6503
65042003-01-02 Paul Eggert <eggert@twinsun.com>
6505
6506 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
6507 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
6508 Bug reported by Nelson H. F. Beebe.
6509
65102003-01-01 Paul Eggert <eggert@twinsun.com>
6511
6512 * Version 1.875.
6513
65142002-12-30 Paul Eggert <eggert@twinsun.com>
6515
6516 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
6517 Moved here from...
6518 (<INITIAL>","): Here. This causes stray "," to be treated
6519 more uniformly.
6520
6521 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
6522 last brace in braced code when not in Yacc mode, for compatibility
6523 with Bison 1.35. This resurrects the 2001-12-15 patch to
6524 src/reader.c.
6525
6526 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
6527 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
6528
65292002-12-28 Paul Eggert <eggert@twinsun.com>
6530
6531 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
6532 that of SYM's type. This fixes Debian bug 168069, reported by
6533 Thomas Olsson.
6534
65352002-12-28 Paul Eggert <eggert@twinsun.com>
6536
6537 Version 1.75f.
6538
6539 Switch back to the Yacc style of conflict reports, undoing some
6540 of the 2002-07-30 change.
6541 * doc/bison.texinfo (Understanding): Use Yacc style for
6542 conflict reports. Also, use new way of locating rules.
6543 * src/conflicts.c (conflict_report):
6544 Renamed from conflict_report_yacc, removing the old
6545 'conflict_report'. Translate the entire conflict report at once,
6546 so that we don't assume that "," has the same interpretation in
6547 all languages.
6548 (conflicts_output): Use Yacc-style conflict report for each state,
6549 instead of our more-complicated style.
6550 (conflicts_print): Use Yacc-style conflict report, except print
6551 the input file name when not emulating Yacc.
6552 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
6553 Conflicted Reduction, %expect not enough, %expect too much,
6554 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
6555 * tests/existing.at (GNU Cim Grammar): Likewise.
6556 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
6557
6558 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
6559 fatal): Don't invoke fflush; it's not needed and it might even be
6560 harmful for stdout, as stdout might not be open.
6561 * src/reduce.c (reduce_print): Likewise.
6562
65632002-12-27 Paul Eggert <eggert@twinsun.com>
6564
6565 Fix a bug where error locations were not being recorded correctly.
6566 This problem was originally reported by Paul Hilfinger in
6567 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
6568
6569 * data/yacc.c (yyparse): New local var yylerrsp, to record the
6570 top of the location stack's error locations.
6571 (yyerrlab): Set it. When discarding a token, push its location
6572 onto yylerrsp so that we don't lose track of the error's end.
6573 (yyerrlab1): Now is only the target of YYERROR, so that we can
6574 properly record the location of the action that failed. For GCC
6575 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
6576 GCC warning about yyerrlab1 being unused if YYERROR is unused.
6577 (yyerrlab2): New label, which yyerrlab now falls through to.
6578 Compute the error's location by applying YYLLOC_DEFAULT to
6579 the locations of all the symbols that went into the error.
6580 * doc/bison.texinfo (Location Default Action): Mention that
6581 YYLLOC_DEFAULT is also invoked for syntax errors.
6582 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
6583 Error locations include the locations of all the tokens that were
6584 discarded, not just the last token.
6585
65862002-12-26 Paul Eggert <eggert@twinsun.com>
6587
6588 * src/files.c: Include quote.h.
6589 (compute_output_file_names): Warn if we detect conflicting
6590 outputs to the same file. This should catch the misunderstanding
6591 exemplified by Debian Bug 165349, reported by Bruce Stephens..
6592
6593 * src/conflicts.c (conflicts_print): If the user specifies
6594 "%expect N", report an error if there are any reduce/reduce
6595 conflicts. This is what the manual says should happen.
6596 This fixes Debian bug 130890, reported by Anthony DeRobertis.
6597 * tests/conflicts.at (%expect with reduce conflicts): New test.
6598
6599 Don't use m4_include on relative file names, as it doesn't work as
6600 desired if there happens to be a file with that name under ".".
6601
6602 * m4sugar/version.m4: Remove; it was included but it wasn't used.
6603 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
6604 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
6605 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
6606 * src/output.c (output_skeleton): Use full path names when
6607 specifying a file to include; don't rely on include path, as
6608 it's unreliable when the working file contains a file with
6609 that name.
6610
66112002-12-25 Paul Eggert <eggert@twinsun.com>
6612
6613 Remove obsolete references to bison.simple and bison.hairy.
6614 Problem mentioned by Aubin Mahe in
6615 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
6616 * data/glr.c: Comment fix.
6617 * doc/bison.1: Remove references. Also, mention "yacc".
6618
6619 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
6620 with -g option.
6621
6622 * src/parse-gram.y (declaration): Use enum "report_states" rather
6623 than its numeric value 1.
6624
6625 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
6626 opening a new one. This fixes Debian bug 165349, reported by
6627 Bruce Stephens.
6628
66292002-12-24 Paul Eggert <eggert@twinsun.com>
6630
6631 Version 1.75e.
6632
6633 * Makefile.maint (cvs-update): Don't assume that the shell
6634 supports $(...), as Solaris sh doesn't.
6635
6636 * src/parse-gram.y (lloc_default): Remove test for empty
6637 nonterminals at the end, since it didn't change the result.
6638
66392002-12-24 Paul Eggert <eggert@twinsun.com>
6640
6641 If the user does not define YYSTYPE as a macro, Bison now declares it
6642 using typedef instead of defining it as a macro. POSIX requires this.
6643 For consistency, YYLTYPE is also declared instead of defined.
6644
6645 %union directives can now have a tag before the `{', e.g., the
6646 directive `%union foo {...}' now generates the C code
6647 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
6648 The default union tag is `YYSTYPE', for compatibility with Solaris 9
6649 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
6650 instead of `yyltype'.
6651
6652 `yystype' and `yyltype' are now obsolescent macros instead of being
6653 typedefs or tags; they are no longer documented and will be
6654 withdrawn in a future release.
6655
6656 * data/glr.c (b4_location_type): Remove.
6657 (YYSTYPE): Renamed from yystype.
6658 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
6659 (struct YYLTYPE): Renamed from struct yyltype.
6660 (YYLTYPE): Renamed from yyltype.
6661 (yyltype, yystype): New (and obsolescent) macros,
6662 for backward compatibility.
6663 * data/yacc.c: Likewise.
6664
6665 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
6666 does not specify a union tag. This is for compatibility with
6667 Solaris 9 yacc.
6668
6669 * src/parse-gram.y (add_param): 2nd arg is now char * not char
6670 const *, since it is now modified by stripping surrounding { }.
6671 (current_braced_code): Remove.
6672 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
6673 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
6674 trailing " {...}". Now of type <chars>.
6675 (grammar_declaration): Adjust to bundled tokens.
6676 (code_content): Remove; stripping is now done by add_param.
6677 (print_token_value): Print contents of bundled tokens.
6678 (token_name): New function.
6679
6680 * src/reader.h (braced_code, current_braced_code): Remove.
6681 (token_name): New decl.
6682
6683 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
6684 token_type, not braced_code code_kind. All uses changed.
6685 (SC_PRE_CODE): New state, for scanning after a keyword that
6686 has (or usually has) an immediately-following braced code.
6687 (token_type): New local var, to keep track of which token type
6688 to return when scanning braced code.
6689 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
6690 <INITIAL>"%parse-param", <INITIAL>"%printer",
6691 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
6692 instead of returning a token type immediately.
6693 (<INITIAL>"{"): Set token type.
6694 (<SC_BRACED_CODE>"}"): Use it.
6695 (handle_action_dollar, handle_action_at): Now returns bool
6696 indicating success. Fail if ! current_rule; this prevents a core dump.
6697 (handle_symbol_code_dollar, handle_symbol_code_at):
6698 Remove; merge body into caller.
6699 (handle_dollar, handle_at): Complain in invalid contexts.
6700
6701 * NEWS, doc/bison.texinfo: Document the above.
6702 * NEWS: Fix years and program names in copyright notice.
6703
67042002-12-17 Paul Eggert <eggert@twinsun.com>
6705
6706 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
6707 Reporting, Table of Symbols): Omit mentions of %lex-param and
6708 %parse-param from the documentation for now.
6709
67102002-12-15 Paul Eggert <eggert@twinsun.com>
6711
6712 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
6713 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
6714 lookahead symbol, and which sets yychar in parser actions) and it
6715 disagreed with the Bison documentation. Bug
6716 reported by Andrew Walrond.
6717
6718 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
6719 as the caller now does that.
6720 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
6721 (YYEMPTY): Parenthesize right hand side, since others use it.
6722 (yyparse): Don't assume that our generated code is the only code
6723 that sets yychar.
6724
67252002-12-13 Paul Eggert <eggert@twinsun.com>
6726
6727 Version 1.75d.
6728
6729 POSIX requires a "yacc" command.
6730 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
6731 (MOSTLYCLEANFILES): Add yacc.
6732 (yacc): New rule.
6733 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
6734 as an alias for bison y.
6735
6736 * po/LINGUAS: Add da.
6737
6738 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
6739 problem with latest <getopt.h>.
6740 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
6741
6742 * doc/fdl.texi: Upgrade to 1.2.
6743 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
6744 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
6745 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
6746 gnulib.
6747 * config/install-sh: Sync with autotools.
6748
6749 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
6750 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
6751 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
6752 locations are requested.
6753 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
6754 locations are requested.
6755
67562002-12-12 Paul Eggert <eggert@twinsun.com>
6757
6758 Remove unportable casts and storage allocation tricks.
6759 While we're at it, remove almost all casts, since they
6760 usually aren't needed and are a sign of trouble.
6761
6762 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
6763
6764 * src/derives.c (derives_compute): Do not subtract NTOKENS from
6765 the pointer DSET returned by malloc; this isn't portable.
6766 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
6767 Similarly for DERIVES.
6768 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
6769 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
6770 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
6771
6772 * src/derives.c (derives_compute): Do not bother invoking
6773 int_of_rule_number, since rule numbers are integers.
6774
6775 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
6776 rather than XMALLOC (char, N).
6777
6778 * src/files.c (filename_split): Rewrite to avoid cast.
6779
6780 * src/gram.h (symbol_number_as_item_number,
6781 item_number_as_symbol_number, rule_number_as_item_number,
6782 item_number_as_rule_number):
6783 Now inline functions rather than macros, to avoid casts.
6784 * src/state.h (state_number_as_int): Likewise.
6785 * src/tables.c (state_number_to_vector_number,
6786 symbol_number_to_vector_number): Likewise.
6787
6788 * src/gram.h (int_of_rule_number): Remove; no longer used.
6789
6790 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
6791 since the resulting storage is always stored into.
6792
6793 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
6794 where it's needed.
6795
6796 * src/muscle_tab.c (muscle_m4_output):
6797 Now inline. Return bool, not int.
6798 * src/state.c (state_compare): Likewise.
6799 * src/symtab.c (symbol_check_defined,
6800 symbol_check_alias_consistency, symbol_pack, symbol_translation,
6801 hash_compare_symbol, hash_symbol):
6802 Likewise.
6803 * src/uniqstr.c (uniqstr_print): Likewise.
6804 * src/muscle_tab.c (muscle_m4_output_processor):
6805 New function, to avoid casts.
6806 * src/state.c (state_comparator, stage_hasher): Likewise.
6807 * src/symtab.c (symbol_check_defined_processor,
6808 symbol_check_alias_consistency_processor, symbol_pack_processor,
6809 symbol_translation_processor, hash_symbol_comparator,
6810 hash_symbol_hasher): Likewise.
6811 * src/uniqstr.c (uniqstr_print_processor): Likewise.
6812 * src/muscle_tab.c (muscles_m4_output):
6813 Use new functions instead of casting old functions unportably.
6814 * src/state.c (state_hash_new): Likewise.
6815 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
6816 symbols_token_translations_init):
6817 Likewise.
6818 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
6819
6820 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
6821 var instead of casting to long, to avoid casts.
6822 (prepare_states): Use MALLOC rather than alloca, so that we don't
6823 have to worry about alloca.
6824 * src/state.c (state_hash_lookup): Likewise.
6825
6826 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
6827 local var instead of casting to unsigned char, to avoid casts.
6828
6829 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
6830 STATE_ALLOC): Remove.
6831 (transitions_new, errs_new, reductions_new, state_new): Use malloc
6832 rather than calloc, and use offsetof to avoid allocating slightly
6833 too much storage.
6834 (state_new): Initialize all members.
6835
6836 * src/state.c (state_hash): Use unsigned accumulator, not signed.
6837
6838 * src/symtab.c (symbol_free): Remove; unused.
6839 (symbol_get): Remove cast in lhs of assignment.
6840 (symbols_do): Now static. Accept generic arguments, not
6841 hashing-related ones.
6842
6843 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
6844 (symbol_processor): Remove.
6845 (symbols_do): Remove decl; now static.
6846
6847 * src/system.h (alloca): Remove; decl no longer needed.
6848 (<stddef.h>): Include, for offsetof.
6849 (<inttypes.>, <stdint.h>): Include if available.
6850 (uintptr_t): New type, if system lacks it.
6851 (CALLOC, MALLOC, REALLOC): New macros.
6852 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
6853 new macros.
6854
6855 * src/tables.c (table_size): Now int, to pacify GCC.
6856 (table_grow, table_ninf_remap): Use signed table size.
6857 (save_row): Don't bother initializing locals when not needed.
6858 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
6859 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
6860
6861 * src/vcg.h: Correct misspellings.
6862
6863 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
6864
6865
6866 * src/getargs.c (getargs): Don't assume EOF == -1.
6867
68682002-12-09 Paul Eggert <eggert@twinsun.com>
6869
6870 Change identifier spellings to avoid collisions with names
6871 that are reserved by POSIX.
6872
6873 Don't use names ending in _t, since POSIX reserves them.
6874 For consistency, remove _e and _s endings -- they're weren't
6875 needed to remove ambiguity. All uses changed.
6876 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
6877 turn was just renamed from struniq_t.
6878 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
6879 which in turn was just renamed from struniq_processor_t.
6880 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
6881 in turn was renamed from hash_compare_struniq_t.
6882 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
6883 (state_list): Renamed from state_list_t.
6884 * src/assoc.h (assoc): Renamed from assoc_t.
6885 * src/conflicts.c (enum conflict_resolution): Renamed from
6886 enum conflict_resolution_e.
6887 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
6888 (rule_list): Renamed from rule_list_t.
6889 * src/getargs.h (enum trace): Renamed from enum trace_e.
6890 (enum report): Renamed from enum report_e.
6891 * src/gram.h (item_number): Renamed from item_number_t.
6892 (rule_number): Renamed from rule_number_t.
6893 (struct rule_s): Remove the "rule_s" part; not used.
6894 (rule): Renamed from rule_t.
6895 (rule_filter): Renamed from rule_filter_t.
6896 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
6897 (goto_list): Renamed from goto_list_t.
6898 * src/lalr.h (goto_number): Renamed from goto_number_t.
6899 * src/location.h (location): Renamed from location_t.
6900 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
6901 and moved here from:
6902 * src/muscle_tab.h (muscle_entry_t): here.
6903 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
6904 (rule_list): Renamed from rule_list_t.
6905 * src/print_graph.c (static_graph): Renamed from graph.
6906 * src/reader.h (braced_code): Renamed from braced_code_t.
6907 Remove brace_code_e tag.
6908 * src/relation.h (relation_node): Renamed from relation_node_t.
6909 (relation_nodes): Renamed from relation_nodes_t.
6910 (relation): Renamed from relation_t.
6911 * src/state.h (state_number): Renamed from state_number_t.
6912 (struct state): Renamed from struct state_s.
6913 (state): Renamed from state_t.
6914 (transitions): Renamed from transitions_t. Unused (and
6915 misspelled) transtion_s tag removed.
6916 (errs): Renamed from errs_t. Unused errs_s tag removed.
6917 (reductions): Renamed from reductions_t. Unused tag
6918 reductions_s removed.
6919 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
6920 (struct symbol_list): Renamed from struct symbol_list_s.
6921 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
6922 (struct symbol): Renamed from struct symbol_s.
6923 (symbol): Renamed from symbol_t.
6924 * src/tables.c (vector_number): Renamed from vector_number_t.
6925 (action_number): Renamed from action_t.
6926 * src/tables.h (base_number): Renamed from base_t.
6927 * src/vcg.h (enum color): Renamed from enum color_e.
6928 (enum textmode): Renamed from enum textmode_e.
6929 (enum shape): Renamed from enum shape_e.
6930 (struct colorentry): Renamed from struct colorentry_s.
6931 (struct classname): Renamed from struct classname_s.
6932 (struct infoname): Renamed from struct infoname_s.
6933 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
6934 (enum decision): Renamed from enum decision_e.
6935 (enum orientation): Renamed from enum orientation_e.
6936 (enum alignment): Renamed from enum alignment_e.
6937 (enum arrow_mode): Renamed from enum arrow_mode_e.
6938 (enum crossing_type): Renamed from enum crossing_type_e.
6939 (enum view): Renamed from enum view_e.
6940 (struct node): Renamed from struct node_s.
6941 (node): Renamed from node_t.
6942 (enum linestyle): Renamed from enum linestyle_e.
6943 (enum arrowstyle): Renamed from enum arrowstyle_e.
6944 (struct edge): Renamed from struct edge.
6945 (edge): Renamed from edge_t.
6946 (struct graph): Renamed from struct graph_s.
6947 (graph): Renamed from graph_t.
6948 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
6949 Rename value_t -> value.
6950 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
6951 value_t_as_yystype -> value_as_yystype.
6952
6953 Don't include <errno.h> in the mainstream code, since it
6954 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
6955 * lib/get-errno.c, lib/get-errno.h: New files.
6956 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
6957 get-errno.c.
6958 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
6959 * src/output.c (output_skeleton): Likewise.
6960 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
6961 instead of errno.
6962 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
6963 Likewise.
6964 (handle_action_dollar, handle_action_at): Likewise.
6965 * src/system.h: Do not include <errno.h>.
6966 (TAB_EXT): Renamed from EXT_TAB.
6967 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
6968
6969 Avoid str[a-z]*, since <string.h> reserves that name space.
6970 Change all instances of "struniq" in names to "uniqstr", and
6971 likewise for "STRUNIQ" and "UNIQSTR".
6972 * src/uniqstr.c: Renamed from src/struniq.c.
6973 * src/uniqstr.h: Renamed from src/struniq.h.
6974 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
6975 * src/files.c (strsuffix): Remove; unused.
6976 (concat2): Renamed from stringappend. Now static.
6977 * src/files.h (strsuffix, stringappend): Remove; unused.
6978 * src/parse-gram.y (<chars>): Renamed from <string>.
6979 (<uniqstr>): Renamed from <struniq>.
6980 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
6981 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
6982 (struct graph_s.expand): Renamed from struct graph_s.stretch.
6983 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
6984 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
6985 (N_EXPAND): Renamed from N_STRETCH.
6986
6987 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
6988 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
6989 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
6990 Remove; unused.
6991 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
6992 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
6993 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
6994 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
6995 (BASE_MAXIMUM): Renamed from BASE_MAX.
6996 (BASE_MINIMUM): Renamed from BASE_MIN.
6997 (ACTION_MAX): Remove; unused.
6998 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
6999 Unnecessary casts removed from above defines.
7000
7001
7002 Fix misspelling in names.
7003 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
7004 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
7005 G_NODE_ALIGNEMENT.
7006
7007
7008 * lib/timevar.c (timevar_report): Renamed from time_report,
7009 for consistency with other names.
7010 * lib/timevar.h (timevar_report): New decl.
7011 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
7012
7013
7014 Sort include-file uses.
7015
7016 Reorder all include files under src to be in the order "system.h".
7017 then the ../lib include files in angle brackets (alphabetized),
7018 then the . include files in double-quotes (alphabetized). Fix
7019 dependency breakages encountered in this process, as follows:
7020 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
7021 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
7022 * src/state.h: Include "symtab.h".
7023
70242002-12-08 Paul Eggert <eggert@twinsun.com>
7025
7026 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
7027 since this causes problems when __file__ contains character
7028 sequences like "@" that are treated specially by src/scan-skel.l.
7029 Instead, just use the file's basename. This fixes the bug
7030 reported by Martin Mokrejs in
7031 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
7032
70332002-12-06 Paul Eggert <eggert@twinsun.com>
7034
7035 Add support for rules that do not have trailing semicolons, as
7036 POSIX requires. Improve the quality of locations in Bison
7037 diagnostics.
7038
7039 * src/location.c: Include <quotearg.h>.
7040 (empty_location): Now const.
7041 (location_print): New function. Follow the recommendation of the
7042 GNU Coding Standards for locations that span file boundaries.
7043 * src/location.h: Do not include <quotearg.h>; no longer needed.
7044 (boundary): New type.
7045 (location_t): Use it. This allows locations to span file boundaries.
7046 All member uses changed: file -> start.file or end.file (as needed),
7047 first_line -> start.line, first_column -> start.column,
7048 last_line -> end.line, last_column -> end.column.
7049 (equal_boundaries): New function.
7050 (LOCATION_RESET, LOCATION_STEP): Remove.
7051 (LOCATION_PRINT): Remove. All callers changed to use location_print.
7052 (empty_location): Now const.
7053 (location_print): New decl.
7054 * src/parse-gram.y (lloc_default): New function, which handles
7055 empty locations more accurately.
7056 (YYLLOC_DEFAULT): Use it.
7057 (%token COLON): Remove.
7058 (%token ID_COLON): New token.
7059 (rules): Use it.
7060 (declarations, rules): Remove trailing semicolon.
7061 (declaration, rules_or_grammar_declaration):
7062 Allow empty (";") declaration.
7063 (symbol_def): Remove empty actions; no longer needed.
7064 (rules_or_grammar_declaration): Remove trailing semicolon.
7065 (semi_colon.opt): Remove.
7066 * src/reader.h: Include location.h.
7067 (scanner_cursor): New decl.
7068 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
7069 rolling our own.
7070 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
7071 of *loc.
7072 (STEP): Remove. No longer needed, now that adjust_location does
7073 the work. All uses removed.
7074 (scanner_cursor): New var.
7075 (adjust_location): Renamed from extend_location. It now sets
7076 *loc and adjusts the scanner cursor. All uses changed.
7077 Don't bother testing for CR.
7078 (handle_syncline): Remove location arg; now updates scanner cursor.
7079 All callers changed.
7080 (unexpected_end_of_file): Now accepts start boundary of token or
7081 comment, not location. All callers changed. Update scanner cursor,
7082 not the location.
7083 (SC_AFTER_IDENTIFIER): New state.
7084 (context_state): Renamed from c_context. All uses changed.
7085 (id_loc, code_start, token_start): New local vars.
7086 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
7087 processing of Yacc white space and equivalents here.
7088 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
7089 instead of returning ID immediately, since we need to search for
7090 a subsequent colon.
7091 (<INITIAL>"'", "\""): Save token_start.
7092 (<INITIAL>"%{", "{", "%%"): Save code_start.
7093 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
7094 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
7095 BEGIN context_state at end, not INITIAL.
7096 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
7097 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
7098 Return correct token start.
7099 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
7100 the start of a character, string or multiline comment is found.
7101 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
7102 Reduction): Adjust reported locations to match the more-precise
7103 results now expected.
7104 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
7105 * tests/reduce.at (Useless Rules, Reduced Automaton,
7106 Underivable Rules): Likewise.
7107 * tests/regression.at (Invalid inputs): No longer `expecting ";"
7108 or "|"' now that so many other tokens are allowed by the new grammar.
7109
7110 * src/complain.h (current_file): Remove duplicate decl;
7111 current_file is now owned by files.h.
7112 * src/complain.c, src/scan-gram.l: Include files.h.
7113
71142002-12-06 Paul Eggert <eggert@twinsun.com>
7115
7116 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
7117 promotes to int; it might be unsigned int.
7118 * data/yacc.c (yy_reduce_print): Likewise.
7119
7120 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
7121 be #defined in the prologue, not in the Bison declarations.
7122 This fixes Debian Bug 102878, reported by Shaul Karl.
7123
71242002-12-02 Paul Eggert <eggert@twinsun.com>
7125
7126 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
7127 * lib/strtoul.c: New file, from gnulib.
7128 This fixes a porting bug reported by Peter Klein in
7129 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
7130
71312002-11-30 Paul Eggert <eggert@twinsun.com>
7132
7133 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
7134 and put only a forward declaration in the prologue. This is for
7135 consistency with the other scanner helper functions.
7136
7137 Type clashes now generate warnings, not errors, since it
7138 appears that POSIX may allow some grammars with type clashes.
7139 * src/reader.c (grammar_current_rule_check): Warn about
7140 type clashes instead of complaining.
7141 * tests/input.at (Type Clashes): Expect warnings, not complaints.
7142
7143 Add Yacc library, since POSIX requires it.
7144 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
7145 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
7146 * lib/main.c, lib/yyerror.c: New files.
7147
7148 gram_error can be static; it need not be extern.
7149 * src/reader.h (gram_error): Remove decl.
7150 * src/parse-gram.y (gram_error): Now static. Add static decl.
7151 (print_token_value): Omit parameter names from forward decl,
7152 for consistency.
7153
71542002-11-29 Paul Eggert <eggert@twinsun.com>
7155
7156 * doc/bison.texinfo: Emphasize that yylex and yyerror must
7157 be declared before being used. E.g., one should typically
7158 declare them in the prologue. Use GNU coding style in examples.
7159 Put "const" consistently after the type it modifies. Mention
7160 that C99 supports "inline". Mention that yyerror traditionally
7161 returns "int".
7162
7163 %parse-param and %lex-param now take just one argument, the
7164 declaration; the argument name is deduced from the declaration.
7165
7166 * doc/bison.texinfo (Parser Function, Pure Calling, Error
7167 Reporting, Table of Symbols): Document this.
7168 * src/parse-gram.y (add_param): New function.
7169 (COMMA): Remove.
7170 (declaration): Implement new rule for %parse-param and %lex-param.
7171 * src/scan-gram.l: "," now elicits a warning, rather than being
7172 a token; this is more compatible with byacc.
7173 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
7174
71752002-11-27 Paul Eggert <eggert@twinsun.com>
7176
7177 Rename identifiers to avoid real and potential collisions.
7178
7179 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
7180 to avoid collision with lex macro described by Bruce Lilly in
7181 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
7182 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
7183 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
7184 * src/parse-gram.y (print_token_value): Renamed from yyprint.
7185 All uses changed.
7186 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
7187 The name "yycontrol" violates the name space rules, and this stuff
7188 wasn't being used anyway.
7189 (input): Remove action; this stuff wasn't being used.
7190 (gram_error): Rename local variable yylloc -> loc.
7191 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
7192 (YY_DECL): Don't use "yy" at start of local variables.
7193 All uses changed, e.g., yylloc -> loc.
7194 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
7195 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
7196 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
7197 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
7198
7199 * src/parse-gram.y (gram_error): loc is now const *.
7200 * src/reader.h (gram_error): Likewise.
7201
72022002-11-24 Paul Eggert <eggert@twinsun.com>
7203
7204 Version 1.75c.
7205
7206 * tests/actions.at (Actions after errors): Use an output format
7207 more similar to that of the Printers and Destructors test.
7208 Test the position of the ';' token too.
7209 (Printers and Destructors): Likewise.
7210 (Printers and Destructors: %glr-parser): Remove for now, to avoid
7211 unnecessarily alarming people when the test fails.
7212
7213 * data/yacc.c (yyerrlab1): Move this label down, so that the
7214 parser does not discard the lookahead token if the user code
7215 invokes YYERROR. This change is required for POSIX conformance.
7216
7217 * lib/error.c: Sync with gnulib.
7218
72192002-11-22 Paul Eggert <eggert@twinsun.com>
7220
7221 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
7222 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
7223 * lib/xmalloc.c: Likewise.
7224
72252002-11-20 Paul Eggert <eggert@twinsun.com>
7226
7227 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
7228
72292002-11-20 Paul Eggert <eggert@twinsun.com>
7230
7231 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
7232 should use `if (! x) abort ();' rather than `assert (x);', and
7233 anyway it's one less thing to worry about configuring.
7234
7235 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
7236 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
7237 and replace all instances of assert with abort.
7238 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7239 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
7240
7241 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
7242 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
7243 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
7244 hash_find_entry, hash_rehash, hash_insert): Likewise.
7245 * src/conflicts.c (resolve_sr_conflict): Likewise.
7246 * src/lalr.c (set_goto_map, map_goto): Likewise.
7247 * src/nullable.c (nullable_compute): Likewise.
7248 * src/output.c (prepare_rules, token_definitions_output): Likewise.
7249 * src/reader.c (packgram, reader): Likewise.
7250 * src/state.c (state_new, state_free, state_transitions_set,
7251 state_reduction_find): Likewise.
7252 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
7253 symbol_pack): Likewise.
7254 * src/tables.c (conflict_row, pack_vector): Likewise.
7255 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
7256 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
7257 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
7258 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
7259
7260 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
7261 (ARGMATCH_CONSTRAINT): New macro.
7262 (ARGMATCH_ASSERT): Use it.
7263
7264 * src/system.h (verify): New macro.
7265 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
7266 rather than assert.
7267 * src/tables.c (tables_generate): Likewise.
7268
7269 * src/struniq.c (struniq_assert): Now returns void, and aborts
7270 if the assertion is false.
7271 (struniq_assert_p): Remove.
7272 * src/struniq.h: Likewise.
7273
72742002-11-18 Paul Eggert <eggert@twinsun.com>
7275
7276 * data/glr.c (yygetLRActions): Replace `yyindex' with
7277 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
7278 This fixes the regression with Sun ONE Studio 7 cc that I reported in
7279 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
7280
72812002-11-18 Akim Demaille <akim@epita.fr>
7282
7283 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
7284 space.
7285 From Tim Van Holder.
7286
72872002-11-17 Paul Eggert <eggert@twinsun.com>
7288
7289 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
7290 to "SyntaxError" for consistency with my 2002-11-15 change.
7291
7292 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
7293 not define to {}, since this breaks the common use of `YYDPRINTF
7294 ((...));' if a single statement is desired (e.g. before `else').
7295 Work around GCC warnings by surrounding corresponding calls with
7296 {} if needed.
7297 (yyhasResolvedValue): Remove unused function.
7298 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
7299 loop body.
7300 (yyreportSyntaxError): Renamed from yyreportParseError.
7301 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
7302 All uses changed.
7303 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
7304 extern when possible. Remove unused initializations.
7305
73062002-11-16 Akim Demaille <akim@epita.fr>
7307
7308 Augment the similarity between GLR and LALR traces.
7309
7310 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
7311 (YY_REDUCE_PRINT): New.
7312 (yyparse): Use them.
7313 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
7314 YYDPRINT here.
7315 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
7316 state reached after the reduction/recovery, since...
7317 (yyparse, yyprocessOneStack): Report the state we are entering in.
7318
73192002-11-16 Akim Demaille <akim@epita.fr>
7320
7321 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
7322 Add support for --trace=skeleton.
7323 * src/scan-skel.l: %option debug.
7324 Scan strings of non-@ or \n instead of character by character.
7325 (scan_skel): Handle trace_skeleton.
7326 (QPUTS): New.
7327 (@output_parser_name@, @output_header_name@): ``Restore'' their
7328 support (used to be M4 macros).
7329 * data/yacc.c: Quote larger chunks, a la glr.c.
7330 * data/lalr1.cc: Likewise.
7331 The header guards are no longer available, so use some other
7332 string than `YYLSP_NEEDED'.
7333
73342002-11-16 Akim Demaille <akim@epita.fr>
7335
7336 Make the ``Printers and Destructors'' test more verbose, taking
7337 `yacc.c''s behavior as (possibly wrong) reference.
7338
7339 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
7340 instead of fprint on stdout.
7341 Set and report the last_line of the symbols.
7342 Consistently display values and locations.
7343
73442002-11-16 Paul Eggert <eggert@twinsun.com>
7345
7346 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
7347
73482002-11-15 Paul Eggert <eggert@twinsun.com>
7349
7350 * tests/actions.at (Actions after errors): New test case.
7351
7352 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
7353 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
7354 tests/action.at, tests/calc.at, tests/conflicts.at,
7355 tests/cxx-type.at, tests/regression.at:
7356 "parse error" -> "syntax error" for POSIX compatibility.
7357 "parsing stack overflow..." -> "parser stack overflow" so
7358 that code matches Bison documentation.
7359
73602002-11-15 Akim Demaille <akim@epita.fr>
7361
7362 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
7363 take two BRACED_CODE, not two string_content.
7364 Free the scanner's obstack when we are done.
7365 (code_content): New.
7366 * tests/calc.at: Adjust.
7367 * doc/bison.texinfo: Adjust.
7368 Also, make sure to include the `,' for these declarations.
7369
73702002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
7371
7372 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
7373 definition; avoids potential autoreconf problems.
7374
73752002-11-15 Akim Demaille <akim@epita.fr>
7376
7377 Always check the value returned by yyparse.
7378
7379 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
7380 returned by yyparse.
7381 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
7382 Adjust calls.
7383 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
7384 returned by yyparse.
7385
73862002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7387
7388 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
7389 on input.at test.
7390
73912002-11-14 Paul Eggert <eggert@twinsun.com>
7392
7393 * src/output.c (output_skeleton): Call xfopen instead of
7394 duplicating xfopen's body.
7395
7396 Fix bugs reported by Nelson H. F. Beebe in
7397 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
7398
7399 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
7400 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
7401 Group compiler. Instead, use "$CC -E bar.c". Include the .h
7402 file twice in the grammar, as an extra check.
7403
7404 * tests/input.at (Torturing the Scanner): Surround the
7405 backslash-newline tests with "#if 0", to make it less likely that
7406 we'll run into compiler bugs. Bring back solitary \ inside
7407 comment, but add a closing comment to work around HP C bug. Don't
7408 test backslash-newline in C character constant.
7409
74102002-11-14 Akim Demaille <akim@epita.fr>
7411
7412 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
7413 status of the compiler.
7414 Calling `exit 1' is no longer needed.
7415 Reported by Nelson H. F. Beebe.
7416
74172002-11-14 Akim Demaille <akim@epita.fr>
7418
7419 * tests/atlocal.in (CPPFLAGS): We have config.h.
7420 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
7421 New.
7422 * tests/actions.at, tests/calc.at, tests/conflicts.at,
7423 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
7424 * tests/regression.at, tests/torture.at: Use them for all the
7425 grammars that are to be compiled.
7426 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
7427 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
7428 * doc/bison.texinfo (GLR Parsers): Document `inline'.
7429
74302002-11-14 Akim Demaille <akim@epita.fr>
7431
7432 * doc/bison.texinfo: Various formatting changes (alignments in
7433 samples, additional @group/@end group, GCS in samples.
7434 Use @deffn instead of simple @table to define the directives,
7435 macros, variables etc.
7436
74372002-11-13 Paul Eggert <eggert@twinsun.com>
7438
7439 Fix some bugs reported by Albert Chin-A-Young in
7440 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
7441
7442 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
7443 -o c"; the HP C compiler chatters during compilation.
7444 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
7445 * tests/headers.at (export YYLTYPE): Likewise.
7446
7447 * tests/input.at (Torturing the Scanner): Remove lines containing
7448 solitary backslashes, as they tickle a bug in the HP C compiler.
7449
7450 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
7451 comments, since they're not portable. Use GNU coding style.
7452
74532002-11-13 Akim Demaille <akim@epita.fr>
7454
7455 * data/yacc.c: Leave bigger chunks of quoted text.
7456 (YYDSYMPRINTF): New.
7457 Use it to report symbol activities.
7458 * data/glr.c (YYDSYMPRINTF): New.
7459 Use it.
7460
74612002-11-12 Paul Eggert <eggert@twinsun.com>
7462
7463 Version 1.75b.
7464
7465 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
7466 (yyglrReduce): Return yyok, not 0.
7467 This should avoid the enumerated-type warnings reported
7468 by Nelson H. F. Beebe in
7469 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
7470
7471 * lib/bbitset.h (BITSET_INLINE): Remove.
7472 * lib/bitset.h [! BITSET_INLINE]: Remove.
7473 (bitset_set, bitset_reset, bitset_test): Rename local vars
7474 to avoid shadowing warnings by GCC.
7475
7476 * data/glr.c (inline): Remove #define. It's the user's
7477 responsibility to #define it away, just like 'const'.
7478 This fixes one of the bugs reported by Nelson H. F. Beebe in
7479 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
7480
7481 * Makefile.maint (po-check): Scan .l and .y files instead of the
7482 .c and the .h files that they generate. This fixes the bug
7483 reported by Tim Van Holder in:
7484 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
7485 Look for N_ as well as for _. Try to avoid matching #define for
7486 N_ and _.
7487 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
7488 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
7489 * src/scan-gram.l: Revamp regular expressions so that " and '
7490 do not confuse xgettext.
7491
7492 * src/struniq.h (struniq_new): Do not declare the return type
7493 to be 'const'; this violates the C standard.
7494 * src/struniq.c (struniq_new): Likewise.
7495
74962002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
7497
7498 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
7499 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
7500 linker.
7501
75022002-11-12 Akim Demaille <akim@epita.fr>
7503
7504 * Makefile.maint: Sync with Autoconf:
7505 (local_updates): New.
7506
75072002-11-12 Akim Demaille <akim@epita.fr>
7508
7509 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
7510
75112002-11-12 Akim Demaille <akim@epita.fr>
7512
7513 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
7514 locations.
7515
75162002-11-12 Akim Demaille <akim@epita.fr>
7517
7518 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
7519 not yyvalue.
7520
75212002-11-12 Akim Demaille <akim@epita.fr>
7522
7523 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
7524 Use it to test the GLR parser.
7525
75262002-11-12 Akim Demaille <akim@epita.fr>
7527
7528 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
7529 defines it.
7530 * data/glr.c (yystos): New.
7531 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
7532 (YYDSYMPRINT): New.
7533 (yyval): Don't define it, it is handled via M4.
7534 (yyrecoverParseError): Free verbosely the discarded symbols.
7535 * data/yacc.c (yysymprint): Remove, rather...
7536 (b4_yysymprint_generate): invoke.
7537 * data/c.m4 (b4_yysymprint_generate): New.
7538 Accept pointers as arguments, as opposed to the version from
7539 yacc.c.
7540 (b4_yydestruct_generate): Likewise.
7541 * tests/cations.at (Printers and Destructors): Use Bison directives
7542 instead of CPP macros.
7543 Don't rely on internal details.
7544
75452002-11-12 Akim Demaille <akim@epita.fr>
7546
7547 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
7548 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
7549 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
7550 it against YYEMPTY and so forth), work on yytoken (i.e., set
7551 it to YYEMPTY etc.).
7552 (yydestruct): Replace with a b4_yydestruct_generate invocation.
7553 (b4_symbol_actions): Remove.
7554 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
7555 for 0, end-of-input.
7556
75572002-11-12 Akim Demaille <akim@epita.fr>
7558
7559 * doc/bison.texinfo (Destructor Decl): New.
7560
75612002-11-12 Akim Demaille <akim@epita.fr>
7562
7563 * src/tables.c (tables_generate): Use free for pointers that
7564 cannot be NULL, not XFREE.
7565 (pack_vector): Use assert, not fatal, for bound violations.
7566 * src/state.c (state_new): Likewise.
7567 * src/reader.c (reader): Likewise.
7568 * src/lalr.c (set_goto_map): Likewise.
7569 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
7570 the file name.
7571
75722002-11-12 Akim Demaille <akim@epita.fr>
7573
7574 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
7575 Restore.
7576 * src/scan-gram.l (last_string): Is global to the file, not to
7577 yylex.
7578 * src/parse-gram.y (input): Don't append the epilogue here,
7579 (epilogue.opt): do it here, and free the scanner's obstack.
7580 * src/reader.c (epilogue_set): Rename as...
7581 (epilogue_augment): this.
7582 * data/c.m4 (b4_epilogue): Defaults to empty.
7583
75842002-11-12 Akim Demaille <akim@epita.fr>
7585
7586 * src/getargs.c (long_options): Remove duplicates.
7587 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
7588 Remove.
7589 * doc/bison.rnh: Remove.
7590 * doc/bison.texinfo (VMS Invocation): Remove.
7591
75922002-11-12 Akim Demaille <akim@epita.fr>
7593
7594 * src/struniq.h, src/struniq.c (struniq_t): Is const.
7595 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
7596
7597 Use struniq for symbols.
7598
7599 * src/symtab.h (symbol_t): The tag member is a struniq.
7600 (symbol_type_set): Adjust.
7601 * src/symtab.c (symbol_new): Takes a struniq.
7602 (symbol_free): Don't free the tag member.
7603 (hash_compare_symbol_t, hash_symbol_t): Rename as...
7604 (hash_compare_symbol, hash_symbol): these.
7605 Use the fact that tags as struniqs.
7606 (symbol_get): Use struniq_new.
7607 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
7608 Returns a strniq.
7609 * src/reader.h (merger_list, grammar_currentmerge_set): The name
7610 and type members are struniqs.
7611 * src/reader.c (get_merge_function)
7612 (grammar_current_rule_merge_set): Adjust.
7613 (TYPE, current_type): Are struniq.
7614
7615 Use struniq for file names.
7616
7617 * src/files.h, src/files.c (infile): Split into...
7618 (grammar_file, current_file): these.
7619 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
7620 * src/reduce.c (reduce_print): Likewise.
7621 * src/getargs.c (getargs): Likewise.
7622 * src/complain.h, src/complain.c: Likewise.
7623 * src/main.c (main): Call struniqs_new early enough to use it for
7624 file names.
7625 Don't free the input file name.
7626
76272002-11-12 Akim Demaille <akim@epita.fr>
7628
7629 * src/symtab.c (symbol_free): Remove dead deactivated code:
7630 type_name are properly removed.
7631 Don't use XFREE to free items that cannot be NULL.
7632 * src/struniq.h, src/struniq.c: New.
7633 * src/main.c (main): Initialize/free struniqs.
7634 * src/parse-gram.y (%union): Add astruniq member.
7635 (yyprint): Adjust.
7636 * src/scan-gram.l (<{tag}>): Return a struniq.
7637 Free the obstack bit that used to store it.
7638 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
7639
76402002-11-11 Paul Eggert <eggert@twinsun.com>
7641
7642 Revamp to fix many (but not all) of the C- and M4-related quoting
7643 problems. Among other things, this fixes the Bison bug reported
7644 by Jan Hubicka when processing the Bash grammar; see:
7645 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7646
7647 Use new @ escapes consistently. Represent brackets with @{ and @}
7648 rather than @<:@ and @:>@, since this works a bit better with dumb
7649 editors like vi. Represent @ with @@, since @ is now consistently
7650 an escape. Use @oline@ and @ofile@ rather than __oline__ and
7651 __ofile__, to avoid unexpected expansions. Similarly, use @output
7652 rather than #output.
7653
7654 * data/c.m4 (b4_copyright): Omit file name from comment, since
7655 the file name could contain "*/".
7656 (b4_synclines_flag): Don't quote the 2nd argument; it should already
7657 be quoted. All uses changed.
7658
7659 * data/glr.c: Use new @ escapes consistently.
7660 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
7661 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
7662 Remove, since they couldn't handle arbitrary characters in file
7663 names.
7664 * data/lalr1.cc: Likewise.
7665 * data/yacc.c: Likewise.
7666
7667 * src/files.c (output_infix): Remove; all uses removed.
7668 * src/files.h: Likewise.
7669
7670 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
7671 mishandled funny characters in file names, and anyway it isn't
7672 needed any more.
7673 * data/yacc.c: Likewise.
7674 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
7675
7676 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
7677 * data/yacc.c: Likewise.
7678
7679 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
7680 strings now.
7681 (muscle_init): Quote filename as a C string.
7682 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
7683 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
7684 * src/output.c (escaped_file_name_output): New function.
7685 (prepare_symbols): Quote tokens for M4.
7686 (prepare): Don't insert output_infix, output_prefix,
7687 output_parser_name, output_header_name; this is now down by scan-skel.
7688 Insert skeleton as a C string.
7689
7690 * src/output.c (user_actions_output, symbol_destructors_output,
7691 symbol_printers_output): Quote filenames for C and M4.
7692 * src/reader.c (prologue_augment, epilogue_set): Likewise.
7693
7694 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
7695 escapes other than \\ and \'; this simplifies the code.
7696 (<SC_STRING>): Likewise, for \\ and \".
7697 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
7698 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
7699 Use new escapes @{ and @} for [ and ].
7700
7701 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
7702 them with auto vars.
7703 Switch to new escape scheme, where @ is the escape character uniformly.
7704 Abort if a stray escape character is found. Avoid unbounded input
7705 buffer when parsing non-escaped text.
7706
7707 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
7708 __oline__, #output, $@, and @{ do not have unintended meanings.
7709
77102002-11-09 Paul Eggert <eggert@twinsun.com>
7711
7712 Fix the test failure due to GCC warnings described in
7713 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
7714 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
7715 evaluate to 0 if it's impossible for NINF to be in the respective
7716 table.
7717 (yygetLRActions, yyrecoverParseError): Use them.
7718
7719 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
7720 counted in the token inserted at end of file. Now takes
7721 location_t *, not location_t, so that the location can be
7722 adjusted. All uses changed.
7723
7724 * tests/regression.at (Invalid inputs): Adjust wording in
7725 diagnostic to match the new behavior.
7726
7727 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
7728 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
7729 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
7730 abort ();'. This reduces the runtime of the "Many lookaheads"
7731 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
7732 GCC 3.2.
7733
77342002-11-07 Paul Eggert <eggert@twinsun.com>
7735
7736 * src/parse-gram.y (CHARACTER): Remove unused token.
7737 All uses removed.
7738
7739 * src/scan-gram.l: Remove stack option. We no longer use the
7740 stack, since the stack was never deeper than 1; instead, use the
7741 new auto var c_context to record the stacked value.
7742
7743 Remove nounput option. At an unexpected end of file, we now unput
7744 the minimal input necessary to end cleanly; this simplifies the
7745 code.
7746
7747 Avoid unbounded token sizes where this is easy.
7748
7749 (unexpected_end_of_file): New function.
7750 Use it to systematize the error message on unexpected EOF.
7751 (last-string): Now auto, not static.
7752 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
7753 (scanner_last_string_free): Remove; not used.
7754 (percent_percent_count): Move decl to just before use.
7755 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
7756 not the (never otherwised-used) CHARACTER.
7757
77582002-11-07 Akim Demaille <akim@epita.fr>
7759
7760 Let yyerror always receive the msg as last argument, so that
7761 yyerror can be variadic.
7762
7763 * data/yacc.c (b4_yyerror_args): New.
7764 Use it when calling yyerror.
7765 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
7766 Use it when calling yyerror.
7767 * doc/bison.texinfo (Error Reporting): Adjust.
7768 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
7769 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
7770
77712002-11-06 Akim Demaille <akim@epita.fr>
7772
7773 #line should have quoted strings.
7774 Ideally, this should be done by m4_quotearg.
7775
7776 * src/scan-skel.l: Include quotearg.h.
7777 Quote __ofile__.
7778 * src/output.c (symbol_printers_output)
7779 (symbol_destructors_output): Quote the file name.
7780
77812002-11-06 Akim Demaille <akim@epita.fr>
7782
7783 * tests/regression.at (Invalid inputs): Adjust to the recent
7784 messages.
7785
77862002-11-06 Akim Demaille <akim@epita.fr>
7787
7788 Restore --no-lines.
7789 Reported by Jim Kent.
7790
7791 * data/c.m4 (b4_syncline): New.
7792 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
7793 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
7794 * src/output.c (user_actions_output): Likewise.
7795 (prepare): Define 'b4_synclines_flag'.
7796 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
7797
77982002-11-06 Akim Demaille <akim@epita.fr>
7799
7800 * src/main.c (main): Free `infile'.
7801 * src/scan-gram.l (handle_syncline): New.
7802 Recognize `#line'.
7803 * src/output.c (user_actions_output, symbol_destructors_output)
7804 (symbol_printers_output): Use the location's file name, not
7805 infile.
7806 * src/reader.c (prologue_augment, epilogue_set): Likewise.
7807
78082002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7809
7810 * src/tables.c (matching_state): Don't allow states to match if
7811 either has GLR conflict entries.
7812
78132002-11-05 Paul Eggert <eggert@twinsun.com>
7814
7815 * src/scan-gram.l: Use more accurate diagnostics, e.g.
7816 "integer out of range" rather than "invalid value".
7817 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
7818 accordingly.
7819
7820 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
7821 Also, remove one static variable in the scanner.
7822
7823 * src/scan-gram.l (braces_level): Now auto, not static.
7824 Initialize to zero if the compiler is being picky.
7825 (INITIAL): Clear braces_level instead of incrementing it.
7826 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
7827 as POSIX 1003.1-2001 requires.
7828 * src/system.h (IF_LINT): New macro, taken from coreutils.
7829 * configure.ac: Define "lint" if --enable-gcc-warnings.
7830
78312002-11-05 Akim Demaille <akim@epita.fr>
7832
7833 * src/scan-gram.l: When it starts with `%', complain about the
7834 whole directive, not just that `invalid character: %'.
7835
78362002-11-04 Akim Demaille <akim@epita.fr>
7837
7838 * Makefile.maint: Update from Autoconf.
7839 (update, cvs-update, po-update, do-po-update): New.
7840
78412002-11-04 Akim Demaille <akim@epita.fr>
7842
7843 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
7844 and yyerror.
7845 Have yyerror `use' its arguments.
7846 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
7847 returns true when location & yacc & pure & parse-param.
7848 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
7849
78502002-11-04 Akim Demaille <akim@epita.fr>
7851
7852 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
7853 clashes.
7854 * src/scan-gram.l: Use [\'] instead of ['] to pacify
7855 font-lock-mode.
7856 Use complain_at.
7857 Use quote, not quote_n since LOCATION_PRINT no longer uses the
7858 slot 0.
7859
78602002-11-03 Paul Eggert <eggert@twinsun.com>
7861
7862 * src/reader.c (get_merge_function, grammar_current_rule_check):
7863 Use consistent diagnostics for reporting type name clashes.
7864 Quote the types with <>, for consistency with Yacc.
7865 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
7866
78672002-11-03 Akim Demaille <akim@epita.fr>
7868
7869 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
7870 New.
7871 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
7872 (b4_parse_param): Remove.
7873 Use b4_identification.
7874 Propagate b4_pure_args where needed to pass them to yyerror.
7875 * data/glr.m4 (b4_parse_param): Remove.
7876 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
7877 (b4_lpure_formals): New.
7878 Use b4_identification.
7879 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
7880 b4_user_formals and b4_user_args.
7881 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
7882 (yyreportAmbiguity): When using a pure parser, also need
7883 the location, and the parse-params.
7884 Adjust callers.
7885 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
7886 When using a pure parser, also need the parse-params.
7887 Adjust callers.
7888 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
7889 (%pure-parser + %parse-param) LALR and GLR parsers.
7890 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
7891 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
7892 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
7893 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
7894 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
7895 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
7896 * doc/bison.texinfo: Untabify the whole file.
7897 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
7898 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
7899 (Error Reporting): Adjust to these new directives.
7900 Document %error-verbose, deprecate YYERROR_VERBOSE.
7901
79022002-11-03 Akim Demaille <akim@epita.fr>
7903
7904 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
7905 AT_CHECK_CALC_GLR invocations to use % directives, instead of
7906 command line options.
7907 * tests/cxx-type.at: Formatting changes.
7908
79092002-11-03 Paul Eggert <eggert@twinsun.com>
7910
7911 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
7912 to count columns correctly, and to check for invalid inputs.
7913
7914 Use mbsnwidth to count columns correctly. Account for tabs, too.
7915 Include mbswidth.h.
7916 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
7917 (extend_location): New function.
7918 (YY_LINES): Remove.
7919
7920 Handle CRLF in C code rather than in Lex code.
7921 (YY_INPUT): New macro.
7922 (no_cr_read): New function.
7923
7924 Scan UCNs, even though we don't fully handle them yet.
7925 (convert_ucn_to_byte): New function.
7926
7927 Handle backslash-newline correctly in C code.
7928 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
7929 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
7930 all uses changed.
7931 (tag, splice): New EREs. Do not allow NUL or newline in tags.
7932 Use {splice} wherever C allows backslash-newline.
7933 YY_STEP after space, newline, vertical-tab.
7934 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
7935
7936 (letter, id): Don't assume ASCII; e.g., spell out a-z.
7937
7938 ({int}, handle_action_dollar, handle_action_at): Check for integer
7939 overflow.
7940
7941 (YY_STEP): Omit trailing semicolon, so that it's more like C.
7942
7943 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
7944 as well as \000. Check for UCHAR_MAX, not 255.
7945 Allow \x with an arbitrary positive number of digits, as in C.
7946 Check for overflow here.
7947 Allow \? and UCNs, for compatibility with C.
7948
7949 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
7950 with quote slot used by complain_at.
7951
7952 * tests/input.at: Add tests for backslash-newline, m4 quotes
7953 in symbols, long literals, and funny escapes in strings.
7954
7955 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
7956 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
7957 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
7958 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
7959 * m4/mbswidth.m4: New file, from GNU coreutils.
7960
7961 * doc/bison.texinfo (Grammar Outline): Document // comments.
7962 (Symbols): Document that trigraphs have no special meaning in Bison,
7963 nor is backslash-newline allowed.
7964 (Actions): Document that trigraphs have no special meaning.
7965
7966 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
7967 no longer used.
7968
79692002-11-02 Paul Eggert <eggert@twinsun.com>
7970
7971 * src/reader.c: Don't include quote.h; not needed.
7972 (get_merge_function): Reword warning to be consistent with
7973 type clash diagnostic in grammar_current_rule_check.
7974
7975 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
7976 bug in trigraph handling.
7977
7978 * src/output.c (prepare_symbols): When printing token names,
7979 escape "[" as "@<:@" and likewise for "]".
7980
7981 * src/system.h (errno): Remove declaration, as we are now
7982 assuming C89 or better, and C89 guarantees errno.
7983
79842002-10-30 Paul Eggert <eggert@twinsun.com>
7985
7986 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
7987 Check for close failures.
7988 * src/files.h (xfclose): Return void, not int, since it always
7989 returned zero.
7990 * src/files.c (xfclose): Likewise. Report I/O error if ferror
7991 indicates one.
7992 * src/output.c (output_skeleton): Use xfclose rather than fclose
7993 and ferror. xfclose now checks ferror.
7994
7995 * data/glr.c (YYLEFTMOST_STATE): Remove.
7996 (yyreportTree): Use a stack-based leftmost state. This avoids
7997 our continuing battles with bogus warnings about initializers.
7998
79992002-10-30 Akim Demaille <akim@epita.fr>
8000
8001 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
8002 #if.
8003
80042002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8005
8006 * tests/glr-regr1.at: New test for reported regressions.
8007 * tests/testsuite.at: Add glr-regr1.at test.
8008 * tests/Makefile.am: Add glr-regr1.at test.
8009
80102002-10-24 Paul Eggert <eggert@twinsun.com>
8011
8012 Version 1.75a.
8013
8014 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
8015 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
8016 we use malloc. Don't assume 'A' through 'Z' are contiguous.
8017 Don't assume strdup exists; POSIX says its an XSI extension.
8018 Check for buffer overflow on input.
8019
80202002-10-24 Akim Demaille <akim@epita.fr>
8021
8022 * src/output.c (output_skeleton): Don't disable M4sugar comments
8023 too soon: it results in comments being expanded.
8024 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
8025 first output.
8026
80272002-10-24 Akim Demaille <akim@epita.fr>
8028
8029 * data/yacc.c (m4_int_type): New.
8030 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
8031 char' as only yacc.c wants K&R portability.
8032 * data/glr.c (yysigned_char): Remove.
8033 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
8034 Reported by Quoc Peyrot.
8035
80362002-10-23 Paul Eggert <eggert@twinsun.com>
8037
8038 * src/main.c (main): With --trace=time, report times even if a
8039 non-fatal error occurs. Formerly, the times were reported in some
8040 such cases but not in others.
8041 * src/reader.c (reader): Just return if a complaint has been issued,
8042 instead of exiting, so that 'main' can report times.
8043
80442002-10-22 Akim Demaille <akim@epita.fr>
8045
8046 * src/system.h: Include sys/types.
8047 Reported by Bert Deknuydt.
8048
80492002-10-23 Paul Eggert <eggert@twinsun.com>
8050
8051 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
8052 Suggested by Art Haas.
8053
80542002-10-22 Paul Eggert <eggert@twinsun.com>
8055
8056 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
8057 decl; not needed any more.
8058 * src/main.c (main): Use return to exit, undoing yesterday's change.
8059 The last OS that we could find where this wouldn't work is
8060 SunOS 3.5, and that's too old to worry about now.
8061
8062 * data/glr.c (struct yyltype): Define members even when not
8063 doing locations. This is more consistent with yacc.c, and it
8064 works around the following bug reports:
8065 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
8066 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
8067
8068 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
8069 @acronym consistently. Standardize on "Yacc" instead of "YACC",
8070 "Algol" instead of "ALGOL". Give a bit more history about BNF.
8071
80722002-10-22 Akim Demaille <akim@epita.fr>
8073
8074 * data/README: New.
8075
80762002-10-21 Paul Eggert <eggert@twinsun.com>
8077
8078 Be consistent about 'bool'; the old code used an enum in one
8079 module and an int in another, and this violates the C standard.
8080 * m4/stdbool.m4: New file, from coreutils 4.5.3.
8081 * configure.ac (AC_HEADER_STDBOOL): Add.
8082 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
8083 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
8084 * src/symtab.c (hash_compare_symbol_t): Likewise.
8085 * src/system.h (bool, false, true): Use a definition consistent
8086 with ../lib/hash.c. All uses changed.
8087
8088 * src/complain.c (warning_issued): Renamed from warn_message_count,
8089 so that we needn't worry about integer overflow (!).
8090 Now of type bool. All uses changed.
8091 (complaint_issued): Renamed from complain_message_count; likewise.
8092
8093 * src/main.c (main): Use exit to exit with failure.
8094
8095 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
8096 rather than 1 and 0.
8097 * src/main.c (main): Likewise.
8098 * src/getargs.c (getargs): Likewise.
8099 * src/reader.c (reader): Likewise.
8100
8101 * src/getarg.c (getargs): Remove duplicate code for
8102 "Try `bison --help'".
8103
8104 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
8105 What was that "2" for?
8106
8107 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
8108 * src/getargs.c (usage): Likewise.
8109
8110 * src/getargs.c (getargs): When there are too few operands, report
8111 the last one. When there are too many, report the first extra
8112 one. This is how diffutils does it.
8113
81142002-10-20 Paul Eggert <eggert@twinsun.com>
8115
8116 Remove K&R vestiges.
8117 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
8118 * src/complain.c (VA_START): Remove. Assume prototypes.
8119 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
8120 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
8121 fatal): Assume prototypes.
8122 * src/complain.h: Assume prototypes.
8123 * src/system.h (PARAMS): Remove.
8124 Include <limits.h> unconditionally, since it's guaranteeed even
8125 for a freestanding C89 compiler.
8126 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
8127 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8128
81292002-10-20 Akim Demaille <akim@epita.fr>
8130
8131 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
8132 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
8133 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
8134 (yyresolveStates, yyresolveAction, yyresolveStack)
8135 (yyprocessOneStack): Use them.
8136 (yy_reduce_print): New.
8137 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
8138
81392002-10-20 Akim Demaille <akim@epita.fr>
8140
8141 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
8142 arguments and output `void'.
8143 (b4_c_function): Rename as...
8144 (b4_c_function_def): this.
8145 (b4_c_function_decl, b4_c_ansi_function_def)
8146 (b4_c_ansi_function_decl): New.
8147 Change the interpretation of the arguments: before `int, foo', now
8148 `int foo, foo'.
8149 * data/yacc.c (yyparse): Prototype and define thanks to these.
8150 Adjust b4_c_function_def uses.
8151 * data/glr.c (yyparse): Likewise, but ANSI only.
8152
81532002-10-20 Akim Demaille <akim@epita.fr>
8154
8155 * src/output.c (prepare): Move the definition of `tokens_number',
8156 `nterms_number', `undef_token_number', `user_token_number_max'
8157 to...
8158 (prepare_tokens): Here.
8159 (prepare_tokens): Rename as...
8160 (prepare_symbols): this.
8161 (prepare): Move the definition of `rules_number' to...
8162 (prepare_rules): here.
8163 (prepare): Move the definition of `last', `final_state_number',
8164 `states_number' to...
8165 (prepare_states): here.
8166 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
8167
81682002-10-20 Akim Demaille <akim@epita.fr>
8169
8170 * src/tables.h, src/tables.c, src/output.c: Comment changes.
8171
81722002-10-20 Akim Demaille <akim@epita.fr>
8173
8174 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
8175 * data/c.m4: here.
8176
81772002-10-20 Akim Demaille <akim@epita.fr>
8178
8179 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
8180 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
8181 `pair'.
8182 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
8183 `name' to...
8184 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
8185 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
8186 These.
8187
81882002-10-19 Paul Eggert <eggert@twinsun.com>
8189
8190 Do not create a temporary file, as that involves security and
8191 cleanup headaches. Instead, use a pair of pipes.
8192 Derived from a suggestion by Florian Krohm.
8193 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
8194 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
8195 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
8196 (BISON_PREREQ_SUBPIPE): Add.
8197 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
8198 Add subpipe.h, subpipe.c.
8199 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
8200 * po/POTFILES.in: Add lib/subpipe.c.
8201 * src/output.c: Include "subpipe.h".
8202 (m4_invoke): Remove decl.
8203 (scan_skel): New decl.
8204 (output_skeleton): Use pipe rather than temporary file for m4 input.
8205 Check that m4sugar.m4 is readable, to avoid deadlock.
8206 Check for pipe I/O error.
8207 * src/scan-skel.l (readpipe): Remove decl.
8208 (scan_skel): New function, to be used in place of m4_invoke.
8209 Read from stream rather than file.
8210
8211 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
8212 float, as this generates a warning on Solaris 8 + GCC 3.2 with
8213 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
8214 this generates a more-accurate value anyway.
8215
8216 * lib/timevar.c (timervar_accumulate): Rename locals to
8217 avoid confusion with similarly-named more-global.
8218 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
8219
8220 * src/output.c (prepare): Use xstrdup to convert char const *
8221 to char *, to avoid GCC warning.
8222
82232002-10-19 Akim Demaille <akim@epita.fr>
8224
8225 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
8226 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
8227 Use them to have `calc.y' ready for %pure-parser.
8228 * data/yacc.c (YYLEX): Pass a yylex return type to
8229 b4_c_function_call.
8230
82312002-10-19 Akim Demaille <akim@epita.fr>
8232
8233 Prototype support of %lex-param and %parse-param.
8234
8235 * src/parse-gram.y: Add the definition of the %lex-param and
8236 %parse-param tokens, plus their rules.
8237 Drop the `_' version of %glr-parser.
8238 Add the "," token.
8239 * src/scan-gram.l (INITIAL): Scan them.
8240 * src/muscle_tab.c: Comment changes.
8241 (muscle_insert, muscle_find): Rename `pair' as `probe'.
8242 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
8243 (muscle_entry_s): The `value' member is no longer const.
8244 Adjust all dependencies.
8245 * src/muscle_tab.c (muscle_init): Adjust: use
8246 MUSCLE_INSERT_STRING.
8247 Initialize the obstack earlier.
8248 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
8249 (muscle_pair_list_grow): New.
8250 * data/c.m4 (b4_c_function_call, b4_c_args): New.
8251 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
8252 * tests/calc.at: Use %locations, not --locations.
8253 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
8254
82552002-10-19 Akim Demaille <akim@epita.fr>
8256
8257 * src/getargs.c (usage): Take status as argument and exit
8258 accordingly.
8259 Report the traditional `Try ... --help' message when status != 0.
8260 (usage, version): Don't take a FILE * as arg, it is pointless.
8261 (getargs): When there is an incorrect number of arguments, make it
8262 an error, and report it GNUlically thanks to `usage ()'.
8263
82642002-10-18 Paul Eggert <eggert@twinsun.com>
8265
8266 * data/glr.c (yyreportParseError): Don't assume that sprintf
8267 yields the length of the printed string, as this is not true
8268 on SunOS 4.1.4. Reported by Peter Klein.
8269
8270 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
8271 * tests/conflicts.at (%nonassoc and eof): Likewise.
8272 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
8273
82742002-10-17 Akim Demaille <akim@epita.fr>
8275
8276 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
8277 * src/getargs.c (trace_types, trace_args): Adjust.
8278 * src/reader.c (grammar_current_rule_prec_set)
8279 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
8280 Standardize error messages.
8281 And s/@prec/%prec/!
8282 (reader): Use trace_flag to enable scanner/parser debugging,
8283 instead of an adhoc scheme.
8284 * src/scan-gram.l: Remove trailing debugging code.
8285
82862002-10-16 Paul Eggert <eggert@twinsun.com>
8287
8288 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
8289 MUSCLE_TAB_H.
8290
8291 * NEWS: Officially drop support for building Bison with K&R C,
8292 since it didn't work anyway and it's not worth worrying about.
8293 * Makefile.maint (wget_files): Remove ansi2knr.c.
8294 (ansi2knr.c-url_prefix): Remove.
8295 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
8296 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8297 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8298
82992002-10-15 Paul Eggert <eggert@twinsun.com>
8300
8301 Stop using the "enum_" trick for K&R-style function definitions;
8302 it confused me, and I was the author! Instead, assume that people
8303 who want to use K&R C compilers (when using these modules in GCC,
8304 perhaps?) will run ansi2knr.
8305
8306 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
8307 All uses of "enum_" changed to "enum ".
8308 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8309 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
8310
8311 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
8312 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
8313 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
8314 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
8315 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
8316 abitset_not, abitset_ones, abitset_or, abitset_or_and,
8317 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
8318 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
8319 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
8320 Use function prototypes; this removes the need for declaring
8321 static functions simply to provide their prototypes.
8322 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
8323 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
8324 bitset_count_, bitset_create, bitset_dump, bitset_first,
8325 bitset_free, bitset_init, bitset_last, bitset_next,
8326 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
8327 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
8328 bitset_print, bitset_release_memory, bitset_toggle_,
8329 bitset_type_choose, bitset_type_get, bitset_type_name_get,
8330 debug_bitset): Likewise.
8331 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
8332 * lib/bitset_stats.c (bitset_log_histogram_print,
8333 bitset_percent_histogram_print, bitset_stats_and,
8334 bitset_stats_and_cmp, bitset_stats_and_or,
8335 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
8336 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
8337 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
8338 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
8339 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
8340 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
8341 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
8342 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
8343 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
8344 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
8345 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
8346 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
8347 bitset_stats_zero): Likewise.
8348 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
8349 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
8350 bitsetv_dump, debug_bitsetv): Likewise.
8351 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
8352 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
8353 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
8354 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
8355 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
8356 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
8357 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
8358 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
8359 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
8360 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
8361 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
8362 Likewise.
8363 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
8364 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
8365 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
8366 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
8367 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
8368 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
8369 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
8370 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
8371 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
8372 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
8373 lbitset_xor_cmp, lbitset_zero): Likewise.
8374
83752002-10-14 Akim Demaille <akim@epita.fr>
8376
8377 Version 1.75.
8378
83792002-10-14 Akim Demaille <akim@epita.fr>
8380
8381 * tests/Makefile.am (maintainer-check-posix): New.
8382
83832002-10-14 Akim Demaille <akim@epita.fr>
8384
8385 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
8386 member.
8387
83882002-10-14 Akim Demaille <akim@epita.fr>
8389
8390 * src/tables.c (table_ninf_remap): base -> tab.
8391 Reported by Matt Rosing.
8392
83932002-10-14 Paul Eggert <eggert@twinsun.com>
8394
8395 * tests/action.at, tests/calc.at, tests/conflicts.at,
8396 tests/cxx-type.at, tests/headers.at, tests/input.at,
8397 tests/regression.at, tests/synclines.at, tests/torture.at:
8398 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
8399 so that the tests still work even if POSIXLY_CORRECT is set.
8400 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
8401
8402 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
8403 for portability to K&R hosts. Fix typo: signed char is guaranteed
8404 only to 127, not to 128.
8405 * data/glr.c (yysigned_char): New type.
8406 * data/yacc.c (yysigned_char): Likewise.
8407 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
8408
84092002-10-13 Paul Eggert <eggert@twinsun.com>
8410
8411 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
8412 true due to limited range of data type" warning from GCC.
8413
8414 * data/c.m4 (b4_token_defines): Protect against double-inclusion
8415 by wrapping enum yytokentype's definition inside #ifndef
8416 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
8417
84182002-10-13 Akim Demaille <akim@epita.fr>
8419
8420 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
8421 Un yy- yyrhs to avoid the name clash with the global YYRHS.
8422
84232002-10-13 Akim Demaille <akim@epita.fr>
8424
8425 * Makefile.maint: Update from Autoconf 2.54.
8426 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
8427
84282002-10-13 Akim Demaille <akim@epita.fr>
8429
8430 * src/print.c (print_state): Separate the list of solved conflicts
8431 from the other items.
8432 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
8433
84342002-10-13 Akim Demaille <akim@epita.fr>
8435
8436 Let nondeterministic skeletons be usable with deterministic
8437 tables.
8438
8439 With the patch, GAWK compiled by GCC without -O2 passes its test
8440 suite using a GLR parser driven by LALR tables. It fails with -O2
8441 because `struct stat' gives two different answers on my machine:
8442 88 (definition of an auto var) and later 96 (memset on this var).
8443 Hence the stack is badly corrumpted. The headers inclusion is to
8444 blame: if I move the awk.h inclusion before GLR's system header
8445 inclusion, the two struct stat have the same size.
8446
8447 * src/tables.c (pack_table): Always create conflict_table.
8448 (token_actions): Always create conflict_list.
8449 * data/glr.c (YYFLAG): Remove, unused.
8450
84512002-10-13 Akim Demaille <akim@epita.fr>
8452
8453 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
8454 (O0FLAGS): New.
8455 (VALGRIND, GXX): New.
8456 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
8457 * tests/bison.in: Run $PREBISON a pre-command.
8458 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
8459 (maintainer-check-g++): New.
8460 * Makefile.am (maintainer-check): New.
8461
84622002-10-13 Akim Demaille <akim@epita.fr>
8463
8464 * data/glr.c: Formatting changes.
8465 Tweak some trace messages to match yacc.c's.
8466
84672002-10-13 Akim Demaille <akim@epita.fr>
8468
8469 GLR parsers sometimes raise parse errors instead of performing the
8470 default reduction.
8471 Reported by Charles-Henry de Boysson.
8472
8473 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
8474 check the length of the traces when %glr.
8475 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
8476 GLR's traces.
8477 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
8478 Test GLR parsers.
8479 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
8480 (yyltype): Remove the yy prefix from the member names.
8481 (yytable): Complete its comment.
8482 (yygetLRActions): Map error action number from YYTABLE from
8483 YYTABLE_NINF to 0.
8484 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
8485 (which was a bug: it should have been YYTABEL_NINF, and yet it was
8486 not satisfying as we could compare an YYACTION computed from
8487 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
8488 only value for error actions.
8489 (yyreportParseError): In verbose parse error messages, don't issue
8490 `error' in the list of expected tokens.
8491 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
8492 next action to perform to match glr.c's decoding.
8493 (yytable): Complete its comment.
8494
84952002-10-13 Paul Eggert <eggert@twinsun.com>
8496
8497 Fix problem reported by Henrik Grubbstroem in
8498 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
8499 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
8500 because the Bison parser reads the second action before reducing
8501 the first one.
8502 * src/scan-gram.l (rule_length): New static var.
8503 Use it to keep track of the rule length in the scanner, since
8504 we can't expect the parser to be in lock-step sync with the scanner.
8505 (handle_action_dollar, handle_action_at): Use this var.
8506 * tests/actions.at (Exotic Dollars): Test for the problem.
8507
85082002-10-12 Paul Eggert <eggert@twinsun.com>
8509
8510 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
8511 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
8512 Include <sys/time.h> when checking for clock_t and struct tms.
8513 Use same include order as source.
8514 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
8515 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
8516
8517 * lib/timevar.c: Update copyright date and clarify comments.
8518 (get_time) [IN_GCC]: Keep the GCC version for reference.
8519
8520 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
8521 GCC version as of today, then merge Bison's changes.
8522 Change "GCC" to "Bison" in copyright notice. timevar.def's
8523 author is Akim, so change that too.
8524
8525 * src/reader.c (grammar_current_rule_check):
8526 Don't worry about the default action if $$ is untyped.
8527 Prevents bogus warnings reported by Jim Gifford in
8528 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
8529
8530 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
8531 * data/glr.c, data/lalr1.cc, data/yacc.c:
8532 Output token definitions before the first part of user declarations.
8533 Fixes compatibility problem reported by Jim Gifford for kbd in
8534 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
8535
85362002-10-11 Paul Eggert <eggert@twinsun.com>
8537
8538 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
8539 (yyparse): here. This undoes some of the 2002-07-25 change.
8540 Compatibility problem reported by Ralf S. Engelschall with
8541 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
8542
85432002-10-11 Akim Demaille <akim@epita.fr>
8544
8545 * tests/regression.at Characters Escapes): New.
8546 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
8547 characters.
8548 Reported by Jan Nieuwenhuizen.
8549
85502002-10-11 Akim Demaille <akim@epita.fr>
8551
8552 * po/id.po: New.
8553
85542002-10-10 Paul Eggert <eggert@twinsun.com>
8555
8556 Portability fixes for bitsets; this also avoids several GCC
8557 warnings.
8558
8559 * lib/abitset.c: Include <stddef.h>, for offsetof.
8560 * lib/lbitset.c: Likewise.
8561
8562 * lib/abitset.c (abitset_bytes): Return a size that is aligned
8563 properly for vectors of objects. Do not assume that adding a
8564 header size to a multiple of a word size yields a value that is
8565 properly aligned for the whole union.
8566 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8567
8568 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
8569 unique names for structures.
8570 * lib/ebitset.c (ebitset_bytes): Likewise.
8571 * lib/lbitset.c (lbitset_bytes): Likewise.
8572
8573 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
8574 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
8575 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
8576 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
8577 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
8578 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
8579 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
8580 to improve the type-checking that GCC can do.
8581 * lib/bitset.c (bitset_op4_cmp): Likewise.
8582 * lib/bitset_stats.c (bitset_stats_count,
8583 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
8584 bitset_stats_copy, bitset_stats_disjoint_p,
8585 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
8586 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
8587 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
8588 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
8589 bitset_stats_and_or_cmp, bitset_stats_andn_or,
8590 bitset_stats_andn_or_cmp, bitset_stats_or_and,
8591 bitset_stats_or_and_cmp): Likewise.
8592 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
8593 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
8594 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
8595 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
8596
8597 * lib/abitset.h: Include bitset.h, not bbitset.h.
8598 * lib/ebitset.h: Likewise.
8599 * lib/lbitset.h: Likewise.
8600
8601 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
8602 All instances of parameters of type enum bitset_opts are now of
8603 type enum_bitset_opts, to conform to the C Standard, and similarly
8604 for enum_bitset_type.
8605 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8606 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
8607
8608 Do not use "struct bitset_struct" to mean different things in
8609 different modules. Not only is this confusing, it violates
8610 the C Standard, which requires that structure types in different
8611 modules must be compatible if one is to be passed to the other.
8612 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
8613 All instances of "struct bitset_struct *" replaced with "bitset".
8614 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
8615 (union bitset_union, struct abitset_struct, struct ebitset_struct,
8616 struct lbitset_struct, struct bitset_stats_struct): New types.
8617 All uses of struct bitset_struct changed to union bitset_union,
8618 etc.
8619 * lib/abitset.c (struct abitset_struct, abitset,
8620 struct bitset_struct): Remove.
8621 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
8622 struct bitset_struct): Remove.
8623 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
8624 bitset_struct): Remove.
8625 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
8626 Likewise.
8627
8628 Do not call a function of type T using a call that assumes the
8629 function is of a different type U. Standard C requires that a
8630 function must be called with a type that is compatible with its
8631 definition.
8632 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8633 New decls.
8634 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8635 New functions.
8636 * lib/ebitset.c (PFV): Remove.
8637 * lib/lbitset.c (PFV): Likewise.
8638 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
8639 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
8640 decls.
8641 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
8642 (ebitset_vtable): Use them.
8643 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
8644 lbitset_xor): New functions.
8645 (lbitset_vtable): Use them.
8646
8647 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
8648 Declare.
8649
8650 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
8651 GCC warning.
8652 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
8653 Use offsetof, for simplicity.
8654
86552002-10-06 Paul Eggert <eggert@twinsun.com>
8656
8657 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
8658 the same width as int. This reapplies a hunk of the 2002-08-12 patch
8659 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
8660 which was inadvertently undone by the 2002-09-30 patch.
8661 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
8662 the same width as int.
8663
86642002-10-04 Paul Eggert <eggert@twinsun.com>
8665
8666 Version 1.50.
8667
8668 * configure.ac (AC_INIT), NEWS: Increment version number.
8669
8670 * doc/bison.texinfo: Minor spelling, grammar, and white space
8671 fixes.
8672 (Symbols): Mention that any negative value returned from yylex
8673 signifies end-of-input. Warn about negative chars. Mention
8674 the portable Standard C character set.
8675
8676 The GNU coding standard says CFLAGS and YFLAGS are reserved
8677 for the installer to set.
8678 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
8679 * src/Makefile.am (AM_CFLAGS): Likewise.
8680 (AM_YFLAGS): Renamed from YFLAGS.
8681
8682 Fix some MAX and MIN problems.
8683 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
8684 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
8685 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
8686 * src/reader.c (reader): Use it.
8687
8688 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
8689 POSIX 1003.1-2001 has removed fgrep.
8690
86912002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
8692
8693 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
8694 interpreted as signed.
8695 * lib/ebitset.c (ebitset_list): Fix bug.
8696
86972002-10-01 Paul Eggert <eggert@twinsun.com>
8698
8699 More fixes for 64-bit hosts and large bitsets.
8700
8701 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
8702 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
8703 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
8704 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
8705 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
8706 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
8707 bitset_count_): Likewise.
8708 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
8709 bitset_first, bitset_last): Likewise.
8710 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
8711 bitset_stats_list_reverse, bitset_stats_size,
8712 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
8713 Likewise.
8714 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
8715 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
8716 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
8717 bitsetv_reflexive_transitive_closure): Likewise.
8718 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
8719 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
8720 Likewise.
8721 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
8722 Likewise.
8723
8724 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
8725 Use size_t, not unsigned int, to count bytes.
8726 * lib/abitset.h (abitset_bytes): Likewise.
8727 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
8728 Likewise.
8729 * lib/bitset.h (bitset_bytes): Likewise.
8730 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
8731 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
8732 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8733 * lib/ebitset.c (ebitset_bytes): Likewise.
8734 * lib/ebitset.h (ebitset_bytes): Likewise.
8735 * lib/lbitset.c (lbitset_bytes): Likewise.
8736 * lib/lbitset.h (lbitset_bytes): Likewise.
8737
8738 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
8739 abitset_subset_p, abitset_disjoint_p, abitset_and,
8740 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
8741 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
8742 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
8743 abitset_or_and, abitset_or_and_cmp):
8744 Use bitset_windex instead of unsigned int.
8745 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
8746 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
8747 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
8748 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
8749 Likewise.
8750 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
8751
8752 * lib/bitset.c (bitset_print):
8753 Use proper printf formats for widths of integer types.
8754 * lib/bitset_stats.c (bitset_percent_histogram_print,
8755 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
8756 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
8757 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
8758 * lib/lbitset.c (lbitset_bytes): Likewise.
8759
8760 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
8761 BITSET_SIZE_MAX): New macros.
8762 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
8763 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
8764 to BITSET_WINDEX_MAX.
8765
8766 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
8767 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
8768 since we now return the bitset_bindex type (not int).
8769
8770 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
8771 when computing sizes.
8772 * lib/ebitset.c (ebitset_elts_grow): Likewise.
8773
8774 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
8775 and avoid cast to unsigned.
8776
87772002-09-30 Akim Demaille <akim@epita.fr>
8778
8779 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
8780 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
8781 Updates from Michael Hayes.
8782
87832002-09-30 Art Haas <ahaas@neosoft.com>
8784
8785 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
8786 invocations.
8787 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
8788 defined.
8789
87902002-09-27 Akim Demaille <akim@epita.fr>
8791
8792 Version 1.49c.
8793
87942002-09-27 Akim Demaille <akim@epita.fr>
8795
8796 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
8797 (Because of AC_LIBSOURCE).
8798
87992002-09-27 Akim Demaille <akim@epita.fr>
8800
8801 Playing with Autoscan.
8802
8803 * configure.ac: Remove the old LIBOBJ tweaks.
8804 (AC_REPLACE_FUNCS): Add strrchr and strtol.
8805 * lib/strrchr.c: New.
8806 * lib/strtol.c: New, from the Coreutils 4.5.1.
8807
88082002-09-27 Akim Demaille <akim@epita.fr>
8809
8810 Playing with Autoscan.
8811
8812 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
8813 * lib/Makefile.am (libbison_a_SOURCES): No longer include
8814 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
8815 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
8816 Coreutils 4.5.1.
8817
88182002-09-24 Akim Demaille <akim@epita.fr>
8819
8820 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
8821 (Frequently Asked Questions, Parser Stack Overflow): New.
8822
88232002-09-13 Akim Demaille <akim@epita.fr>
8824
8825 Playing with autoscan.
8826
8827 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
8828 * src/files.c (skeleton_find): Remove, unused.
8829 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
8830 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
8831
88322002-09-13 Akim Demaille <akim@epita.fr>
8833
8834 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
8835 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
8836
88372002-09-13 Akim Demaille <akim@epita.fr>
8838
8839 * configure.ac: Require 2.54.
8840 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
8841 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
8842 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
8843 Remove, provided by Autoconf macros.
8844
88452002-09-12 Akim Demaille <akim@epita.fr>
8846
8847 * m4/prereq.m4: Update, from Coreutils 4.5.1.
8848
88492002-09-12 Akim Demaille <akim@epita.fr>
8850
8851 * m4/prereq.m4: Update, from Fileutils 4.1.5.
8852 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
8853 Reported by Martin Mokrejs.
8854
88552002-09-10 Akim Demaille <akim@epita.fr>
8856
8857 * src/parse-gram.y: Associate a human readable string to each
8858 token type.
8859 * tests/regression.at (Invalid inputs): Adjust.
8860
88612002-09-10 Gary V. Vaughan <gary@gnu.org>
8862
8863 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
8864 with an Autoconf-2.5x style configure.ac.
8865
88662002-09-06 Paul Eggert <eggert@twinsun.com>
8867
8868 * doc/bison.texinfo (Conditions): Make explicit that the GPL
8869 exception applies only to yacc.c. This is a modification of a
8870 patch originally suggested by Akim Demaille.
8871
88722002-09-06 Akim Demaille <akim@epita.fr>
8873
8874 * data/c.m4 (b4_copyright): Move the GPL exception comment from
8875 here to...
8876 * data/yacc.c: here.
8877
8878 * data/lalr1.cc (struct yyltype): Don't define it, since we use
8879 LocationType.
8880 (b4_ltype): Default to yy::Location from location.hh.
8881
88822002-09-04 Jim Meyering <jim@meyering.net>
8883
8884 * data/yacc.c: Guard the declaration of yytoknum also with
8885 `#ifdef YYPRINT', so it is declared only when used.
8886
88872002-09-04 Akim Demaille <akim@epita.fr>
8888
8889 * configure.in: Rename as...
8890 * configure.ac: this.
8891 Bump to 1.49c.
8892
88932002-09-04 Akim Demaille <akim@epita.fr>
8894
8895 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
8896 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
8897 translate maintainer only messages.
8898
88992002-08-12 Paul Eggert <eggert@twinsun.com>
8900
8901 Version 1.49b.
8902
8903 * Makefile.am (SUBDIRS): Remove intl.
8904 (DISTCLEANFILES): Remove.
8905 * NEWS: Mention that GNU M4 is now required. Clarify what is
8906 meant by "larger grammars". Mention the pt_BR translation.
8907 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
8908 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
8909 Bump version from 0.11.2 to 0.11.5.
8910 (BISON_PREREQ_STAGE): Remove.
8911 (AM_GNU_GETTEXT): Use external gettext.
8912 (AC_OUTPUT): Remove intl/Makefile.
8913
8914 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
8915
8916 * data/glr.c: Include string.h, for strlen.
8917 (yyreportParseError): Use size_t for yysize.
8918 (yy_yypstack): No longer nested inside yypstates, as nested
8919 functions are not portable. Do not assume size_t is the
8920 same width as int.
8921 (yypstates): Do not assume that ptrdiff_t is the same width
8922 as int, and similarly for yyposn and YYINDEX.
8923
8924 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
8925
8926 * lib/Makefile.am (INCLUDES): Do not include from the intl
8927 directory, which has been removed.
8928 * src/Makefile.am (INCLUDES): Likewise.
8929
8930 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
8931 (bitsets_sources, additional_bitsets_sources, timevars_sources):
8932 New vars.
8933
8934 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
8935 * tests/Makefile.am (EXTRA_DIST): Likewise.
8936
8937 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
8938 Do not assume that bitset_windex is the same width as unsigned.
8939
8940 * lib/abitset.c (abitset_unused_clear): Do not assume that
8941 bitset_word is the same width as int.
8942 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
8943 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
8944 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
8945 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
8946 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
8947
8948 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
8949 portability to one's complement hosts!).
8950 * lib/ebitset.c (ebitset_op1): Likewise.
8951 * lib/lbitset.c (lbitset_op1): Likewise.
8952
8953 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
8954 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
8955 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
8956 Sync with fileutils.
8957 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
8958 lib/gettext.h: Sync with diffutils.
8959
8960 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
8961 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
8962
8963 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
8964 PROTOTYPES to check for prototypes, and "defined __STDC__" to
8965 check for void *.
8966
8967 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
8968 size_t; the old version tried to do this but casted improperly.
8969 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
8970 (bitset_test): Now returns int, not unsigned long.
8971
8972 * lib/bitset_stats.c: Include "gettext.h".
8973 (_): New macro.
8974 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
8975 name locals "index", as it generates unnecessary warnings on some
8976 hosts that have an "index" function.
8977
8978 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
8979 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
8980 they need translation.
8981 * src/LR0.c (state_list_append, new_itemsets, get_state,
8982 append_states, generate_states): Likewise.
8983 * src/assoc.c (assoc_to_string): Likewise.
8984 * src/closure.c (print_closure, set_firsts, closure): Likewise.
8985 * src/gram.c (grammar_dump): Likewise.
8986 * src/injections.c (injections_compute): Likewise.
8987 * src/lalr.c (lookaheads_print): Likewise.
8988 * src/relation.c (relation_transpose): Likewise.
8989 * src/scan-gram.l: Likewise.
8990 * src/tables.c (table_grow, pack_vector): Likewise.
8991
8992 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
8993 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
8994 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
8995 * m4/mbstate_t.m4: Sync with fileutils.
8996 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
8997
8998 * po/LINGUAS: Add pt_BR.
8999 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
9000 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
9001 lib/timevar.c.
9002 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
9003 manual recommends.
9004 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
9005
9006 * src/complain.c (strerror_r): Remove decl; not needed.
9007 (strerror): Use same pattern as ../lib/error.c.
9008
9009 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
9010
9011 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
9012
9013 * src/main.c (main): Cast result of bindtextdomain and textdomain
9014 to void, to avoid a GCC warning when --disable-nls is in effect.
9015
9016 * src/scan-gram.l: Use strings rather than escapes when possible,
9017 to minimize the number of warnings from xgettext.
9018 (handle_action_dollar, handle_action_at): Don't use isdigit,
9019 as it mishandles negative chars and it may not work as expected
9020 outside the C locale.
9021
9022 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
9023 this is a GCC extension and is not portable to other compilers.
9024
9025 * src/system.h (alloca): Use same pattern as ../lib/error.c.
9026 Do not include <ctype.h>; no longer needed.
9027 Do not include <malloc.h>; no longer needed (and generates
9028 warnings on OpenBSD 3.0).
9029
9030 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
9031 it's not portable.
9032
9033 * tests/regression.at: Do not use 'cc -c input.c -o input';
9034 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
9035
9036 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
9037 exit status as failure, not just exit status 1. Sun C exits
9038 with status 2 sometimes.
9039
9040 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
9041 Use it for the two large tests.
9042
90432002-08-02 Akim Demaille <akim@epita.fr>
9044
9045 * src/conflicts.c (conflicts_output): Don't output rules never
9046 reduced here, since anyway that computation doesn't work.
9047 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
9048 (rule_useless_p, rule_never_reduced_p): New.
9049 (grammar_rules_partial_print): Use a filter instead of a range.
9050 Display the title only if needed.
9051 (grammar_rules_print): Adjust.
9052 (grammar_rules_never_reduced_report): New.
9053 * src/tables.c (action_row): Move the computation of rules never
9054 reduced to...
9055 (token_actions): here.
9056 * src/main.c (main): Make the parser before making the report, so
9057 that rules never reduced are computed.
9058 Call grammar_rules_never_reduced_report.
9059 * src/print.c (print_results): Report rules never reduced.
9060 * tests/conflicts.at, tests/reduce.at: Adjust.
9061
90622002-08-01 Akim Demaille <akim@epita.fr>
9063
9064 Instead of attaching lookaheads and duplicating the rules being
9065 reduced by a state, attach the lookaheads to the reductions.
9066
9067 * src/state.h (state_t): Remove the `lookaheads',
9068 `lookaheads_rule' member.
9069 (reductions_t): Add a `lookaheads' member.
9070 Use a regular array for the `rules'.
9071 * src/state.c (reductions_new): Initialize the lookaheads member
9072 to 0.
9073 (state_rule_lookaheads_print): Adjust.
9074 * src/state.h, src/state.c (state_reductions_find): New.
9075 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
9076 (count_rr_conflicts): Adjust.
9077 * src/lalr.c (LArule): Remove.
9078 (add_lookback_edge): Adjust.
9079 (state_lookaheads_count): New.
9080 (states_lookaheads_initialize): Merge into...
9081 (initialize_LA): this.
9082 (lalr_free): Adjust.
9083 * src/main.c (main): Don't free nullable and derives too early: it
9084 is used by --verbose.
9085 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
9086
90872002-08-01 Akim Demaille <akim@epita.fr>
9088
9089 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
9090 `rule_number_t**'.
9091 (set_derives, free_derives): Rename as...
9092 (derives_compute, derives_free): this.
9093 Adjust all dependencies.
9094 * src/nullable.c (set_nullable, free_nullable): Rename as...
9095 (nullable_compute, nullable_free): these.
9096 (rule_list_t): Store rule_t *, not rule_number_t.
9097 * src/state.c (state_rule_lookaheads_print): Directly compare rule
9098 pointers, instead of their numbers.
9099 * src/main.c (main): Call nullable_free, and derives_free earlier,
9100 as they were lo longer used.
9101
91022002-08-01 Akim Demaille <akim@epita.fr>
9103
9104 * lib/timevar.c (get_time): Include children time.
9105 * src/lalr.h (LA, LArule): Don't export them: used with the
9106 state_t.
9107 * src/lalr.c (LA, LArule): Static.
9108 * src/lalr.h, src/lalr.c (lalr_free): New.
9109 * src/main.c (main): Call it.
9110 * src/tables.c (pack_vector): Check whether loc is >= to the
9111 table_size, not >.
9112 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
9113 (tables_generate): do it, since that's also it which allocates
9114 them.
9115 Don't free LA and LArule, main does.
9116
91172002-07-31 Akim Demaille <akim@epita.fr>
9118
9119 Separate parser tables computation and output.
9120
9121 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
9122 (conflict_list, conflict_list_cnt, table, check, table_ninf)
9123 (yydefgoto, yydefact, high): Move to...
9124 * src/tables.h, src/tables.c: here.
9125 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9126 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9127 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
9128 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
9129 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
9130 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
9131 (action_row, save_row, token_actions, save_column, default_goto)
9132 (goto_actions, sort_actions, matching_state, pack_vector)
9133 (table_ninf_remap, pack_table, prepare_actions): Move to...
9134 * src/tables.c: here.
9135 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
9136 * src/output.c (token_actions, output_base, output_conflicts)
9137 (output_check): Merge into...
9138 (prepare_actions): this.
9139 (actions_output): Rename as...
9140 (user_actions_output): this.
9141 * src/main.c (main): Call tables_generate and tables_free.
9142
91432002-07-31 Akim Demaille <akim@epita.fr>
9144
9145 Steal GCC's --time-report support.
9146
9147 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
9148 stolen/adjusted from GCC.
9149 * m4/stage.m4: Remove time related checks.
9150 * m4/timevar.m4: New.
9151 * configure.in: Adjust.
9152 * src/system.h: Adjust to using timevar.h.
9153 * src/getargs.h, src/getargs.c: Support trace_time for
9154 --trace=time.
9155 * src/main.c (stage): Remove.
9156 (main): Replace `stage' invocations with timevar calls.
9157 * src/output.c: Insert pertinent timevar calls.
9158
91592002-07-31 Akim Demaille <akim@epita.fr>
9160
9161 Let --trace have arguments.
9162
9163 * src/getargs.h (enum trace_e): New.
9164 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
9165 (long_options, short_options): --trace/-T takes an optional
9166 argument.
9167 Change all the uses of trace_flag to reflect the new flags.
9168 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
9169
9170 Strengthen `stage' portability.
9171
9172 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
9173 * configure.in: Use it.
9174 Don't check for malloc.h and sys/times.h.
9175 * src/system.h: Include them when appropriate.
9176 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
9177 times and struct tms are available.
9178
91792002-07-30 Akim Demaille <akim@epita.fr>
9180
9181 In verbose parse error message, don't report `error' as an
9182 expected token.
9183 * tests/actions.at (Printers and Destructors): Adjust.
9184 * tests/calc.at (Calculator $1): Adjust.
9185 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
9186 error message, do not report the parser accepts the error token in
9187 that state.
9188
91892002-07-30 Akim Demaille <akim@epita.fr>
9190
9191 Normalize conflict related messages.
9192
9193 * src/complain.h, src/complain.c (warn, complain): New.
9194 * src/conflicts.c (conflicts_print): Use them.
9195 (conflict_report_yacc): New, extracted from...
9196 (conflicts_print): here.
9197 * tests/conflicts.at, tests/existing.at: Adjust.
9198
91992002-07-30 Akim Demaille <akim@epita.fr>
9200
9201 Report rules which are never reduced by the parser: those hidden
9202 by conflicts.
9203
9204 * src/LR0.c (save_reductions): Don't make the final state too
9205 different: save its reduction (accept) instead of having a state
9206 without any action (no shift or goto, no reduce).
9207 Note: the final state is now a ``regular'' state, i.e., the
9208 parsers now contain `reduce 0' as default reduction.
9209 Nevertheless, since they decide to `accept' when yystate =
9210 final_state, they still will not reduce rule 0.
9211 * src/print.c (print_actions, print_reduction): Adjust.
9212 * src/output.c (action_row): Track reduced rules.
9213 (token_actions): Report rules never reduced.
9214 * tests/conflicts.at, tests/regression.at: Adjust.
9215
92162002-07-30 Akim Demaille <akim@epita.fr>
9217
9218 `stage' was accidently included in a previous patch.
9219 Initiate its autoconfiscation.
9220
9221 * configure.in: Look for malloc.h and sys/times.h.
9222 * src/main.c (stage): Adjust.
9223 Report only when trace_flag.
9224
92252002-07-29 Akim Demaille <akim@epita.fr>
9226
9227 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
9228 state_number_t.
9229 (errs_t): symbol_t*, not symbol_number_t.
9230 (reductions_t): rule_t*, not rule_number_t.
9231 (FOR_EACH_SHIFT): New.
9232 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
9233 * src/print.c, src/print_graph.c: Adjust.
9234
92352002-07-29 Akim Demaille <akim@epita.fr>
9236
9237 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
9238
9239 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
9240 (endtoken, accept): these.
9241 * src/reader.c (reader): Set endtoken's default tag to "$end".
9242 Set undeftoken's tag to "$undefined" instead of "$undefined.".
9243 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
9244 Adjust.
9245
92462002-07-29 Akim Demaille <akim@epita.fr>
9247
9248 * src/reduce.c (reduce_grammar): When the language is empty,
9249 complain about the start symbol, not the axiom.
9250 Use its location.
9251 * tests/reduce.at (Empty Language): New.
9252
92532002-07-26 Akim Demaille <akim@epita.fr>
9254
9255 * src/reader.h, src/reader.c (gram_error): ... can't get
9256 yycontrol without making too strong assumptions on the parser
9257 itself.
9258 * src/output.c (prepare_tokens): Use the real 0th value of
9259 token_translations instead of `0'.
9260 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
9261 visible here.
9262 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
9263 for the time being: %locations ought to provide it to yyerror.
9264
92652002-07-25 Akim Demaille <akim@epita.fr>
9266
9267 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
9268 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
9269 * tests/regression.at (Web2c Actions): Adjust.
9270
92712002-07-25 Akim Demaille <akim@epita.fr>
9272
9273 Stop storing rules from 1 to nrules + 1.
9274
9275 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
9276 * src/nullable.c, src/output.c, src/print.c, src/reader.c
9277 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
9278 Iterate from 0 to nrules.
9279 Use rule_number_as_item_number and item_number_as_rule_number.
9280 Adjust to `derive' now containing possibly 0.
9281 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
9282 Handle the `- 1' part in rule numbers from/to item numbers.
9283 * src/conflicts.c (log_resolution): Fix the message which reversed
9284 shift and reduce.
9285 * src/output.c (action_row): Initialize default_rule to -1.
9286 (token_actions): Adjust.
9287 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
9288 expected output.
9289 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
9290
92912002-07-25 Akim Demaille <akim@epita.fr>
9292
9293 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
9294 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
9295 (b4_c_knr_arg_decl): New.
9296 * data/yacc.c: Use it to define yysymprint, yydestruct, and
9297 yyreport_parse_error.
9298
92992002-07-25 Akim Demaille <akim@epita.fr>
9300
9301 * data/yacc.c (yyreport_parse_error): New, extracted from...
9302 (yyparse): here.
9303 (yydestruct, yysymprint): Move above yyparse.
9304 Be K&R compliant.
9305
93062002-07-25 Akim Demaille <akim@epita.fr>
9307
9308 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
9309 replace...
9310 (b4_sint_type, b4_uint_type): these.
9311 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
9312 * tests/regression.at (Web2c Actions): Adjust.
9313
93142002-07-25 Akim Demaille <akim@epita.fr>
9315
9316 * src/gram.h (TIEM_NUMBER_MAX): New.
9317 (item_number_of_rule_number, rule_number_of_item_number): Rename
9318 as...
9319 (rule_number_as_item_number, item_number_as_rule_number): these.
9320 Adjust dependencies.
9321 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9322 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9323 (symbol_number_to_vector_number): New.
9324 (order): Of vector_number_t* type.
9325 (base_t, BASE_MAX, BASE_MIN): New.
9326 (froms, tos, width, pos, check): Of base_t type.
9327 (action_number_t, ACTION_MIN, ACTION_MAX): New.
9328 (actrow): Of action_number_t type.
9329 (conflrow): Of unsigned int type.
9330 (table_ninf, base_ninf): New.
9331 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
9332 (muscle_insert_int_table, muscle_insert_base_table)
9333 (muscle_insert_rule_number_table): New.
9334 (prepare_tokens): Output `toknum' as int_table.
9335 (action_row): Returns a rule_number_t.
9336 Use ACTION_MIN, not SHRT_MIN.
9337 (token_actions): yydefact is rule_number_t*.
9338 (table_ninf_remap): New.
9339 (pack_table): Use it for `base' and `table'.
9340 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
9341 replaced with...
9342 (YYPACT_NINF, YYTABLE_NINF): these.
9343 (yypact, yytable): Compute their types instead of hard-coded
9344 `short'.
9345 * tests/regression.at (Web2c Actions): Adjust.
9346
93472002-07-19 Akim Demaille <akim@epita.fr>
9348
9349 * src/scan-gram.l (id): Can start with an underscore.
9350
93512002-07-16 Akim Demaille <akim@epita.fr>
9352
9353 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
9354 Adjust all former `associativity' dependencies.
9355 * src/symtab.c (symbol_new): Default associativity is `undef', not
9356 `right'.
9357 (symbol_check_alias_consistence): Adjust.
9358
93592002-07-09 Akim Demaille <akim@epita.fr>
9360
9361 * doc/bison.texinfo: Properly set the ``header'' part.
9362 Use @dircategory ``GNU programming tools'' as per Texinfo's
9363 documentation.
9364 Use @copying.
9365
93662002-07-09 Akim Demaille <akim@epita.fr>
9367
9368 * lib/quotearg.h: Protect against multiple inclusions.
9369 * src/location.h (location_t): Add a `file' member.
9370 (LOCATION_RESET, LOCATION_PRINT): Adjust.
9371 * src/complain.c (warn_at, complain_at, fatal_at): Drop
9372 `error_one_per_line' support.
9373
93742002-07-09 Akim Demaille <akim@epita.fr>
9375
9376 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
9377 * src/reader.c (lineno): Remove.
9378 Adjust all dependencies.
9379 (get_merge_function): Take a location and use complain_at.
9380 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
9381 * tests/regression.at (Invalid inputs, Mixing %token styles):
9382 Adjust.
9383
93842002-07-09 Akim Demaille <akim@epita.fr>
9385
9386 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
9387 recovery rule, and forbid extensions when --yacc.
9388 (gram_error): Use complain_at.
9389 * src/reader.c (reader): Exit if there were parse errors.
9390
93912002-07-09 Akim Demaille <akim@epita.fr>
9392
9393 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
9394 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
9395 Reported by R Blake <blakers@mac.com>.
9396
93972002-07-09 Akim Demaille <akim@epita.fr>
9398
9399 * data/yacc.c: Output the copyright notive in the header.
9400
94012002-07-03 Akim Demaille <akim@epita.fr>
9402
9403 * src/output.c (froms, tos): Are state_number_t.
9404 (save_column): sp, sp1, and sp2 are state_number_t.
9405 (prepare): Rename `final' as `final_state_number', `nnts' as
9406 `nterms_number', `nrules' as `rules_number', `nstates' as
9407 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
9408 unused.
9409 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
9410 * data/lalr1.cc (nsym_): Remove, unused.
9411
94122002-07-03 Akim Demaille <akim@epita.fr>
9413
9414 * src/lalr.h, src/lalr.c (goto_number_t): New.
9415 * src/lalr.c (goto_list_t): New.
9416 Propagate them.
9417 * src/nullable.c (rule_list_t): New.
9418 Propagate.
9419 * src/types.h: Remove.
9420
94212002-07-03 Akim Demaille <akim@epita.fr>
9422
9423 * src/closure.c (print_fderives): Use rule_rhs_print.
9424 * src/derives.c (print_derives): Use rule_rhs_print.
9425 (rule_list_t): New, replaces `shorts'.
9426 (set_derives): Add comments.
9427 * tests/sets.at (Nullable, Firsts): Adjust.
9428
94292002-07-03 Akim Demaille <akim@epita.fr>
9430
9431 * src/output.c (prepare_actions): Free `tally' and `width'.
9432 (prepare_actions): Allocate and free `order'.
9433 * src/symtab.c (symbols_free): Free `symbols'.
9434 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
9435 * src/output.c (m4_invoke): Move to...
9436 * src/scan-skel.l: here.
9437 (<<EOF>>): Close yyout, and free its name.
9438
94392002-07-03 Akim Demaille <akim@epita.fr>
9440
9441 Fix some memory leaks, and fix a bug: state 0 was examined twice.
9442
9443 * src/LR0.c (new_state): Merge into...
9444 (state_list_append): this.
9445 (new_states): Merge into...
9446 (generate_states): here.
9447 (set_states): Don't ensure a proper `errs' state member here, do it...
9448 * src/conflicts.c (conflicts_solve): here.
9449 * src/state.h, src/state.c: Comment changes.
9450 (state_t): Rename member `shifts' as `transitions'.
9451 Adjust all dependencies.
9452 (errs_new): For consistency, also take the values as argument.
9453 (errs_dup): Remove.
9454 (state_errs_set): New.
9455 (state_reductions_set, state_transitions_set): Assert that no
9456 previous value was assigned.
9457 (state_free): New.
9458 (states_free): Use it.
9459 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
9460 temporary storage: use `errs' and `nerrs' as elsewhere.
9461 (set_conflicts): Allocate and free this `errs'.
9462
94632002-07-02 Akim Demaille <akim@epita.fr>
9464
9465 * lib/libiberty.h: New.
9466 * lib: Update the bitset implementation from upstream.
9467 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
9468 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
9469 * src/main.c: Adjust bitset stats calls.
9470
94712002-07-01 Paul Eggert <eggert@twinsun.com>
9472
9473 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
9474 char, so that negative chars don't collide with $.
9475
94762002-06-30 Akim Demaille <akim@epita.fr>
9477
9478 Have the GLR tests be `warning' checked, and fix the warnings.
9479
9480 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
9481 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
9482 (yyremoveDeletes): `yyi' and `yyj' are size_t.
9483 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
9484 (yyaddDeferredAction): static.
9485 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
9486 (yyreportParseError): yyprefix is const.
9487 yytokenp is used only when verbose.
9488 (yy__GNUC__): Replace with __GNUC__.
9489 (yypdumpstack): yyi is size_t.
9490 (yypreference): Un-yy local variables and arguments, to avoid
9491 clashes with `yyr1'. Anyway, we are not in the user name space.
9492 (yytname_size): be an int, as is compared with ints.
9493 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
9494 Use them.
9495 * tests/cxx-gram.at: Use quotation to protect $1.
9496 Use AT_COMPILE to enable warnings hunts.
9497 Prototype yylex and yyerror.
9498 `Use' argc.
9499 Include `string.h', not `strings.h'.
9500 Produce and prototype stmtMerge only when used.
9501 yylex takes a location.
9502
95032002-06-30 Akim Demaille <akim@epita.fr>
9504
9505 We spend a lot of time in quotearg, in particular when --verbose.
9506
9507 * src/symtab.c (symbol_get): Store a quoted version of the key.
9508 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
9509 Adjust all callers.
9510
95112002-06-30 Akim Demaille <akim@epita.fr>
9512
9513 * src/state.h (reductions_t): Rename member `nreds' as num.
9514 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
9515 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
9516
95172002-06-30 Akim Demaille <akim@epita.fr>
9518
9519 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
9520 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
9521 (shifts_to): Rename as...
9522 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
9523 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
9524 (TRANSITION_IS_DISABLED, transitions_to): these.
9525
95262002-06-30 Akim Demaille <akim@epita.fr>
9527
9528 * src/print.c (print_shifts, print_gotos): Merge into...
9529 (print_transitions): this.
9530 (print_transitions, print_errs, print_reductions): Align the
9531 lookaheads columns.
9532 (print_core, print_transitions, print_errs, print_state,
9533 print_grammar): Output empty lines separator before, not after.
9534 (state_default_rule_compute): Rename as...
9535 (state_default_rule): this.
9536 * tests/conflicts.at (Defaulted Conflicted Reduction),
9537 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
9538 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
9539
95402002-06-30 Akim Demaille <akim@epita.fr>
9541
9542 Display items as we display rules.
9543
9544 * src/gram.h, src/gram.c (rule_lhs_print): New.
9545 * src/gram.c (grammar_rules_partial_print): Use it.
9546 * src/print.c (print_core): Likewise.
9547 * tests/conflicts.at (Defaulted Conflicted Reduction),
9548 (Unresolved SR Conflicts): Adjust.
9549 (Unresolved SR Conflicts): Adjust and rename as...
9550 (Resolved SR Conflicts): this, as was meant.
9551 * tests/regression.at (Web2c Report): Adjust.
9552
95532002-06-30 Akim Demaille <akim@epita.fr>
9554
9555 * src/print.c (state_default_rule_compute): New, extracted from...
9556 (print_reductions): here.
9557 Pessimize, but clarify the code.
9558 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
9559
95602002-06-30 Akim Demaille <akim@epita.fr>
9561
9562 * src/output.c (action_row): Let default_rule be always a rule
9563 number.
9564
95652002-06-30 Akim Demaille <akim@epita.fr>
9566
9567 * src/closure.c (print_firsts, print_fderives, closure):
9568 Use BITSET_EXECUTE.
9569 * src/lalr.c (lookaheads_print): Likewise.
9570 * src/state.c (state_rule_lookaheads_print): Likewise.
9571 * src/print_graph.c (print_core): Likewise.
9572 * src/print.c (print_reductions): Likewise.
9573 * src/output.c (action_row): Likewise.
9574 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
9575
95762002-06-30 Akim Demaille <akim@epita.fr>
9577
9578 * src/print_graph.c: Use report_flag.
9579
95802002-06-30 Akim Demaille <akim@epita.fr>
9581
9582 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
9583 to...
9584 * src/relation.h, src/relation.c (traverse, relation_digraph)
9585 (relation_print, relation_transpose): New.
9586
95872002-06-30 Akim Demaille <akim@epita.fr>
9588
9589 * src/state.h, src/state.c (shifts_to): New.
9590 * src/lalr.c (build_relations): Use it.
9591
95922002-06-30 Akim Demaille <akim@epita.fr>
9593
9594 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
9595 (item_number_of_rule_number, rule_number_of_item_number): New.
9596 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
9597 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
9598 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
9599 Propagate their use.
9600 Much remains to be done, in particular wrt `shorts' from types.h.
9601
96022002-06-30 Akim Demaille <akim@epita.fr>
9603
9604 * src/symtab.c (symbol_new): Initialize the `printer' member.
9605
96062002-06-30 Akim Demaille <akim@epita.fr>
9607
9608 * src/LR0.c (save_reductions): Remove, replaced by...
9609 * src/state.h, src/state.c (state_reductions_set): New.
9610 (reductions, errs): Rename as...
9611 (reductions_t, errs_t): these.
9612 Adjust all dependencies.
9613
96142002-06-30 Akim Demaille <akim@epita.fr>
9615
9616 * src/LR0.c (state_list_t, state_list_append): New.
9617 (first_state, last_state): Now symbol_list_t.
9618 (this_state): Remove.
9619 (new_itemsets, append_states, save_reductions): Take a state_t as
9620 argument.
9621 (set_states, generate_states): Adjust.
9622 (save_shifts): Remove, replaced by...
9623 * src/state.h, src/state.c (state_shifts_set): New.
9624 (shifts): Rename as...
9625 (shifts_t): this.
9626 Adjust all dependencies.
9627 * src/state.h (state_t): Remove the `next' member.
9628
96292002-06-30 Akim Demaille <akim@epita.fr>
9630
9631 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
9632 escaped in slot 0.
9633
96342002-06-30 Akim Demaille <akim@epita.fr>
9635
9636 Use hash.h for the state hash table.
9637
9638 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
9639 (allocate_storage): Use state_hash_new.
9640 (free_storage): Use state_hash_free.
9641 (new_state, get_state): Adjust.
9642 * src/lalr.h, src/lalr.c (states): Move to...
9643 * src/states.h (state_t): Remove the `link' member, no longer
9644 used.
9645 * src/states.h, src/states.c: here.
9646 (state_hash_new, state_hash_free, state_hash_lookup)
9647 (state_hash_insert, states_free): New.
9648 * src/states.c (state_table, state_compare, state_hash): New.
9649 * src/output.c (output_actions): Do not free states now, since we
9650 still need to know the final_state number in `prepare', called
9651 afterwards. Do it...
9652 * src/main.c (main): here: call states_free after `output'.
9653
96542002-06-30 Akim Demaille <akim@epita.fr>
9655
9656 * src/state.h, src/state.c (state_new): New, extracted from...
9657 * src/LR0.c (new_state): here.
9658 * src/state.h (STATE_ALLOC): Move to...
9659 * src/state.c: here.
9660 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
9661 * src/state.h, src/state.c: here.
9662
96632002-06-30 Akim Demaille <akim@epita.fr>
9664
9665 * src/reader.c (gensym): Rename as...
9666 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
9667 (getsym): Rename as...
9668 (symbol_get): this.
9669
96702002-06-30 Akim Demaille <akim@epita.fr>
9671
9672 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
9673 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
9674 * src/output.c, src/print.c, src/print_graph.c: Propagate.
9675 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
9676
96772002-06-30 Akim Demaille <akim@epita.fr>
9678
9679 Make the test suite pass with warnings checked.
9680
9681 * tests/actions.at (Printers and Destructors): Improve.
9682 Avoid unsigned vs. signed issues.
9683 * tests/calc.at: Don't exercise the scanner here, do it...
9684 * tests/input.at (Torturing the Scanner): here.
9685
96862002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9687
9688 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
9689 reorganize first lines parallel to yacc.c.
9690
96912002-06-28 Akim Demaille <akim@epita.fr>
9692
9693 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
9694 (b4_token_enum, b4_token_defines): New, factored from...
9695 * data/lalr1.cc, data/yacc.c, glr.c: here.
9696
96972002-06-28 Akim Demaille <akim@epita.fr>
9698
9699 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
9700 unused variables.
9701 * src/output.c (merger_output): static.
9702
97032002-06-28 Akim Demaille <akim@epita.fr>
9704
9705 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
9706 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
9707 pacify GCC.
9708 * src/output.c (save_row): Initialize all the variables to pacify GCC.
9709
97102002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9711
9712 Accumulated changelog for new GLR parsing features.
9713
9714 * src/conflicts.c (count_total_conflicts): Change name to
9715 conflicts_total_count.
9716 * src/conflicts.h: Ditto.
9717 * src/output.c (token_actions): Use the new name.
9718 (output_conflicts): Change conflp => conflict_list_heads, and
9719 confl => conflict_list for better readability.
9720 * data/glr.c: Use the new names.
9721 * NEWS: Add self to GLR announcement.
9722
9723 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
9724
9725 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
9726 Akim Demaille.
9727
9728 * data/bison.glr: Change name to glr.c
9729 * data/glr.c: Renamed from bison.glr.
9730 * data/Makefile.am: Add glr.c
9731
9732 * src/getargs.c:
9733
9734 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
9735 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
9736
9737 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9738
9739 * data/bison.glr: Be sure to restore the
9740 current #line when returning to the skeleton contents after having
9741 exposed the input file's #line.
9742
9743 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9744
9745 * data/bison.glr: Bring up to date with changes to bison.simple.
9746
9747 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9748
9749 * data/bison.glr: Correct definitions that use b4_prefix.
9750 Various reformatting.
9751 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
9752 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
9753 yytokenp argument; now part of stack.
9754 (yychar): Define to behave as documented.
9755 (yyclearin): Ditto.
9756
9757 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9758
9759 * src/reader.h: Add declaration for free_merger_functions.
9760
9761 * src/reader.c (merge_functions): New variable.
9762 (get_merge_function): New function.
9763 (free_merger_functions): New function.
9764 (readgram): Check for %prec that is not followed by a symbol.
9765 Handle %dprec and %merge declarations.
9766 (packgram): Initialize dprec and merger fields in rules array.
9767
9768 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
9769 conflict_list_cnt, conflict_list_free): New variables.
9770 (table_grow): Also grow conflict_table.
9771 (prepare_rules): Output dprec and merger tables.
9772 (conflict_row): New function.
9773 (action_row): Output conflict lists for GLR parser. Don't use
9774 default reduction in conflicted states for GLR parser so that there
9775 are spaces for the conflict lists.
9776 (save_row): Also save conflict information.
9777 (token_actions): Allocate conflict list.
9778 (merger_output): New function.
9779 (pack_vector): Pack conflict table, too.
9780 (output_conflicts): New function to output yyconflp and yyconfl.
9781 (output_check): Allocate conflict_tos.
9782 (output_actions): Output conflict tables, also.
9783 (output_skeleton): Output b4_mergers definition.
9784 (prepare): Output b4_max_rhs_length definition.
9785 Use 'bison.glr' as default skeleton for GLR parsers.
9786
9787 * src/gram.c (glr_parser): New flag.
9788 (grammar_free): Call free_merger_functions.
9789
9790 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
9791 all pairs of conflicting reductions, rather than just all tokens
9792 causing conflicts. Needed to size conflict tables.
9793 (conflicts_output): Modify call to count_rr_conflicts for new
9794 interface.
9795 (conflicts_print): Ditto.
9796 (count_total_conflicts): New function.
9797
9798 * src/reader.h (merger_list): New type.
9799 (merge_functions): New variable.
9800
9801 * src/lex.h (tok_dprec, tok_merge): New token types.
9802
9803 * src/gram.h (rule_s): Add dprec and merger fields.
9804 (glr_parser): New flag.
9805
9806 * src/conflicts.h (count_total_conflicts): New function.
9807
9808 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
9809
9810 * doc/bison.texinfo (Generalized LR Parsing): New section.
9811 (GLR Parsers): New section.
9812 (Language and Grammar): Mention GLR parsing.
9813 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
9814 Correct typo ("tge" -> "the").
9815
9816 * data/bison.glr: New skeleton for GLR parsing.
9817
9818 * tests/cxx-gram.at: New tests for GLR parsing.
9819
9820 * tests/testsuite.at: Include cxx-gram.at.
9821
9822 * tests/Makefile.am: Add cxx-gram.at.
9823
9824 * src/parse-gram.y:
9825
9826 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
9827
9828 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
9829
98302002-06-27 Akim Demaille <akim@epita.fr>
9831
9832 * src/options.h, src/options.c: Remove.
9833 * src/getargs.c (short_options, long_options): New.
9834
98352002-06-27 Akim Demaille <akim@epita.fr>
9836
9837 * data/bison.simple, data/bison.c++: Rename as...
9838 * data/yacc.c, data/lalr1.cc: these.
9839 * doc/bison.texinfo (Environment Variables): Remove.
9840
98412002-06-25 Raja R Harinath <harinath@cs.umn.edu>
9842
9843 * src/getargs.c (report_argmatch): Initialize strtok().
9844
98452002-06-20 Akim Demaille <akim@epita.fr>
9846
9847 * data/bison.simple (b4_symbol_actions): New, replaces...
9848 (b4_symbol_destructor, b4_symbol_printer): these.
9849 (yysymprint): Be sure to call YYPRINT only for tokens, and using
9850 user token numbers.
9851
98522002-06-20 Akim Demaille <akim@epita.fr>
9853
9854 * data/bison.simple (yydestructor): Rename as...
9855 (yydestruct): this.
9856
98572002-06-20 Akim Demaille <akim@epita.fr>
9858
9859 * src/symtab.h, src/symtab.c (symbol_type_set)
9860 (symbol_destructor_set, symbol_precedence_set): The location is
9861 the last argument.
9862 Adjust all callers.
9863
98642002-06-20 Akim Demaille <akim@epita.fr>
9865
9866 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
9867 internals.
9868 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
9869 Takes a location.
9870 * src/symtab.h, src/symtab.c (symbol_class_set)
9871 (symbol_user_token_number_set): Likewise.
9872 Adjust all callers.
9873 Promote complain_at.
9874 * tests/input.at (Type Clashes): Adjust.
9875
98762002-06-20 Akim Demaille <akim@epita.fr>
9877
9878 * data/bison.simple (YYLEX): Fix the declaration when
9879 %pure-parser.
9880
98812002-06-20 Akim Demaille <akim@epita.fr>
9882
9883 * data/bison.simple (yysymprint): Don't print the token number,
9884 just its name.
9885 * tests/actions.at (Destructors): Rename as...
9886 (Printers and Destructors): this.
9887 Also exercise %printer.
9888
98892002-06-20 Akim Demaille <akim@epita.fr>
9890
9891 * data/bison.simple (YYDSYMPRINT): New.
9892 Use it to remove many of the #if YYDEBUG/if (yydebug).
9893
98942002-06-20 Akim Demaille <akim@epita.fr>
9895
9896 * src/symtab.h, src/symtab.c (symbol_t): printer and
9897 printer_location are new members.
9898 (symbol_printer_set): New.
9899 * src/parse-gram.y (PERCENT_PRINTER): New token.
9900 Handle its associated rule.
9901 * src/scan-gram.l: Adjust.
9902 (handle_destructor_at, handle_destructor_dollar): Rename as...
9903 (handle_symbol_code_at, handle_symbol_code_dollar): these.
9904 * src/output.c (symbol_printers_output): New.
9905 (output_skeleton): Call it.
9906 * data/bison.simple (yysymprint): New. Cannot be named yyprint
9907 since there are already many grammar files with a user `yyprint'.
9908 Replace the calls to YYPRINT to calls to yysymprint.
9909 * tests/calc.at: Adjust.
9910 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
9911 taking advantage of parser very internal details (stack size!).
9912
99132002-06-20 Akim Demaille <akim@epita.fr>
9914
9915 * src/scan-gram.l: Complete the scanner with the missing patterns
9916 to pacify Flex.
9917 Use `quote' and `symbol_tag_get' where appropriate.
9918
99192002-06-19 Akim Demaille <akim@epita.fr>
9920
9921 * tests/actions.at (Destructors): Augment to test locations.
9922 * data/bison.simple (yydestructor): Pass it the current location
9923 if locations are enabled.
9924 Prototype only when __STDC__ or C++.
9925 Change the argument names to move into the yy name space: there is
9926 user code here.
9927
99282002-06-19 Akim Demaille <akim@epita.fr>
9929
9930 * data/bison.simple (b4_pure_if): New.
9931 Use it instead of #ifdef YYPURE.
9932
99332002-06-19 Akim Demaille <akim@epita.fr>
9934
9935 * data/bison.simple (b4_location_if): New.
9936 Use it instead of #ifdef YYLSP_NEEDED.
9937
99382002-06-19 Akim Demaille <akim@epita.fr>
9939
9940 Prepare @$ in %destructor, but currently don't bind it in the
9941 skeleton, as %location use is not cleaned up yet.
9942
9943 * src/scan-gram.l (handle_dollar, handle_destructor_at)
9944 (handle_action_at): New.
9945 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
9946 a braced_code_t and a location as additional arguments.
9947 (handle_destructor_dollar): Instead of requiring `b4_eval', just
9948 unquote one when outputting `b4_dollar_dollar'.
9949 Adjust callers.
9950 * data/bison.simple (b4_eval): Remove.
9951 (b4_symbol_destructor): Adjust.
9952 * tests/input.at (Invalid @n): Adjust.
9953
99542002-06-19 Zack Weinberg <zack@codesourcery.com>
9955
9956 * doc/bison.texinfo: Document ability to have multiple
9957 prologue sections.
9958
99592002-06-18 Akim Demaille <akim@epita.fr>
9960
9961 * src/files.c (compute_base_names): When computing the output file
9962 names from the input file name, strip the directory part.
9963
99642002-06-18 Akim Demaille <akim@epita.fr>
9965
9966 * data/bison.simple.new: Comment changes.
9967 Reported by Andreas Schwab.
9968
99692002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
9970
9971 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
9972 there are no `label `yyoverflowlab' defined but not used' warnings
9973 when yyoverflow is defined.
9974
99752002-06-18 Akim Demaille <akim@epita.fr>
9976
9977 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
9978 new member.
9979 (symbol_destructor_set): Adjust.
9980 * src/output.c (symbol_destructors_output): Output the destructor
9981 locations.
9982 Output the symbol name.
9983 * data/bison.simple (b4_symbol_destructor): Adjust.
9984
99852002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
9986 and Akim Demaille <akim@epita.fr>
9987
9988 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
9989 what's left on the stack when the error recovery hits EOF.
9990 * tests/actions.at (Destructors): Complete to exercise this case.
9991
99922002-06-17 Akim Demaille <akim@epita.fr>
9993
9994 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
9995 arguments is really empty, not only equal to `[]'.
9996 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
9997 member.
9998 (symbol_destructor_set): New.
9999 * src/output.c (symbol_destructors_output): New.
10000 * src/reader.h (brace_code_t, current_braced_code): New.
10001 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
10002 (handle_dollar): Rename as...
10003 (handle_action_dollar): this.
10004 (handle_destructor_dollar): New.
10005 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
10006 (grammar_declaration): Use it.
10007 * data/bison.simple (yystos): Is always defined.
10008 (yydestructor): New.
10009 * tests/actions.at (Destructors): New.
10010 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
10011
100122002-06-17 Akim Demaille <akim@epita.fr>
10013
10014 * src/symlist.h, src/symlist.c (symbol_list_length): New.
10015 * src/scan-gram.l (handle_dollar, handle_at): Compute the
10016 rule_length only when needed.
10017 * src/output.c (actions_output, token_definitions_output): Output
10018 the full M4 block.
10019 * src/symtab.c: Don't access directly to the symbol tag, use
10020 symbol_tag_get.
10021 * src/parse-gram.y: Use symbol_list_free.
10022
100232002-06-17 Akim Demaille <akim@epita.fr>
10024
10025 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
10026 (symbol_list_prepend, get_type_name): Move to...
10027 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
10028 (symbol_list_prepend, symbol_list_n_type_name_get): here.
10029 Adjust all callers.
10030 (symbol_list_free): New.
10031 * src/scan-gram.l (handle_dollar): Takes a location.
10032 * tests/input.at (Invalid $n): Adjust.
10033
100342002-06-17 Akim Demaille <akim@epita.fr>
10035
10036 * src/reader.h, src/reader.c (symbol_list_new): Export it.
10037 (symbol_list_prepend): New.
10038 * src/parse-gram.y (%union): `list' is a new member.
10039 (symbols.1): New, replaces...
10040 (terms_to_prec.1, nterms_to_type.1): these.
10041 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
10042 Take a location as additional argument.
10043 Adjust all callers.
10044
100452002-06-15 Akim Demaille <akim@epita.fr>
10046
10047 * src/parse-gram.y: Move %token in the declaration section so that
10048 we don't depend upon CVS Bison.
10049
100502002-06-15 Akim Demaille <akim@epita.fr>
10051
10052 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
10053 * src/print.c (print_core): Use it.
10054
100552002-06-15 Akim Demaille <akim@epita.fr>
10056
10057 * src/conflicts.c (log_resolution): Accept the rule involved in
10058 the sr conflicts instead of the lookahead number that points to
10059 that rule.
10060 (flush_reduce): Accept the current lookahead vector as argument,
10061 instead of the index in LA.
10062 (resolve_sr_conflict): Accept the current number of lookahead
10063 bitset to consider for the STATE, instead of the index in LA.
10064 (set_conflicts): Adjust.
10065 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
10066
100672002-06-15 Akim Demaille <akim@epita.fr>
10068
10069 * src/state.h (state_t): Replace the `lookaheadsp' member, a
10070 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
10071 Adjust all dependencies.
10072 * src/lalr.c (initialize_lookaheads): Split into...
10073 (states_lookaheads_count, states_lookaheads_initialize): these.
10074 (lalr): Adjust.
10075
100762002-06-15 Akim Demaille <akim@epita.fr>
10077
10078 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
10079 out of...
10080 (grammar_rules_print): here.
10081 * src/reduce.c (reduce_output): Use it.
10082 * tests/reduce.at (Useless Rules, Reduced Automaton)
10083 (Underivable Rules): Adjust.
10084
100852002-06-15 Akim Demaille <akim@epita.fr>
10086
10087 Copy BYacc's nice way to report the grammar.
10088
10089 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
10090 New.
10091 Don't print the rules' location, it is confusing and useless.
10092 (rule_print): Use grammar_rhs_print.
10093 * src/print.c (print_grammar): Use grammar_rules_print.
10094
100952002-06-15 Akim Demaille <akim@epita.fr>
10096
10097 Complete and rationalize `useless thing' warnings.
10098
10099 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
10100 (symbol_tag_print): New.
10101 Use them everywhere in place of accessing directly the tag member.
10102 * src/gram.h, src/gram.c (rule_print): New.
10103 Use it where a rule used to be printed `by hand'.
10104 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
10105 (reduce_grammar_tables): Report the useless rules.
10106 (reduce_print): Useless things are a warning, not an error.
10107 Report it as such.
10108 * tests/reduce.at (Useless Nonterminals, Useless Rules):
10109 (Reduced Automaton, Underivable Rules): Adjust.
10110 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
10111 * tests/conflicts.at (Unresolved SR Conflicts)
10112 (Solved SR Conflicts): Adjust.
10113
101142002-06-15 Akim Demaille <akim@epita.fr>
10115
10116 Let symbols have a location.
10117
10118 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
10119 (getsym): Adjust.
10120 Adjust all callers.
10121 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
10122 Use location_t, not int.
10123 * src/symtab.c (symbol_check_defined): Take advantage of the
10124 location.
10125 * tests/regression.at (Invalid inputs): Adjust.
10126
101272002-06-15 Akim Demaille <akim@epita.fr>
10128
10129 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
10130 (input): Don't try to initialize yylloc here, do it in the
10131 scanner.
10132 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
10133 * src/gram.h (rule_t): Change line and action_line into location
10134 and action_location, of location_t type.
10135 Adjust all dependencies.
10136 * src/location.h, src/location.c (empty_location): New.
10137 * src/reader.h, src/reader.c (grammar_start_symbol_set)
10138 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
10139 (grammar_current_rule_symbol_append)
10140 (grammar_current_rule_action_append): Expect a location as argument.
10141 * src/reader.c (grammar_midrule_action): Adjust to attach an
10142 action's location as dummy symbol location.
10143 * src/symtab.h, src/symtab.c (startsymbol_location): New.
10144 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
10145 the line numbers.
10146
101472002-06-14 Akim Demaille <akim@epita.fr>
10148
10149 Grammar declarations may be found in the grammar section.
10150
10151 * src/parse-gram.y (rules_or_grammar_declaration): New.
10152 (declarations): Each declaration may end with a semicolon, not
10153 just...
10154 (grammar_declaration): `"%union"'.
10155 (grammar): Branch to rules_or_grammar_declaration.
10156
101572002-06-14 Akim Demaille <akim@epita.fr>
10158
10159 * src/main.c (main): Invoke scanner_free.
10160
101612002-06-14 Akim Demaille <akim@epita.fr>
10162
10163 * src/output.c (m4_invoke): Extracted from...
10164 (output_skeleton): here.
10165 Free tempfile.
10166
101672002-06-14 Akim Demaille <akim@epita.fr>
10168
10169 * src/parse-gram.y (directives, directive, gram)
10170 (grammar_directives, precedence_directives, precedence_directive):
10171 Rename as...
10172 (declarations, declaration, grammar, grammar_declaration)
10173 (precedence_declaration, precedence_declarator): these.
10174 (symbol_declaration): New.
10175
101762002-06-14 Akim Demaille <akim@epita.fr>
10177
10178 * src/files.c (action_obstack): Remove, unused.
10179 (output_obstack): Remove it, and all its dependencies, as it is no
10180 longer needed.
10181 * src/reader.c (epilogue_set): Build the epilogue in the
10182 muscle_obstack.
10183 * src/output.h, src/output.c (muscle_obstack): Move to...
10184 * src/muscle_tab.h, src/muscle_tab.h: here.
10185 (muscle_init): Initialize muscle_obstack.
10186 (muscle_free): New.
10187 * src/main.c (main): Call it.
10188
101892002-06-14 Akim Demaille <akim@epita.fr>
10190
10191 * src/location.h: New, extracted from...
10192 * src/reader.h: here.
10193 * src/Makefile.am (noinst_HEADERS): Merge into
10194 (bison_SOURCES): this.
10195 Add location.h.
10196 * src/parse-gram.y: Use location_t instead of Bison's.
10197 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
10198 Use location_t instead of ints.
10199
102002002-06-14 Akim Demaille <akim@epita.fr>
10201
10202 * data/bison.simple, data/bison.c++: Be sure to restore the
10203 current #line when returning to the skeleton contents after having
10204 exposed the input file's #line.
10205
102062002-06-12 Akim Demaille <akim@epita.fr>
10207
10208 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
10209 eager.
10210 * tests/actions.at (Exotic Dollars): New.
10211
102122002-06-12 Akim Demaille <akim@epita.fr>
10213
10214 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
10215 ['"/] too eagerly.
10216 * tests/input.at (Torturing the Scanner): New.
10217
102182002-06-11 Akim Demaille <akim@epita.fr>
10219
10220 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
10221 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
10222 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
10223 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
10224 * src/reader.c (reader): Use it.
10225
102262002-06-11 Akim Demaille <akim@epita.fr>
10227
10228 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
10229 Adjust all callers.
10230 (scanner_last_string_free): New.
10231
102322002-06-11 Akim Demaille <akim@epita.fr>
10233
10234 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
10235 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
10236 (last_string, YY_OBS_FREE): New.
10237 Use them when returning an ID.
10238
102392002-06-11 Akim Demaille <akim@epita.fr>
10240
10241 Have Bison grammars parsed by a Bison grammar.
10242
10243 * src/reader.c, src/reader.h (prologue_augment): New.
10244 * src/reader.c (copy_definition): Remove.
10245
10246 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
10247 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
10248 (grammar_current_rule_prec_set, grammar_current_rule_check)
10249 (grammar_current_rule_symbol_append)
10250 (grammar_current_rule_action_append): Export.
10251 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
10252 (symbol_list_action_append): Remove.
10253 Hook the routines from reader.
10254 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
10255 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
10256
10257 * src/reader.c (read_declarations): Remove, unused.
10258
10259 * src/parse-gram.y: Handle the epilogue.
10260 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
10261 (grammar_start_symbol_set): this.
10262 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
10263 * src/reader.c (readgram): Remove, unused.
10264 (reader): Adjust to insert eoftoken and axiom where appropriate.
10265
10266 * src/reader.c (copy_dollar): Replace with...
10267 * src/scan-gram.h (handle_dollar): this.
10268 * src/parse-gram.y: Remove `%thong'.
10269
10270 * src/reader.c (copy_at): Replace with...
10271 * src/scan-gram.h (handle_at): this.
10272
10273 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
10274 New.
10275
10276 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
10277 time being.
10278
10279 * src/reader.h, src/reader.c (grammar_rule_end): New.
10280
10281 * src/parse.y (current_type, current_class): New.
10282 Implement `%nterm', `%token' support.
10283 Merge `%term' into `%token'.
10284 (string_as_id): New.
10285 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
10286 type name.
10287
10288 * src/parse-gram.y: Be sure to handle properly the beginning of
10289 rules.
10290
10291 * src/parse-gram.y: Handle %type.
10292 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
10293
10294 * src/parse-gram.y: More directives support.
10295 * src/options.c: No longer handle source directives.
10296
10297 * src/parse-gram.y: Fix %output.
10298
10299 * src/parse-gram.y: Handle %union.
10300 Use the prologue locations.
10301 * src/reader.c (parse_union_decl): Remove.
10302
10303 * src/reader.h, src/reader.c (epilogue_set): New.
10304 * src/parse-gram.y: Use it.
10305
10306 * data/bison.simple, data/bison.c++: b4_stype is now either not
10307 defined, then default to int, or to the contents of %union,
10308 without `union' itself.
10309 Adjust.
10310 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
10311
10312 * src/output.c (actions_output): Don't output braces, as they are
10313 already handled by the scanner.
10314
10315 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
10316 characters to themselves.
10317
10318 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
10319 that the epilogue has a proper #line.
10320
10321 * src/parse-gram.y: Handle precedence/associativity.
10322
10323 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
10324 a terminal.
10325 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
10326 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
10327 at all to define terminals that cannot be emitted.
10328
10329 * src/scan-gram.l: Escape M4 characters.
10330
10331 * src/scan-gram.l: Working properly with escapes in user
10332 strings/characters.
10333
10334 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
10335 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
10336 grammar.
10337 Use more modest sizes, as for the time being the parser does not
10338 release memory, and therefore the process swallows a huge amount
10339 of memory.
10340
10341 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
10342 stricter %token grammar.
10343
10344 * src/symtab.h (associativity): Add `undef_assoc'.
10345 (symbol_precedence_set): Do nothing when passed an undef_assoc.
10346 * src/symtab.c (symbol_check_alias_consistence): Adjust.
10347
10348 * tests/regression.at (Invalid %directive): Remove, as it is now
10349 meaningless.
10350 (Invalid inputs): Adjust to the new error messages.
10351 (Token definitions): The new grammar doesn't allow too many
10352 eccentricities.
10353
10354 * src/lex.h, src/lex.c: Remove.
10355 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
10356 (copy_character, copy_string2, copy_string, copy_identifier)
10357 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
10358 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
10359 (parse_action): Remove.
10360 * po/POTFILES.in: Adjust.
10361
103622002-06-11 Akim Demaille <akim@epita.fr>
10363
10364 * src/reader.c (parse_action): Don't store directly into the
10365 rule's action member: return the action as a string.
10366 Don't require `rule_length' as an argument: compute it.
10367 (grammar_current_rule_symbol_append)
10368 (grammar_current_rule_action_append): New, eved out from
10369 (readgram): here.
10370 Remove `action_flag', `rulelength', unused now.
10371
103722002-06-11 Akim Demaille <akim@epita.fr>
10373
10374 * src/reader.c (grammar_current_rule_prec_set).
10375 (grammar_current_rule_check): New, eved out from...
10376 (readgram): here.
10377 Remove `xaction', `first_rhs': useless.
10378 * tests/input.at (Type clashes): New.
10379 * tests/existing.at (GNU Cim Grammar): Adjust.
10380
103812002-06-11 Akim Demaille <akim@epita.fr>
10382
10383 * src/reader.c (grammar_midrule_action): New, Eved out from
10384 (readgram): here.
10385
103862002-06-11 Akim Demaille <akim@epita.fr>
10387
10388 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
10389 New.
10390 (readgram): Use them as replacement of inlined code, crule and
10391 crule1.
10392
103932002-06-11 Akim Demaille <akim@epita.fr>
10394
10395 * src/reader.c (grammar_end, grammar_symbol_append): New.
10396 (readgram): Use them.
10397 Make the use of `p' as local as possible.
10398
103992002-06-10 Akim Demaille <akim@epita.fr>
10400
10401 GCJ's parser requires the tokens to be defined before the prologue.
10402
10403 * data/bison.simple: Output the token definition before the user's
10404 prologue.
10405 * tests/regression.at (Braces parsing, Duplicate string)
10406 (Mixing %token styles): Check the output from bison.
10407 (Early token definitions): New.
10408
104092002-06-10 Akim Demaille <akim@epita.fr>
10410
10411 * src/symtab.c (symbol_user_token_number_set): Don't complain when
10412 assigning twice the same user number to a token, so that we can
10413 use it in...
10414 * src/lex.c (lex): here.
10415 Also use `symbol_class_set' instead of hand written code.
10416 * src/reader.c (parse_assoc_decl): Likewise.
10417
104182002-06-10 Akim Demaille <akim@epita.fr>
10419
10420 * src/symtab.c, src/symtab.c (symbol_class_set)
10421 (symbol_user_token_number_set): New.
10422 * src/reader.c (parse_token_decl): Use them.
10423 Use a switch instead of ifs.
10424 Use a single argument.
10425
104262002-06-10 Akim Demaille <akim@epita.fr>
10427
10428 Remove `%thong' support as it is undocumented, unused, duplicates
10429 `%token's job, and creates useless e-mail traffic with people who
10430 want to know what it is, why it is undocumented, unused, and
10431 duplicates `%token's job.
10432
10433 * src/reader.c (parse_thong_decl): Remove.
10434 * src/options.c (option_table): Remove "thong".
10435 * src/lex.h (tok_thong): Remove.
10436
104372002-06-10 Akim Demaille <akim@epita.fr>
10438
10439 * src/symtab.c, src/symtab.c (symbol_type_set)
10440 (symbol_precedence_set): New.
10441 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
10442 (value_components_used): Remove, unused.
10443
104442002-06-09 Akim Demaille <akim@epita.fr>
10445
10446 Move symbols handling code out of the reader.
10447
10448 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
10449 (axiom): Move to...
10450 * src/symtab.h, src/symtab.c: here.
10451
10452 * src/gram.c (start_symbol): Remove: use startsymbol->number.
10453 * src/reader.c (startval): Rename as...
10454 * src/symtab.h, src/symtab.c (startsymbol): this.
10455 * src/reader.c: Adjust.
10456
10457 * src/reader.c (symbol_check_defined, symbol_make_alias)
10458 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
10459 (token_translations_init)
10460 Move to...
10461 * src/symtab.c: here.
10462 * src/reader.c (packsymbols): Move to...
10463 * src/symtab.h, src/symtab.c (symbols_pack): here.
10464 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
10465 argument.
10466
104672002-06-03 Akim Demaille <akim@epita.fr>
10468
10469 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
10470 then statements.
10471
104722002-06-03 Akim Demaille <akim@epita.fr>
10473
10474 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
10475 structs with non literals.
10476 * src/scan-skel.l: never-interactive.
10477 * src/conflicts.c (enum conflict_resolution_e): No trailing
10478 comma.
10479 * src/getargs.c (usage): Split long literal strings.
10480 Reported by Hans Aberg.
10481
104822002-05-28 Akim Demaille <akim@epita.fr>
10483
10484 * data/bison.c++: Use C++ ostreams.
10485 (cdebug_): New member.
10486
104872002-05-28 Akim Demaille <akim@epita.fr>
10488
10489 * src/output.c (output_skeleton): Be sure to allocate enough room
10490 for `/' _and_ for `\0' in full_skeleton.
10491
104922002-05-28 Akim Demaille <akim@epita.fr>
10493
10494 * data/bison.c++: Catch up with bison.simple:
10495 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10496 and Paul Eggert <eggert@twinsun.com>: `error' handing.
10497 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
10498 and popping traces.
10499
105002002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10501
10502 * src/output.c (output_skeleton): Put an explicit path in front of
10503 the skeleton file name, rather than relying on the -I directory,
10504 to partially alleviate effects of having a skeleton file lying around
10505 in the current directory.
10506
105072002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10508
10509 * src/conflicts.c (log_resolution): Correct typo:
10510 obstack_printf should be obstack_fgrow1.
10511
105122002-05-26 Akim Demaille <akim@epita.fr>
10513
10514 * src/state.h (state_t): `solved_conflicts' is a new member.
10515 * src/LR0.c (new_state): Set it to 0.
10516 * src/conflicts.h, src/conflicts.c (print_conflicts)
10517 (free_conflicts, solve_conflicts): Rename as...
10518 (conflicts_print, conflicts_free, conflicts_solve): these.
10519 Adjust callers.
10520 * src/conflicts.c (enum conflict_resolution_e)
10521 (solved_conflicts_obstack): New, used by...
10522 (log_resolution): this.
10523 Adjust to attach the conflict resolution to each state.
10524 Complete the description with the precedence/associativity
10525 information.
10526 (resolve_sr_conflict): Adjust.
10527 * src/print.c (print_state): Output its solved_conflicts.
10528 * tests/conflicts.at (Unresolved SR Conflicts)
10529 (Solved SR Conflicts): Exercise --report=all.
10530
105312002-05-26 Akim Demaille <akim@epita.fr>
10532
10533 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10534 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
10535 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
10536 (token_number_t, item_number_as_token_number)
10537 (token_number_as_item_number, muscle_insert_token_number_table):
10538 Rename as...
10539 (symbol_number_t, item_number_as_symbol_number)
10540 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
10541 these, since it is more appropriate.
10542
105432002-05-26 Akim Demaille <akim@epita.fr>
10544
10545 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
10546 `Error:' lines.
10547 * data/bison.simple (yystos) [YYDEBUG]: New.
10548 (yyparse) [YYDEBUG]: Display the symbols which are popped during
10549 error recovery.
10550 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
10551
105522002-05-25 Akim Demaille <akim@epita.fr>
10553
10554 * doc/bison.texinfo (Debugging): Split into...
10555 (Tracing): this new section, its former contents, and...
10556 (Understanding): this new section.
10557 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
10558 by...
10559 (report_flag): this.
10560 Adjust all dependencies.
10561 (report_args, report_types, report_argmatch): New.
10562 (usage, getargs): Report/support -r, --report.
10563 * src/options.h
10564 (struct option_table_struct): Rename as..,
10565 (struct option_table_s): this.
10566 Rename the `set_flag' member to `flag' to match with getopt_long's
10567 struct.
10568 * src/options.c (option_table): Split verbose into an entry for
10569 %verbose, and another for --verbose.
10570 Support --report/-r, so remove -r from the obsolete --raw.
10571 * src/print.c: Attach full item sets and lookaheads reports to
10572 report_flag instead of trace_flag.
10573 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
10574
105752002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10576 and Paul Eggert <eggert@twinsun.com>
10577
10578 * data/bison.simple (yyparse): Correct error handling to conform to
10579 POSIX and yacc. Specifically, after syntax error is discovered,
10580 do not reduce further before shifting the error token.
10581 Clean up the code a bit by removing the labels yyerrdefault,
10582 yyerrhandle, yyerrpop.
10583 * NEWS: Document the above.
10584
105852002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10586
10587 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
10588 type; it isn't always big enough, since it doesn't necessarily
10589 include non-terminals.
10590 (yytranslate): Expand definition of yy_token_number_type, so that
10591 the latter can be removed.
10592 (yy_token_number_type): Remove, only one use.
10593 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
10594 don't use TokenNumberType as element type.
10595
10596 * tests/regression.at: Modify expected output to agree with change
10597 to yyr1 and yytranslate.
10598
105992002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
10600
10601 * src/reader.c (parse_action): Use copy_character instead of
10602 obstack_1grow.
10603
106042002-05-13 Akim Demaille <akim@epita.fr>
10605
10606 * tests/regression.at (Token definitions): Prototype yylex and
10607 yyerror.
10608
106092002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10610
10611 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
10612 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
10613 32-bit arithmetic.
10614 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
10615
106162002-05-07 Akim Demaille <akim@epita.fr>
10617
10618 * tests/synclines.at: Be sure to prototype yylex and yyerror to
10619 avoid GCC warnings.
10620
106212002-05-07 Akim Demaille <akim@epita.fr>
10622
10623 Kill GCC warnings.
10624
10625 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
10626 over the RHS of each rule.
10627 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
10628 * src/state.h (state_t): Member `nitems' is unsigned short.
10629 * src/LR0.c (get_state): Adjust.
10630 * src/reader.c (packgram): Likewise.
10631 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
10632 `Type'.
10633 (muscle_insert_int_table): Remove, unused.
10634 (prepare_rules): Remove `max'.
10635
106362002-05-06 Akim Demaille <akim@epita.fr>
10637
10638 * src/closure.c (print_firsts): Display of the symbol tags.
10639 (bitmatrix_print): Move to...
10640 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
10641 here.
10642 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
10643
106442002-05-06 Akim Demaille <akim@epita.fr>
10645
10646 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
10647 hash_do_for_each.
10648
106492002-05-06 Akim Demaille <akim@epita.fr>
10650
10651 * src/LR0.c (new_state, get_state): Instead of using the global
10652 `kernel_size' and `kernel_base', have two new arguments:
10653 `core_size' and `core'.
10654 Adjust callers.
10655
106562002-05-06 Akim Demaille <akim@epita.fr>
10657
10658 * src/reader.c (packgram): No longer end `ritem' with a 0
10659 sentinel: it is not used.
10660
106612002-05-05 Akim Demaille <akim@epita.fr>
10662
10663 New experimental feature: display the lookaheads in the report and
10664 graph.
10665
10666 * src/print (print_core): When --trace-flag, display the rules
10667 lookaheads.
10668 * src/print_graph.c (print_core): Likewise.
10669 Swap the arguments.
10670 Adjust caller.
10671
106722002-05-05 Akim Demaille <akim@epita.fr>
10673
10674 * tests/torture.at (Many lookaheads): New test.
10675
106762002-05-05 Akim Demaille <akim@epita.fr>
10677
10678 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
10679 (GENERATE_MUSCLE_INSERT_TABLE): this.
10680 (output_int_table, output_unsigned_int_table, output_short_table)
10681 (output_token_number_table, output_item_number_table): Replace with...
10682 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
10683 (muscle_insert_short_table, muscle_insert_token_number_table)
10684 (muscle_insert_item_number_table): these.
10685 Adjust all callers.
10686 (prepare_tokens): Don't free `translations', since...
10687 * src/reader.h, src/reader.c (grammar_free): do it.
10688 Move to...
10689 * src/gram.h, src/gram.c (grammar_free): here.
10690 * data/bison.simple, data/bison.c++: b4_token_number_max is now
10691 b4_translate_max.
10692
106932002-05-05 Akim Demaille <akim@epita.fr>
10694
10695 * src/output.c (output_unsigned_int_table): New.
10696 (prepare_rules): `i' is unsigned.
10697 `prhs', `rline', `r2' are unsigned int.
10698 Rename muscle `rhs_number_max' as `rhs_max'.
10699 Output muscles `prhs_max', `rline_max', and `r2_max'.
10700 Free rline and r1.
10701 * data/bison.simple, data/bison.c++: Adjust to use these muscles
10702 to compute types instead of constant types.
10703 * tests/regression.at (Web2c Actions): Adjust.
10704
107052002-05-04 Akim Demaille <akim@epita.fr>
10706
10707 * src/symtab.h (SALIAS, SUNDEF): Rename as...
10708 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
10709 Adjust dependencies.
10710 * src/output.c (token_definitions_output): Be sure not to output a
10711 `#define 'a'' when fed with `%token 'a' "a"'.
10712 * tests/regression.at (Token definitions): New.
10713
107142002-05-03 Paul Eggert <eggert@twinsun.com>
10715
10716 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
10717 for K&R C.
10718
107192002-05-03 gettextize <bug-gnu-gettext@gnu.org>
10720
10721 * Makefile.am (SUBDIRS): Remove intl.
10722 (EXTRA_DIST): Add config/config.rpath.
10723
107242002-05-03 Akim Demaille <akim@epita.fr>
10725
10726 * data/bison.simple (m4_if): Don't output empty enums.
10727 And actually, output valid enum definitions :(.
10728
107292002-05-03 Akim Demaille <akim@epita.fr>
10730
10731 * configure.bat: Remove, completely obsolete.
10732 * Makefile.am (EXTRA_DIST): Adjust.
10733 Don't distribute config.rpath...
10734 * config/Makefile.am (EXTRA_DIST): Do it.
10735
107362002-05-03 Akim Demaille <akim@epita.fr>
10737
10738 * configure.in (GETTEXT_VERSION): New.
10739 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
10740
107412002-05-03 Akim Demaille <akim@epita.fr>
10742
10743 * data/bison.simple (b4_token_enum): New.
10744 (b4_token_defines): Use it to output tokens both as #define and
10745 enums.
10746 Suggested by Paul Eggert.
10747 * src/output.c (token_definitions_output): Don't output spurious
10748 white spaces.
10749
107502002-05-03 Akim Demaille <akim@epita.fr>
10751
10752 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
10753
107542002-05-02 Robert Anisko <robert@lrde.epita.fr>
10755
10756 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
10757 Update the stack class, give a try to deque as the default container.
10758
107592002-05-02 Akim Demaille <akim@epita.fr>
10760
10761 * data/bison.simple (yyparse): Do not implement @$ = @1.
10762 (YYLLOC_DEFAULT): Adjust to do it.
10763 * doc/bison.texinfo (Location Default Action): Fix.
10764
107652002-05-02 Akim Demaille <akim@epita.fr>
10766
10767 * src/reader.c (parse_braces): Merge into...
10768 (parse_action): this.
10769
107702002-05-02 Akim Demaille <akim@epita.fr>
10771
10772 * configure.in (ALL_LINGUAS): Remove.
10773 * po/LINGUAS, hr.po: New.
10774
107752002-05-02 Akim Demaille <akim@epita.fr>
10776
10777 Remove the so called hairy (semantic) parsers.
10778
10779 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
10780 * src/gram.h, src/gram.c (semantic_parser): Remove.
10781 (rule_t): Remove the guard and guard_line members.
10782 * src/lex.h (token_t): remove tok_guard.
10783 * src/options.c (option_table): Remove %guard and %semantic_parser
10784 support.
10785 * src/output.c, src/output.h (guards_output): Remove.
10786 (prepare): Adjust.
10787 (token_definitions_output): Don't output the `T'
10788 tokens (???).
10789 (output_skeleton): Don't output the guards.
10790 * src/files.c, src/files.c (attrsfile): Remove.
10791 * src/reader.c (symbol_list): Remove the guard and guard_line
10792 members.
10793 Adjust dependencies.
10794 (parse_guard): Remove.
10795 * data/bison.hairy: Remove.
10796 * doc/bison.texinfo (Environment Variables): Remove occurrences of
10797 BISON_HAIRY.
10798
107992002-05-02 Akim Demaille <akim@epita.fr>
10800
10801 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
10802 (parse_guard): Rename the formal argument `stack_offset' as
10803 `rule_length', which is more readable.
10804 Adjust callers.
10805 (copy_at, copy_dollar): Instead of outputting the hard coded
10806 values of $$, $n and so forth, output invocation to b4_lhs_value,
10807 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
10808 Note: this patch partially drops `semantic-parser' support: it
10809 always does `rule_length - n', where semantic parsers ought to
10810 always use `-n'.
10811 * data/bison.simple, data/bison.c++ (b4_lhs_value)
10812 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
10813
108142002-05-02 Akim Demaille <akim@epita.fr>
10815
10816 * configure.in (AC_INIT): Bump to 1.49b.
10817 (AM_INIT_AUTOMAKE): Short invocation.
10818
108192002-05-02 Akim Demaille <akim@epita.fr>
10820
10821 Version 1.49a.
10822
108232002-05-01 Akim Demaille <akim@epita.fr>
10824
10825 * src/skeleton.h: Remove.
10826
108272002-05-01 Akim Demaille <akim@epita.fr>
10828
10829 * src/skeleton.h: Fix the #endif.
10830 Reported by Magnus Fromreide.
10831
108322002-04-26 Paul Eggert <eggert@twinsun.com>
10833
10834 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
10835 Define if we define YYSTYPE and YYLTYPE, respectively.
10836 (YYCOPY): Fix [] quoting problem in the non-GCC case.
10837
108382002-04-25 Robert Anisko <robert@lrde.epita.fr>
10839
10840 * src/scan-skel.l: Postprocess quadrigraphs.
10841
10842 * src/reader.c (copy_character): New function, used to output
10843 single characters while replacing `[' and `]' with quadrigraphs, to
10844 avoid troubles with M4 quotes.
10845 (copy_comment): Output characters with copy_character.
10846 (read_additionnal_code): Likewise.
10847 (copy_string2): Likewise.
10848 (copy_definition): Likewise.
10849
10850 * tests/calc.at: Exercise M4 quoting.
10851
108522002-04-25 Akim Demaille <akim@epita.fr>
10853
10854 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
10855 between `!' and the command.
10856 Reported by Paul Eggert.
10857
108582002-04-24 Robert Anisko <robert@lrde.epita.fr>
10859
10860 * tests/calc.at: Exercise prologue splitting.
10861
10862 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
10863 `b4_post_prologue' instead of `b4_prologue'.
10864
10865 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
10866 muscles.
10867 (output): Free pre_prologue_obstack and post_prologue_obstack.
10868 * src/files.h, src/files.c (attrs_obstack): Remove.
10869 (pre_prologue_obstack, post_prologue_obstack): New.
10870 * src/reader.c (copy_definition): Add a parameter to specify the
10871 obstack to fill, instead of using attrs_obstack unconditionally.
10872 (read_declarations): Pass pre_prologue_obstack to copy_definition if
10873 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
10874
108752002-04-23 Paul Eggert <eggert@twinsun.com>
10876
10877 * data/bison.simple: Remove unnecessary commentary and white
10878 space differences from 1_29-branch.
10879 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
10880
10881 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
10882 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
10883 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
10884 constructors or destructors.
10885
10886 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
10887
108882002-04-23 Akim Demaille <akim@epita.fr>
10889
10890 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
10891 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
10892 location with columns.
10893 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
10894 All reported by Paul Eggert.
10895
108962002-04-22 Akim Demaille <akim@epita.fr>
10897
10898 * src/reduce.c (dump_grammar): Move to...
10899 * src/gram.h, src/gram.c (grammar_dump): here.
10900 Be sure to separate long item numbers.
10901 Don't read the members of a rule's prec if its nil.
10902
109032002-04-22 Akim Demaille <akim@epita.fr>
10904
10905 * src/output.c (table_size, table_grow): New.
10906 (MAXTABLE): Remove, replace uses with table_size.
10907 (pack_vector): Instead of dying when the table is too big, grow it.
10908
109092002-04-22 Akim Demaille <akim@epita.fr>
10910
10911 * data/bison.simple (yyr1): Its type is that of a token number.
10912 * data/bison.c++ (r1_): Likewise.
10913 * tests/regression.at (Web2c Actions): Adjust.
10914
109152002-04-22 Akim Demaille <akim@epita.fr>
10916
10917 * src/reader.c (token_translations_init): 256 is now the default
10918 value for the error token, i.e., it will be assigned another
10919 number if the user assigned 256 to one of her tokens.
10920 (reader): Don't force 256 to error.
10921 * doc/bison.texinfo (Symbols): Adjust.
10922 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
10923 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
10924 etc. instead of 10, 20, 30 (which was used to `jump' over error
10925 (256) and undefined (2)).
10926
109272002-04-22 Akim Demaille <akim@epita.fr>
10928
10929 Propagate more token_number_t.
10930
10931 * src/gram.h (token_number_as_item_number)
10932 (item_number_as_token_number): New.
10933 * src/output.c (GENERATE_OUTPUT_TABLE): New.
10934 Use it to create output_item_number_table and
10935 output_token_number_table.
10936 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10937 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
10938 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
10939 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
10940
109412002-04-22 Akim Demaille <akim@epita.fr>
10942
10943 * src/output.h, src/output.c (get_lines_number): Remove.
10944
109452002-04-19 Akim Demaille <akim@epita.fr>
10946
10947 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
10948 as Lex/Flex'.
10949 (Debugging): More details about enabling the debugging features.
10950 (Table of Symbols): Describe $$, $n, @$, and @n.
10951 Suggested by Tim Josling.
10952
109532002-04-19 Akim Demaille <akim@epita.fr>
10954
10955 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
10956
109572002-04-10 Akim Demaille <akim@epita.fr>
10958
10959 * src/system.h: Rely on HAVE_LIMITS_H.
10960 Suggested by Paul Eggert.
10961
109622002-04-09 Akim Demaille <akim@epita.fr>
10963
10964 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
10965 full stderr, and strip it according to the bison options, instead
10966 of composing the error message from different bits.
10967 This makes it easier to check for several error messages.
10968 Adjust all the invocations.
10969 Add an invocation exercising the error token.
10970 Add an invocation demonstrating a stupid error message.
10971 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
10972 Adjust the tests.
10973 Error message are for stderr, not stdout.
10974
109752002-04-09 Akim Demaille <akim@epita.fr>
10976
10977 * src/gram.h, src/gram.c (error_token_number): Remove, use
10978 errtoken->number.
10979 * src/reader.c (reader): Don't specify the user token number (2)
10980 for $undefined, as it uselessly prevents using it.
10981 * src/gram.h (token_number_t): Move to...
10982 * src/symtab.h: here.
10983 (state_t.number): Is a token_number_t.
10984 * src/print.c, src/reader.c: Use undeftoken->number instead of
10985 hard coded 2.
10986 (Even though this 2 is not the same as above: the number of the
10987 undeftoken remains being 2, it is its user token number which
10988 might not be 2).
10989 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
10990 `user_token_number_max'.
10991 Output `undef_token_number'.
10992 * data/bison.simple, data/bison.c++: Use them.
10993 Be sure to map invalid yylex return values to
10994 `undef_token_number'. This saves us from gratuitous SEGV.
10995
10996 * tests/conflicts.at (Solved SR Conflicts)
10997 (Unresolved SR Conflicts): Adjust.
10998 * tests/regression.at (Web2c Actions): Adjust.
10999
110002002-04-08 Akim Demaille <akim@epita.fr>
11001
11002 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
11003 Adding #line.
11004 Remove the duplicate `typedefs'.
11005 (RhsNumberType): Fix the declaration and various other typos.
11006 Use __ofile__.
11007 * data/bison.simple: Use __ofile__.
11008 * src/scan-skel.l: Handle __ofile__.
11009
110102002-04-08 Akim Demaille <akim@epita.fr>
11011
11012 * src/gram.h (item_number_t): New, the type of item numbers in
11013 RITEM. Note that it must be able to code symbol numbers as
11014 positive number, and the negation of rule numbers as negative
11015 numbers.
11016 Adjust all dependencies (pretty many).
11017 * src/reduce.c (rule): Remove this `short *' pointer: use
11018 item_number_t.
11019 * src/system.h (MINSHORT, MAXSHORT): Remove.
11020 Include `limits.h'.
11021 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
11022 (shortcpy): Remove.
11023 (MAXTABLE): Move to...
11024 * src/output.c (MAXTABLE): here.
11025 (prepare_rules): Use output_int_table to output rhs.
11026 * data/bison.simple, data/bison.c++: Adjust.
11027 * tests/torture.at (Big triangle): Move the limit from 254 to
11028 500.
11029 * tests/regression.at (Web2c Actions): Ajust.
11030
11031 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
11032 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
11033 passes, but produces negative #line number, once fixed, GCC is
11034 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
11035 C), it passes.
11036 * src/state.h (state_h): Code input lines on ints, not shorts.
11037
110382002-04-08 Akim Demaille <akim@epita.fr>
11039
11040 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
11041 and then the grammar.
11042
110432002-04-08 Akim Demaille <akim@epita.fr>
11044
11045 * src/system.h: No longer using strndup.
11046
110472002-04-07 Akim Demaille <akim@epita.fr>
11048
11049 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
11050 * src/output.c (output_table_data): Return the longest number.
11051 (prepare_tokens): Output `token_number_max').
11052 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
11053 New.
11054 Use them to define yy_token_number_type/TokenNumberType.
11055 Use this type for yytranslate.
11056 * tests/torture.at (Big triangle): Push the limit from 124 to
11057 253.
11058 * tests/regression.at (Web2c Actions): Adjust.
11059
110602002-04-07 Akim Demaille <akim@epita.fr>
11061
11062 * tests/torture.at (Big triangle): New.
11063 (GNU AWK Grammar, GNU Cim Grammar): Move to...
11064 * tests/existing.at: here.
11065
110662002-04-07 Akim Demaille <akim@epita.fr>
11067
11068 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
11069 nritems.
11070 Adjust dependencies.
11071
110722002-04-07 Akim Demaille <akim@epita.fr>
11073
11074 * src/reader.c: Normalize increments to prefix form.
11075
110762002-04-07 Akim Demaille <akim@epita.fr>
11077
11078 * src/reader.c, symtab.c: Remove debugging code.
11079
110802002-04-07 Akim Demaille <akim@epita.fr>
11081
11082 Rename all the `bucket's as `symbol_t'.
11083
11084 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
11085 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
11086 * src/symtab.c, src/symtab.h (bucket): Rename as...
11087 (symbol_t): this.
11088 (symbol_list_new, bucket_check_defined, bucket_make_alias)
11089 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
11090 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11091 (buckets_new, buckets_free, buckets_do): Rename as...
11092 (symbol_list_new, symbol_check_defined, symbol_make_alias)
11093 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
11094 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
11095 (symbols_new, symbols_free, symbols_do): these.
11096
110972002-04-07 Akim Demaille <akim@epita.fr>
11098
11099 Use lib/hash for the symbol table.
11100
11101 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
11102 EOF.
11103 * src/lex.c (lex): Set the `number' member of new terminals.
11104 * src/reader.c (bucket_check_defined, bucket_make_alias)
11105 (bucket_check_alias_consistence, bucket_translation): New.
11106 (reader, grammar_free, readgram, token_translations_init)
11107 (packsymbols): Adjust.
11108 (reader): Number the predefined tokens.
11109 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
11110 for predefined tokens.
11111 * src/symtab.h (bucket): Remove all the hash table related
11112 members.
11113 * src/symtab.c (symtab): Replace by...
11114 (bucket_table): this.
11115 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11116 (buckets_new, buckets_do): New.
11117
111182002-04-07 Akim Demaille <akim@epita.fr>
11119
11120 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
11121 (start_symbol, max_user_token_number, semantic_parser)
11122 (error_token_number): Initialize.
11123 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
11124 Initialize.
11125 (reader): Don't.
11126 (errtoken, eoftoken, undeftoken, axiom): Extern.
11127
111282002-04-07 Akim Demaille <akim@epita.fr>
11129
11130 * src/gram.h (rule_s): prec and precsym are now pointers
11131 to the bucket giving the priority/associativity.
11132 Member `associativity' removed: useless.
11133 * src/reduce.c, src/conflicts.c: Adjust.
11134
111352002-04-07 Akim Demaille <akim@epita.fr>
11136
11137 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
11138 Properly escape the symbols' TAG when outputting them.
11139
111402002-04-07 Akim Demaille <akim@epita.fr>
11141
11142 * src/lalr.h (LA): Is a bitsetv, not bitset*.
11143
111442002-04-07 Akim Demaille <akim@epita.fr>
11145
11146 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
11147 (LArule): this, which is an array to rule_t*.
11148 * src/print.c, src/conflicts.c: Adjust.
11149
111502002-04-07 Akim Demaille <akim@epita.fr>
11151
11152 * src/gram.h (rule_t): Rename `number' as `user_number'.
11153 `number' is a new member.
11154 Adjust dependencies.
11155 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
11156
111572002-04-07 Akim Demaille <akim@epita.fr>
11158
11159 As a result of the previous patch, it is no longer needed
11160 to reorder ritem itself.
11161
11162 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
11163
111642002-04-07 Akim Demaille <akim@epita.fr>
11165
11166 Be sure never to walk through RITEMS, but use only data related to
11167 the rules themselves. RITEMS should be banished.
11168
11169 * src/output.c (output_token_translations): Rename as...
11170 (prepare_tokens): this.
11171 In addition to `translate', prepare the muscles `tname' and
11172 `toknum', which were handled by...
11173 (output_rule_data): this.
11174 Remove, and move the remainder of its outputs into...
11175 (prepare_rules): this new routines, which also merges content from
11176 (output_gram): this.
11177 (prepare_rules): Be sure never to walk through RITEMS.
11178 (output_stos): Rename as...
11179 (prepare_stos): this.
11180 (output): Always invoke prepare_states, after all, just don't use it
11181 in the output if you don't need it.
11182
111832002-04-07 Akim Demaille <akim@epita.fr>
11184
11185 * src/LR0.c (new_state): Display `nstates' as the name of the
11186 newly created state.
11187 Adjust to initialize first_state and last_state if needed.
11188 Be sure to distinguish the initial from the final state.
11189 (new_states): Create the itemset of the initial state, and use
11190 new_state.
11191 * src/closure.c (closure): Now that the initial state has its
11192 items properly set, there is no need for a special case when
11193 creating `ruleset'.
11194
11195 As a result, now the rule 0, reducing to $axiom, is visible in the
11196 outputs. Adjust the test suite.
11197
11198 * tests/conflicts.at (Solved SR Conflicts)
11199 (Unresolved SR Conflicts): Adjust.
11200 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
11201 * tests/conflicts.at (S/R in initial): New.
11202
112032002-04-07 Akim Demaille <akim@epita.fr>
11204
11205 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
11206 the RHS of the rules.
11207 * src/output.c (output_gram): Likewise.
11208
112092002-04-07 Akim Demaille <akim@epita.fr>
11210
11211 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
11212 bucket.
11213 Adjust all dependencies.
11214 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
11215 `number' of the buckets too.
11216 * src/gram.h: Include `symtab.h'.
11217 (associativity): Move to...
11218 * src/symtab.h: here.
11219 No longer include `gram.h'.
11220
112212002-04-07 Akim Demaille <akim@epita.fr>
11222
11223 * src/gram.h, src/gram.c (rules_rhs_length): New.
11224 (ritem_longest_rhs): Use it.
11225 * src/gram.h (rule_t): `number' is a new member.
11226 * src/reader.c (packgram): Set it.
11227 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
11228 the end of `rules', and count them out of `nrules'.
11229 (reduce_output, dump_grammar): Adjust.
11230 * src/print.c (print_grammar): It is no longer needed to check for
11231 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
11232 * tests/reduce.at (Reduced Automaton): New test.
11233
112342002-04-07 Akim Demaille <akim@epita.fr>
11235
11236 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
11237 lacking `+ 1' to nrules, Bison reported as useless a token if it
11238 was used solely to set the precedence of the last rule...
11239
112402002-04-07 Akim Demaille <akim@epita.fr>
11241
11242 * data/bison.c++, data/bison.simple: Don't output the current file
11243 name in #line, to avoid useless diffs between two identical
11244 outputs under different names.
11245
112462002-04-07 Akim Demaille <akim@epita.fr>
11247
11248 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
11249 Normalize loops to using `< nrules + 1', not `<= nrules'.
11250
112512002-04-07 Akim Demaille <akim@epita.fr>
11252
11253 * TODO: Update.
11254
112552002-04-07 Akim Demaille <akim@epita.fr>
11256
11257 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
11258 bucket.value as bucket.number.
11259
112602002-04-07 Akim Demaille <akim@epita.fr>
11261
11262 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
11263 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
11264 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
11265 RHS, instead of being an index in RITEMS.
11266
112672002-04-04 Paul Eggert <eggert@twinsun.com>
11268
11269 * doc/bison.texinfo: Update copyright date.
11270 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
11271 (Symbols): Warn about running Bison in one character set,
11272 but compiling and/or running in an incompatible one.
11273 Warn about character code 256, too.
11274
112752002-04-03 Paul Eggert <eggert@twinsun.com>
11276
11277 * src/bison.data (YYSTACK_ALLOC): Depend on whether
11278 YYERROR_VERBOSE is nonzero, not whether it is defined.
11279
11280 Merge changes from bison-1_29-branch.
11281
112822002-03-20 Paul Eggert <eggert@twinsun.com>
11283
11284 Merge fixes from Debian bison_1.34-1.diff.
11285
11286 * configure.in (AC_PREREQ): 2.53.
11287
112882002-03-20 Akim Demaille <akim@epita.fr>
11289
11290 * src/conflicts.c (log_resolution): Argument `resolution' is const.
11291
112922002-03-19 Paul Eggert <eggert@twinsun.com>
11293
11294 * src/bison.simple (YYCOPY): New macro.
11295 (YYSTACK_RELOCATE): Use it.
11296 Remove Type arg; no longer needed. All callers changed.
11297 (yymemcpy): Remove; no longer needed.
11298
11299 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
11300 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
11301
113022002-03-19 Akim Demaille <akim@epita.fr>
11303
11304 Test and fix the #line outputs.
11305
11306 * tests/atlocal.at (GCC): New.
11307 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
11308 (Prologue synch line, %union synch line, Postprologue synch line)
11309 (Action synch line, Epilogue synch line): New tests.
11310 * src/reader.c (parse_union_decl): Define the muscle stype_line.
11311 * data/bison.simple, data/bison.c++: Use it.
11312
113132002-03-19 Akim Demaille <akim@epita.fr>
11314
11315 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
11316 (Solved SR Conflicts, %expect not enough, %expect right)
11317 (%expect too much): Move to...
11318 * tests/conflicts.at: this new file.
11319
113202002-03-19 Akim Demaille <akim@epita.fr>
11321
11322 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11323 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
11324 that we can move to enums for instance.
11325 * src/output.c (token_definitions_output): Output a list of
11326 `token-name, token-number' instead of the #define.
11327 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
11328
113292002-03-14 Akim Demaille <akim@epita.fr>
11330
11331 Use Gettext 0.11.1.
11332
113332002-03-09 Robert Anisko <robert@lrde.epita.fr>
11334
11335 * data/bison.c++: Make the user able to add members to the generated
11336 parser by subclassing.
11337
113382002-03-05 Robert Anisko <robert@lrde.epita.fr>
11339
11340 * src/reader.c (read_additionnal_code): `c' should be an integer, not
11341 a character.
11342 Reported by Nicolas Tisserand and Nicolas Burrus.
11343
113442002-03-04 Robert Anisko <robert@lrde.epita.fr>
11345
11346 * src/reader.c: Warn about lacking semi-colons, do not complain.
11347
113482002-03-04 Robert Anisko <robert@lrde.epita.fr>
11349
11350 * data/bison.c++: Remove a debug line.
11351
113522002-03-04 Robert Anisko <robert@lrde.epita.fr>
11353
11354 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
11355 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
11356 provide a default implementation.
11357
113582002-03-04 Akim Demaille <akim@epita.fr>
11359
11360 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
11361 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
11362 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
11363 * tests/semantic.at (Parsing Guards): Similarly.
11364 * src/reader.at (readgram): Complain if the last rule is not ended
11365 with a semi-colon.
11366
113672002-03-04 Akim Demaille <akim@epita.fr>
11368
11369 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
11370 * src/closure.c: here.
11371 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
11372 RTC.
11373 * src/warshall.h, src/warshall.c: Remove.
11374 * tests/sets.at (Broken Closure): Adjust.
11375
113762002-03-04 Akim Demaille <akim@epita.fr>
11377
11378 * src/output.c (output_skeleton): tempdir is const.
11379 bytes_read is unused.
11380
113812002-03-04 Akim Demaille <akim@epita.fr>
11382
11383 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11384 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
11385 Update.
11386 From Michael Hayes.
11387
113882002-03-04 Akim Demaille <akim@epita.fr>
11389
11390 * src/closure.c (closure): `r' is unused.
11391
113922002-03-04 Akim Demaille <akim@epita.fr>
11393
11394 * tests/sets.at (Broken Closure): Add the ending `;'.
11395 * src/reader.at (readgram): Complain if a rule is not ended with a
11396 semi-colon.
11397
113982002-03-04 Akim Demaille <akim@epita.fr>
11399
11400 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
11401 (count_sr_conflicts): Use bitset_count.
11402 * src/reduce.c (inaccessable_symbols): Ditto.
11403 (bits_size): Remove.
11404 * src/warshall.h, src/warshall.c: Convert to bitsetv.
11405
114062002-03-04 Akim Demaille <akim@epita.fr>
11407
11408 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
11409 * src/reduce.c: Remove the `bitset_zero's following the
11410 `bitset_create's, as now it is performed by the latter.
11411
114122002-03-04 Akim Demaille <akim@epita.fr>
11413
11414 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
11415 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
11416 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
11417 latest sources from Michael.
11418
114192002-03-04 Akim Demaille <akim@epita.fr>
11420
11421 * src/output.c (output): Don't free the grammar.
11422 * src/reader.c (grammar_free): New.
11423 * src/main.c (main): Call it and don't free symtab here.
11424
114252002-03-04 Akim Demaille <akim@epita.fr>
11426
11427 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
11428 before returning.
11429 Reported by Benoit Perrot.
11430
114312002-03-04 Akim Demaille <akim@epita.fr>
11432
11433 Use bitset operations when possible, not loops over bits.
11434
11435 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
11436 bitset_or.
11437 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
11438 * src/reduce.c (useless_nonterminals): Formatting changes.
11439 * src/warshall.c (TC): Use bitset_or.
11440
114412002-03-04 Akim Demaille <akim@epita.fr>
11442
11443 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
11444 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
11445 Ditto.
11446
114472002-03-04 Akim Demaille <akim@epita.fr>
11448
11449 * src/lalr.c (F): Now a bitset*.
11450 Adjust all dependencies.
11451
114522002-03-04 Akim Demaille <akim@epita.fr>
11453
11454 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
11455 Adjust all dependencies.
11456
114572002-03-04 Akim Demaille <akim@epita.fr>
11458
11459 * src/L0.c, src/LR0.h (nstates): Be size_t.
11460 Adjust comparisons (signed vs unsigned).
11461 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
11462 bitset*.
11463 Adjust all dependencies.
11464
114652002-03-04 Akim Demaille <akim@epita.fr>
11466
11467 * src/closure.c (firsts): Now, also a bitset.
11468 Adjust all dependencies.
11469 (varsetsize): Remove, now unused.
11470 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
11471
114722002-03-04 Akim Demaille <akim@epita.fr>
11473
11474 * src/print.c: Convert to use bitset.h, not hand coded iterations
11475 over ints.
11476
114772002-03-04 Akim Demaille <akim@epita.fr>
11478
11479 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
11480
114812002-03-04 Akim Demaille <akim@epita.fr>
11482
11483 * src/closure.c (ruleset): Be a bitset.
11484 (rulesetsize): Remove.
11485
114862002-03-04 Akim Demaille <akim@epita.fr>
11487
11488 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11489 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
11490 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
11491 * src/closure.c (fderives): Be an array of bitsets.
11492
114932002-02-28 Robert Anisko <robert@lrde.epita.fr>
11494
11495 * data/bison.c++: Merge the two generated headers. Insert a copyright
11496 notice in each output file.
11497
114982002-02-28 Akim Demaille <akim@epita.fr>
11499
11500 * data/bison.c++: Copy the prologue of bison.simple to fetch
11501 useful M4 definitions, such as b4_header_guard.
11502
115032002-02-25 Akim Demaille <akim@epita.fr>
11504
11505 * src/getargs.c (version): Give the name of the authors, and use a
11506 translator friendly scheme for the bgr
11507 copyright notice.
11508
115092002-02-25 Akim Demaille <akim@epita.fr>
11510
11511 * src/output.c (header_output): Remove, now handled completely via
11512 M4.
11513
115142002-02-25 Akim Demaille <akim@epita.fr>
11515
11516 * m4/m4.m4: New, from CVS Autoconf.
11517 * configure.in: Invoke it.
11518 * src/output.c (output_skeleton): Use its result instead of the
11519 hard coded name.
11520
115212002-02-25 Akim Demaille <akim@epita.fr>
11522
11523 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
11524 Fileutils 4.1.5.
11525 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
11526 * src/output.c (output_skeleton): Use mkstemp to create a real
11527 temporary file.
11528 Move the filling of `skeleton' and its muscle to...
11529 (prepare): here.
11530 (output): Move the definition of the prologue muscle to...
11531 (prepare): here.
11532 * src/system.h (DEFAULT_TMPDIR): New.
11533
115342002-02-14 Paul Eggert <eggert@twinsun.com>
11535
11536 Remove the support for C++ namespace cleanliness; it was
11537 causing more problems than it was curing, since it didn't work
11538 properly on some nonstandard C++ compilers. This can wait
11539 for a proper C++ parser.
11540
11541 * NEWS: Document this.
11542 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
11543 of C++, as it's treated like C now.
11544 * src/bison.simple (YYSTD): Remove.
11545 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
11546 Treat C++ just like Standard C instead of trying to support
11547 namespace cleanliness.
11548
115492002-02-14 Akim Demaille <akim@epita.fr>
11550
11551 * tests/regression.at (else): Adjust to Andreas' change.
11552
115532002-02-14 Akim Demaille <akim@epita.fr>
11554
11555 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
11556
115572002-02-13 Andreas Schwab <schwab@suse.de>
11558
11559 * src/output.c (output_rule_data): Don't output NULL, it might
11560 not be defined yet.
11561
115622002-02-11 Robert Anisko <robert@lrde.epita.fr>
11563
11564 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
11565 (Copyright notice): Update.
11566
115672002-02-11 Akim Demaille <akim@epita.fr>
11568
11569 * tests/regression.at (%nonassoc and eof): Don't include
11570 nonportable headers.
11571
115722002-02-08 Robert Anisko <robert@lrde.epita.fr>
11573
11574 * data/bison.c++: Correct error recovery. Make the user able to
11575 initialize the starting location.
11576
115772002-02-07 Akim Demaille <akim@epita.fr>
11578
11579 * tests/input.at: New.
11580
115812002-02-07 Robert Anisko <robert@lrde.epita.fr>
11582
11583 * data/bison.c++: Replace some direct m4 expansions by constants. Be
11584 more consistent when naming methods and variables. Put preprocessor
11585 directives around tables only needed for debugging.
11586
115872002-02-07 Robert Anisko <robert@lrde.epita.fr>
11588
11589 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
11590 C++ parsers.
11591 (yy::b4_name::parse): Use print_.
11592
115932002-02-07 Robert Anisko <robert@lrde.epita.fr>
11594
11595 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
11596
115972002-02-07 Robert Anisko <robert@lrde.epita.fr>
11598
11599 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
11600 C++ parsers.
11601 (yy::b4_name::parse): Build verbose error messages, and use error_.
11602
116032002-02-06 Robert Anisko <robert@lrde.epita.fr>
11604
11605 * data/bison.c++: Fix m4 quoting in comments.
11606
116072002-02-06 Robert Anisko <robert@lrde.epita.fr>
11608
11609 * data/bison.c++: Adjust the parser code. Fix some muscles that were
11610 not expanded by m4.
11611
116122002-02-05 Akim Demaille <akim@epita.fr>
11613
11614 * data/bison.c++: Adjust to the M4 back end.
11615 More is certainly needed.
11616
116172002-02-05 Akim Demaille <akim@epita.fr>
11618
11619 Give a try to M4 as a back end.
11620
11621 * lib/readpipe.c: New, from wdiff.
11622 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
11623 BISON_HAIRY.
11624 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
11625 specific values. Now it is m4 that performs the lookup.
11626 * src/parse-skel.y: Remove.
11627 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
11628 * src/output.c (actions_output, guards_output)
11629 (token_definitions_output): No longer keeps track of the output
11630 line number, hence remove the second argument.
11631 (guards_output): Check against the guard member of a rule, not the
11632 action member.
11633 Adjust callers.
11634 (output_skeleton): Don't look for the skeleton location, let m4 do
11635 that.
11636 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
11637 file will be used.
11638 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
11639 (prepare): Given that for the time being changesyntax is not
11640 usable in M4, rename the muscles using `-' to `_'.
11641 Define `defines_flag', `output_parser_name' and `output_header_name'.
11642 * src/output.h (actions_output, guards_output)
11643 (token_definitions_output): Adjust prototypes.
11644 * src/scan-skel.l: Instead of scanning the skeletons, it now
11645 processes the output of m4: `__oline__' and `#output'.
11646 * data/bison.simple: Adjust to be used by M4(sugar).
11647 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
11648 to date.
11649 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
11650 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
11651 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
11652 shamelessly stolen from CVS Autoconf.
11653
116542002-02-05 Akim Demaille <akim@epita.fr>
11655
11656 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
11657 * configure.in: Check for the declarations of free and malloc.
11658 * src/muscle_tab.c: Adjust.
11659
116602002-02-05 Akim Demaille <akim@epita.fr>
11661
11662 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
11663 which have no values.
11664
116652002-02-05 Akim Demaille <akim@epita.fr>
11666
11667 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
11668 * data/: here.
11669
116702002-01-29 Paul Eggert <eggert@twinsun.com>
11671
11672 * src/bison.simple (YYSIZE_T): Do not define merely because
11673 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
11674 On some platforms, <alloca.h> does not declare YYSTD (size_t).
11675
116762002-01-27 Akim Demaille <akim@epita.fr>
11677
11678 Fix `%nonassoc and eof'.
11679
11680 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
11681 which were not properly copied! Replace
11682 memcpy (res->errs, src->errs, src->nerrs);
11683 with
11684 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
11685 !!!
11686 * tests/regression.at (%nonassoc and eof): Adjust to newest
11687 Autotest: `.' is not in the PATH.
11688
116892002-01-27 Akim Demaille <akim@epita.fr>
11690
11691 * tests/sets.at (AT_EXTRACT_SETS): New.
11692 (Nullable): Use it.
11693 (Firsts): New.
11694
116952002-01-26 Akim Demaille <akim@epita.fr>
11696
11697 * tests/actions.at, tests/calc.at, tests/headers.at,
11698 * tests/torture.at: Adjust to the newest Autotest which no longer
11699 forces `.' in the PATH.
11700
117012002-01-25 Akim Demaille <akim@epita.fr>
11702
11703 * tests/regression.at (%nonassoc and eof): New.
11704 Suggested by Robert Anisko.
11705
117062002-01-24 Akim Demaille <akim@epita.fr>
11707
11708 Bison dumps core when trying to complain about broken input files.
11709 Reported by Cris van Pelt.
11710
11711 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
11712 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
11713 into...
11714 (Invalid inputs): Strengthen: exercise parse_percent_token.
11715
117162002-01-24 Robert Anisko <robert.anisko@epita.fr>
11717
11718 * src/Makefile.am: Add bison.c++.
11719 * src/bison.c++: New skeleton.
11720
117212002-01-21 Paolo Bonzini <bonzini@gnu.org>
11722
11723 * po/it.po: New.
11724
117252002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
11726
11727 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
11728
117292002-01-20 Marc Autret <marc@gnu.org>
11730
11731 * src/files.c (compute_output_file_names): Fix
11732
117332002-01-20 Marc Autret <marc@gnu.org>
11734
11735 * tests/output.at: New test.
11736 * src/files.c (compute_base_names): Don't map extensions when
11737 the YACC flag is set, use defaults.
11738 Reported by Evgeny Stambulchik.
11739
117402002-01-20 Marc Autret <marc@gnu.org>
11741
11742 * src/system.h: Need to define __attribute__ away for non-GCC
11743 compilers as well (i.e., the vendor C compiler).
11744 Suggested by Albert Chin-A-Young.
11745
117462002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
11747
11748 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
11749 canonical definition.
11750 * src/system.h: Use the canonical definition for PARAMS (avoids
11751 a conflict with the macro from lib/hash.h).
11752
117532002-01-11 Akim Demaille <akim@epita.fr>
11754
11755 * configure.in: Use AC_FUNC_STRNLEN.
11756 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
11757
117582002-01-09 Akim Demaille <akim@epita.fr>
11759
11760 * src/files.c, src/files.h (output_infix): New.
11761 (tab_extension): Remove.
11762 (compute_base_names): Compute the former, drop the latter.
11763 * src/output.c (prepare): Insert the muscles `output-infix', and
11764 `output-suffix'.
11765 * src/parse-skel.y (string, string.1): New.
11766 (section.header): Use it.
11767 (section.yacc): Remove.
11768 (prefix): Remove too.
11769 * src/scan-skel.l: Adjust.
11770 * src/bison.simple, src/bison.hairy: Adjust.
11771
117722002-01-09 Akim Demaille <akim@epita.fr>
11773
11774 * configure.in (WERROR_CFLAGS): Compute it.
11775 * src/Makefile.am (CFLAGS): Pass it.
11776 * tests/atlocal.in (CFLAGS): Idem.
11777 * src/files.c: Fix a few warnings.
11778 (get_extension_index): Remove, unused.
11779
117802002-01-08 Akim Demaille <akim@epita.fr>
11781
11782 * src/getargs.c (AS_FILE_NAME): New.
11783 (getargs): Use it to convert DOSish file names.
11784 * src/files.c (base_name): Rename as full_base_name to avoid
11785 clashes with `base_name ()'.
11786 (filename_split): New.
11787 (compute_base_names): N-th rewrite, using filename_split.
11788
117892002-01-08 Akim Demaille <akim@epita.fr>
11790
11791 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
11792 New, stolen from the Fileutils 4.1.
11793 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
11794 * configure.in: Check for the presence of memrchr, and of its
11795 prototype.
11796
117972002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
11798
11799 * lib/hash.h (__P): Added definition for this macro.
11800 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
11801 BUILT_SOURCES, to ensure they are generated first.
11802 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
11803 %error-verbose to allow bootstrapping with bison 1.30x.
11804
118052002-01-06 Akim Demaille <akim@epita.fr>
11806
11807 * src/reader.c (parse_braces): Don't fetch the next char, the
11808 convention is to fetch on entry.
11809 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
11810 'switch' without a following semicolon.
11811 * tests/regression.at (braces parsing): New.
11812
118132002-01-06 Akim Demaille <akim@epita.fr>
11814
11815 Bison is dead wrong in its RR conflict reports.
11816
11817 * tests/torture.at (GNU Cim Grammar): New.
11818 * src/conflicts.c (count_rr_conflicts): Fix.
11819
118202002-01-06 Akim Demaille <akim@epita.fr>
11821
11822 Creating package.m4 from configure.ac causes too many problems.
11823
11824 * tests/Makefile.am (package.m4): Create it by hand,
11825 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
11826
118272002-01-06 Akim Demaille <akim@epita.fr>
11828
11829 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
11830 skeleton.h.
11831
118322002-01-04 Paul Eggert <eggert@twinsun.com>
11833
11834 * doc/bison.texinfo (Debugging):
11835 Remove YYSTDERR; it's no longer defined or used.
11836 Also, s/cstdio.h/cstdio/.
11837
118382002-01-03 Akim Demaille <akim@epita.fr>
11839
11840 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
11841
118422002-01-03 Akim Demaille <akim@epita.fr>
11843
11844 * src/parse-skel.y (process_skeleton): Don't bind the parser's
11845 tracing code to --trace, wait for a better --trace option, with
11846 args.
11847
118482002-01-03 Akim Demaille <akim@epita.fr>
11849
11850 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
11851 The ISO C++ standard is extremely clear about it: stderr is
11852 considered a macro, not a regular symbol (see table 94 `Header
11853 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
11854 Therefore std:: does not apply to it. It still does with fprintf.
11855 Also, s/cstdio.h/cstdio/.
11856
118572002-01-03 Akim Demaille <akim@epita.fr>
11858
11859 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
11860 for non system headers.
11861
118622002-01-02 Akim Demaille <akim@epita.fr>
11863
11864 Equip the skeleton chain with location tracking, runtime trace,
11865 pure parser and scanner.
11866
11867 * src/parse-skel.y: Request a pure parser, locations, and prefix
11868 renaming.
11869 (%union): Having several members with the same type does not help
11870 type mismatches, simplify.
11871 (YYPRINT, yyprint): New.
11872 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
11873 (skel_error): this.
11874 Handle locations.
11875 * src/scan-skel.l: Adjust to these changes.
11876 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
11877 (LOCATION_PRINT, skel_control_t): New.
11878
118792001-12-30 Akim Demaille <akim@epita.fr>
11880
11881 * src/parse-skel.y: Get rid of the shift/reduce conflict:
11882 replace `gb' with BLANKS.
11883 * src/scan-skel.l: Adjust.
11884
118852001-12-30 Akim Demaille <akim@epita.fr>
11886
11887 * src/system.h: We don't need nor want bcopy.
11888 Throw away MS-DOS crap: we don't need getpid.
11889 * configure.in: We don't need strndup. It was even causing
11890 problems: because Flex includes the headers *before* us,
11891 _GNU_SOURCE is not defined by config.h, and therefore strndup was
11892 not visible.
11893 * lib/xstrndup.c: New.
11894 * src/scan-skel.l: Use it.
11895 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
11896 * src/parse-skel.y: Use %directives instead of #defines.
11897
118982001-12-30 Akim Demaille <akim@epita.fr>
11899
11900 * src/skeleton.h: New.
11901 * src/output.c (output_parser, output_master_parser): Remove, dead
11902 code.
11903 * src/output.h (get_lines_number, actions_output, guards_output)
11904 (token_definitions_output): Prototype them.
11905 * src/parse-skel.y: Add the license notice.
11906 Include output.h and skeleton.h.
11907 (process_skeleton): Returns void, and takes a single parameter.
11908 * src/scan-skel.l: Add the license notice.
11909 Include skeleton.h.
11910 Don't use %option yylineno: it seems that then Flex imagines
11911 REJECT has been used, and therefore it won't reallocate its
11912 buffers (which makes no other sense to me than a bug). It results
11913 in warnings for `unused: yy_flex_realloc'.
11914
119152001-12-30 Robert Anisko <robert.anisko@epita.fr>
11916
11917 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11918 (MUSCLE_INSERT_PREFIX): ...to there.
11919 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11920 (MUSCLE_INSERT_PREFIX): Move from here...
11921
11922 * src/bison.hairy: Add a section directive. Put braces around muscle
11923 names. This parser skeleton is still broken, but Bison should not
11924 choke on a bad muscle 'syntax'.
11925 * src/bison.simple: Add a section directive. Put braces around muscle
11926 names.
11927
11928 * src/files.h (strsuffix, stringappend): Add declarations.
11929 (tab_extension): Add declaration.
11930 (short_base_name): Add declaration.
11931
11932 * src/files.c (strsuffix, stringappend): No longer static. These
11933 functions are used in the skeleton parser.
11934 (tab_extension): New.
11935 (compute_base_names): Use the computations done in this function
11936 to guess if the generated parsers should have '.tab' in their
11937 names.
11938 (short_base_name): No longer static.
11939
11940 * src/output.c (output_skeleton): New.
11941 (output): Disable call to output_master_parser, and give a try to
11942 a new skeleton handling system.
11943 (guards_output, actions_output): No longer static.
11944 (token_definitions_output, get_lines_number): No longer static.
11945
11946 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
11947
11948 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
11949 parse-skel.y.
11950
11951 * src/parse-skel.y: New file.
11952 * src/scan-skel.l: New file.
11953
119542001-12-29 Akim Demaille <akim@epita.fr>
11955
11956 %name-prefix is broken.
11957
11958 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
11959 Adjust all dependencies.
11960 * tests/headers.at (export YYLTYPE): Strengthen this test: use
11961 %name-prefix.
11962
11963 Renaming yylval but not yylloc is not consistent. Now we do.
11964
11965 * src/bison.simple: Prefix yylloc if used.
11966 * doc/bison.texinfo (Decl Summary): Document that.
11967
119682001-12-29 Akim Demaille <akim@epita.fr>
11969
11970 * doc/bison.texinfo: Promote `%long-directive' over
11971 `%long_directive'.
11972 Remove all references to fixed-output-files, yacc is enough.
11973
119742001-12-29 Akim Demaille <akim@epita.fr>
11975
11976 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
11977 user prologue. These are defaults.
11978 * tests/actions.at (Mid-rule actions): Make sure the user can
11979 define YYDEBUG and YYERROR_VERBOSE.
11980
119812001-12-29 Akim Demaille <akim@epita.fr>
11982
11983 * src/output.c (header_output): Don't forget to export YYLTYPE and
11984 yylloc.
11985 * tests/headers.at (export YYLTYPE): New, make sure it does.
11986 * tests/regression.at (%union and --defines, Invalid CPP headers):
11987 Move to...
11988 * tests/headers.at: here.
11989
119902001-12-29 Akim Demaille <akim@epita.fr>
11991
11992 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
11993
119942001-12-29 Akim Demaille <akim@epita.fr>
11995
11996 * tests/actions.at (Mid-rule actions): Output on a single line
11997 instead of several.
11998
119992001-12-29 Akim Demaille <akim@epita.fr>
12000
12001 * doc/bison.texinfo: Formatting changes.
12002
120032001-12-29 Akim Demaille <akim@epita.fr>
12004
12005 Don't store the token defs in a muscle, just be ready to output it
12006 on command. Now possible via `symbols'. Fixes a memory leak.
12007
12008 * src/output.c (token_definitions_output): New.
12009 (output_parser, header_output): Use it.
12010 * src/reader.c (symbols_save): Remove.
12011
120122001-12-29 Akim Demaille <akim@epita.fr>
12013
12014 * src/bison.simple: Do not provide a default for YYSTYPE and
12015 YYLTYPE before the user's prologue. Otherwise it's hardly... a
12016 default.
12017
120182001-12-29 Akim Demaille <akim@epita.fr>
12019
12020 Mid-rule actions are simply... ignored!
12021
12022 * src/reader.c (readgram): Be sure to attach mid-rule actions to
12023 the empty-rule associated to the dummy symbol, not to the host
12024 rule.
12025 * tests/actions.at (Mid-rule actions): New.
12026
120272001-12-29 Akim Demaille <akim@epita.fr>
12028
12029 Memory leak.
12030
12031 * src/reader.c (reader): Free grammar.
12032
120332001-12-29 Akim Demaille <akim@epita.fr>
12034
12035 Memory leak.
12036
12037 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
12038 since it allocates it for each state, although only one is needed.
12039 (allocate_storage): Do it here.
12040
120412001-12-29 Akim Demaille <akim@epita.fr>
12042
12043 * src/options.h, src/options.c (create_long_option_table): Rename
12044 as...
12045 (long_option_table_new): this, with a clearer prototype.
12046 (percent_table): Remove, unused,
12047 * src/getargs.c (getargs): Adjust.
12048
120492001-12-29 Akim Demaille <akim@epita.fr>
12050
12051 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
12052 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
12053 as states.
12054
120552001-12-29 Akim Demaille <akim@epita.fr>
12056
12057 * src/lalr.c (build_relations): Rename `states' as `states1'.
12058 Sorry, I don't understand exactly what it is, no better name...
12059
120602001-12-29 Akim Demaille <akim@epita.fr>
12061
12062 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
12063 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
12064 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
12065 as rules.
12066
120672001-12-29 Akim Demaille <akim@epita.fr>
12068
12069 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
12070 ago.
12071
120722001-12-29 Akim Demaille <akim@epita.fr>
12073
12074 * src/reader.c, src/reader.h (user_toknums): Remove.
12075 Adjust all users to use symbols[i]->user_token_number.
12076
120772001-12-29 Akim Demaille <akim@epita.fr>
12078
12079 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
12080 Adjust all users to use symbols[i]->prec or ->assoc.
12081
120822001-12-29 Akim Demaille <akim@epita.fr>
12083
12084 * src/reader.c, src/reader.h (tags): Remove.
12085 Adjust all users to use symbols[i]->tag.
12086
120872001-12-29 Akim Demaille <akim@epita.fr>
12088
12089 * src/gram.h, src/gram.c (symbols): New, similar to state_table
12090 and rule_table.
12091 * src/reader.c (packsymbols): Fill this table.
12092 Drop sprec.
12093 * src/conflicts.c (resolve_sr_conflict): Adjust.
12094 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
12095 single table.
12096 Use symbols[i]->tag instead of tags[i].
12097
120982001-12-29 Akim Demaille <akim@epita.fr>
12099
12100 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
12101 In addition, put a comment in there, to replace...
12102 * tests/regression.at (%union and C comments): Remove.
12103
121042001-12-29 Akim Demaille <akim@epita.fr>
12105
12106 * tests/regression.at (Web2c Actions): Blindly move the actual
12107 output as expected output. The contents *seem* right to me, but I
12108 can't pretend reading perfectly parser tables... Nonetheless, all
12109 the other tests pass correctly, the table look OK, even though the
12110 presence of `$axiom' is to be noted: AFAICS it is useless (but
12111 harmless).
12112
121132001-12-29 Akim Demaille <akim@epita.fr>
12114
12115 * src/reader.c (readgram): Don't add the rule 0 if there were no
12116 rules read. In other words, add it _after_ having performed
12117 grammar sanity checks.
12118 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
12119
121202001-12-29 Akim Demaille <akim@epita.fr>
12121
12122 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
12123 visible, and some states have now a different number.
12124
121252001-12-29 Akim Demaille <akim@epita.fr>
12126
12127 * src/reader.c (readgram): Bind the initial rule's lineno to that
12128 of the first rule.
12129 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
12130 (Solved SR Conflicts): Adjust rule 0's line number.
12131
121322001-12-29 Akim Demaille <akim@epita.fr>
12133
12134 Fix the `GAWK Grammar' failure.
12135
12136 * src/LR0.c (final_state): Initialize to -1 so that we do compute
12137 the reductions of the first state which was mistakenly confused
12138 with the final state because precisely final_state was initialized
12139 to 0.
12140 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
12141 now noticed by Bison.
12142 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
12143 have a reduction on $default.
12144
121452001-12-29 Akim Demaille <akim@epita.fr>
12146
12147 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
12148 rule line numbers.
12149 * src/closure.c (print_closure): Likewise.
12150 * src/derives.c (print_derives): Likewise.
12151 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
12152 now.
12153
121542001-12-29 Akim Demaille <akim@epita.fr>
12155
12156 * src/lalr.c (lookaheads_print): New.
12157 (lalr): Call it when --trace-flag.
12158 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
12159 are dumped.
12160
121612001-12-29 Akim Demaille <akim@epita.fr>
12162
12163 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
12164 when walking through ritem, even via rule->rhs.
12165 * src/reduce.c (dump_grammar, useful_production, reduce_output)
12166 (useful_production, useless_nonterminals): Likewise.
12167 (reduce_grammar_tables): Likewise, plus update nritems.
12168 * src/nullable.c (set_nullable): Likewise.
12169 * src/lalr.c (build_relations): Likewise.
12170 * tests/sets.at (Nullable): Adjust.
12171 Fortunately, now, the $axiom is no longer nullable.
12172
121732001-12-29 Akim Demaille <akim@epita.fr>
12174
12175 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
12176 the 0-sentinel.
12177 * src/gram.c (ritem_longest_rhs): Likewise.
12178 * src/reduce.c (nonterminals_reduce): Likewise.
12179 * src/print_graph.c (print_graph): Likewise.
12180 * src/output.c (output_rule_data): Likewise.
12181 * src/nullable.c (set_nullable): Likewise.
12182
121832001-12-29 Akim Demaille <akim@epita.fr>
12184
12185 * src/output.c: Comment changes.
12186
121872001-12-27 Paul Eggert <eggert@twinsun.com>
12188
12189 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
12190 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
12191 Sparc, as they were causing more porting problems than the
12192 (minor) performance improvement was worth.
12193
12194 Also, catch up with 1.31's YYSTD.
12195
121962001-12-27 Akim Demaille <akim@epita.fr>
12197
12198 * src/output.c (output_gram): Rely on nritems, not the
12199 0-sentinel. See below.
12200 Use -1 as separator, not 0.
12201 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
12202 Rely on -1 as separator in yyrhs, instead of 0.
12203 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
12204 twice `Now at end of input', therefore there are two lines less to
12205 expect.
12206
122072001-12-27 Akim Demaille <akim@epita.fr>
12208
12209 * tests/regression.at (Unresolved SR Conflicts):
12210 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
12211 below.
12212
122132001-12-27 Akim Demaille <akim@epita.fr>
12214
12215 * src/LR0.c (new_state): Recognize the final state by the fact it
12216 is reached by eoftoken.
12217 (insert_start_shifting_state, insert_eof_shifting_state)
12218 (insert_accepting_state, augment_automaton): Remove, since now
12219 these states are automatically computed from the initial state.
12220 (generate_states): Adjust.
12221 * src/print.c: When reporting a rule number to the user, substract
12222 1, so that the axiom rule is rule 0, and the first user rule is 1.
12223 * src/reduce.c: Likewise.
12224 * src/print_graph.c (print_core): For the time being, just as for
12225 the report, depend upon --trace-flags to dump the full set of
12226 items.
12227 * src/reader.c (readgram): Once the grammar read, insert the rule
12228 0: `$axiom: START-SYMBOL $'.
12229 * tests/set.at: Adjust: rule 0 is now displayed, and since the
12230 number of the states has changed (the final state is no longer
12231 necessarily the last), catch up.
12232
122332001-12-27 Akim Demaille <akim@epita.fr>
12234
12235 Try to make the use of the eoftoken valid. Given that its value
12236 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
12237 is used instead of > 0 where appropriate, (ii), depend upon nritems
12238 instead of the 0-sentinel.
12239
12240 * src/gram.h, src/gram.c (nritems): New.
12241 Expected to be duplication of nitems, but for the time being...
12242 * src/reader.c (packgram): Assert nritems and nitems are equal.
12243 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
12244 * src/closure.c (print_closure, print_fderives): Likewise.
12245 * src/gram.c (ritem_print): Likewise.
12246 * src/print.c (print_core, print_grammar): Likewise.
12247 * src/print_graph.c: Likewise.
12248
122492001-12-27 Akim Demaille <akim@epita.fr>
12250
12251 * src/main.c (main): If there are complains after grammar
12252 reductions, then output the report anyway if requested, then die.
12253 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
12254 * src/reader.c (eoftoken): New.
12255 (parse_token_decl): If the token being defined has value `0', it
12256 is the eoftoken.
12257 (packsymbols): No longer hack `tags' to insert `$' by hand.
12258 Be sure to preserve the value of the eoftoken.
12259 (reader): Make sure eoftoken is defined.
12260 Initialize nsyms to 0: now eoftoken is created just like the others.
12261 * src/print.c (print_grammar): Don't special case the eof token.
12262 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
12263 lie anyway, albeit pleasant.
12264 * tests/calc.at: Exercise error messages with eoftoken.
12265 Change the grammar so that empty input is invalid.
12266 Adjust expectations.
12267 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
12268
122692001-12-27 Akim Demaille <akim@epita.fr>
12270
12271 * configure.in: Check the protos of strchr ans strspn.
12272 Replace strchr if needed.
12273 * src/system.h: Provide the protos of strchr, strspn and memchr if
12274 missing.
12275 * lib/strchr.c: New.
12276 * src/reader.c (symbols_save): Use strchr.
12277
122782001-12-27 Akim Demaille <akim@epita.fr>
12279
12280 * src/print.c, src/print_graph.c (escape): New.
12281 Use it to quote the TAGS outputs.
12282 * src/print_graph.c (print_state): Now errors are in red, and
12283 reductions in green.
12284 Prefer high to wide: output the state number on a line of its own.
12285
122862001-12-27 Akim Demaille <akim@epita.fr>
12287
12288 * src/state.h, src/state.c (reductions_new): New.
12289 * src/LR0.c (set_state_table): Let all the states have a
12290 `reductions', even if reduced to 0.
12291 (save_reductions): Adjust.
12292 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
12293 * src/print.c (print_reductions, print_actions): Adjust.
12294 * src/output.c (action_row): Adjust.
12295
122962001-12-27 Akim Demaille <akim@epita.fr>
12297
12298 * src/state.h, src/state.c (errs_new, errs_dup): New.
12299 * src/LR0.c (set_state_table): Let all the states have an errs,
12300 even if reduced to 0.
12301 * src/print.c (print_errs, print_reductions): Adjust.
12302 * src/output.c (output_actions, action_row): Adjust.
12303 * src/conflicts.c (resolve_sr_conflict): Adjust.
12304
123052001-12-27 Akim Demaille <akim@epita.fr>
12306
12307 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
12308
123092001-12-27 Akim Demaille <akim@epita.fr>
12310
12311 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
12312 * src/print.c: here.
12313 (lookaheadset, shiftset): New, used as additional storage by
12314 print_reductions.
12315 (print_results): Adjust.
12316 (print_shifts, print_gotos, print_errs): New, extracted from...
12317 (print_actions): here.
12318 * src/print_graph.c (print_actions): Remove dead code.
12319
123202001-12-27 Akim Demaille <akim@epita.fr>
12321
12322 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
12323 `$n' and `@n'.
12324
123252001-12-27 Akim Demaille <akim@epita.fr>
12326
12327 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
12328 (build_relations): Adjust.
12329
123302001-12-27 Akim Demaille <akim@epita.fr>
12331
12332 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
12333 duplication.
12334
123352001-12-27 Akim Demaille <akim@epita.fr>
12336
12337 * src/reader.c (packgram): Catch nitems overflows.
12338
123392001-12-27 Akim Demaille <akim@epita.fr>
12340
12341 * src/files.c, src/files.h (guard_obstack): Remove.
12342 * src/output.c (output): Adjust.
12343 * src/reader.c (parse_braces): New, factoring...
12344 (copy_action, copy_guard): these two which are renamed as...
12345 (parse_action, parse_guard): these.
12346 As a voluntary consequence, using braces around guards is now
12347 mandatory.
12348
123492001-12-27 Akim Demaille <akim@epita.fr>
12350
12351 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
12352 * src/reader.c (symbol_list): `guard' and `guard_line' are new
12353 members.
12354 (symbol_list_new): Adjust.
12355 (copy_action): action_line is the first line, not the last.
12356 (copy_guard): Just as for actions, store the `action' only, not
12357 the switch/case/break flesh.
12358 Don't parse the user action that might follow the guard, let...
12359 (readgram): do it, i.e., now, there can be an action after a
12360 guard.
12361 In other words the guard is just explicitly optional.
12362 (packgram): Adjust.
12363 * src/output.c (guards_output): New.
12364 (output_parser): Call it when needed.
12365 (output): Also free the guard and attrs obstacks.
12366 * src/files.c, src/files.h (obstack_save): Remove.
12367 (output_files): Remove.
12368 As a result, if one needs the former `.act' file, using an
12369 appropriate skeleton which requires actions and guards is now
12370 required.
12371 * src/main.c (main): Adjust.
12372 * tests/semantic.at: New.
12373 * tests/regression.at: Use `input.y' as input file name.
12374 Avoid 8+3 problems by requiring input.c when the test needs the
12375 parser.
12376
123772001-12-27 Akim Demaille <akim@epita.fr>
12378
12379 * src/reader.c (symbol_list_new): Be sure to initialize all the
12380 fields.
12381
123822001-12-27 Akim Demaille <akim@epita.fr>
12383
12384 All the hacks using a final pseudo state are now useless.
12385
12386 * src/LR0.c (set_state_table): state_table holds exactly nstates.
12387 * src/lalr.c (nLA): New.
12388 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
12389 instead of lookaheadsp from the pseudo state (nstate + 1).
12390
123912001-12-27 Akim Demaille <akim@epita.fr>
12392
12393 * src/output.c (action_row, token_actions): Use a state_t instead
12394 of a integer, and nlookaheads instead of the following state's
12395 lookaheadsp.
12396
123972001-12-27 Akim Demaille <akim@epita.fr>
12398
12399 * src/conflicts.c (log_resolution, flush_shift)
12400 (resolve_sr_conflict, set_conflicts, solve_conflicts)
12401 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
12402 (conflicts_print, print_reductions): Use a state_t instead of an
12403 integer when referring to a state.
12404 As much as possible, depend upon nlookaheads, instead of the
12405 `lookaheadsp' member of the following state (since lookaheads of
12406 successive states are successive, the difference between state n + 1
12407 and n served as the number of lookaheads for state n).
12408 * src/lalr.c (add_lookback_edge): Likewise.
12409 * src/print.c (print_core, print_actions, print_state)
12410 (print_results): Likewise.
12411 * src/print_graph.c (print_core, print_actions, print_state)
12412 (print_graph): Likewise.
12413 * src/conflicts.h: Adjust.
12414
124152001-12-27 Akim Demaille <akim@epita.fr>
12416
12417 * src/bison.hairy: Formatting/comment changes.
12418 ANSIfy.
12419 Remove `register' indications.
12420 Add plenty of `static'.
12421
124222001-12-27 Akim Demaille <akim@epita.fr>
12423
12424 * src/output.c (prepare): Drop the muscle `ntbase' which
12425 duplicates ntokens.
12426 * src/bison.simple: Formatting/comment changes.
12427 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
12428 is an undocumented synonym.
12429
124302001-12-22 Akim Demaille <akim@epita.fr>
12431
12432 * src/output.c (output_table_data): Change the prototype to use
12433 `int' for array ranges: some invocations do pass an int, not a
12434 short.
12435 Reported by Wayne Green.
12436
124372001-12-22 Akim Demaille <akim@epita.fr>
12438
12439 Some actions of web2c.y are improperly triggered.
12440 Reported by Mike Castle.
12441
12442 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
12443 * tests/regression.at (Web2c): Rename as...
12444 (Web2c Report): this.
12445 (Web2c Actions): New.
12446
124472001-12-22 Akim Demaille <akim@epita.fr>
12448
12449 Reductions in web2c.y are improperly reported.
12450 Reported by Mike Castle.
12451
12452 * src/conflicts.c (print_reductions): Fix.
12453 * tests/regression.at (Web2c): New.
12454
124552001-12-18 Akim Demaille <akim@epita.fr>
12456
12457 Some host fail on `assert (!"foo")', which expands to
12458 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
12459 Reported by Nelson Beebee.
12460
12461 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
12462 `#define it_succeeded 0' and `assert (it_succeeded)'.
12463
124642001-12-17 Marc Autret <autret_m@epita.fr>
12465
12466 * src/bison.simple: Don't hard code the skeleton line and filename.
12467 * src/output.c (output_parser): Rename 'line' as 'output_line'.
12468 New line counter 'skeleton_line' (skeleton-line muscle).
12469
124702001-12-17 Paul Eggert <eggert@twinsun.com>
12471
12472 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
12473 YYDEBUG must be defined to a nonzero value.
12474
12475 * src/bison.simple (yytname): Do not assume that the user defines
12476 YYDEBUG to a properly parenthesized expression.
12477
124782001-12-17 Akim Demaille <akim@epita.fr>
12479
12480 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
12481 nlookaheads is a new member.
12482 Adjust all users.
12483 * src/lalr.h (nlookaheads): Remove this orphan declaration.
12484 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
12485 state.
12486
124872001-12-17 Akim Demaille <akim@epita.fr>
12488
12489 * src/files.h, src/files.c (open_files, close_files): Remove.
12490 * src/main.c (main): Don't open/close files, nor invoke lex_free,
12491 let...
12492 * src/reader.c (reader): Do it.
12493
124942001-12-17 Akim Demaille <akim@epita.fr>
12495
12496 * src/conflicts.c (print_reductions): Formatting changes.
12497
124982001-12-17 Akim Demaille <akim@epita.fr>
12499
12500 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
12501 (flush_reduce): New.
12502 (resolve_sr_conflict): Adjust.
12503
125042001-12-17 Akim Demaille <akim@epita.fr>
12505
12506 * src/output.c (output_obstack): Be static and rename as...
12507 (format_obstack): this, to avoid any confusion with files.c's
12508 output_obstack.
12509 * src/reader.h (muscle_obstack): Move to...
12510 * src/output.h: here, since it's defined in output.c.
12511
125122001-12-17 Akim Demaille <akim@epita.fr>
12513
12514 * src/output.c (action_row, save_column, default_goto)
12515 (sort_actions, matching_state, pack_vector): Better variable
12516 locality.
12517
125182001-12-17 Akim Demaille <akim@epita.fr>
12519
12520 * src/output.c: Various formatting changes.
12521
125222001-12-17 Akim Demaille <akim@epita.fr>
12523
12524 * src/files.c (output_files): Free the output_obstack.
12525 * src/main.c (main): Call print and print_graph conditionally.
12526 * src/print.c (print): Work unconditionally.
12527 * src/print_graph.c (print_graph): Work unconditionally.
12528 * src/conflicts.c (log_resolution): Output only if verbose_flag.
12529
125302001-12-16 Marc Autret <autret_m@epita.fr>
12531
12532 * src/output.c (actions_output): Fix. When we use %no-lines,
12533 there is one less line per action.
12534
125352001-12-16 Marc Autret <autret_m@epita.fr>
12536
12537 * src/bison.simple: Remove a useless #line directive.
12538 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
12539 * src/output.c (get_lines_number): New.
12540 (output_parser): Adjust, now takes care about the lines of a
12541 output muscles.
12542 Fix line numbering.
12543 (actions_output): Computes the number of lines taken by actions.
12544 (output_master_parser): Insert new skeleton which is the name of
12545 the output parser file name.
12546
125472001-12-15 Marc Autret <autret_m@epita.fr>
12548
12549 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
12550
125512001-12-15 Marc Autret <autret_m@epita.fr>
12552
12553 * src/output.c (output_gram): Keep track of the hairy one.
12554
125552001-12-15 Akim Demaille <akim@epita.fr>
12556
12557 Make `make distcheck' work.
12558
12559 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
12560 system.h which uses libgettext.h.
12561
125622001-12-15 Akim Demaille <akim@epita.fr>
12563
12564 * src/nullable.c (set_nullable): Useless rules must be skipped,
12565 otherwise, since we range over their symbols, we might look at a
12566 nonterminal which no longer ``exists'', i.e., it is not counted in
12567 `nvars', hence we overflow our arrays.
12568
125692001-12-15 Akim Demaille <akim@epita.fr>
12570
12571 The header can also be produced directly, without any obstack!
12572 Yahoo!
12573
12574 * src/files.c, src/files.h (defines_obstack): Remove.
12575 (compute_header_macro): Global.
12576 (defines_obstack_save): Remove.
12577 * src/reader.c (parse_union_decl): No longer output to
12578 defines_obstack: its content can be found in the `stype' muscle
12579 anyway.
12580 (output_token_translations): Merge into...
12581 (symbols_output): this.
12582 Rename as...
12583 (symbols_save): this.
12584 (reader): Adjust.
12585 * src/output.c (header_output): New.
12586 (output): Call it.
12587
125882001-12-15 Akim Demaille <akim@epita.fr>
12589
12590 * src/reader.c (parse_union_decl): Instead of handling two obstack
12591 simultaneously, use one to define the `stype' muscle, and use the
12592 value of the latter to fill defines_obstack.
12593 (copy_comment): Remove.
12594 (copy_comment2): Work for a single obstack.
12595 Rename as...
12596 (copy_comment): this.
12597
125982001-12-15 Akim Demaille <akim@epita.fr>
12599
12600 * src/lex.c, src/lex.h (xgetc): No longer static.
12601 * src/reader.c (parse_union_decl): Revamp.
12602
126032001-12-15 Akim Demaille <akim@epita.fr>
12604
12605 Still making progress in separating Bison into (i) input, (ii)
12606 process, (iii) output: now we can directly output the parser file
12607 without using table_obstack at all.
12608
12609 * src/files.c, src/files.h (table_obstack): Bye bye.
12610 (parser_file_name): New.
12611 * src/files.c (compute_output_file_names): Compute it.
12612 * src/output.c (actions_output, output_parser)
12613 (output_master_parser): To a file instead of an obstack.
12614
126152001-12-15 Akim Demaille <akim@epita.fr>
12616
12617 Attach actions to rules, instead of pre-outputting them to
12618 actions_obstack.
12619
12620 * src/gram.h (rule_t): action and action_line are new members.
12621 * src/reader.c (symbol_list): Likewise.
12622 (copy_action): Save the actions within the rule.
12623 (packgram): Save them in rule_table.
12624 * src/output.c (actions_output): New.
12625 (output_parser): Use it on `%%actions'.
12626 (output_rule_data): Don't free rule_table.
12627 (output): Do it.
12628 (prepare): Don't save the `action' muscle.
12629 * src/bison.simple: s/%%action/%%actions/.
12630
126312001-12-15 Akim Demaille <akim@epita.fr>
12632
12633 * src/reader.c (copy_action): When --yacc, don't append a `;'
12634 to the user action: let it fail if lacking.
12635 Suggested by Arnold Robbins and Tom Tromey.
12636
126372001-12-14 Akim Demaille <akim@epita.fr>
12638
12639 * src/lex.c (literalchar): Simply return the char you decoded, non
12640 longer mess around with obstacks and int pointers.
12641 Adjust all callers.
12642
126432001-12-14 Akim Demaille <akim@epita.fr>
12644
12645 * src/lex.c (literalchar): Don't escape the special characters,
12646 just decode them, and keep them as char (before, eol was output as
12647 the 2 char string `\n' etc.).
12648 * src/output.c (output_rule_data): Use quotearg to output the
12649 token strings.
12650
126512001-12-13 Paul Eggert <eggert@twinsun.com>
12652
12653 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
12654 Do not infringe on the global user namespace when using C++.
12655 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
12656 All uses of `fprintf' and `stderr' changed.
12657
12658 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
12659
126602001-12-13 Akim Demaille <akim@epita.fr>
12661
12662 The computation of nullable is broken: it doesn't handle empty
12663 RHS's properly.
12664
12665 * tests/torture.at (GNU AWK Grammar): New.
12666 * tests/sets.at (Nullable): New.
12667 * src/nullable.c (set_nullable): Instead of blindly looping over
12668 `ritems', loop over the rules, and then over their rhs's.
12669
12670 Work around Autotest bugs.
12671
12672 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
12673 frame, because Autotest understand lines starting with a `+' as
12674 traces from the shell. Then, they are not processed properly.
12675 Admittedly an Autotest bug, but we don't have time to wait for
12676 Autotest to catch up.
12677 * tests/regression.at (Broken Closure): Adjust to the new table
12678 frames.
12679 Move to...
12680 * tests/sets.at: here.
12681
126822001-12-13 Akim Demaille <akim@epita.fr>
12683
12684 * src/closure.c (closure): Use nrules instead of playing tricks
12685 with BITS_PER_WORD.
12686
126872001-12-13 Akim Demaille <akim@epita.fr>
12688
12689 * src/print.c (print_actions): Output the handling of `$' as the
12690 traces do: shifting the token EOF. Before EOF was treated as a
12691 nonterminal.
12692 * tests/regression.at: Adjust some tests.
12693 * src/print_graph.c (print_core): Complete the set of items via
12694 closure. The next-to-final and final states are still unsatisfying,
12695 but that's to be addressed elsewhere.
12696 No longer output the rule numbers, but do output the state number.
12697 A single loop for the shifts + gotos is enough, but picked a
12698 distinct color for each.
12699 (print_graph): Initialize and finalize closure.
12700
127012001-12-13 Akim Demaille <akim@epita.fr>
12702
12703 * src/reader.c (readgram): Remove dead code, an strip useless
12704 braces.
12705 (get_type): Remove, unused.
12706
127072001-12-12 Akim Demaille <akim@epita.fr>
12708
12709 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
12710 on that of lib/error.c.
12711
127122001-12-12 Akim Demaille <akim@epita.fr>
12713
12714 Some hosts don't like `/' in includes.
12715
12716 * src/system.h: Include libgettext.h without qualifying the path.
12717 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
12718 $(top_srcdir).
12719
127202001-12-11 Marc Autret <autret_m@epita.fr>
12721
12722 * src/output.c (output_parser): Remove useless muscle.
12723
127242001-12-11 Marc Autret <autret_m@epita.fr>
12725
12726 * src/bison.simple: Remove #line just before %%epilogue. It
12727 is now handled in ...
12728 * src/reader.c (read_additionnal_code): Add the output of a
12729 #line for the epilogue.
12730
127312001-12-10 Marc Autret <autret_m@epita.fr>
12732
12733 * src/reader.c (copy_definition): Re-use CPP-outed code which
12734 replace precedent remove.
12735 * src/bison.simple: Remove #line before %%prologue because
12736 %%input-line is wrong at this time.
12737
127382001-12-10 Marc Autret <autret_m@epita.fr>
12739
12740 * src/reader.c (symbols_output): Clean up.
12741 * src/output.c (output_gram, output): Clean up.
12742
127432001-12-10 Akim Demaille <akim@epita.fr>
12744
12745 * src/lalr.c (initialize_lookaheads): New. Extracted from...
12746 * src/LR0.c (set_state_table): here.
12747 * src/lalr.c (lalr): Call it.
12748
127492001-12-10 Akim Demaille <akim@epita.fr>
12750
12751 * src/state.h (shifts): Remove the `number' member: shifts are
12752 attached to state, hence no longer need to be labelled with a
12753 state number.
12754
127552001-12-10 Akim Demaille <akim@epita.fr>
12756
12757 Now that states have a complete set of members, the linked list of
12758 shifts is useless: just fill directly the state's shifts member.
12759
12760 * src/state.h (shifts): Remove the `next' member.
12761 * src/LR0.c (first_state, last_state): Remove.
12762 Adjust the callers.
12763 (augment_automaton): Don't look for the shifts that must be added
12764 a shift on EOF: it is those of the state we looked for! But now,
12765 since shifts are attached, it is no longer needed to looking
12766 merely by its id: its number.
12767
127682001-12-10 Akim Demaille <akim@epita.fr>
12769
12770 * src/LR0.c (augment_automaton): Better variable locality.
12771 Remove an impossible branch: if there is a state corresponding to
12772 the start symbol being shifted, then there is shift for the start
12773 symbol from the initial state.
12774
127752001-12-10 Akim Demaille <akim@epita.fr>
12776
12777 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
12778 only when appropriate: when insert_start_shifting_state' is not
12779 invoked.
12780 * tests/regression.at (Rule Line Numbers): Adjust.
12781
127822001-12-10 Akim Demaille <akim@epita.fr>
12783
12784 * src/LR0.c (augment_automaton): Now that all states have shifts,
12785 merge the two cases addition shifts to the initial state.
12786
127872001-12-10 Akim Demaille <akim@epita.fr>
12788
12789 * src/lalr.c (set_state_table): Move to...
12790 * src/LR0.c: here.
12791 * src/lalr.c (lalr): Don't call it...
12792 * src/LR0.c (generate_states): do it.
12793 * src/LR0.h (first_state): Remove, only the table is used.
12794
127952001-12-10 Akim Demaille <akim@epita.fr>
12796
12797 * src/LR0.h (first_shift, first_reduction): Remove.
12798 * src/lalr.c: Don't use first_shift: find shifts through the
12799 states.
12800
128012001-12-10 Akim Demaille <akim@epita.fr>
12802
12803 * src/LR0.c: Attach shifts to states as soon as they are
12804 computed.
12805 * src/lalr.c (set_state_table): Instead of assigning shifts to
12806 state, just assert that the mapping was properly done.
12807
128082001-12-10 Akim Demaille <akim@epita.fr>
12809
12810 * src/LR0.c (insert_start_shift): Rename as...
12811 (insert_start_shifting_state): this.
12812 (insert_eof_shifting_state, insert_accepting_state): New.
12813 (augment_automaton): Adjust.
12814 Better locality of the variables.
12815 When looking if the start_symbol is shifted from the initial
12816 state, using `while (... symbol != start_symbol ...)' sounds
12817 better than `while (... symbol < start_symbol ...)': If fail
12818 to see how the order between symbols could be relevant!
12819
128202001-12-10 Akim Demaille <akim@epita.fr>
12821
12822 * src/getargs.h: Don't declare `spec_name_prefix' and
12823 `spec_file_prefix', declared by src/files.h.
12824 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
12825 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
12826 * src/output.c (prepare): Adjust.
12827 * src/reader.c (symbols_output): Likewise.
12828 * src/vmsgetargs.c: Vaguely adjust, but who cares?
12829
128302001-12-10 Akim Demaille <akim@epita.fr>
12831
12832 * src/muscle_tab.c (muscle_init): NULL is a better default than
12833 `"0"'.
12834
128352001-12-10 Akim Demaille <akim@epita.fr>
12836
12837 * src/reader.c (reader): Calling symbols_output once is enough.
12838
128392001-12-10 Akim Demaille <akim@epita.fr>
12840
12841 Now that states have a complete set of members, the linked list of
12842 reductions is useless: just fill directly the state's reductions
12843 member.
12844
12845 * src/state.h (struct reductions): Remove member `number' and
12846 `next'.
12847 * src/LR0.c (first_reduction, last_reduction): Remove.
12848 (save_reductions): Don't link the new reductions, store them in
12849 this_state.
12850 * src/lalr.c (set_state_table): No need to attach reductions to
12851 states, it's already done.
12852 * src/output.c (output_actions): No longer free the shifts, then
12853 the reductions, then the states: free all the states and their
12854 members.
12855
128562001-12-10 Akim Demaille <akim@epita.fr>
12857
12858 * src/options.c (OPTN, DRTV, BOTH): New.
12859 (option_table): Use them.
12860
12861 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
12862 the job of system.h.
12863 * src/options.c: Don't include stdio.h and xalloc.h for the same
12864 reasons.
12865
128662001-12-10 Akim Demaille <akim@epita.fr>
12867
12868 * src/output.c (output, prepare): Make sure the values of the
12869 muscles `action' and `prologue' are 0-terminated.
12870
128712001-12-10 Akim Demaille <akim@epita.fr>
12872
12873 Clean up GCC warnings.
12874
12875 * src/reader.c (copy_action): `buf' is not used.
12876 (parse_skel_decl): Be static.
12877 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
12878 * src/options.h (create_long_option_table): Have a real prototype.
12879 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
12880 (hash_delete_at): Return const void *.
12881 Adjust casts to preserve the const.
12882
128832001-12-10 Akim Demaille <akim@epita.fr>
12884
12885 * configure.in: Require 2.52g.
12886 M4 is not needed, but AUTOM4TE is.
12887 * m4/m4.m4: Remove.
12888 * tests/Makefile.am: Adjust.
12889
128902001-12-10 Akim Demaille <akim@epita.fr>
12891
12892 One structure for states is enough, even though theoretically
12893 there are LR(0) states and LALR(1) states.
12894
12895 * src/lalr.h (state_t): Remove.
12896 (state_table): Be state_t **, not state_t *.
12897 * src/state.h (core, CORE_ALLOC): Rename as...
12898 (state_t, STATE_ALLOC): this.
12899 Add the LALR(1) members: shifts, reductions, errs.
12900 * src/LR0.c (state_table): Rename as...
12901 (state_hash): this, to avoid name clashes with the global
12902 `state_table'.
12903 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
12904 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
12905
129062001-12-10 Akim Demaille <akim@epita.fr>
12907
12908 Bison dumps core on bash.y.
12909 Reported by Pascal Bart.
12910
12911 * src/warshall.c (bitmatrix_print): New.
12912 (TC): Use it.
12913 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
12914 j must be the outer loop.
12915 * tests/regression.at (Broken Closure): New.
12916
129172001-12-05 Akim Demaille <akim@epita.fr>
12918
12919 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
12920 its argument.
12921 Reported by Peter Hamorsky.
12922
129232001-12-05 Akim Demaille <akim@epita.fr>
12924
12925 * src/conflicts.c (err_table): Remove.
12926 (resolve_sr_conflict): Adjust.
12927 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
12928 Rename as...
12929 (state_t.reductions, state_t.shifts): this.
12930
129312001-12-05 Akim Demaille <akim@epita.fr>
12932
12933 * src/reduce.c (reduce_grammar_tables): No longer disable the
12934 removal of useless rules via CPP but via `if (0)', so that the
12935 compiler still check the code is valid.
12936 For instance, it should have noticed `rline' no longer exists: use
12937 the `line' member of rule_t.
12938 * src/gram.c (dummy, rline): Remove, unused.
12939
129402001-12-05 Akim Demaille <akim@epita.fr>
12941
12942 * src/output.c (pack_vector): Use assert, not berror.
12943 * src/main.c (berror): Remove, unused.
12944
129452001-12-05 Akim Demaille <akim@epita.fr>
12946
12947 New experimental feature: if --verbose --trace output all the
12948 items of a state, not only its kernel.
12949
12950 * src/print.c (print_core): If `trace_flag', then invoke closure
12951 before outputting the items of the state (print_core is no longer
12952 a correct name them).
12953 (print_results): Invoke new_closure/free_closure if needed.
12954
129552001-12-05 Akim Demaille <akim@epita.fr>
12956
12957 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
12958 * src/closure.c, src/closure.h (itemsetsize): Rename as...
12959 (nitemset): for consistency with the rest of the project.
12960
129612001-12-05 Akim Demaille <akim@epita.fr>
12962
12963 * src/closure.c (print_closure): Improve.
12964 (closure): Use it for printing input and output.
12965
129662001-12-05 Akim Demaille <akim@epita.fr>
12967
12968 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
12969 indexed by nonterminals.
12970
129712001-12-05 Akim Demaille <akim@epita.fr>
12972
12973 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
12974 what it was!).
12975 * src/warshall.h: Remove accidental duplication of the content.
12976
129772001-12-05 Akim Demaille <akim@epita.fr>
12978
12979 * src/closure.c (set_fderives): De-obfuscate.
12980
129812001-12-05 Akim Demaille <akim@epita.fr>
12982
12983 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
12984
129852001-12-05 Akim Demaille <akim@epita.fr>
12986
12987 * src/closure.c (set_firsts): De-obfuscate.
12988
129892001-12-05 Akim Demaille <akim@epita.fr>
12990
12991 * src/output.c (action_row): De-obfuscate
12992 using the good o' techniques: arrays not pointers, variable
12993 locality, BITISSET, RESETBIT etc.
12994
129952001-12-05 Akim Demaille <akim@epita.fr>
12996
12997 Pessimize the code to simplify it: from now on, all the states
12998 have a valid SHIFTS, which NSHIFTS is possibly 0.
12999
13000 * src/LR0.c (shifts_new): Be global and move to..
13001 * src/state.c, src/state.h: here.
13002 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
13003 * src/print_graph: Adjust.
13004
130052001-12-05 Akim Demaille <akim@epita.fr>
13006
13007 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
13008 * src/conflicts.c: Use it.
13009 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
13010 incorrectly ``simplified''.
13011
130122001-12-05 Akim Demaille <akim@epita.fr>
13013
13014 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
13015 using the good o' techniques: arrays not pointers, variable
13016 locality, BITISSET, RESETBIT etc.
13017
130182001-12-05 Akim Demaille <akim@epita.fr>
13019
13020 * src/state.h (SHIFT_SYMBOL): New.
13021 * src/conflicts.c: Use it to deobfuscate.
13022
130232001-12-05 Akim Demaille <akim@epita.fr>
13024
13025 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
13026 (print_reductions): De-obfuscate using the good o' techniques:
13027 arrays not pointers, variable locality, BITISSET.
13028
130292001-12-05 Akim Demaille <akim@epita.fr>
13030
13031 * src/conflicts.c (print_reductions): Arrays, not pointers.
13032 Use BITISSET.
13033
130342001-12-05 Akim Demaille <akim@epita.fr>
13035
13036 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13037
130382001-12-05 Akim Demaille <akim@epita.fr>
13039
13040 * src/conflicts.c (print_reductions): Improve variable locality.
13041
130422001-12-05 Akim Demaille <akim@epita.fr>
13043
13044 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13045
130462001-12-05 Akim Demaille <akim@epita.fr>
13047
13048 * src/conflicts.c (print_reductions): Improve variable locality.
13049
130502001-12-05 Akim Demaille <akim@epita.fr>
13051
13052 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
13053 * src/lalr.c: Use them.
13054
130552001-12-05 Akim Demaille <akim@epita.fr>
13056
13057 * src/LR0.c (augment_automaton): Formatting changes.
13058 Better variable locality.
13059
130602001-12-05 Akim Demaille <akim@epita.fr>
13061
13062 * src/lalr.c (matrix_print): New.
13063 (transpose): Use it.
13064 Use arrays instead of pointers.
13065
130662001-12-05 Akim Demaille <akim@epita.fr>
13067
13068 * src/lalr.c (maxrhs): Move to...
13069 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
13070 * src/lalr.c (build_relations): Adjust.
13071
130722001-12-05 Akim Demaille <akim@epita.fr>
13073
13074 * src/lalr.c (transpose): Free the memory allocated to the
13075 argument, as it is replaced by the results by the unique caller.
13076 (build_relations): Merely invoke transpose: it handles the memory
13077 deallocation.
13078 Improve variable locality.
13079 Avoid variables used as mere abbreviations.
13080 (compute_lookaheads): Use arrays instead of pointers.
13081
130822001-12-05 Akim Demaille <akim@epita.fr>
13083
13084 * src/lalr.c (initialize_F): Improve variable locality.
13085 Avoid variables used as mere abbreviations.
13086
130872001-12-05 Akim Demaille <akim@epita.fr>
13088
13089 * src/derives.c (print_derives): Display the ruleno.
13090 * src/lalr.c (initialize_F, transpose): Better variable locality
13091 to improve readability.
13092 Avoid variables used as mere abbreviations.
13093
130942001-12-05 Akim Demaille <akim@epita.fr>
13095
13096 * src/lalr.c (traverse): Use arrays instead of pointers.
13097
130982001-12-05 Akim Demaille <akim@epita.fr>
13099
13100 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
13101 the handling of squeue.
13102 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13103
131042001-12-05 Akim Demaille <akim@epita.fr>
13105
13106 Because useless nonterminals are now kept alive (instead of being
13107 `destroyed'), we now sometimes examine them, and store information
13108 related to them. Hence we need to know their number, and adjust
13109 memory allocations.
13110
13111 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
13112 static.
13113 * src/LR0.c (allocate_itemsets): The memory allocated to
13114 `symbol_count' was used for two different purpose: once to count
13115 the number of occurrences of each symbol, and later reassigned to
13116 `shift_symbol', containing the symbol that can be shifted from a
13117 given state.
13118 Deobfuscate, i.e., allocate, use and free `symbol_count' here
13119 only, and...
13120 (new_itemsets): Allocate `shift_symbol' here.
13121 (allocate_itemsets): symbol_count includes useless nonterminals.
13122 Make room for them.
13123 (free_storage): Use `free', not `XFREE', for pointers that cannot
13124 be null.
13125
131262001-12-05 Akim Demaille <akim@epita.fr>
13127
13128 * src/nullable.c (set_nullable): Deobfuscate the handling of
13129 ritem.
13130 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13131
131322001-12-05 Akim Demaille <akim@epita.fr>
13133
13134 * src/gram.c, src/gram.h (ritem_print): New.
13135 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
13136 (This useless function was defined only to work around VMS linkers
13137 that can't handle compilation units with variables only).
13138 * src/reduce.c (dump_grammar): Use it to trace the construction of
13139 ritem.
13140
131412001-12-04 Paul Eggert <eggert@twinsun.com>
13142
13143 * src/bison.simple (union yyalloc): Change member names
13144 to be the same as the stack names.
13145 (yyparse): yyptr is now union yyalloc *, not char *.
13146 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
13147 and may generate better code on some machines.
13148 (yystpcpy): Use prototype if __STDC__ is defined, not just
13149 if __cplusplus is defined.
13150
131512001-11-30 Akim Demaille <akim@epita.fr>
13152
13153 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
13154 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
13155 Gettext doesn't compile cleanly, and dies with -Werror.
13156 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
13157 Include WARNING_CFLAGS here.
13158 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
13159 before being defined.
13160
131612001-11-27 Paul Eggert <eggert@twinsun.com>
13162
13163 * lib/quotearg.h (quotearg_n, quotearg_n_style):
13164 First arg is int, not unsigned.
13165 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
13166 (SIZE_MAX, UINT_MAX): New macros.
13167 (quotearg_n_options): Abort if N is negative.
13168 Avoid overflow check on hosts where size_t is 64 bits and int
13169 is 32 bits, as overflow is impossible there.
13170 Fix off-by-one typo that caused unnecessary reallocation.
13171
131722001-11-29 Paul Eggert <eggert@twinsun.com>
13173
13174 Name space cleanup in generated parser.
13175
13176 * doc/bison.texinfo (Bison Parser): Discuss system headers
13177 and their effect on the user name space.
13178
13179 * src/bison.simple:
13180 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
13181 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
13182 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
13183
13184 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
13185 on user names when possible.
13186
13187 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
13188 Simplify test for whather <alloca.h> exists.
13189
13190 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
13191
13192 (<stdio.h>): Include if YYDEBUG.
13193
13194 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
13195 ! defined (yyoverflow) && ! defined (yymemcpy).
13196
13197 (yymemcpy, yyparse): Rename local variables as needed so that
13198 they all begin with 'yy'.
13199
13200 (yystrlen, yystpcpy): New functions.
13201
13202 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
13203 All uses changed.
13204
13205 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
13206 instead of relying on string.h functions. Use YYSTACK_ALLOC
13207 and YYSTACK_FREE instead of malloc and free.
13208
132092001-11-30 Akim Demaille <akim@epita.fr>
13210
13211 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
13212 before their first uses.
13213 (YYBISON, YYPURE): Move to the top of the output.
13214
132152001-11-30 Akim Demaille <akim@epita.fr>
13216
13217 * tests/reduce.at (Useless Nonterminals): Fix.
13218
132192001-11-30 Akim Demaille <akim@epita.fr>
13220
13221 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
13222 if body instead of `;' to pacify GCC's warnings.
13223
132242001-11-30 Akim Demaille <akim@epita.fr>
13225
13226 Instead of mapping the LHS of unused rules to -1, keep the LHS
13227 valid, but flag the rules as invalid.
13228
13229 * src/gram.h (rule_t): `useful' is a new member.
13230 * src/print.c (print_grammar): Adjust.
13231 * src/derives.c (set_derives): Likewise.
13232 * src/reader.c (packgram, reduce_output): Likewise.
13233 * src/reduce.c (reduce_grammar_tables): Likewise.
13234 * tests/reduce.at (Underivable Rules, Useless Rules): New.
13235
132362001-11-30 Akim Demaille <akim@epita.fr>
13237
13238 * src/reduce.c (reduce_output): Formatting changes.
13239 * src/print.c (print_results, print_grammar): Likewise.
13240 * tests/regression.at (Rule Line Numbers)
13241 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
13242
132432001-11-30 Akim Demaille <akim@epita.fr>
13244
13245 * src/reduce.c (nonterminals_reduce): Instead of throwing away
13246 useless nonterminals, move them at the end of the symbol arrays.
13247 (reduce_output): Adjust.
13248 * tests/reduce.at (Useless Nonterminals): Adjust.
13249
132502001-11-30 Akim Demaille <akim@epita.fr>
13251
13252 * src/reduce.c: Various comment/formatting changes.
13253 (nonterminals_reduce): New, extracted from...
13254 (reduce_grammar_tables): here.
13255 (reduce_grammar): Call nonterminals_reduce.
13256
132572001-11-29 Paul Eggert <eggert@twinsun.com>
13258
13259 * src/bison.simple (YYSTACK_REALLOC): Remove.
13260 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
13261 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
13262 New macros.
13263 (union yyalloc): New type.
13264 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
13265 an arbitrary restriction on hosts where size_t is wider than int.
13266
13267 (yyparse): Don't dump core if alloca or malloc fails; instead, report
13268 a parser stack overflow. Allocate just one block of memory for all
13269 three stacks, instead of allocating three blocks; this typically is
13270 faster and reduces fragmentation.
13271
13272 Do not limit the number of items in the stack to a value that fits
13273 in 'int', as this is an arbitrary limit on hosts with 64-bit
13274 size_t and 32-bit int.
13275
132762001-11-29 Marc Autret <autret_m@epita.fr>
13277
13278 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
13279 of defining YYERROR_VERBOSE.
13280 [AT_DATA]: $4 is now out of C declarations in the prologue.
13281
132822001-11-28 Marc Autret <autret_m@epita.fr>
13283
13284 * src/reader.c (parse_dquoted_param): New.
13285 (parse_skel_decl): Use it.
13286 * src/lex.h: Add its prototype.
13287 * src/lex.c (literalchar): Become not static.
13288
132892001-11-28 Marc Autret <autret_m@epita.fr>
13290
13291 * src/output.h: And put its extern declaration here.
13292 * src/output.c (error_verbose): Define here.
13293 (prepare): Echo name modification.
13294 * src/getargs.h: Clean its extern declaration.
13295 * src/getargs.c (error_verbose_flag): Remove.
13296 (getargs): Remove case 'e'.
13297 * src/options.c (option_table): 'error-verbose' is now seen as simple
13298 percent option.
13299 Include output.h.
13300
13301 * src/reader.c (read_declarations): Remove case tok_include.
13302 (parse_include_decl): Remove.
13303 * src/lex.h (token_t): Remove tok_include.
13304 * src/options.c (option_table): 'include' is now a simple command line
13305 option.
13306
133072001-11-28 Marc Autret <autret_m@epita.fr>
13308
13309 * src/bison.simple: Adjust muscle names.
13310 * src/muscle_tab.c (muscle_init): Also rename the muscles.
13311 * src/output.c (prepare): s/_/-/ for the muscles names.
13312 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
13313
133142001-11-28 Marc Autret <autret_m@epita.fr>
13315
13316 * src/bison.simple: Fix debug.
13317 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
13318
133192001-11-28 Akim Demaille <akim@epita.fr>
13320
13321 * src/LR0.c (shifts_new): New.
13322 (save_shifts, insert_start_shift, augment_automaton): Use it.
13323
133242001-11-28 Akim Demaille <akim@epita.fr>
13325
13326 * src/closure.c (closure): `b' and `ruleno' denote the same value:
13327 keep ruleno only.
13328
133292001-11-28 Akim Demaille <akim@epita.fr>
13330
13331 * src/closure.c (closure): Instead of looping over word in array
13332 then bits in words, loop over bits in array.
13333
133342001-11-28 Akim Demaille <akim@epita.fr>
13335
13336 * src/closure.c (closure): No longer optimize the special case
13337 where all the bits of `ruleset[r]' are set to 0, to make the code
13338 clearer.
13339
133402001-11-28 Akim Demaille <akim@epita.fr>
13341
13342 * src/closure.c (closure): `r' and `c' are new variables, used to
13343 de-obfuscate accesses to RULESET and CORE.
13344
133452001-11-28 Akim Demaille <akim@epita.fr>
13346
13347 * src/reduce.c (reduce_print): Use ngettext.
13348 (dump_grammar): Improve the trace accuracy.
13349
133502001-11-28 Akim Demaille <akim@epita.fr>
13351
13352 * src/reduce.c (dump_grammar): Don't translate trace messages.
13353
133542001-11-28 Akim Demaille <akim@epita.fr>
13355
13356 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
13357 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
13358 as all tags are free'ed afterwards.
13359 From Enrico Scholz.
13360
133612001-11-27 Paul Eggert <eggert@twinsun.com>
13362
13363 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
13364 use alloca when we didn't want to, and vice versa.
13365
133662001-11-27 Marc Autret <autret_m@epita.fr>
13367
13368 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
13369 initialization.
13370 * src/output.c (prepare): Remove its update.
13371
133722001-11-27 Marc Autret <autret_m@epita.fr>
13373
13374 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
13375 Use %error-verbose.
13376
133772001-11-27 Marc Autret <autret_m@epita.fr>
13378
13379 * src/bison.simple: Remove YYERROR_VERBOSE using.
13380 Use %%error_verbose.
13381 (yyparse): Likewise.
13382 * src/output.c (prepare): Give its final value.
13383 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
13384 * src/getargs.h: Add its extern declaration.
13385 * src/getargs.c (error_verbose_flag): New int.
13386 (getargs): Update to catch new case.
13387 * src/options.c (option_table): 'error-verbose' is a new option.
13388 (shortopts): Update.
13389
133902001-11-27 Akim Demaille <akim@epita.fr>
13391
13392 * src/system.h: Use intl/libgettext.h.
13393 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
13394
133952001-11-27 Akim Demaille <akim@epita.fr>
13396
13397 * tests/torture.at (Exploding the Stack Size with Malloc):
13398 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
13399
134002001-11-27 Akim Demaille <akim@epita.fr>
13401
13402 * src/files.c: Include error.h.
13403 Reported by Hans Aberg.
13404
134052001-11-26 Marc Autret <autret_m@epita.fr>
13406
13407 * src/reader.c (parse_include_decl): New, not yet implemented.
13408 (read_declarations): Add case tok_include.
13409 * src/getargs.h (include): Add its extern definition.
13410 * src/getargs.c (include): New const char *.
13411 (getargs): Add case '-I'.
13412 * src/options.c (option_table): Add include as command line and
13413 percent option.
13414 * src/lex.h (token_t): Add tok_include.
13415
134162001-11-26 Akim Demaille <akim@epita.fr>
13417
13418 * src/reader.c (readgram): Make sure rules for mid-rule actions
13419 have a lineno equal to that of their host rule.
13420 Reported by Hans Aberg.
13421 * tests/regression.at (Rule Line Numbers): New.
13422
134232001-11-26 Akim Demaille <akim@epita.fr>
13424
13425 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
13426 size_ts.
13427
134282001-11-26 Akim Demaille <akim@epita.fr>
13429
13430 * src/complain.c, src/complain.h (error): Remove, provided by
13431 lib/error.[ch].
13432
134332001-11-26 Akim Demaille <akim@epita.fr>
13434
13435 * src/reader.c (read_declarations): Don't abort on tok_illegal,
13436 issue an error message.
13437 * tests/regression.at (Invalid %directive): New.
13438 Reported by Hans Aberg.
13439
134402001-11-26 Akim Demaille <akim@epita.fr>
13441
13442 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
13443 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
13444
134452001-11-26 Akim Demaille <akim@epita.fr>
13446
13447 * src/conflicts.c (conflicts_print): Don't complain at all when
13448 there are no reduce/reduce conflicts, and as many shift/reduce
13449 conflicts as expected.
13450 * tests/regression.at (%expect right): Adjust.
13451
134522001-11-23 Akim Demaille <akim@epita.fr>
13453
13454 * lib/alloca.c: Update, from fileutils.
13455
134562001-11-23 Akim Demaille <akim@epita.fr>
13457
13458 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
13459
134602001-11-23 Akim Demaille <akim@epita.fr>
13461
13462 * src/system.h: Include alloca.h.
13463 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
13464
134652001-11-23 Akim Demaille <akim@epita.fr>
13466
13467 * src/print_graph.c (print_actions): Remove `rule', unused.
13468 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
13469 pacify GCC's signed < unsigned warnings.
13470 * src/closure.c (itemsetsize): Likewise.
13471 * src/reader.c (symbol_list_new): Static.
13472
134732001-11-23 Akim Demaille <akim@epita.fr>
13474
13475 Attaching lineno to buckets is stupid, since only one copy of each
13476 symbol is kept, only the line of the first occurrence is kept too.
13477
13478 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
13479 * src/reader.c (rline_allocated): Remove, unused.
13480 (symbol_list): Have a `line' member.
13481 (symbol_list_new): New.
13482 (readgram): Use it.
13483 * src/print.c (print_grammar): Output the rule line numbers.
13484 * tests/regression.at (Solved SR Conflicts)
13485 (Unresolved SR Conflicts): Adjust.
13486 Reported by Hans Aberg.
13487
134882001-11-22 Marc Autret <autret_m@epita.fr>
13489
13490 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
13491
134922001-11-22 Marc Autret <autret_m@epita.fr>
13493
13494 * src/muscle_tab.c (muscle_init): Remove initialization of
13495 skeleton muscle.
13496 * src/output.c (output_master_parser): Do it here.
13497
134982001-11-20 Akim Demaille <akim@epita.fr>
13499
13500 * po/sv.po: New.
13501 * configure.in (ALL_LINGUAS): Adjust.
13502 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
13503 longer contains strings to translate.
13504
135052001-11-19 Akim Demaille <akim@epita.fr>
13506
13507 * src/conflicts.c (conflicts_print): Add a missing \n.
13508
135092001-11-19 Akim Demaille <akim@epita.fr>
13510
13511 * src/nullable.c (nullable_print): New.
13512 (set_nullable): Call it when tracing.
13513 Better locality of variables.
13514
135152001-11-19 Akim Demaille <akim@epita.fr>
13516
13517 * src/print.c (print_actions): Better locality of variables.
13518
135192001-11-19 Akim Demaille <akim@epita.fr>
13520
13521 * src/derives.c (print_derives): Fix and enrich.
13522 * src/closure.c (print_fderives): Likewise.
13523
135242001-11-19 Akim Demaille <akim@epita.fr>
13525
13526 * src/closure.c (itemsetend): Remove, replaced with...
13527 (itemsetsize): new.
13528
135292001-11-19 Akim Demaille <akim@epita.fr>
13530
13531 * src/LR0.c (kernel_end): Remove, replaced with...
13532 (kernel_size): new.
13533
135342001-11-19 Akim Demaille <akim@epita.fr>
13535
13536 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
13537 to clarify.
13538
135392001-11-19 Akim Demaille <akim@epita.fr>
13540
13541 * src/closure.c (closure): Use arrays instead of pointers to clarify.
13542
135432001-11-19 Akim Demaille <akim@epita.fr>
13544
13545 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
13546 trace messages.
13547 * src/LR0.c: Likewise.
13548 (allocate_itemsets): Use arrays instead of pointers to clarify.
13549
135502001-11-19 Akim Demaille <akim@epita.fr>
13551
13552 * src/getargs.c (statistics_flag): Replace with...
13553 (trace_flag): New.
13554 (longopts): Accept --trace instead of --statistics.
13555 * src/getargs.h, src/options.c: Adjust.
13556 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
13557 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
13558
135592001-11-19 Akim Demaille <akim@epita.fr>
13560
13561 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
13562 pointers to clarify the code.
13563 (save_reductions, save_shifts): Factor common parts of alternatives.
13564
135652001-11-19 Akim Demaille <akim@epita.fr>
13566
13567 * src/LR0.c (new_state, get_state): Complete TRACE code.
13568 * src/closure.c: Include `reader.h' to get `tags', needed by the
13569 trace code.
13570 Rename the conditional DEBUG as TRACE.
13571 Output consistently TRACEs to stderr, not stdout.
13572 * src/derives.c: Likewise.
13573 * src/reduce.c: (inaccessable_symbols): Using if is better style
13574 than goto.
13575 Use `#if TRACE' instead of `#if 0' for tracing code.
13576
135772001-11-19 Akim Demaille <akim@epita.fr>
13578
13579 * src/system.h (LIST_FREE, shortcpy): New.
13580 * src/LR0.c: Use them.
13581 * src/output.c (free_itemsets, free_reductions, free_shifts):
13582 Remove, replaced by LIST_FREE.
13583
135842001-11-19 Akim Demaille <akim@epita.fr>
13585
13586 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
13587 (REDUCTIONS_ALLOC): New.
13588 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
13589 allocation.
13590
135912001-11-19 Akim Demaille <akim@epita.fr>
13592
13593 * src/LR0.c (new_state): Complete trace code.
13594 * src/nullable.c (set_nullable): Don't translate traces.
13595
135962001-11-19 Akim Demaille <akim@epita.fr>
13597
13598 * src/print_graph.c (print_core): Better locality of variables.
13599 * src/print.c (print_core): Likewise.
13600
136012001-11-19 Akim Demaille <akim@epita.fr>
13602
13603 * src/vcg.c: You do the output, so you are responsible of the
13604 handling of VCG syntax, in particular: use quotearg.
13605 * src/print_graph.c: Don't.
13606 (print_actions): Don't output the actions as part of the nodes,
13607 since that's the job of the edges.
13608 (print_state): Don't output by hand: fill the node description,
13609 and ask for its output.
13610
136112001-11-19 Akim Demaille <akim@epita.fr>
13612
13613 * src/bison.simple (yyparse): When verbosely reporting an error,
13614 no longer put additional quotes around token names.
13615 * tests/calc.at: Adjust.
13616
136172001-11-19 Akim Demaille <akim@epita.fr>
13618
13619 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
13620 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
13621 * src/output.c: Adjust.
13622
136232001-11-19 Akim Demaille <akim@epita.fr>
13624
13625 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
13626 (rule_t): this.
13627 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
13628
136292001-11-19 Akim Demaille <akim@epita.fr>
13630
13631 * src/gram.h (rule_t): New.
13632 (rule_table): New.
13633 (rrhs, rlhs): Remove, part of state_t.
13634 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
13635 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13636 * src/reader.c, src/reduce.c: Adjust.
13637
136382001-11-19 Akim Demaille <akim@epita.fr>
13639
13640 * src/reader.c (symbols_output): New, extracted from...
13641 (packsymbols): Here.
13642 (reader): Call it.
13643
136442001-11-19 Akim Demaille <akim@epita.fr>
13645
13646 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
13647 (maxrhs): this new function.
13648
136492001-11-19 Akim Demaille <akim@epita.fr>
13650
13651 * src/lalr.c (F): New macro to access the variable F.
13652 Adjust.
13653
136542001-11-19 Akim Demaille <akim@epita.fr>
13655
13656 * src/lalr.h (LA): New macro to access the variable LA.
13657 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13658 * src/lalr.c: Adjust.
13659
136602001-11-19 Akim Demaille <akim@epita.fr>
13661
13662 * src/lalr.c (initialize_LA): Only initialize LA. Let...
13663 (set_state_table): handle the `lookaheads' members.
13664
136652001-11-19 Akim Demaille <akim@epita.fr>
13666
13667 * src/lalr.h (lookaheads): Removed array, whose contents is now
13668 a member of...
13669 (state_t): this structure.
13670 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13671 Adjust.
13672
136732001-11-19 Akim Demaille <akim@epita.fr>
13674
13675 * src/lalr.h (consistent): Removed array, whose contents is now
13676 a member of...
13677 (state_t): this structure.
13678 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13679 Adjust.
13680
136812001-11-19 Akim Demaille <akim@epita.fr>
13682
13683 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
13684 contents are now members of...
13685 (state_t): this structure.
13686 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13687 Adjust.
13688
136892001-11-19 Akim Demaille <akim@epita.fr>
13690
13691 * src/lalr.h (state_t): New.
13692 (state_table): Be a state_t * instead of a core **.
13693 (accessing_symbol): Remove, part of state_t.
13694 * src/lalr.c: Adjust.
13695 (set_accessing_symbol): Merge into...
13696 (set_state_table): this.
13697 * src/print_graph.c, src/conflicts.c: Adjust.
13698
136992001-11-14 Akim Demaille <akim@epita.fr>
13700
13701 * tests/calc.at, tests/output.at, tests/regression.at,
13702 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
13703 now the tests are run in private dirs, therefore AC_CLEANUP and
13704 family can be simplified to 0-ary.
13705 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
13706 use abs. path to find config.h.
13707 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
13708 stderr, there can be way too much random noise.
13709 Instead pass -Werror to GCC and rely on the exit status.
13710 Reported by Wolfram Wagner.
13711
137122001-11-14 Akim Demaille <akim@epita.fr>
13713
13714 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
13715 defined only if yyoverflow is defined, to avoid `warning: unused
13716 variable `yyvs1''.
13717 Reported by The Test Suite.
13718
137192001-11-14 Akim Demaille <akim@epita.fr>
13720
13721 * src/print.c: Include reduce.h.
13722 Reported by Hans Aberg.
13723
137242001-11-14 Akim Demaille <akim@epita.fr>
13725
13726 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
13727 Revert a previous patch: these are really const.
13728 * src/conflicts.c (conflict_report): Additional useless pair of
13729 braces to pacify GCC's warnings for `if () if () {} else {}'.
13730 * src/lex.c (parse_percent_token): Replace equal_offset with
13731 arg_offset.
13732 arg is const.
13733 Be sure to strdup `arg' when used, since there is no reason for
13734 token_buffer not to change.
13735
137362001-11-14 Akim Demaille <akim@epita.fr>
13737
13738 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
13739 definition.
13740 * src/main.c (main): Use them.
13741 Suggested by Hans Aberg.
13742
137432001-11-12 Akim Demaille <akim@epita.fr>
13744
13745 * src/system.h (ngettext): Now that we use ngettext, be sure to
13746 provide a default definition when NLS are not used.
13747
137482001-11-12 Akim Demaille <akim@epita.fr>
13749
13750 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
13751 Use @kbd to denote user input.
13752 (Language and Grammar): ANSIfy the example.
13753 Adjust its layout for info/notinfo.
13754 (Location Tracking Calc): Output error messages to stderr.
13755 Output locations in a more GNUtically correct way.
13756 Fix a couple of Englishos.
13757 Adjust @group/@end group pairs.
13758
137592001-11-12 Akim Demaille <akim@epita.fr>
13760
13761 %expect was not functioning at all.
13762
13763 * src/conflicts.c (expected_conflicts): Set to -1.
13764 (conflict_report): Use ngettext.
13765 (conflicts_print): Check %expect and make its violation an error.
13766 * doc/bison.texinfo (Expect Decl): Adjust.
13767 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
13768 * tests/regression.at (%expect not enough, %expect right)
13769 (%expect too much): New.
13770
137712001-11-12 Akim Demaille <akim@epita.fr>
13772
13773 * tests/regression.at (Conflicts): Rename as...
13774 (Unresolved SR Conflicts): this.
13775 (Solved SR Conflicts): New.
13776
137772001-11-12 Akim Demaille <akim@epita.fr>
13778
13779 * src/reduce.c (print_results): Rename as...
13780 (reduce_output): This.
13781 Output to OUT, passed as argument, instead of output_obstack.
13782 (dump_grammar): Likewise.
13783 (reduce_free): New.
13784 Also free V1.
13785 (reduce_grammar): No longer call reduce_output, since...
13786 * src/print.c (print_results): do it.
13787 * src/main.c (main): Call reduce_free;
13788
137892001-11-12 Akim Demaille <akim@epita.fr>
13790
13791 * src/conflicts.c (print_reductions): Accept OUT as argument.
13792 Output to it, not to output_obstack.
13793 * src/print.c (print_actions): Adjust.
13794
137952001-11-12 Akim Demaille <akim@epita.fr>
13796
13797 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
13798 the result instead of using...
13799 (src_total, rrc_total, src_count, rrc_count): Remove.
13800 (any_conflicts): Remove.
13801 (print_conflicts): Split into...
13802 (conflicts_print, conflicts_output): New.
13803 * src/conflicts.h: Adjust.
13804 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
13805 * src/print.c (print_grammar): Issue `\n' between two rules.
13806 * tests/regression.at (Conflicts): New.
13807 Reported by Tom Lane.
13808
138092001-11-12 Akim Demaille <akim@epita.fr>
13810
13811 * tests/regression.at (Invalid input): Remove, duplicate with
13812 ``Invalid input: 1''.
13813
138142001-11-12 Akim Demaille <akim@epita.fr>
13815
13816 * tests/torture.at (AT_DATA_STACK_TORTURE)
13817 (Exploding the Stack Size with Alloca)
13818 (Exploding the Stack Size with Malloc): New.
13819
138202001-11-12 Akim Demaille <akim@epita.fr>
13821
13822 * src/bison.simple (YYSTACK_REALLOC): New.
13823 (yyparse) [!yyoverflow]: Use it and free the old stack.
13824 Reported by Per Allansson.
13825
138262001-11-12 Pascal Bart <pascal.bart@epita.fr>
13827
13828 * src/bison.simple: Define type yystype instead of YYSTYPE, and
13829 define CPP macro, which substitute YYSTYPE by yystype.
13830 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
13831 with yyltype/YYLTYPE. This allows inclusion of the generated
13832 header within the parser if the compiler, such as GGC, accepts
13833 multiple equivalent #defines.
13834 From Akim.
13835
138362001-11-05 Akim Demaille <akim@epita.fr>
13837
13838 * src/reader.c (symbols_output): New, extracted from...
13839 (packsymbols): here.
13840 (reader): Adjust.
13841
138422001-11-05 Akim Demaille <akim@epita.fr>
13843
13844 * src/lex.c (parse_percent_token): s/quotearg/quote/.
13845
138462001-11-05 Akim Demaille <akim@epita.fr>
13847
13848 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
13849 pattern.
13850
138512001-11-05 Akim Demaille <akim@epita.fr>
13852
13853 * src/options.h (struct option_table_struct): set_flags is void*.
13854 * src/options.c (longopts): Support `--output' and `%output'.
13855 (usage): Adjust.
13856 * src/lex.h (tok_setopt): Remove, replaced with...
13857 (tok_intopt, tok_stropt): these new guys.
13858 * src/lex.c (getopt.h): Not needed.
13859 (token_buffer, unlexed_token_buffer): Not const.
13860 (percent_table): Promote `-' over `_' in directive names.
13861 Active `%name-prefix', `file-prefix', and `output'.
13862 (parse_percent_token): Accept possible arguments to directives.
13863 Promote `-' over `_' in directive names.
13864
138652001-11-04 Akim Demaille <akim@epita.fr>
13866
13867 * doc/bison.texinfo (Decl Summary): Split the list into
13868 `directives for grammars' and `directives for bison'.
13869 Sort'em.
13870 Add description of `%name-prefix', `file-prefix', and `output'.
13871 Promote `-' over `_' in directive names.
13872 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
13873 Simplify the description of `--name-prefix'.
13874 Promote `-' over `_' in directive names.
13875 Promote `--output' over `--output-file'.
13876 Fix the description of `--defines'.
13877 * tests/output.at: Exercise %file-prefix and %output.
13878
138792001-11-02 Akim Demaille <akim@epita.fr>
13880
13881 * doc/refcard.tex: Update.
13882
138832001-11-02 Akim Demaille <akim@epita.fr>
13884
13885 * src/symtab.h (SUNDEF): New.
13886 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
13887 stand for `uninitialized', instead of 0.
13888 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
13889 * src/lex.c (lex): Adjust.
13890
13891 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
13892 Number it 0.
13893 Let yylex return it instead of a plain 0.
13894 Reported by Dick Streefland.
13895
138962001-11-02 Akim Demaille <akim@epita.fr>
13897
13898 * tests/regression.at (Mixing %token styles): New test.
13899
139002001-11-02 Akim Demaille <akim@epita.fr>
13901
13902 * src/reader.c (parse_thong_decl): Formatting changes.
13903 (token_translations_init): New, extracted from...
13904 (packsymbols): Here.
13905 Adjust.
13906
139072001-11-01 Akim Demaille <akim@epita.fr>
13908
13909 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
13910 Check that `9foo.y' produces correct cpp guards.
13911 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
13912 guards.
13913 Reported by Wwp.
13914
139152001-11-01 Akim Demaille <akim@epita.fr>
13916
13917 * tests/regression.at (Invalid input: 2): New.
13918 * src/lex.c (unlexed_token_buffer): New.
13919 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
13920 too.
13921 Reported by Wwp.
13922
139232001-11-01 Akim Demaille <akim@epita.fr>
13924
13925 * tests/calc.at: Catch up with 1.30.
13926 * configure.in: Bump to 1.49a.
13927 Adjust to newer Autotest.
13928
139292001-10-19 Pascal Bart <pascal.bart@epita.fr>
13930
13931 * src/conflicts.c: Move global variables rrc_total and src_total ...
13932 (print_conflicts): here.
13933 * src/output.c (output): Free global variable user_toknums.
13934 * src/lex.c (token_obstack): Become static.
13935
139362001-10-18 Akim Demaille <akim@epita.fr>
13937
13938 * tests/atlocal.in (GCC): Add.
13939 * tests/calc.at: s/m4_match/m4_bmatch/.
13940 s/m4_patsubst/m4_bpatsubst/.
13941 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
13942 * configure.in: AC_SUBST(GCC).
13943
139442001-10-14 Marc Autret <autret_m@epita.fr>
13945
13946 * src/options.c (create_long_option_table): Fix.
13947
139482001-10-10 Akim Demaille <akim@epita.fr>
13949
13950 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
13951
139522001-10-04 Akim Demaille <akim@epita.fr>
13953
13954 * src/reader.c (parse_union_decl): Push the caracters in
13955 union_obstack, not attrs_obstack.
13956
139572001-10-04 Akim Demaille <akim@epita.fr>
13958
13959 Merge in the branch 1.29.
13960
13961 * src/reader.c (packsymbols): Use a temporary obstack for
13962 `%%tokendef', since output_stack is already used elsewhere.
13963
13964 2001-10-02 Akim Demaille <akim@epita.fr>
13965
13966 Bump 1.29d.
13967
13968 2001-10-02 Akim Demaille <akim@epita.fr>
13969
13970 Version 1.29c.
13971
13972 2001-10-02 Akim Demaille <akim@epita.fr>
13973
13974 * tests/regression.at (Invalid CPP headers): New.
13975 From Alexander Belopolsky.
13976 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
13977
13978 2001-10-02 Akim Demaille <akim@epita.fr>
13979
13980 * tests/regression.at (Invalid input): New.
13981 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
13982 Reported by Shura.
13983
13984 2001-10-02 Akim Demaille <akim@epita.fr>
13985
13986 * tests/calc.at: Now that --debug works, the tests must be adjusted.
13987
13988 2001-10-02 Akim Demaille <akim@epita.fr>
13989
13990 * src/output.c (output_parser): Assert `skeleton'.
13991 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
13992 systems.
13993 From Shura.
13994
13995 2001-10-01 Marc Autret <autret_m@epita.fr>
13996
13997 * src/lex.h: Echo modifications.
13998 * src/lex.c (unlex): Parameter is now token_t.
13999 From Hans Aberg.
14000
14001 2001-10-01 Marc Autret <autret_m@epita.fr>
14002
14003 * src/main.c: Include lex.h.
14004 From Hans Aberg.
14005
14006 2001-09-29 Akim Demaille <akim@epita.fr>
14007
14008 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
14009
14010 2001-09-28 Akim Demaille <akim@epita.fr>
14011
14012 * tests/testsuite.at: Update to newer Autotest.
14013 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
14014
14015 2001-09-27 Akim Demaille <akim@epita.fr>
14016
14017 Position independent wrapper.
14018
14019 * tests/bison: Remove.
14020 * tests/bison.in: New.
14021 * configure.in: Adjust.
14022
14023 2001-09-27 Paul Eggert <eggert@twinsun.com>
14024
14025 Port quotearg fixes from tar 1.13.24.
14026
14027 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
14028 tm to be declared.
14029 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
14030 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
14031
14032 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
14033 * m4/mbrtowc.m4: New file.
14034 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
14035 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
14036
14037 2001-09-27 Akim Demaille <akim@epita.fr>
14038
14039 Bump to 1.29c.
14040
14041 2001-09-27 Akim Demaille <akim@epita.fr>
14042
14043 Version 1.29b.
14044
14045 2001-09-25 Akim Demaille <akim@epita.fr>
14046
14047 * src/system.h: Include `xalloc.h'.
14048 Remove it from the C files.
14049 * src/files.c (output_files): Free the obstacks.
14050 * src/lex.c (init_lex): Rename as...
14051 (lex_init): this.
14052 (lex_free): New.
14053 * src/main.c (main): Use it.
14054
14055 2001-09-24 Marc Autret <autret_m@epita.fr>
14056
14057 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
14058 to output informations in fout (FILE*).
14059 (open_graph, close_graph): Likewise.
14060 (output_graph, output_edge, output_node): Likewise.
14061 * src/vcg.h: Update function prototypes.
14062 * src/print_graph.c (print_graph): Open output graph file.
14063 (print_actions): Adjust.
14064 * src/files.h: Remove extern declaration.
14065 * src/files.c: Remove graph_obstack declaration.
14066 (open_files): Remove graph_obstack initialization.
14067 (output_files): Remove graph_obstack saving.
14068
14069 2001-09-24 Marc Autret <autret_m@epita.fr>
14070
14071 * src/files.c (compute_output_file_names): Fix.
14072
14073 2001-09-24 Marc Autret <autret_m@epita.fr>,
14074 Akim Demaille <akim@epita.fr>
14075
14076 * src/reader.c (reader): Remove call to free_symtab ().
14077 * src/main.c (main): Call it here.
14078 Include symtab.h.
14079 * src/conflicts.c (initialize_conflicts): Rename as...
14080 (solve_conflicts): this.
14081 * src/print.c (print_core, print_actions, print_state)
14082 (print_grammar): Dump to a file instead a `output_obstack'.
14083 (print_results): Dump `output_obstack', and then proceed with the
14084 FILE *.
14085 * src/files.c (compute_output_file_names, close_files): New.
14086 (output_files): Adjust.
14087 * src/main.c (main): Adjust.
14088
14089 2001-09-23 Marc Autret <autret_m@epita.fr>
14090
14091 * src/files.c (compute_header_macro): Computes header macro name
14092 from spec_defines_file when given.
14093
14094 2001-09-23 Marc Autret <autret_m@epita.fr>
14095
14096 * src/files.c (output_files): Add default extensions.
14097
14098 2001-09-22 Akim Demaille <akim@epita.fr>
14099
14100 * src/conflicts.c (finalize_conflicts): Rename as...
14101 (free_conflicts): this.
14102
14103 2001-09-22 Akim Demaille <akim@epita.fr>
14104
14105 * src/gram.c (gram_free): Rename back as...
14106 (dummy): this.
14107 (output_token_translations): Free `token_translations'.
14108 * src/symtab.c (free_symtab): Free the tag field.
14109
14110 2001-09-22 Akim Demaille <akim@epita.fr>
14111
14112 Remove `translations' as it is always set to true.
14113
14114 * src/gram.h: Adjust.
14115 * src/reader.c (packsymbols, parse_token_decl): Adjust
14116 * src/print.c (print_grammar): Adjust.
14117 * src/output.c (output_token_translations): Adjust.
14118 * src/lex.c (lex): Adjust.
14119 * src/gram.c: Be sure the set pointers to NULL.
14120 (dummy): Rename as...
14121 (gram_free): this.
14122
14123 2001-09-22 Akim Demaille <akim@epita.fr>
14124
14125 * configure.in: Invoke AM_LIB_DMALLOC.
14126 * src/system.h: Use dmalloc.
14127 * src/LR0.c: Be sure to have pointers initialized to NULL.
14128 (allocate_itemsets): Allocate kernel_items only if needed.
14129
14130 2001-09-22 Akim Demaille <akim@epita.fr>
14131
14132 * configure.in: Bump to 1.29b.
14133 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
14134 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
14135 need xmalloc.c in calc.y.
14136 From Pascal Bart.
14137
14138 2001-09-21 Akim Demaille <akim@epita.fr>
14139
14140 Version 1.29a.
14141 * Makefile.maint, config/config.guess, config/config.sub,
14142 * config/missing: Update from masters.
14143 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
14144 upon package.m4.
14145 * configure.in (ALL_LINGUAS): Add `tr'.
14146
14147 2001-09-21 Akim Demaille <akim@epita.fr>
14148
14149 * tests/Makefile.am (package.m4): Move to...
14150 ($(srcdir)/$(TESTSUITE)): here.
14151
14152 2001-09-20 Akim Demaille <akim@epita.fr>
14153
14154 * src/complain.c: No longer try to be standalone: use system.h.
14155 Don't assume __STDC__ is defined to 1. Just test if it is defined.
14156 * src/complain.h: Likewise.
14157 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
14158 Remove the unused variable `n'.
14159 From Albert Chin-A-Young.
14160
14161 2001-09-18 Marc Autret <autret_m@epita.fr>
14162
14163 * doc/bison.1: Update.
14164 * doc/bison.texinfo (Bison Options): Update --defines and --graph
14165 descriptions.
14166 (Option Cross Key): Update.
14167 Add --graph.
14168
14169 2001-09-18 Marc Autret <autret_m@epita.fr>
14170
14171 * tests/regression.at: New test (comment in %union).
14172
14173 2001-09-18 Marc Autret <autret_m@epita.fr>
14174
14175 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
14176 do that.
14177 Reported by Keith Browne.
14178
14179 2001-09-18 Marc Autret <autret_m@epita.fr>
14180
14181 * tests/output.at: Add tests for --defines and --graph.
14182
14183 2001-09-18 Marc Autret <autret_m@epita.fr>
14184
14185 * tests/output.at: Removes tests of %{header,src}_extension features.
14186
14187 2001-09-18 Akim Demaille <akim@epita.fr>
14188
14189 * tests/Makefile.am (package.m4): New.
14190 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
14191 (_AT_CHECK_CALC_ERROR): Likewise.
14192 Factor the `, ' part of verbose error messages.
14193
14194 2001-09-18 Marc Autret <autret_m@epita.fr>
14195
14196 * src/getargs.c (longopts): Declare --defines and --graph as options
14197 with optional arguments.
14198 * src/files.h: Add extern declarations.
14199 * src/files.c (spec_graph_file, spec_defines_file): New.
14200 (output_files): Update.
14201 Remove CPP-outed code.
14202
14203 2001-09-18 Marc Autret <autret_m@epita.fr>
14204
14205 Turn off %{source,header}_extension feature.
14206
14207 * src/files.c (compute_exts_from_gf): Update.
14208 (compute_exts_from_src): Update.
14209 (output_files): CPP-out useless code.
14210 * src/files.h: Remove {header,source}_extension extern declarations.
14211 * src/reader.c (parse_dquoted_param): CPP-out.
14212 (parse_header_extension_decl): Remove.
14213 (parse_source_extension_decl): Remove.
14214 (read_declarations): Remove cases tok_{hdrext,srcext}.
14215 * src/lex.c (percent_table): Remove {header,source}_extension entries.
14216 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
14217
14218 2001-09-10 Akim Demaille <akim@epita.fr>
14219
14220 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
14221 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
14222 (AT_CHECK_OUTPUT): this.
14223 Merely check ls' exit status, its output is useless.
14224
14225 2001-09-10 Akim Demaille <akim@epita.fr>
14226
14227 * tests/calc.at: Use m4_match.
14228 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
14229
14230 2001-09-10 Marc Autret <autret_m@epita.fr>,
14231 Akim Demaille <akim@epita.fr>
14232
14233 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
14234 enum color_e.
14235 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
14236 to `normal'.
14237 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
14238 * src/lex.h: Adjust prototype.
14239 (token_t): Add `tok_undef'.
14240 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
14241 (parse_percent_token): Now returns token_t.
14242 Add default statement in switch.
14243 (lex): Separate `c' as an input variable, from the token_t result
14244 part.
14245 (unlexed): Is a token_t.
14246
14247 2001-09-10 Akim Demaille <akim@epita.fr>
14248
14249 * configure.in: Bump to 1.29a.
14250
14251 2001-09-07 Akim Demaille <akim@epita.fr>
14252
14253 Version 1.29.
14254
14255 2001-08-30 Akim Demaille <akim@epita.fr>
14256
14257 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
14258 * m4/atconfig.m4: Remove.
14259 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
14260 * tests/bison: New.
14261 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
14262 m4_if, m4_patsubst, and m4_regexp.
14263 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
14264 `input' file instead of echo.
14265
14266 2001-08-29 Akim Demaille <akim@epita.fr>
14267
14268 Bump to 1.28e.
14269
14270 2001-08-29 Akim Demaille <akim@epita.fr>
14271
14272 Version 1.28d.
14273
14274 2001-08-29 Paul Eggert <eggert@twinsun.com>
14275
14276 * src/bison.simple (yyparse): Don't take the address of an
14277 item before the start of an array, as that doesn't conform to
14278 the C Standard.
14279
14280 2001-08-29 Robert Anisko <anisko_r@epita.fr>
14281
14282 * doc/bison.texinfo (Location Tracking Calc): New node.
14283
14284 2001-08-29 Paul Eggert <eggert@twinsun.com>
14285
14286 * src/output.c (output): Do not define const, as this now
14287 causes more problems than it cures.
14288
14289 2001-08-29 Akim Demaille <akim@epita.fr>
14290
14291 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
14292 the nodes.
14293 Be sure to tag the `detailmenu'.
14294
14295 2001-08-29 Akim Demaille <akim@epita.fr>
14296
14297 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
14298 download in a tmp dir.
14299
14300 2001-08-28 Marc Autret <autret_m@epita.fr>
14301
14302 * config/depcomp: New file.
14303
14304 2001-08-28 Marc Autret <autret_m@epita.fr>
14305
14306 * doc/bison.1 (mandoc): Adjust.
14307 From Juan Manuel Guerrero.
14308
14309 2001-08-28 Marc Autret <autret_m@epita.fr>
14310
14311 * src/print_graph.c (print_state): Fix.
14312
14313 2001-08-27 Marc Autret <autret_m@epita.fr>
14314
14315 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
14316 char * members.
14317 Echo modifications to the functions prototypes.
14318 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
14319
14320 2001-08-27 Marc Autret <autret_m@epita.fr>
14321
14322 * src/vcg.c: Include `xalloc.h'.
14323 (add_colorentry): New.
14324 (add_classname): New.
14325 (add_infoname): New.
14326 * src/vcg.h: Add new prototypes.
14327
14328 2001-08-27 Akim Demaille <akim@epita.fr>
14329
14330 * Makefile.maint: Sync. again with CVS Autoconf.
14331
14332 2001-08-27 Akim Demaille <akim@epita.fr>
14333
14334 * Makefile.maint: Formatting changes.
14335 (po-update, cvs-update, update): New targets.
14336 (AMTAR): Remove.
14337
14338 2001-08-27 Akim Demaille <akim@epita.fr>
14339
14340 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
14341 * Makefile.maint: Sync. with CVS Autoconf.
14342
14343 2001-08-27 Marc Autret <autret_m@epita.fr>
14344
14345 * src/vcg.h (struct infoname_s): New.
14346 (struct colorentry_s): New.
14347 (graph_s): New fields {vertical,horizontal}_order in structure.
14348 Add `infoname' field.
14349 Add `colorentry' field;
14350 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
14351 (G_HORIZONTAL_ORDER): New.
14352 (G_INFONAME): New.
14353 (G_COLORENTRY): New.
14354 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
14355 Add output of `infoname'.
14356 Add output of `colorentry'.
14357
14358 2001-08-27 Marc Autret <autret_m@epita.fr>
14359
14360 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
14361 This one shadowed a global parameter.
14362
14363 2001-08-24 Marc Autret <autret_m@epita.fr>
14364
14365 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
14366 instead of `unsigned'.
14367 (print_state): Do not call obstack_object_size () in obstack_grow ()
14368 to avoid macro variables shadowing.
14369
14370 2001-08-23 Marc Autret <autret_m@epita.fr>
14371
14372 * src/lex.c (percent_table): Typo: s/naem/name/.
14373 Add graph option.
14374 Normalize new options declarations.
14375
14376 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
14377
14378 * tests/suite.at: Exercise %header_extension and %source_extension.
14379
14380 2001-08-16 Marc Autret <autret_m@epita.fr>
14381
14382 * src/reader.c (parse_dquoted_param): New.
14383 (parse_header_extension_decl): Use it.
14384 (parse_source_extension_decl): Likewise.
14385
14386 2001-08-16 Marc Autret <autret_m@epita.fr>
14387
14388 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
14389 (get_xxxx_str): Use assert () instead of complain ().
14390 Remove return invokations in default cases.
14391 (get_decision_str): Modify default behaviour. Remove second argument.
14392 Echo modifications on calls.
14393 (output_graph): Fix.
14394
14395 2001-08-16 Marc Autret <autret_m@epita.fr>
14396
14397 * src/getargs.c (usage): Update with ``-g, --graph''.
14398
14399 2001-08-16 Marc Autret <autret_m@epita.fr>
14400
14401 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
14402 (Option Cross Key): Likewise.
14403 * doc/bison.1: Update.
14404
144052001-09-25 Pascal Bart <pascal.bart@epita.fr>
14406
14407 * src/output.c (output_master_parser): Don't finish action_obstack.
14408 (output_parser): Don't care about the muscle action, here.
14409 (prepare): Copy the action_obstack in the action muscle.
14410 (output): Free action_obstack.
14411
144122001-09-23 Pascal Bart <pascal.bart@epita.fr>
14413
14414 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
14415 will contain `%union' declaration.
14416 (parse_union_decl): Delete #line directive output.
14417 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
14418 informations about %union.
14419 (parse_union_decl): Copy the union_obstack in the muscle stype.
14420 * src/bison.simple: Add new #line directive.
14421 Add typdef %%stype YYSTYPE.
14422
144232001-09-23 Pascal Bart <pascal.bart@epita.fr>
14424
14425 * src/bison.simple: Add new `#line' directive.
14426
144272001-09-22 Pascal Bart <pascal.bart@epita.fr>
14428
14429 * src/bison.simple: New `#line' directive.
14430 * src/output.c (output_parser): Support new dynamic muscle input_line.
14431
144322001-09-22 Marc Autret <autret_m@epita.fr>
14433
14434 * src/output.c (output_master_parser): New.
14435 (output_parser): Be more re-entrant.
14436
144372001-09-21 Marc Autret <autret_m@epita.fr>
14438
14439 * src/reader.c (copy_definition, parse_union_decl): Update and use
14440 `linef' muscle.
14441 (copy_action): Likewise.
14442 Use obstack_1grow ().
14443 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
14444
144452001-09-21 Marc Autret <autret_m@epita.fr>
14446
14447 * src/options.c (option_table): Adjust.
14448 * src/lex.c (parse_percent_token): Fix.
14449
144502001-09-20 Pascal Bart <pascal.bart@epita.fr>
14451
14452 * src/options.c (symtab.h): Include it, need by lex.h.
14453
144542001-09-20 Pascal Bart <pascal.bart@epita.fr>
14455
14456 * src/lex.c (parse_percent_token): Change type of variable `tx', which
14457 is now an option_table_struct*.
14458 (option_strcmp): New function option_strcmp.
14459 (parse_percent_token): Call option_strcmp.
14460 * src/getargs.c (xalloc.h, options.h): Include it.
14461 (getargs): Call create_long_option_table.
14462 (getargs): Free longopts at the end of the function.
14463 (shortopts): Move in options.c.
14464 * src/options.c (create_long_option_table): New function. Convert
14465 information from option_table to option structure.
14466 * src/reader.c (options.h): Include it.
14467
14468 * src/Makefile.am: Adjust.
14469 * src/options.c (option_table): Create from longopts and percent_table.
14470 * src/getargs.c (longopts): Delete.
14471 * src/lex.c (struct percent_table_struct): Delete.
14472 (percent_table): Delete.
14473 (options.h): Include it.
14474 * src/options.c: Create.
14475 * src/options.h: Create.
14476 Declare enum opt_access_e.
14477 Define struct option_table_struct.
14478
144792001-09-20 Marc Autret <autret_m@epita.fr>
14480
14481 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
14482 sections of Bison.
14483
144842001-09-19 Pascal Bart <pascal.bart@epita.fr>
14485
14486 * src/bison.simple: s/%%filename/%%skeleton.
14487 * src/muscle_tab.c (getargs.h): Include it.
14488 (muscle_init): Insert new muscle skeleton.
14489
144902001-09-18 Pascal Bart <pascal.bart@epita.fr>
14491
14492 * src/output.c (output_parser): Delete unused variable actions_dumped.
14493
144942001-09-07 Pascal Bart <pascal.bart@epita.fr>
14495
14496 * src/output.c (output): Delete call to reader_output_yylsp.
14497 * src/reader.c (reader): Likewise.
14498 * src/reader.h: Delete declaration of reader_output_yylsp.
14499
145002001-09-02 Marc Autret <autret_m@epita.fr>
14501
14502 * src/reader.c: Include muscle_tab.h.
14503 (parse_union_decl): Update.
14504 (parse_macro_decl): Rename parse_muscle_decl.
14505 Update to use renamed functions and variable.
14506 (read_declarations, copy_action, read_additionnal_code, : Updated
14507 with correct variables and functions names.
14508 (packsymbols, reader): Likewise.
14509
14510 * src/reader.h (muscle_obstack): Extern declaration update.
14511
14512 * src/output.c: Include muscle_tab.h
14513 In all functions using macro_insert, change by using muscle_insert ().
14514 (macro_obstack): Rename muscle_obstack.
14515 Echo modifications in the whole file.
14516 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
14517 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
14518 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
14519
14520 * src/muscle_tab.h: Update double inclusion macros.
14521 (macro_entry_s): Rename muscle_entry_s.
14522 Update prototypes.
14523
14524 * src/muscle_tab.c: Include muscle_tab.h.
14525 Rename macro_tabble to muscle_table.
14526 (mhash1, mhash2, mcmp): Use muscle_entry.
14527 (macro_init): Rename muscle_init. Update.
14528 (macro_insert): Rename muscle_insert. Update.
14529 (macro_find): Rename muscle_find. Update.
14530
14531 * src/main.c: Include muscle_tab.h.
14532 (main): Call muscle_init ().
14533 * src/Makefile.am (bison_SOURCES): Echo modifications.
14534
145352001-09-02 Marc Autret <autret_m@epita.fr>
14536
14537 Now the files macro_tab.[ch] are named muscle_tab.[ch].
14538
14539 * src/muscle_tab.c, src/muscle_tab.h: Add files.
14540
145412001-09-02 Marc Autret <autret_m@epita.fr>
14542
14543 * src/macrotab.c, src/macrotab.h: Remove.
14544
145452001-09-01 Pascal Bart <pascal.bart@epita.fr>
14546
14547 * src/reader.c (copy_guard): Use muscle to specify the `#line'
14548 filename.
14549
145502001-09-01 Marc Autret <autret_m@epita.fr>
14551
14552 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
14553 to an explicit value to activate the feature. We do it here.
14554
145552001-08-31 Pascal Bart <pascal.bart@epita.fr>
14556
14557 * src/output.c (prepare): Delete the `filename' muscule insertion.
14558 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
14559 (parse_union_decl): Likewise.
14560 * src/macrotab.c (macro_init): Initialize filename by infile.
14561
145622001-08-31 Marc Autret <autret_m@epita.fr>
14563
14564 * src/bison.simple (YYLSP_NEEDED): New definition.
14565 * src/output.c (prepare): Add macro insertion of `locations_flag'
14566
145672001-08-31 Pascal Bart <pascal.bart@epita.fr>
14568
14569 * src/output.c (prepare): Delete insertion of previous muscles,
14570 and insert the `prefix' muscles.
14571 * src/macrotab.c (macro_init): Likewise.
14572 (macro_init): Initialization prefix directive by `yy'.
14573 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
14574 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
14575 yylval, yydebug, yyerror, yynerrs and yyparse.
14576 New directive `#define' to substitute yydebug, ... with option
14577 name_prefix.
14578
145792001-08-31 Pascal Bart <pascal.bart@epita.fr>
14580
14581 * src/main.c (main): Standardize.
14582 * src/output.c (output_table_data, output_parser): Likewise.
14583 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
14584
145852001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
14586
14587 * src/reader.c (read_additionnal_code): Rename %%user_code to
14588 %%epilogue.
14589 * src/output.c (output): Rename %%declarations to %%prologue.
14590 * src/bison.simple: Echo modifications.
14591
145922001-08-31 Marc Autret <autret_m@epita.fr>
14593
14594 * src/reader.c (readgram): CleanUp.
14595 (output_token_defines): Likewise.
14596 (packsymbols): Likewise.
14597 (reader): Likewise.
14598 * src/output.c (output): CPP-out useless code.
14599
146002001-08-31 Pascal Bart <pascal.bart@epita.fr>
14601
14602 * src/reader.c (reader): Delete obsolete call to function
14603 output_trailers and output_headers.
14604 * src/output.h: Remove obsolete functions prototypes of output_headers
14605 and output_trailers.
14606
146072001-08-30 Pascal Bart <pascal.bart@epita.fr>
14608
14609 * src/main.c: Include macrotab.h.
14610 * src/macrotab.h (macro_entry_s): Constify fields.
14611 Adjust functions prototypes.
14612 * src/macrotab.c (macro_insert): Constify key and value.
14613 (macro_find): Constify key.
14614 (macro_insert): Include 'xalloc.h'
14615 (macro_insert): Use XMALLOC.
14616 (macro_find): Constify return value.
14617 * src/output.c (output_table_data): Rename table to table_data.
14618 (output_parser): Constify macro_key, macro_value.
14619
146202001-08-30 Marc Autret <autret_m@epita.fr>
14621
14622 * src/reader.c (parse_skel_decl): New.
14623 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
14624 * src/lex.h (token_t): New token `tok_skel'.
14625 * src/lex.c (percent_table): Add skeleton option entry.
14626 Standardize.
14627
146282001-08-29 Marc Autret <autret_m@epita.fr>
14629
14630 * src/bison.simple: Add %%user_code directive at the end.
14631 * src/reader.c (read_additionnal_code): New.
14632 (reader): Use it.
14633 * src/output.c (output_program): Remove.
14634 (output): Update.
14635
146362001-08-28 Marc Autret <autret_m@epita.fr>
14637
14638 * src/output.c (output_actions): Clean up.
14639 (output_gram): CPP-out useless code.
14640 * src/reader.c (reader): Clean up, CPP-out useless code.
14641
146422001-08-28 Pascal Bart <pascal.bart@epita.fr>
14643
14644 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
14645 directive.
14646 * src/bison.simple: Add `%%definitions'.
14647
146482001-08-28 Marc Autret <autret_m@epita.fr>
14649
14650 * config/depcomp: New file.
14651
146522001-08-27 Paul Eggert <eggert@twinsun.com>
14653
14654 * src/bison.simple (yyparse): Don't take the address of an
14655 item before the start of an array, as that doesn't conform to
14656 the C Standard.
14657
146582001-08-27 Robert Anisko <robert.anisko@epita.fr>
14659
14660 * src/output.c (output): Remove the initialization of the macro
14661 obstack. It was done too late here.
14662
14663 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
14664 completely wrong.
14665 (reader): Initialize the macro obstack here, since we need it to grow
14666 '%define' directives.
14667
14668 * src/reader.h: Declare the macro obstack as extern.
14669
146702001-08-27 Robert Anisko <robert.anisko@epita.fr>
14671
14672 * src/output.c (output_parser): Fix. Store single '%' characters in
14673 the output obstack instead of throwing them away.
14674
146752001-08-27 Akim Demaille <akim@epita.fr>
14676
14677 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
14678
146792001-08-25 Robert Anisko <robert.anisko@epita.fr>
14680
14681 * lib/Makefile.am: Adjust.
14682
146832001-08-25 Robert Anisko <robert.anisko@epita.fr>
14684
14685 * src/bison.simple: Update and add '%%' directives.
14686
146872001-08-25 Robert Anisko <robert.anisko@epita.fr>
14688
14689 * src/reader.c (reader): Remove calls to 'output_headers' and
14690 'output_trailers'. Remove some C output.
14691 (readgram): Disable a piece of code that was writing a default
14692 definition for 'YYSTYPE'.
14693 (reader_output_yylsp): Remove.
14694 (packsymbols): Output token defintions to a macro.
14695 (copy_definition): Disable C output.
14696
14697 * src/reader.c (parse_macro_decl): New function used to parse macro
14698 declarations.
14699 (copy_string2): Put the body of copy_string into this new function.
14700 Add a parameter to let the caller choose whether he wants to copy the
14701 string delimiters or not.
14702 (copy_string): Be a simple call to copy_string2 with the last argument
14703 bound to true.
14704 (read_declarations): Add case for macro definition.
14705 (copy_identifier): New.
14706 (parse_macro_decl): Read macro identifiers using copy_identifier
14707 rather than lex.
14708
147092001-08-25 Robert Anisko <robert.anisko@epita.fr>
14710
14711 * src/output.c (prepare): Add prefixed names.
14712 (output_parser): Output semantic actions.
14713 (output_parser): Fix bug on '%%line' directives.
14714
14715 * src/output.c (output_headers): Remove. The C code printed by this
14716 function should now be in the skeletons.
14717 (output_trailers): Remove.
14718 (output): Disable call to 'reader_output_yylsp'.
14719 (output_rule_data): Do not output tables to the table obstack.
14720
14721 * src/output.c: Remove some C dedicated output.
14722 Improve the use of macro and output obstacks.
14723 (output_defines): Remove.
14724
14725 * src/output.c (output_token_translations): Associate 'translate'
14726 table with a macro. No output to the table obstack.
14727 (output_gram): Same for 'rhs' and 'prhs'.
14728 (output_stos): Same for 'stos'.
14729 (output_rule_data): Same for 'r1' and 'r2'.
14730 (token_actions): Same for 'defact'.
14731 (goto_actions): Same for 'defgoto'.
14732 (output_base): Same for 'pact' and 'pgoto'.
14733 (output_table): Same for 'table'.
14734 (output_check): Same for 'check'.
14735
14736 * src/output.c (output_table_data): New function.
14737 (output_short_table): Remove.
14738 (output_short_or_char_table): Remove.
14739
14740 * src/output.c (output_parser): Replace most of the skeleton copy code
14741 with something new. Skeletons are now processed character by character
14742 rather than line by line, and Bison looks for '%%' macros. This is the
14743 first step in making Bison's output process (a lot) more flexible.
14744 (output_parser): Use the macro table.
14745
147462001-08-25 Robert Anisko <robert.anisko@epita.fr>
14747
14748 * src/main.c (main): Initialize the macro table.
14749
147502001-08-25 Robert Anisko <robert.anisko@epita.fr>
14751
14752 * src/lex.c (percent_table): Add tok_define.
14753 * src/lex.h: Add tok_define.
14754
147552001-08-25 Robert Anisko <robert.anisko@epita.fr>
14756
14757 * src/macrotab.c: New file.
14758 * src/macrotab.h: New file.
14759 * src/Makefile.am: Update.
14760
147612001-08-25 Robert Anisko <robert.anisko@epita.fr>
14762
14763 * lib/hash.c: New file.
14764 * lib/hash.h: New file.
14765 * lib/Makefile.am: Update.
14766
147672001-08-15 Akim Demaille <akim@epita.fr>
14768
14769 Version 1.28c.
14770
147712001-08-15 Marc Autret <autret_m@epita.fr>
14772
14773 * src/reader.c (readgram): Indent output macro YYSTYPE.
14774 (packsymbols): Likewise.
14775 (output_token_defines): Likewise.
14776 * src/files.c: Standardize.
14777 (compute_header_macro): New.
14778 (defines_obstack_save): New. Use compute_header_macro.
14779 (output_files): Update. Use defines_obstack_save.
14780
147812001-08-15 Akim Demaille <akim@epita.fr>
14782
14783 * doc/bison.texinfo (Table of Symbols): Document
14784 YYSTACK_USE_ALLOCA.
14785
147862001-08-15 Akim Demaille <akim@epita.fr>
14787
14788 * missing: Update from CVS Automake.
14789 * config/config.guess, config/config.sub, config/texinfo.tex:
14790 Update from gnu.org.
14791
147922001-08-15 Akim Demaille <akim@epita.fr>
14793
14794 * Makefile.maint: Sync with CVS Autoconf.
14795
147962001-08-14 Pascal Bart <pascal.bart@epita.fr>
14797
14798 * doc/bison.texinfo: Include GNU Free Documentation License from
14799 `fdl.texi'.
14800 * doc/fdl.texi: Add to package.
14801
148022001-08-14 Marc Autret <autret_m@epita.fr>
14803
14804 Turn on %{source,header}_extension features.
14805
14806 * src/lex.c (percent_table): Un-CPP out header_extension and
14807 source_extension.
14808 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
14809 (compute_exts_from_src): Remove conditions. It restores priorities
14810 between options.
14811
148122001-08-14 Marc Autret <autret_m@epita.fr>
14813
14814 * src/files.c (compute_base_names): Add extensions computing when
14815 `--file-prefix' used.
14816 Standardize function calls.
14817
148182001-08-13 Marc Autret <autret_m@epita.fr>
14819
14820 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
14821 defining it (defined but null disables alloca).
14822
148232001-08-13 Marc Autret <autret_m@epita.fr>
14824
14825 * src/bison.simple (_yy_memcpy): CPP reformat.
14826
148272001-08-13 Pascal Bart <pascal.bart@epita.fr>
14828
14829 * tests/atconfig.in (CPPFLAGS): Fix.
14830
148312001-08-10 Pascal Bart <pascal.bart@epita.fr>
14832
14833 * doc/bison.texinfo: Include GNU General Public License from
14834 `gpl.texi'.
14835 * doc/gpl.texi: Add to package.
14836
148372001-08-10 Marc Autret <autret_m@epita.fr>
14838
14839 * src/print_graph.h: Fix.
14840 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
14841
148422001-08-10 Akim Demaille <akim@epita.fr>
14843
14844 * src/system.h: Provide default declarations for stpcpy, strndup,
14845 and strnlen.
14846
148472001-08-10 Robert Anisko <anisko_r@epita.fr>
14848
14849 * doc/bison.texinfo (Locations): Update @$ stuff.
14850
148512001-08-09 Robert Anisko <anisko_r@epita.fr>
14852
14853 * src/bison.simple (YYLLOC_DEFAULT): Update.
14854 (yyparse): Adjust.
14855
148562001-08-08 Marc Autret <autret_m@epita.fr>
14857
14858 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
14859 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
14860 Reported by Fabrice Bauzac.
14861
148622001-08-08 Marc Autret <autret_m@epita.fr>
14863
14864 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
14865 * src/vcg.c (output_node): Fix.
14866 * src/vcg.h: Cleanup.
14867 * src/print_graph.c: Add comments.
14868 (node_output_size): New global variable. Simplify the formatting of
14869 the VCG graph output.
14870 (print_actions): Unused code is now used. It notifies the final state
14871 and no action states in the VCG graph. It also give the reduce actions.
14872 The `shift and goto' edges are red and the `go to state' edges are
14873 blue.
14874 Get the current node name and node_obstack by argument.
14875 (node_obstack): New variable.
14876 (print_state): Manage node_obstack.
14877 (print_core): Use node_obstack given by argument.
14878 A node is not only computed here but in print_actions also.
14879 (print_graph): CPP out useless code instead of commenting it.
14880
148812001-08-07 Pascal Bart <pascal.bart@epita.fr>
14882
14883 * tests/atconfig.in (CPPFLAGS): Fix.
14884
148852001-08-07 Akim Demaille <akim@epita.fr>
14886
14887 * src/print_graph.c (quote): New.
14888 (print_core): Use it.
14889
148902001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
14891
14892 * src/vcg.c (complain.h): Include it.
14893 Unepitaize `return' invocations.
14894 [NDEBUG] (main): Remove.
14895 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
14896 * src/files.c (open_files): Initialize graph_obstack.
14897 * src/print_graph.c (print_actions): CPP out useless code.
14898 (print_core): Don't output the last `\n' in labels.
14899 Use `quote'.
14900 * src/files.c (output_files): Output the VCG file.
14901 * src/main.c (main): Invoke print_graph ();
14902
149032001-08-06 Marc Autret <autret_m@epita.fr>
14904
14905 Automaton VCG graph output.
14906 Using option ``-g'' or long option ``--graph'', you can generate
14907 a gram_filename.vcg file containing a VCG description of the LALR (1)
14908 automaton of your grammar.
14909
14910 * src/main.c: Call to print_graph() function.
14911 * src/getargs.h: Update.
14912 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
14913 (graph_flag): New flag.
14914 (longopts): Update.
14915 (getargs): Add case `g'.
14916 * src/files.c (graph_obstack): New obstack struct.
14917 (open_files): Initialize new obstack.
14918 (output_files): Saves graph_obstack if required.
14919 * src/files.h (graph_obstack): New extern declaration.
14920 * src/Makefile.am: Add new source files.
14921
149222001-08-06 Marc Autret <autret_m@epita.fr>
14923
14924 * src/print_graph.c, src/print_graph.h (graph): New.
14925 * src/vcg.h: New file.
14926 * src/vcg.c: New file, VCG graph handling.
14927
149282001-08-06 Marc Autret <autret_m@epita.fr>
14929
14930 Add of %source_extension and %header_extension which specify
14931 the source or/and the header output file extension.
14932
14933 * src/files.c (compute_base_names): Remove initialisation of
14934 src_extension and header_extension.
14935 (compute_exts_from_gf): Update.
14936 (compute_exts_from_src): Update.
14937 (output_files): Update.
14938 * src/reader.c (parse_header_extension_decl): New.
14939 (parse_source_extension_decl): New.
14940 (read_declarations): New case statements for the new tokens.
14941 * src/lex.c (percent_table): Add entries for %source_extension
14942 and %header_extension.
14943 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
14944
149452001-08-06 Marc Autret <autret_m@epita.fr>
14946
14947 * configure.in: Bump to 1.28c.
14948 * doc/bison.texinfo: Texinfo thingies.
14949
149502001-08-04 Pascal Bart <pascal.bart@epita.fr>
14951
14952 * tests/atconfig.in (CPPFLAGS): Add.
14953 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
14954
149552001-08-03 Akim Demaille <akim@epita.fr>
14956
14957 Version 1.28b.
14958
149592001-08-03 Akim Demaille <akim@epita.fr>
14960
14961 * tests/Makefile.am (check-local): Ship testsuite.
14962 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
14963 Include `string.h'.
14964
149652001-08-03 Akim Demaille <akim@epita.fr>
14966
14967 * configure.in: Try using -Wformat when compiling.
14968
149692001-08-03 Akim Demaille <akim@epita.fr>
14970
14971 * configure.in: Bump to 1.28b.
14972
149732001-08-03 Akim Demaille <akim@epita.fr>
14974
14975 * src/complain.c: Adjust strerror_r portability issues.
14976
149772001-08-03 Akim Demaille <akim@epita.fr>
14978
14979 Version 1.28a.
14980
149812001-08-03 Akim Demaille <akim@epita.fr>
14982
14983 * src/getargs.c, src/getarg.h (skeleton)): Constify.
14984 * src/lex.c (literalchar): Avoid name clashes on `buf'.
14985 * src/getargs.c: Include complain.h.
14986 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
14987 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
14988
149892001-08-03 Akim Demaille <akim@epita.fr>
14990
14991 * src/reader.c (readgram): Display hidden chars in error messages.
14992
149932001-08-03 Akim Demaille <akim@epita.fr>
14994
14995 Update to gettext 0.10.39.
14996
149972001-08-03 Akim Demaille <akim@epita.fr>
14998
14999 * lib/strspn.c: New.
15000
150012001-08-01 Marc Autret <autret_m@epita.fr>
15002
15003 * doc/bison.texinfo: Update.
15004 * doc/bison.1 (mandoc): Update.
15005 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
15006 * src/files.c: Support output files extensions computing.
15007 (src_extension): New static variable.
15008 (header_extension): New static variable.
15009 (tr): New function.
15010 (get_extension_index): New function, gets the index of an extension
15011 filename in a string.
15012 (compute_exts_from_gf): New function, computes extensions from the
15013 grammar file extension.
15014 (compute_exts_from_src): New functions, computes extensions from the
15015 C source file extension, file given by ``-o'' option.
15016 (compute_base_names): Update.
15017 (output_files): Update.
15018
150192001-08-01 Robert Anisko <anisko_r@epita.fr>
15020
15021 * doc/bison.texi: Document @$.
15022 (Locations): New section.
15023
150242001-07-18 Akim Demaille <akim@epita.fr>
15025
15026 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
15027 * config/prev-version.txt, config/move-if-change: New.
15028 * Makefile.am: Adjust.
15029
150302001-07-08 Pascal Bart <pascal.bart@epita.fr>
15031
15032 * src/bison.simple (yyparse): Suppress warning `comparaison
15033 between signed and unsigned'.
15034
150352001-07-05 Pascal Bart <pascal.bart@epita.fr>
15036
15037 * src/getargs.h (raw_flag): Remove.
15038 * src/getargs.c: Die on `-r'/`--raw'.
15039 * src/lex.c (parse_percent_token): Die on `%raw'.
15040 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
15041 * tests/calc.at: Suppress test with option `--raw'.
15042
150432001-07-14 Akim Demaille <akim@epita.fr>
15044
15045 * config/: New.
15046 * configure.in: Require Autoconf 2.50.
15047 Update to gettext 0.10.38.
15048
150492001-03-16 Akim Demaille <akim@epita.fr>
15050
15051 * doc/bison.texinfo: ANSIfy the examples.
15052
150532001-03-16 Akim Demaille <akim@epita.fr>
15054
15055 * getargs.c (skeleton): New variable.
15056 (longopts): --skeleton is a new option.
15057 (shortopts, getargs): -S is a new option.
15058 * getargs.h: Declare skeleton.
15059 * output.c (output_parser): Use it.
15060
150612001-03-16 Akim Demaille <akim@epita.fr>
15062
15063 * m4/strerror_r.m4: New.
15064 * m4/error.m4: Run AC_FUNC_STRERROR_R.
15065 * lib/error.h, lib/error.c: Update.
15066
150672001-03-16 Akim Demaille <akim@epita.fr>
15068
15069 * src/getargs.c (longopts): Clean up.
15070
150712001-02-21 Akim Demaille <akim@epita.fr>
15072
15073 * src/reader.c (gensym): `gensym_count' is your own.
15074 Use a static buf to create the symbol name, as token_buffer is no
15075 longer a buffer.
15076
150772001-02-08 Akim Demaille <akim@epita.fr>
15078
15079 * src/conflicts.c (conflict_report): Be sure not to append to res
15080 between two calls, which could happen if both first sprintf were
15081 skipped, but not the first cp += strlen.
15082
150832001-02-08 Akim Demaille <akim@epita.fr>
15084
15085 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
15086 New, from fileutils 4.0.37.
15087 * configure.in: Require Autoconf 2.49c. I took some time before
15088 making this decision. This is the only way out for portability
15089 issues in Bison, it would mean way too much duplicate effort to
15090 import in Bison features implemented in 2.49c since 2.13.
15091 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
15092
150932001-02-02 Akim Demaille <akim@epita.fr>
15094
15095 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
15096 * lib/xalloc.h, lib/xmalloc.c: Update.
15097
150982001-01-19 Akim Demaille <akim@epita.fr>
15099
15100 Get rid of the ad hoc handling of token_buffer in the scanner: use
15101 the obstacks.
15102
15103 * src/lex.c (token_obstack): New.
15104 (init_lex): Initialize it. No longer call...
15105 (grow_token_buffer): this. Remove it.
15106 Adjust all the places which used it to use the obstack.
15107
151082001-01-19 Akim Demaille <akim@epita.fr>
15109
15110 * src/lex.h: Rename all the tokens:
15111 s/\bENDFILE\b/tok_eof/g;
15112 s/\bIDENTIFIER\b/tok_identifier/g;
15113 etc.
15114 Let them be enums, not #define, to ease debugging.
15115 Adjust all the code.
15116
151172001-01-18 Akim Demaille <akim@epita.fr>
15118
15119 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
15120 * src/lex.c (maxtoken, grow_token_buffer): Static.
15121
151222001-01-18 Akim Demaille <akim@epita.fr>
15123
15124 Since we now use obstacks, more % directives can be enabled.
15125
15126 * src/lex.c (percent_table): Also accept `%yacc',
15127 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
15128 `%debug'.
15129 Handle the actions for `%semantic_parser' and `%pure_parser' here,
15130 instead of returning a token.
15131 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
15132 * src/reader.c (read_declarations): Adjust.
15133 * src/files.c (open_files): Don't call `compute_base_names', don't
15134 compute `attrsfile' since they depend upon data which might be
15135 *in* the input file now.
15136 (output_files): Do it here.
15137 * src/output.c (output_headers): Document the fact that this patch
15138 introduces a guaranteed SEGV for semantic parsers.
15139 * doc/bison.texinfo: Document them.
15140 * tests/suite.at: Exercise these %options.
15141
151422000-12-20 Akim Demaille <akim@epita.fr>
15143
15144 Also handle the output file (--verbose) with obstacks.
15145
15146 * files.c (foutput): Remove.
15147 (output_obstack): New.
15148 Adjust all dependencies.
15149 * src/conflicts.c: Return a string.
15150 * src/system.h (obstack_grow_string): Rename as...
15151 (obstack_sgrow): this. Be ready to work with non literals.
15152 (obstack_fgrow4): New.
15153
151542000-12-20 Akim Demaille <akim@epita.fr>
15155
15156 * src/files.c (open_files): Fix the computation of short_base_name
15157 in the case of `-o foo.tab.c'.
15158
151592000-12-20 Akim Demaille <akim@epita.fr>
15160
15161 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
15162 (copy_dollar): Now that everything uses obstacks, get rid of the
15163 FILE * parameters.
15164
151652000-12-20 Akim Demaille <akim@epita.fr>
15166
15167 * src/files.c (open_files): Actually the `.output' file is based
15168 on the short_base_name, not base_name.
15169 * tests/suite.at (Checking output file names): Adjust.
15170
151712000-12-20 Akim Demaille <akim@epita.fr>
15172
15173 * src/bison.s1: Remove, we now use directly...
15174 * src/bison.simple: this.
15175 * src/Makefile.am: Use pkgdata instead of data.
15176
151772000-12-20 Akim Demaille <akim@epita.fr>
15178
15179 * src/files.c (guard_obstack): New.
15180 (open_files): Initialize it.
15181 (output_files): Dump it...
15182 * src/files.h: Export it.
15183 * src/reader.c (copy_guard): Use it.
15184
151852000-12-19 Akim Demaille <akim@epita.fr>
15186
15187 * src/files.c (outfile, defsfile, actfile): Removed as global
15188 vars.
15189 (open_files): Don't compute them.
15190 (output_files): Adjust.
15191 (base_name, short_base_name): Be global.
15192 Adjust dependencies.
15193
151942000-12-19 Akim Demaille <akim@epita.fr>
15195
15196 * src/files.c (strsuffix): New.
15197 (stringappend): Be just like strcat but allocate.
15198 (base_names): Eve out from open_files.
15199 Try to simplify the rather hairy computation of base_name and
15200 short_base_name.
15201 (open_files): Use it.
15202 * tests/suite.at (Checking output file names): New test.
15203
152042000-12-19 Akim Demaille <akim@epita.fr>
15205
15206 * src/system.h (obstack_grow_literal_string): Rename as...
15207 (obstack_grow_string): this.
15208 * src/output.c (output_parser): Recognize `%% actions' instead of
15209 `$'.
15210 * src/bison.s1: s/$/%% actions/.
15211 * src/bison.hairy: Likewise.
15212
152132000-12-19 Akim Demaille <akim@epita.fr>
15214
15215 * src/output.c (output_parser): Compute the `#line' lines when
15216 there are.
15217 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
15218 Suggested by Hans Aberg.
15219
152202000-12-19 Akim Demaille <akim@epita.fr>
15221
15222 Let the handling of the skeleton files be local to the procedures
15223 that use it.
15224
15225 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
15226 longer static.
15227 (fparser, open_extra_files): Remove.
15228 (open_files, output_files): Don't take care of fparser.
15229 * src/files.h: Adjust.
15230 * src/output.c (output_parser): Open and close the file to the
15231 skeleton.
15232 * src/reader.c (read_declarations): When %semantic_parser, open
15233 fguard.
15234
152352000-12-19 Akim Demaille <akim@epita.fr>
15236
15237 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
15238 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
15239
152402000-12-19 Akim Demaille <akim@epita.fr>
15241
15242 * src/files.c (open_files): Yipee! We no longer need all the code
15243 looking for `/tmp' since we have no tmp file.
15244
152452000-12-19 Akim Demaille <akim@epita.fr>
15246
15247 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
15248 New macros.
15249 * src/files.c (open_files): Less dependency on MSDOS etc.
15250
152512000-12-14 Akim Demaille <akim@epita.fr>
15252
15253 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
15254 Provide a default definition.
15255 Use it when executing the default @ action.
15256 * src/reader.c (reader_output_yylsp): No longer include
15257 `timestamp' and `text' in the default YYLTYPE.
15258
152592000-12-12 Akim Demaille <akim@epita.fr>
15260
15261 * src/reader.c (copy_definition, parse_union_decl, copy_action)
15262 (copy_guard): Quote the file names.
15263 Reported by Laurent Mascherpa.
15264
152652000-12-12 Akim Demaille <akim@epita.fr>
15266
15267 * src/output.c (output_headers, output_program, output): Be sure
15268 to escape special characters when outputting filenames.
15269 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
15270 (output_headers): Don't depend on them, Use ACTSTR.
15271
152722000-11-17 Akim Demaille <akim@epita.fr>
15273
15274 * lib/obstack.h: Formatting changes.
15275 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
15276 prevents type checking.
15277 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
15278 cast the value to (void *): assigning a `foo *' to a `void *'
15279 variable is valid.
15280 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
15281 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
15282 append characters.
15283
152842000-11-17 Akim Demaille <akim@epita.fr>
15285
15286 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
15287 as...
15288 (suite.m4, regression.m4, calc.m4): these.
15289 * tests/atgeneral.m4: Update from CVS Autoconf.
15290
152912000-11-17 Akim Demaille <akim@epita.fr>
15292
15293 * tests/regression.m4 (%union and --defines): New test,
15294 demonstrating a current bug in the obstack implementation.
15295
152962000-11-17 Akim Demaille <akim@epita.fr>
15297
15298 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
15299 macros.
15300 Use them to declare the variables which are global or local to
15301 `yyparse'.
15302
153032000-11-17 Akim Demaille <akim@epita.fr>
15304
15305 * acconfig.h: Remove, no longer used.
15306
153072000-11-07 Akim Demaille <akim@epita.fr>
15308
15309 * src: s/Copyright (C)/Copyright/g.
15310
153112000-11-07 Akim Demaille <akim@epita.fr>
15312
15313 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
15314 defining.
15315 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
15316
153172000-11-07 Akim Demaille <akim@epita.fr>
15318
15319 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
15320 Merge in a single CPP if/else.
15321
153222000-11-07 Akim Demaille <akim@epita.fr>
15323
15324 * src/output.c (output): Remove useless variables.
15325 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
15326 argument `data' for consistency with the prototypes.
15327 Qualify it `const'.
15328 (obstack_copy, obstack_copy0): Rename the second argument as
15329 `address' for consistency. Qualify it `const'.
15330 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
15331 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
15332 `const' their input argument (`data' or `address').
15333 Adjust the corresponding macros to include `const' in casts.
15334
153352000-11-03 Akim Demaille <akim@epita.fr>
15336
15337 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
15338 s/PFILE1/BISON_HAIRY/.
15339 Adjust dependencies.
15340
153412000-11-03 Akim Demaille <akim@epita.fr>
15342
15343 For some reason, this was not applied.
15344
15345 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15346 `unlink': it's no longer used.
15347
153482000-11-03 Akim Demaille <akim@epita.fr>
15349
15350 * src/files.c (skeleton_find): New function, eved out of...
15351 (open_files, open_extra_files): here.
15352
153532000-11-03 Akim Demaille <akim@epita.fr>
15354
15355 Don't use `atexit'.
15356
15357 * src/files.c (obstack_save): New function.
15358 (done): Rename as...
15359 (output_files): this.
15360 Use `obstack_save'.
15361 * src/main.c (main): Don't use `atexit' to register `done', since
15362 it no longer has to remove tmp files, just call `output_files'
15363 when there are no errors.
15364
153652000-11-02 Akim Demaille <akim@epita.fr>
15366
15367 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15368 `unlink': it's no longer used.
15369 * src/files.h: Formatting changes.
15370
153712000-11-02 Akim Demaille <akim@epita.fr>
15372
15373 Remove the last uses of mktemp and unlink/delete.
15374
15375 * src/files.c (fdefines, ftable): Removed.
15376 (defines_ostack, table_obstack): New.
15377 Adjust dependencies of the former into uses of the latter.
15378 * src/output.c (output_short_or_char_table, output_short_table):
15379 Convert to using obstacks.
15380 * src/reader.c (copy_comment2): Accept one FILE * and two
15381 obstacks.
15382 (output_token_defines, reader_output_yylsp): Use obstacks.
15383 * src/system.h (obstack_fgrow3): New.
15384 * po/POTFILES.in: Adjust.
15385
153862000-11-01 Akim Demaille <akim@epita.fr>
15387
15388 Change each use of `fattrs' into a use of `attrs_obstack'.
15389
15390 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
15391 * src/files.c (fattrs): Remove.
15392 (attrs_obstack): New.
15393 Adjust all dependencies.
15394 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
15395
153962000-11-01 Akim Demaille <akim@epita.fr>
15397
15398 Introduce obstacks.
15399 Change each use of `faction' into a use of `action_obstack'.
15400
15401 * lib/obstack.h, lib/obstack.c: New files.
15402 * src/files.c (faction): Remove.
15403 (action_obstack): New.
15404 Adjust all dependencies.
15405
154062000-10-20 Akim Demaille <akim@epita.fr>
15407
15408 * lib/quote.h (PARAMS): New macro. Use it.
15409
154102000-10-16 Akim Demaille <akim@epita.fr>
15411
15412 * src/output.c (output_short_or_char_table): New function.
15413 (output_short_table, output_token_translations): Use it.
15414 (goto_actions): Use output_short_table.
15415
154162000-10-16 Akim Demaille <akim@epita.fr>
15417
15418 * src/symtab.c (bucket_new): New function.
15419 (getsym): Use it.
15420
15421 * src/output.c (output_short_table): New argument to display the
15422 comment associated with the table.
15423 Adjust dependencies.
15424 (output_gram): Use it.
15425 (output_rule_data): Nicer output layout for YYTNAME.
15426
154272000-10-16 Akim Demaille <akim@epita.fr>
15428
15429 * src/lex.c (read_typename): New function.
15430 (lex): Use it.
15431 * src/reader.c (copy_dollar): Likewise.
15432
154332000-10-16 Akim Demaille <akim@epita.fr>
15434
15435 * src/reader.c (copy_comment2): Expect the input stream to be on
15436 the `/' which is suspected to open a comment, instead of being
15437 called after `//' or `/*' was read.
15438 (copy_comment, copy_definition, parse_union_decl, copy_action)
15439 (copy_guard): Adjust.
15440
154412000-10-16 Akim Demaille <akim@epita.fr>
15442
15443 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
15444 `read_signed_integer'.
15445
154462000-10-16 Akim Demaille <akim@epita.fr>
15447
15448 * src/reader.c (copy_dollar): New function.
15449 (copy_guard, copy_action): Use it.
15450
154512000-10-16 Akim Demaille <akim@epita.fr>
15452
15453 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
15454 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
15455 New files, from Fileutils 4.0.27.
15456 * src/main.c (printable_version): Remove.
15457 * src/lex.c, src/reader.c: Use `quote'.
15458
154592000-10-04 Akim Demaille <akim@epita.fr>
15460
15461 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
15462
154632000-10-04 Akim Demaille <akim@epita.fr>
15464
15465 * doc/bison.texinfo: Various typos spotted by Neil Booth.
15466
154672000-10-04 Akim Demaille <akim@epita.fr>
15468
15469 When a literal string is used to define two different tokens,
15470 `bison -v' segfaults.
15471 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
15472
15473 * tests/regression.m4: New file.
15474 Include the core of the sample provided by Piotr Gackiewicz.
15475 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
15476 properly.
15477
154782000-10-04 Akim Demaille <akim@epita.fr>
15479
15480 * src/reader.c (parse_expect_decl): Keep `count' within the size
15481 of `buffer'.
15482 From Neil Booth.
15483
154842000-10-02 Paul Eggert <eggert@twinsun.com>
15485
15486 * bison.s1 (yyparse): Assign the default value
15487 unconditionally, to avoid a GCC warning and make the parser a
15488 tad smaller.
15489
154902000-10-02 Akim Demaille <akim@epita.fr>
15491
15492 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
15493 options.
15494
154952000-10-02 Akim Demaille <akim@epita.fr>
15496
15497 * src/derives.c, src/print.c, src/reduce.c: To ease the
15498 translation, move some `\n' out of the translated strings.
15499
155002000-10-02 Akim Demaille <akim@epita.fr>
15501
15502 The location tracking mechanism is precious for parse error
15503 messages. Nevertheless, it is enabled only when `@n' is used in
15504 the grammar, which is a different issue (you can use it in error
15505 message, but not in the grammar per se). Therefore, there should
15506 be another means to enable it.
15507
15508 * src/getargs.c (getargs): Support `--locations'.
15509 (usage): Report it.
15510 * src/getargs.h (locationsflag): Export it.
15511 * src/lex.c (percent_table): Support `%locations'.
15512 * src/reader.c (yylsp_needed): Remove this variable, now replaced
15513 with `locationsflag'.
15514 * doc/bison.texinfo: Document `--locations' and `%locations'.
15515 Sort the options.
15516 * tests/calc.m4: Test it.
15517
15518 For regularity of the names, replace each
15519 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
15520 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
15521 In addition replace each `flag' with `_flag'.
15522
155232000-10-02 Akim Demaille <akim@epita.fr>
15524
15525 Also test parse error messages, including with YYERROR_VERBOSE.
15526
15527 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
15528 associative).
15529 Use it to check the computations.
15530 Use it to check `nonassoc' is honored.
15531 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
15532 `--yyerror-verbose'.
15533 (_AT_CHECK_CALC): Adjust to this option.
15534 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
15535
155362000-10-02 Akim Demaille <akim@epita.fr>
15537
15538 Test also `--verbose', `--defines' and `--name-prefix'. Testing
15539 the latter demonstrates a flaw in the handling of non debugging
15540 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
15541 was used in order to simplify:
15542
15543 #if YYDEBUG
15544 if (yydebug)
15545 {
15546 ...
15547 }
15548 #endif
15549
15550 into
15551
15552 if (yydebug)
15553 {
15554 ...
15555 }
15556
15557 unfortunately this leads to a CPP conflict when
15558 `--name-prefix=foo' is used since it produces `#define yydebug
15559 foodebug'.
15560
15561 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
15562 (YYDPRINTF): New macro.
15563 Spread its use.
15564 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
15565 the bison options.
15566 Also test `--verbose', `--defines' and `--name-prefix'.
15567
155682000-10-02 Akim Demaille <akim@epita.fr>
15569
15570 Improve the readability of the produced parsers.
15571
15572 * src/bison.s1: Formatting changes.
15573 Improve the comment related to the `$' mark.
15574 (yydefault): Don't fall through to `yyresume': `goto' there.
15575 * src/output.c (output_parser): When the `$' is met, skip the end
15576 of its line.
15577 New variable, `number_of_dollar_signs', to check there's exactly
15578 one `$' in the parser skeleton.
15579
155802000-10-02 Akim Demaille <akim@epita.fr>
15581
15582 * lib/xstrdup.c: New file, from the fileutils.
15583 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
15584 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
15585 instead of strlen + xmalloc + strcpy.
15586 * src/symtab.c (copys): Remove, use xstrdup instead.
15587
155882000-10-02 Akim Demaille <akim@epita.fr>
15589
15590 * src/gram.h (associativity): New enum type which replaces the
15591 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
15592 `right_assoc', `left_assoc' and `non_assoc'.
15593 Adjust all dependencies.
15594 * src/reader.c: Formatting changes.
15595 (LTYPESTR): Don't define it, use it as a literal in
15596 `reader_output_yylsp'.
15597 * src/symtab.h (symbol_class): New enum type which replaces the
15598 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
15599 `sunknown', `stoken and `snterm'.
15600
156012000-10-02 Akim Demaille <akim@epita.fr>
15602
15603 * src/getargs.c (fixed_outfiles): Rename as...
15604 (yaccflag): for consistency and accuracy.
15605 Adjust dependencies.
15606
156072000-10-02 Akim Demaille <akim@epita.fr>
15608
15609 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
15610 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
15611 difficult and introduced a lot of core dump. It turns out that
15612 Bison used an implementation of `xmalloc' based on `calloc', and
15613 at various places it does depend upon the initialization to 0. I
15614 have not tried to isolate the pertinent places, and all the former
15615 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
15616 someone should address this issue.
15617
15618 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
15619 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
15620 files.
15621 Adjust dependencies.
15622 * src/warshall.h: New file.
15623 Propagate.
15624
156252000-10-02 Akim Demaille <akim@epita.fr>
15626
15627 Various anti-`extern in *.c' changes.
15628
15629 * src/system.h: Include `assert.h'.
15630
156312000-10-02 Akim Demaille <akim@epita.fr>
15632
15633 * src/state.h (nstates, final_state, first_state, first_shift)
15634 (first_reduction): Move their exportation from here...
15635 * src/LR0.h: to here.
15636 Adjust dependencies.
15637 * src/getargs.c (statisticsflag): New variable.
15638 Add support for `--statistics'.
15639 Adjust dependencies.
15640
15641 Remove a lot of now useless `extern' statements in most files.
15642
156432000-10-02 Akim Demaille <akim@epita.fr>
15644
15645 * src/LR0.h: New file.
15646 Propagate its use.
15647
156482000-10-02 Akim Demaille <akim@epita.fr>
15649
15650 * src/print.h: New file.
15651 Propagate its use.
15652 * src/print.c: Formatting and ordering changes.
15653 (verbose, terse): Replace with...
15654 (print_results): this new function.
15655 Adjust dependencies.
15656
156572000-10-02 Akim Demaille <akim@epita.fr>
15658
15659 * src/conflicts.c (conflict_report): New function.
15660 (conflict_log, verbose_conflict_log): Replace with...
15661 (print_conflicts): this function.
15662 Adjust dependencies.
15663 * src/conflicts.h: New file.
15664 Propagate its inclusion.
15665
156662000-10-02 Akim Demaille <akim@epita.fr>
15667
15668 * src/nullable.h: New file.
15669 Propagate its inclusion.
15670 * src/nullable.c: Formatting changes.
15671
156722000-10-02 Akim Demaille <akim@epita.fr>
15673
15674 * src/reduce.h: New file.
15675 Propagate its inclusion.
15676 * src/reduce.c: Topological sort and other formatting changes.
15677 (bool, TRUE, FALSE): Move their definition to...
15678 * src/system.h: here.
15679
156802000-10-02 Akim Demaille <akim@epita.fr>
15681
15682 * src/files.c: Formatting changes.
15683 (tryopen, tryclose, openfiles): Rename as...
15684 (xfopen, xfclose, open_files): this.
15685 (stringappend): static.
15686 * src/files.h: Complete the list of exported symbols.
15687 Propagate its use.
15688
156892000-10-02 Akim Demaille <akim@epita.fr>
15690
15691 * src/reader.h: New file.
15692 Propagate its use instead of tedious list of `extern' and
15693 prototypes.
15694 * src/reader.c: Formatting changes, topological sort,
15695 s/register//.
15696
156972000-10-02 Akim Demaille <akim@epita.fr>
15698
15699 * src/lex.h: Prototype `lex.c' exported functions.
15700 * src/reader.c: Adjust.
15701 * src/lex.c: Formatting changes.
15702 (safegetc): Rename as...
15703 (xgetc): this.
15704
157052000-10-02 Akim Demaille <akim@epita.fr>
15706
15707 * src/lalr.h: New file.
15708 Propagate its inclusion instead of prototypes and `extern'.
15709 * src/lalr.c: Formatting changes, topological sorting etc.
15710
157112000-10-02 Akim Demaille <akim@epita.fr>
15712
15713 * src/output.c (token_actions): Introduce a temporary array,
15714 YYDEFACT, that makes it possible for this function to use
15715 output_short_table.
15716
157172000-10-02 Akim Demaille <akim@epita.fr>
15718
15719 `user_toknums' is output as a `short[]' in `output.c', while it is
15720 defined as a `int[]' in `reader.c'. For consistency with the
15721 other output tables, `user_toknums' is now defined as a table of
15722 shorts.
15723
15724 * src/reader.c (user_toknums): Be a short table instead of an int
15725 table.
15726 Adjust dependencies.
15727
15728 Factor the short table outputs.
15729
15730 * src/output.c (output_short_table): New function.
15731 * src/output.c (output_gram, output_stos, output_rule_data)
15732 (output_base, output_table, output_check): Use it.
15733
157342000-10-02 Akim Demaille <akim@epita.fr>
15735
15736 * src/output.c (output): Topological sort of the functions, in
15737 order to get rid of the `static' prototypes.
15738 No longer use `register'.
15739 * src/output.h: New file.
15740 Propagate its inclusion in files explicitly prototyping functions
15741 from output.c.
15742
157432000-09-21 Akim Demaille <akim@epita.fr>
15744
15745 * src/atgeneral.m4: Update from Autoconf.
15746
157472000-09-21 Akim Demaille <akim@epita.fr>
15748
15749 * src/closure.h: New file.
15750 * src/closure.c: Formatting changes, topological sort over the
15751 functions, use of closure.h.
15752 (initialize_closure, finalize_closure): Rename as...
15753 (new_closure, free_closure): these. Adjust dependencies.
15754 * src/LR0.c: Formatting changes, topological sort, use of
15755 cloture.h.
15756 (initialize_states): Rename as...
15757 (new_states): this.
15758 * src/Makefile.am (noinst_HEADERS): Adjust.
15759
157602000-09-20 Akim Demaille <akim@epita.fr>
15761
15762 * src/acconfig.h: Don't protect config.h against multiple
15763 inclusion.
15764 Don't define PARAMS.
15765 * src/system.h: Define PARAMS.
15766 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
15767 purpose of config.h. system.h must not try to fix wrong
15768 definitions in config.h.
15769
157702000-09-20 Akim Demaille <akim@epita.fr>
15771
15772 * src/derives.h: New file.
15773 * src/main.c, src/derives.h: Use it.
15774 Formatting changes.
15775 * src/Makefile.am (noinst_HEADERS): Adjust.
15776
157772000-09-20 Akim Demaille <akim@epita.fr>
15778
15779 * tests/atgeneral.m4: Update from Autoconf.
15780 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
15781 (AT_CHECK_CALC): New macros.
15782 Use these macros to test bison with options `', `--raw',
15783 `--debug', `--yacc', `--yacc --debug'.
15784
157852000-09-19 Akim Demaille <akim@epita.fr>
15786
15787 * src/output.c: Formatting changes.
15788 * src/machine.h: Remove, leaving its contents in...
15789 * src/system.h: here.
15790 Include stdio.h.
15791 Adjust all dependencies on stdio.h and machine.h.
15792 * src/getargs.h: New file.
15793 Let all `extern' declarations about getargs.c be replaced with
15794 inclusion of `getargs.h'.
15795 * src/Makefile.am (noinst_HEADERS): Adjust.
15796
15797 * tests/calc.m4 (yyin): Be initialized in main, not on the global
15798 scope.
15799 (yyerror): Returns void, not int.
15800 * doc/bison.texinfo: Formatting changes.
15801
158022000-09-19 Akim Demaille <akim@epita.fr>
15803
15804 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
15805 portable.
15806
158072000-09-18 Akim Demaille <akim@epita.fr>
15808
15809 * configure.in: Append WARNING_CFLAGS to CFLAGS.
15810 * src/Makefile.am (INCLUDES): Don't.
15811 Be ready to fetch headers in lib/.
15812
158132000-09-18 Akim Demaille <akim@epita.fr>
15814
15815 * doc/bison.texinfo: Update the copyright.
15816 ANSIfy and GNUify the examples.
15817 Remove the old menu.
15818
158192000-09-18 Akim Demaille <akim@epita.fr>
15820
15821 First set of tests: use the `calc' example from the documentation.
15822
15823 * src/bison.s1 (yyparse): Condition the code using `yytname' which
15824 is defined only when YYDEBUG is.
15825 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
15826 * src/files.c (tryopen, tryclose): Formatting changes.
15827 Move to the top and be static.
15828 * src/reader.c (read_signed_integer): Likewise.
15829 * tests/calc.m4: New file.
15830 * Makefile.am, suite.m4: Adjust.
15831 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
15832
158332000-09-18 Akim Demaille <akim@epita.fr>
15834
15835 Add support for an Autotest test suite for Bison.
15836
15837 * m4/m4.m4, m4/atconfig.m4: New files.
15838 * m4/Makefile.am (EXTRA_DIST): Adjust.
15839 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
15840 files.
15841 * src/getargs.c: Display a more standard --version message.
15842 * src/reader.c (reader): Formatting changes.
15843 No longer depend upon VERSION_STRING.
15844 * configure.in: No longer use `dnl'.
15845 Set up the test suite and the new directory `tests/.
15846 (VERSION_STRING): Remove.
15847
158482000-04-14 Akim Demaille <akim@epita.fr>
15849
15850 * src/reader.c (copy_comment2): New function, same as former
15851 `copy_comment', but outputs into two FILE *.
15852 (copy_comment): Use it.
15853 (parse_union_decl): Use it.
15854 (get_type, parse_start_decl): Use the same `invalid' message.
15855 (parse_start_decl, parse_union_decl): Use the same `multiple'
15856 message.
15857 (parse_union_decl, copy_guard, copy_action): Use the same
15858 `unmatched' message.
15859 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
15860
158612000-03-31 Akim Demaille <akim@epita.fr>
15862
15863 * src/files.c (tryopen, tryclose): Move to the top.
15864 Be static.
15865
158662000-03-31 Akim Demaille <akim@epita.fr>
15867
15868 * src/main.c (main): Don't call `done', exit does it.
15869
158702000-03-31 Akim Demaille <akim@epita.fr>
15871
15872 * allocate.c: s/return (foo)/return foo/.
15873 * lalr.c: Likewise.
15874 * LR0.c: Likewise.
15875 * output.c: Likewise.
15876 * reader.c: Likewise.
15877 * symtab.c: Likewise.
15878 * vmsgetargs.c: Likewise.
15879
158802000-03-31 Akim Demaille <akim@epita.fr>
15881
15882 Clean up the error reporting functions.
15883
15884 * src/report.c: New file.
15885 * src/report.h: Likewise.
15886 * src/Makefile.am: Adjust.
15887 * m4/error.m4: New file.
15888 * m4/Makefile.am: Adjust.
15889 * configure.in (jm_PREREQ_ERROR): Call it.
15890 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
15891 Remove.
15892 (fatal, fatals): Remove. All callers use complain.c::fatal.
15893 (warn, warni, warns, warnss, warnss): Remove. All callers use
15894 complain.c::complain.
15895 (toomany): Remove, use fatal instead.
15896 * src/files.c (done): No argument, use complain_message_count.
15897 * src/main.c (main): Register `done' to `atexit'.
15898
15899 * src/getargs.c (usage): More `fputs', less `fprintf'.
15900
159012000-03-28 Akim Demaille <akim@epita.fr>
15902
15903 * lib/: New directory.
15904 * Makefile.am (SUBDIRS): Adjust.
15905 * configure.in: Adjust.
15906 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
15907 useless.
15908 * src/alloca.c: Moved to lib/.
15909 * src/getopt.c: Likewise.
15910 * src/getopt1.c: Likewise.
15911 * src/getopt.h: Likewise.
15912 * src/ansi2knr.c: Likewise.
15913 * src/ansi2knr.1: Likewise.
15914 * src/Makefile.am: Adjust.
15915 * lib/Makefile.am: New file.
15916
159172000-03-28 Akim Demaille <akim@epita.fr>
15918
15919 * src/getargs.c (usage): Refresh the help message.
15920
159212000-03-17 Akim Demaille <akim@epita.fr>
15922
15923 * src/getopt1.c: Updated from textutils 2.0e
15924 * src/getopt.c: Likewise.
15925 * src/getopt.h: Likewise.
15926
159272000-03-17 Akim Demaille <akim@epita.fr>
15928
15929 * src/Makefile.am (bison.simple): Fix the awk program: quote only
15930 the file name, not the whole `#line LINE FILE'.
15931
159322000-03-17 Akim Demaille <akim@epita.fr>
15933
15934 On syntax errors, report the token on which we choked.
15935
15936 * src/bison.s1 (yyparse): In the label yyerrlab, when
15937 YYERROR_VERBOSE, add yychar in msg.
15938
159392000-03-17 Akim Demaille <akim@epita.fr>
15940
15941 * src/reader.c (copy_at): New function.
15942 (copy_guard): Use it.
15943 (copy_action): Use it.
15944
159452000-03-17 Akim Demaille <akim@epita.fr>
15946
15947 Be kind to translators, save some useless translations.
15948
15949 * src/main.c (banner): New function.
15950 (fatal_banner): Use it.
15951 (warn_banner): Use it.
15952
159532000-03-17 Akim Demaille <akim@epita.fr>
15954
15955 * src/reader.c (copy_definition): Use copy_string and
15956 copy_comment. Removed now unused `match', `ended',
15957 `cplus_comment'.
15958 (copy_comment, copy_string): Moved, to be visible from
15959 copy_definition.
15960
159612000-03-17 Akim Demaille <akim@epita.fr>
15962
15963 * src/reader.c (copy_string): Declare `static inline'. No
15964 problems with inline, since it is checked by configure.
15965 (copy_comment): Likewise.
15966
159672000-03-17 Akim Demaille <akim@epita.fr>
15968
15969 * src/reader.c (packsymbols): Formatting changes.
15970
159712000-03-17 Akim Demaille <akim@epita.fr>
15972
15973 * src/reader.c (copy_comment): New function, factored out from:
15974 (copy_action): Use it. Removed now unused `match', `ended',
15975 `cplus_comment'.
15976 (copy_guard): Likewise.
15977
159782000-03-17 Akim Demaille <akim@epita.fr>
15979
15980 * src/reader.c (copy_string): New function, factored out from:
15981 (copy_action): Use it.
15982 (copy_guard): Likewise.
15983
159842000-03-17 Akim Demaille <akim@epita.fr>
15985
15986 Change the handling of @s so that they behave exactly like $s.
15987 There is now a pseudo variable @$ (readble and writable), location
15988 of the lhs of the rule (by default ranging from the location of
15989 the first symbol of the rhs, to the location of the last symbol,
15990 or, if the rhs is empty, YYLLOC).
15991
15992 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
15993 yyval.
15994 (yyparse): When providing a default semantic action, provide a
15995 default location action.
15996 (after the $): No longer change `*YYLSP', just stack YYLOC the
15997 same way you stack YYVAL.
15998 * src/reader.c (read_declarations): Use warns.
15999 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
16000 (copy_action, case '@'): Likewise.
16001 Use a standard error message, to save useless work from
16002 translators.
16003
160042000-03-17 Akim Demaille <akim@epita.fr>
16005
16006 * src/bison.s1: Formatting and cosmetics changes.
16007 * src/reader.c: Likewise.
16008 Update the Copyright notice.
16009
160102000-03-17 Akim Demaille <akim@epita.fr>
16011
16012 * src/bison.s1 (#line): All set to `#line' only, since the
16013 Makefile now handles them.
16014
160152000-03-16 Akim Demaille <akim@epita.fr>
16016
16017 * src/output.c (output_rule_data): Output the documentation of
16018 some of the tables.
16019 (Copyright notice): Update.
16020 Formatting changes.
16021
160222000-03-16 Akim Demaille <akim@epita.fr>
16023
16024 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
16025 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
16026 One `#if YYDEBUG' remains, since it uses variables which are
16027 defined only if `YYDEBUG != 0'.
16028
160292000-03-16 Akim Demaille <akim@epita.fr>
16030
16031 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
16032 and related variables so that the similarities are highlighted.
16033
160342000-03-16 Akim Demaille <akim@epita.fr>
16035
16036 * src/bison.s1: Properly indent CPP directives.
16037
160382000-03-16 Akim Demaille <akim@epita.fr>
16039
16040 * src/bison.s1: Properly indent the `alloca' CPP section.
16041
160422000-03-16 Akim Demaille <akim@epita.fr>
16043
16044 Do not hard code values of directories in `configure.in'.
16045 Update the `configure' tool chain.
16046
16047 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
16048 src/makefile.am.
16049 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
16050 (AC_OUTPUT): Add m4/Makefile.
16051 Bump to bison 1.28a, 1.29 has never been released.
16052 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
16053 handled via src/Makefile.am.
16054 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
16055 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
16056 autoheader.
16057 * Makefile.am (SUBDIRS): Add m4.
16058 (ACLOCAL_AM_FLAGS): New variable.
16059 (AUTOMAKE_OPTIONS): Add check-news.
16060 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
16061 the proper line number and file name.
16062 (DEFS): Propagate the location of bison library files and of the
16063 locale files.
16064 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
16065 builddir.
16066 * acinclude.m4: Remove, replaced by the directory m4.
16067 * m4/Makefile.am (EXTRA_DIST): New variable.
16068 * m4/gettext.m4: New file, from the fileutils.
16069 * m4/lcmessage.m4: Likewise
16070 * m4/progtest.m4: Likewise.
16071 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
16072
160732000-03-10 Akim Demaille <akim@epita.fr>
16074
16075 * src/closure.c:
16076 Formatting changes of various comments.
16077 Respect the GNU coding standards at various places.
16078 Don't use `_()' when no translation is needed.
16079
160801999-12-13 Jesse Thilo <jthilo@gnu.org>
16081
16082 * src/files.c:
16083 OS/2 honors TMPDIR environment variable.
16084
160851999-12-13 Jesse Thilo <jthilo@gnu.org>
16086
16087 * doc/bison.texinfo: Tweaked spelling and grammar.
16088 Updated ISBN.
16089 Removed reference to price of printed copy.
16090 Mention BISON_SIMPLE and BISON_HAIRY.
16091
160921999-12-13 Jesse Thilo <jthilo@gnu.org>
16093
16094 * configure.in, NEWS:
16095 Bison 1.29 released.
16096
160971999-10-27 Jesse Thilo <jthilo@gnu.org>
16098
16099 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
16100 Added reference card.
16101
161021999-07-26 Jesse Thilo <jthilo@gnu.org>
16103
16104 * po/ru.po: Added Russian translation.
16105
161061999-07-26 Jesse Thilo <jthilo@gnu.org>
16107
16108 * configure.in: Added Russian translation.
16109
161101999-07-06 Jesse Thilo <jthilo@gnu.org>
16111
16112 * configure.in, NEWS, README:
16113 Released version 1.28.
16114
161151999-06-14 Jesse Thilo <jthilo@gnu.org>
16116
16117 * src/system.h:
16118 Squashed redefinition warning on some systems.
16119
16120 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
16121 Have configure build version string instead of relying on ANSI string
16122 concatentation.
16123
161241999-06-14 Jesse Thilo <jthilo@gnu.org>
16125
16126 * po/POTFILES.in: Got rid of version.c.
16127
161281999-06-14 Jesse Thilo <jthilo@gnu.org>
16129
16130 * acconfig.h, configure.in:
16131 Have configure build version string instead of relying on ANSI string
16132 concatentation.
16133
161341999-06-08 Jesse Thilo <jthilo@gnu.org>
16135
16136 * doc/bison.1:
16137 Dropped mention of `+' for long-named options.
16138
161391999-05-30 Jesse Thilo <jthilo@gnu.org>
16140
16141 * src/files.c: Added <unistd.h> for unlink().
16142
16143 * src/Makefile.am, src/system.h:
16144 I18n fixes.
16145
161461999-05-30 Jesse Thilo <jthilo@gnu.org>
16147
16148 * README: Added a FAQ list.
16149
16150 * configure.in, acconfig.h:
16151 I18n fixes.
16152
161531999-05-30 Jesse Thilo <jthilo@gnu.org>
16154
16155 * doc/FAQ, doc/Makefile.am:
16156 Added a FAQ list.
16157
161581999-05-19 Jesse Thilo <jthilo@gnu.org>
16159
16160 * src/alloc.h, src/symtab.h, src/version.c:
16161 Protected inclusion of "config.h" with HAVE_CONFIG_H.
16162
161631999-04-18 Jesse Thilo <jthilo@gnu.org>
16164
16165 * src/.cvsignore, src/Makefile.am:
16166 Reorganized: sources in `src', documentation in `doc'.
16167
16168 * src/lex.c (literalchar):
16169 fixed the code for escaping double quotes (thanks
16170 Jonathan Czisny.)
16171
161721999-04-18 Jesse Thilo <jthilo@gnu.org>
16173
16174 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
16175 Adjusted paths to reflect directory reorganization.
16176
161771999-04-18 Jesse Thilo <jthilo@gnu.org>
16178
16179 * doc/.cvsignore, doc/Makefile.am:
16180 Reorganized: sources in `src', documentation in `doc'.
16181
161821999-04-18 Jesse Thilo <jthilo@gnu.org>
16183
16184 * configure.in:
16185 Updated AC_INIT file to reflect directory reorganization.
16186
16187 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
16188 Reorganized: sources in `src', documentation in `doc'.
16189
161901999-04-13 Jesse Thilo <jthilo@gnu.org>
16191
16192 * src/allocate.c:
16193 Don't declare calloc() and realloc() if not necessary.
16194
161951999-04-13 Jesse Thilo <jthilo@gnu.org>
16196
16197 * configure.in, acconfig.h, acinclude.m4:
16198 Don't declare calloc() and realloc() if not necessary.
16199
162001999-03-23 Jesse Thilo <jthilo@gnu.org>
16201
16202 * po/.cvsignore: Added i18n support.
16203
162041999-03-23 Jesse Thilo <jthilo@gnu.org>
16205
16206 * acconfig.h, configure.in, Makefile.am:
16207 Added i18n support.
16208
162091999-03-22 Jesse Thilo <jthilo@gnu.org>
16210
16211 * src/bison.s1: Fixed #line numbers.
16212
162131999-03-15 Jesse Thilo <jthilo@gnu.org>
16214
16215 * po/es.po, po/fr.po, po/nl.po, po/de.po:
16216 Added PO files from Translation Project.
16217
162181999-03-03 Jesse Thilo <jthilo@gnu.org>
16219
16220 * Makefile.am:
16221 Added support for non-ANSI compilers (ansi2knr).
16222
162231999-02-16 Jesse Thilo <jthilo@gnu.org>
16224
16225 * configure.in: Bumped version number to 1.27.
16226
16227 * Makefile.am:
16228 Added `bison.simple' to list of files removed by `make distclean'.
16229
162301999-02-12 Jesse Thilo <jthilo@gnu.org>
16231
16232 * src/files.c, src/files.h:
16233 Defined locations of parser files in config.h instead of Makefile.
16234
162351999-02-12 Jesse Thilo <jthilo@gnu.org>
16236
16237 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
16238 Defined locations of parser files in config.h instead of Makefile.
16239
162401999-02-09 Jesse Thilo <jthilo@gnu.org>
16241
16242 * Makefile.am:
16243 Removed inappropriate use of $< macro.
16244
162451999-02-05 Jesse Thilo <jthilo@gnu.org>
16246
16247 * po/Makefile.in.in, po/POTFILES.in:
16248 Add `po' directory skeleton.
16249
162501999-01-27 Jesse Thilo <jthilo@gnu.org>
16251
16252 * README: Document help-bison list.
16253
16254 * configure.in: Add check for mkstemp().
16255
162561999-01-20 Jesse Thilo <jthilo@gnu.org>
16257
16258 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
16259 Hush a few compiler warnings.
16260
16261 * src/files.c:
16262 Add tryclose(), which verifies that fclose was successful.
16263 Hush a couple of compiler warnings.
16264
162651999-01-20 Jesse Thilo <jthilo@gnu.org>
16266
16267 * Makefile.am, OChangeLog:
16268 ChangeLog is now automatically generated. Include the old version as
16269 OChangeLog.
16270
162711999-01-14 Jesse Thilo <jthilo@gnu.org>
16272
16273 * 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:
16274 Update FSF address.
16275
162761999-01-14 Jesse Thilo <jthilo@gnu.org>
16277
16278 * doc/bison.texinfo: Fix formatting glitch.
16279
16280 * doc/bison.texinfo: Update FSF address.
16281
162821999-01-14 Jesse Thilo <jthilo@gnu.org>
16283
16284 * acconfig.h: Update FSF address.
16285
162861999-01-08 Jesse Thilo <jthilo@gnu.org>
16287
16288 * src/system.h:
16289 Don't define PACKAGE here, since config.h defines it.
16290
162911998-12-30 Jesse Thilo <jthilo@gnu.org>
16292
16293 * src/reader.c: Update copyright date.
16294
16295 * src/main.c:
16296 Ditch sprintf to statically-sized buffers in fatal/warn functions in
16297 favor of output directly to stderr (avoids buffer overruns).
16298
16299 * src/reader.c: Some checks for premature EOF.
16300
16301 * 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:
16302 Use prototypes if the compiler understands them.
16303
16304 * src/files.c: Honor TMPDIR on Unix hosts.
16305 Use prototypes if the compiler understands them.
16306
16307 * src/reader.c:
16308 Fix a couple of buffer overrun bugs.
16309 Use prototypes if the compiler understands them.
16310
16311 * src/system.h: Include unistd.h and ctype.h.
16312 Use #ifdef instead of #if for NLS symbols.
16313
163141998-12-30 Jesse Thilo <jthilo@gnu.org>
16315
16316 * doc/bison.texinfo:
16317 Delete comment "consider using @set for edition number, etc..." since
16318 we now are doing so.
16319
163201998-12-30 Jesse Thilo <jthilo@gnu.org>
16321
16322 * configure.in:
16323 Use prototypes if the compiler understands them.
16324
16325 * NEWS: Document 1.26 highlights.
16326
16327 * Makefile.am: Require Automake 1.3 or later.
16328
16329 * acconfig.h:
16330 Use prototypes if the compiler understands them.
16331
163321998-12-29 Jesse Thilo <jthilo@gnu.org>
16333
16334 * src/version.c:
16335 Use VERSION symbol from automake for version number.
16336
163371998-12-29 Jesse Thilo <jthilo@gnu.org>
16338
16339 * acconfig.h, configure.in, version.cin:
16340 Use VERSION symbol from automake for version number.
16341
163421998-11-28 Jesse Thilo <jthilo@gnu.org>
16343
16344 * Makefile.am:
16345 Distribute original version of simple parser (bison.s1), not built
16346 version (bison.simple).
16347
163481998-11-28 Jesse Thilo <jthilo@gnu.org>
16349
16350 * doc/bison.texinfo: Add info dir entry.
16351
16352 * doc/bison.texinfo:
16353 Let automake put version number into documentation.
16354
163551998-11-26 Jesse Thilo <jthilo@gnu.org>
16356
16357 * src/bison.cld, src/build.com, src/vmshlp.mar:
16358 Add non-RCS files from /gd/gnu/bison.
16359
163601998-11-26 Jesse Thilo <jthilo@gnu.org>
16361
16362 * doc/bison.1:
16363 Document the BISON_HAIRY and BISON_SIMPLE variables.
16364
163651998-11-25 Jesse Thilo <jthilo@gnu.org>
16366
16367 * src/version.c: Build version.c automatically.
16368
16369 * src/reader.c:
16370 Fix token numbering (used to start at 258, not 257).
16371
16372 * src/system.h: Include config.h.
16373
16374 * src/getargs.c: Update bug report address.
16375
16376 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
16377 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
16378
163791998-11-25 Jesse Thilo <jthilo@gnu.org>
16380
16381 * Makefile.am:
16382 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16383
16384 * configure.in, version.cin:
16385 Build version.c automatically.
16386
16387 * AUTHORS: Add AUTHORS file.
16388
16389 * README: Update bug report address.
16390
16391 * bison.simple:
16392 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16393
16394 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
16395 Add automake stuff.
16396
163971998-11-25 Jesse Thilo <jthilo@gnu.org>
16398
16399 * doc/bison.texinfo: Clean up some formatting.
16400
164011998-05-05 Richard Stallman <rms@gnu.org>
16402
16403 * doc/bison.texinfo:
16404 Explain better why to make a pure parser.
16405
164061998-01-05 Richard Stallman <rms@gnu.org>
16407
16408 * src/files.c (openfiles):
16409 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
16410 find a temporary directory, if possible. Do not unlink files while
16411 they are open.
16412
164131997-08-25 Richard Stallman <rms@gnu.org>
16414
16415 * src/reader.c (stack_offset;):
16416 Change some warni to warns.
16417
16418 * src/lex.c (literalchar): Use warns, not warni.
16419
164201997-06-28 Richard Stallman <rms@gnu.org>
16421
16422 * src/bison.s1: Add a Bison version comment.
16423
16424 * src/main.c (fatal, warn, berror):
16425 Use program_name.
16426
164271997-06-28 Richard Stallman <rms@gnu.org>
16428
16429 * Makefile.in (bison_version): New variable.
16430 (dist): Use that variable.
16431 (bison.s1): Substitute the Bison version into bison.simple.
16432
16433 * bison.simple: Add a Bison version comment.
16434
164351997-06-18 Richard Stallman <rms@gnu.org>
16436
16437 * src/main.c (fatal, warn, berror):
16438 Make error messages standard.
16439 (toomany): Improve error message text.
16440
16441 * 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:
16442 new.h renamed to alloc.h.
16443
164441997-06-18 Richard Stallman <rms@gnu.org>
16445
16446 * Makefile.in: new.h renamed to alloc.h.
16447
164481997-05-24 Richard Stallman <rms@gnu.org>
16449
16450 * src/lex.c (literalchar):
16451 Fix the code for escaping \, " and '.
16452
16453 (lex): Avoid trouble when there are many chars
16454 to discard in a char literal with just several chars in it.
16455
164561997-05-17 Richard Stallman <rms@gnu.org>
16457
16458 * src/bison.s1:
16459 Use malloc, if using alloca is troublesome.
16460 (YYSTACK_USE_ALLOCA): New flag macro.
16461 Define it for some systems and compilers.
16462 (YYSTACK_ALLOC): New macro.
16463 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16464 If it was malloc'd, free it.
16465
164661997-05-17 Richard Stallman <rms@gnu.org>
16467
16468 * bison.simple:
16469 Use malloc, if using alloca is troublesome.
16470 (YYSTACK_USE_ALLOCA): New flag macro.
16471 Define it for some systems and compilers.
16472 (YYSTACK_ALLOC): New macro.
16473 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16474 If it was malloc'd, free it.
16475
164761997-04-23 Richard Stallman <rms@gnu.org>
16477
16478 * src/bison.s1:
16479 (alloca) [__hpux]: Always define as __builtin_alloca.
16480
164811997-04-23 Richard Stallman <rms@gnu.org>
16482
16483 * bison.simple:
16484 (alloca) [__hpux]: Always define as __builtin_alloca.
16485
164861997-04-22 Richard Stallman <rms@gnu.org>
16487
16488 * src/bison.s1:
16489 [__hpux]: Include alloca.h (right for HPUX 10)
16490 instead of declaring alloca (right for HPUX 9).
16491
16492 * src/bison.s1 (__yy_memcpy):
16493 Declare arg `count' as unsigned int.
16494 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16495
164961997-04-22 Richard Stallman <rms@gnu.org>
16497
16498 * bison.simple:
16499 [__hpux]: Include alloca.h (right for HPUX 10)
16500 instead of declaring alloca (right for HPUX 9).
16501
16502 * bison.simple (__yy_memcpy):
16503 Declare arg `count' as unsigned int.
16504 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16505
165061997-01-03 Richard Stallman <rms@gnu.org>
16507
16508 * src/allocate.c: [__STDC__ or _MSC_VER]:
16509 Declare calloc and realloc to return void *.
16510
165111997-01-02 Richard Stallman <rms@gnu.org>
16512
16513 * src/system.h:
16514 [_MSC_VER]: Include stdlib.h and process.h.
16515 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
16516
16517 * src/main.c (main): Return FAILURE as a value.
16518 (printable_version): Declare arg as int, not char.
16519
165201997-01-02 Richard Stallman <rms@gnu.org>
16521
16522 * Makefile.in (dist):
16523 Explicitly check for symlinks, and copy them.
16524
165251996-12-19 Richard Stallman <rms@gnu.org>
16526
16527 * src/files.c:
16528 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
16529
165301996-12-18 Paul Eggert <eggert@gnu.org>
16531
16532 * src/bison.s1 (yyparse):
16533 If __GNUC__ and YYPARSE_PARAM are both defined,
16534 declare yyparse to have a void * argument.
16535
165361996-12-18 Paul Eggert <eggert@gnu.org>
16537
16538 * bison.simple (yyparse):
16539 If __GNUC__ and YYPARSE_PARAM are both defined,
16540 declare yyparse to have a void * argument.
16541
165421996-12-17 Richard Stallman <rms@gnu.org>
16543
16544 * src/reduce.c (nbits): Add some casts.
16545
165461996-08-12 Richard Stallman <rms@gnu.org>
16547
16548 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
16549
165501996-08-12 Richard Stallman <rms@gnu.org>
16551
16552 * bison.simple: Test _MSDOS as well as _MSDOS_.
16553
165541996-07-31 Richard Stallman <rms@gnu.org>
16555
16556 * src/bison.s1:
16557 [__sun && __i386]: Include alloca.h.
16558
165591996-07-31 Richard Stallman <rms@gnu.org>
16560
16561 * bison.simple:
16562 [__sun && __i386]: Include alloca.h.
16563
165641996-07-30 Richard Stallman <rms@gnu.org>
16565
16566 * src/bison.s1: Comment change.
16567
16568 * src/bison.s1: Test _MSDOS_, not MSDOS.
16569
165701996-07-30 Richard Stallman <rms@gnu.org>
16571
16572 * bison.simple: Comment change.
16573
16574 * bison.simple: Test _MSDOS_, not MSDOS.
16575
165761996-06-01 Richard Stallman <rms@gnu.org>
16577
16578 * 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:
16579 Insert `_' macro around many string constants.
16580
16581 * src/main.c:
16582 Insert `_' macro around many string constants.
16583
16584 (main): Call setlocale, bindtextdomain and textdomain.
16585
16586 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
16587 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
16588 [ENABLE_NLS]: Include libintl.h.
16589 [ENABLE_NLS] (gettext): Define.
16590 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
16591 (N_, PACKAGE, LOCALEDIR): New macros.
16592
165931996-06-01 Richard Stallman <rms@gnu.org>
16594
16595 * POTFILES.in: New file.
16596
16597 * Makefile.in (allocate.o):
16598 Define target explicitly.
16599
16600 * Makefile.in (CFLAGS): Set to @CFLAGS@.
16601 (LDFLAGS): Set to @LDFLAGS@.
16602 (configure): Run autoconf only if preceding `cd' succeeds.
16603 (bison.s1): Redirect output to temporary file then move the
16604 temporary to the target, rather than redirecting directly to bison.s1.
16605 (clean): Remove config.status and config.log.
16606 (distclean): Don't remove config.status here.
16607
166081996-05-12 Richard Stallman <rms@gnu.org>
16609
16610 * src/bison.s1:
16611 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16612
166131996-05-12 Richard Stallman <rms@gnu.org>
16614
16615 * bison.simple:
16616 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16617
166181996-05-11 Richard Stallman <rms@gnu.org>
16619
16620 * src/bison.s1 (__yy_memcpy):
16621 Really reorder the args, as was supposedly done on Feb 14 1995.
16622 (yyparse): Calls changed accordingly.
16623
166241996-05-11 Richard Stallman <rms@gnu.org>
16625
16626 * Makefile.in (dist): Don't use $(srcdir).
16627
16628 * bison.simple (__yy_memcpy):
16629 Really reorder the args, as was supposedly done on Feb 14 1995.
16630 (yyparse): Calls changed accordingly.
16631
166321996-01-27 Richard Stallman <rms@gnu.org>
16633
16634 * src/output.c (output_rule_data):
16635 Test YYERROR_VERBOSE in the conditional
16636 around the definition of ttyname.
16637
166381995-12-29 Richard Stallman <rms@gnu.org>
16639
16640 * src/bison.s1:
16641 Fix line numbers in #line commands.
16642
166431995-12-29 Richard Stallman <rms@gnu.org>
16644
16645 * bison.simple:
16646 Fix line numbers in #line commands.
16647
166481995-12-27 Richard Stallman <rms@gnu.org>
16649
16650 * src/bison.s1 (YYPARSE_PARAM_DECL):
16651 In C++, make it always null.
16652 (YYPARSE_PARAM_ARG): New macro.
16653 (yyparse): Use YYPARSE_PARAM_ARG.
16654
166551995-12-27 Richard Stallman <rms@gnu.org>
16656
16657 * bison.simple (YYPARSE_PARAM_DECL):
16658 In C++, make it always null.
16659 (YYPARSE_PARAM_ARG): New macro.
16660 (yyparse): Use YYPARSE_PARAM_ARG.
16661
166621995-11-29 Richard Stallman <rms@gnu.org>
16663
16664 * doc/bison.texinfo:
16665 Describe literal string tokens, %raw, %no_lines, %token_table.
16666
166671995-11-29 Daniel Hagerty <hag@gnu.org>
16668
16669 * doc/bison.texinfo: Fixed update date
16670
166711995-10-16 Richard Stallman <rms@gnu.org>
16672
16673 * src/version.c: Version 1.25.
16674
166751995-10-16 Richard Stallman <rms@gnu.org>
16676
16677 * NEWS: *** empty log message ***
16678
166791995-10-16 Richard Stallman <rms@gnu.org>
16680
16681 * doc/bison.1, doc/bison.rnh:
16682 Add new options.
16683
166841995-10-15 Richard Stallman <rms@gnu.org>
16685
16686 * src/vmsgetargs.c, src/getargs.c:
16687 Added -n, -k, and -raw switches.
16688 (noparserflag, toknumflag, rawtoknumflag): New variables.
16689
16690 * src/symtab.h (SALIAS):
16691 New #define for adding aliases to %token.
16692 (struct bucket): Added `alias' field.
16693
16694 * src/reduce.c (reduce_grammar):
16695 Revise error message.
16696 (print_notices): Remove final `.' from error message.
16697
16698 * src/reader.c (reader_output_yylsp):
16699 New function.
16700 (readgram): Use `#if 0' around code that accepted %command
16701 inside grammar rules: The documentation doesn't allow it,
16702 and it will fail since the %command processors scan for the next %.
16703 (parse_token_decl): Extended the %token
16704 declaration to allow a multi-character symbol as an alias.
16705 (parse_thong_decl): New function.
16706 (read_declarations): Added %thong declarations.
16707 (read_declarations): Handle NOOP to deal with allowing
16708 % declarations as another means to specify the flags.
16709 (readgram): Allow %prec prior to semantics embedded in a rule.
16710 (skip_to_char, read_declarations, copy_definition)
16711 (parse_token_decl, parse_start_decl, parse_type_decl)
16712 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
16713 (get_type_name, copy_guard, copy_action, readgram)
16714 (get_type, packsymbols): Revised most error messages.
16715 Changed `fatal' to `warnxxx' to avoid aborting for error.
16716 Revised and use multiple warnxxx functions to avoid using VARARGS1.
16717 (read_declarations): Improve the error message for
16718 an invalid character. Do not abort.
16719 (read_declarations, copy_guard, copy_action): Use
16720 printable_version to avoid unprintable characters in printed output.
16721 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
16722 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
16723 Allow the type of a non-terminal can be given
16724 more than once, as long as all specifications give the same type.
16725
16726 * src/output.c:
16727 (output_headers, output_trailers, output, output_gram)
16728 (output_rule_data): Implement noparserflag variable.
16729 Implement toknumflag variable.
16730 (output): Call reader_output_yylsp to output LTYPESTR.
16731
16732 * src/main.c (main):
16733 If reader sees an error, don't process the grammar.
16734 (fatals): Updated to not use VARARGS1.
16735 (printable_version, int_to_string, warn, warni, warns, warnss)
16736 (warnsss): New error reporting functions. Avoid abort for error.
16737
16738 * src/lex.h:
16739 Added THONG and NOOP for alias processing.
16740 Added SETOPT for the new code that allows setting options with %flags.
16741
16742 * src/lex.c:
16743 Include getopt.h. Add some extern decls.
16744 (safegetc): New function to deal with EOF gracefully.
16745 (literalchar); new function to deal with reading \ escapes.
16746 (lex): Use literalchar.
16747 (lex): Implemented "..." tokens.
16748 (literalchar, lex, parse_percent_token): Made tokenbuffer
16749 always contain the token. This includes growing the token
16750 buffer while reading an integer.
16751 (parse_percent_token): Replaced if-else statement with percent_table.
16752 (parse_percent_token): Added % declarations as another
16753 way to specify the flags -n, -l, and -r. Also added hooks for
16754 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
16755 major changes to files.c.
16756 (lex) Retain in the incoming stream a character following
16757 an incorrect '/'.
16758 (skip_white_space, lex): Revised most error messages
16759 and changed fatal to warn to avoid aborting.
16760 (percent_table): Added %thong declarations.
16761
16762 * src/gram.h: Comment changes.
16763
16764 * src/files.c (openfiles, open_extra_files, done):
16765 Add faction flag
16766 and actfile file. Handle noparserflag. Both for -n switch.
16767
16768 * src/conflicts.c (resolve_sr_conflict):
16769 Remove use of alloca.
16770
167711995-06-01 Jim Meyering <meyering@gnu.org>
16772
16773 * doc/bison.texinfo: *** empty log message ***
16774
167751995-05-06 Richard Stallman <rms@gnu.org>
16776
16777 * src/bison.s1: Comment change.
16778
167791995-05-06 Richard Stallman <rms@gnu.org>
16780
16781 * bison.simple: Comment change.
16782
167831995-05-03 Richard Stallman <rms@gnu.org>
16784
16785 * src/version.c: Version now 1.24.
16786
16787 * src/bison.s1: Change distribution terms.
16788
16789 * src/version.c: Version now 1.23.
16790
167911995-05-03 Richard Stallman <rms@gnu.org>
16792
16793 * doc/bison.texinfo:
16794 Rewrite "Conditions for Using Bison".
16795 Update version to 1.24.
16796
167971995-05-03 Richard Stallman <rms@gnu.org>
16798
16799 * bison.simple: Change distribution terms.
16800
168011995-02-23 Richard Stallman <rms@gnu.org>
16802
16803 * src/files.c: Test __VMS_POSIX as well as VMS.
16804
168051995-02-14 Jim Meyering <meyering@gnu.org>
16806
16807 * src/bison.s1 (__yy_memcpy):
16808 Renamed from __yy_bcopy to avoid
16809 confusion. Reverse FROM and TO arguments to be consistent with
16810 those of memcpy.
16811
168121995-02-14 Jim Meyering <meyering@gnu.org>
16813
16814 * bison.simple (__yy_memcpy):
16815 Renamed from __yy_bcopy to avoid
16816 confusion. Reverse FROM and TO arguments to be consistent with
16817 those of memcpy.
16818
168191994-11-10 David J. MacKenzie <djm@gnu.org>
16820
16821 * NEWS: reformat
16822
16823 * NEWS: New file.
16824
16825 * Makefile.in (DISTFILES): Include NEWS.
16826
16827 * Makefile.in (DISTFILES):
16828 Include install-sh, not install.sh.
16829
16830 * configure.in: Update to Autoconf v2 macro names.
16831
168321994-10-05 David J. MacKenzie <djm@gnu.org>
16833
16834 * Makefile.in: fix typo
16835
16836 * Makefile.in (prefix, exec_prefix):
16837 Let configure set them.
16838
168391994-09-28 David J. MacKenzie <djm@gnu.org>
16840
16841 * Makefile.in: Set datadir to $(prefix)/share.
16842
168431994-09-15 Richard Stallman <rms@gnu.org>
16844
16845 * src/bison.s1:
16846 Update copyright notice and GPL version.
16847
168481994-09-15 Richard Stallman <rms@gnu.org>
16849
16850 * bison.simple:
16851 Update copyright notice and GPL version.
16852
168531994-07-12 Richard Stallman <rms@gnu.org>
16854
16855 * src/reduce.c, src/reader.c:
16856 entered into RCS
16857
168581994-05-05 David J. MacKenzie <djm@gnu.org>
16859
16860 * Makefile.in: entered into RCS
16861
168621994-03-26 Richard Stallman <rms@gnu.org>
16863
16864 * src/bison.s1: entered into RCS
16865
168661994-03-26 Richard Stallman <rms@gnu.org>
16867
16868 * bison.simple: entered into RCS
16869
168701994-03-25 Richard Stallman <rms@gnu.org>
16871
16872 * src/main.c: entered into RCS
16873
168741994-03-24 Richard Stallman <rms@gnu.org>
16875
16876 * src/conflicts.c: entered into RCS
16877
168781994-01-02 Richard Stallman <rms@gnu.org>
16879
16880 * Makefile.in: *** empty log message ***
16881
168821993-11-21 Richard Stallman <rms@gnu.org>
16883
16884 * src/bison.s1: *** empty log message ***
16885
168861993-11-21 Richard Stallman <rms@gnu.org>
16887
16888 * doc/bison.texinfo: entered into RCS
16889
16890 * doc/bison.texinfo: *** empty log message ***
16891
168921993-11-21 Richard Stallman <rms@gnu.org>
16893
16894 * bison.simple: *** empty log message ***
16895
168961993-10-25 David J. MacKenzie <djm@gnu.org>
16897
16898 * doc/bison.texinfo: *** empty log message ***
16899
169001993-10-19 Richard Stallman <rms@gnu.org>
16901
16902 * src/bison.s1: *** empty log message ***
16903
169041993-10-19 Richard Stallman <rms@gnu.org>
16905
16906 * bison.simple: *** empty log message ***
16907
169081993-10-14 Richard Stallman <rms@gnu.org>
16909
16910 * src/bison.s1: *** empty log message ***
16911
169121993-10-14 Richard Stallman <rms@gnu.org>
16913
16914 * bison.simple: *** empty log message ***
16915
169161993-09-14 David J. MacKenzie <djm@gnu.org>
16917
16918 * doc/bison.texinfo: *** empty log message ***
16919
169201993-09-13 Noah Friedman <friedman@gnu.org>
16921
16922 * Makefile.in: *** empty log message ***
16923
169241993-09-10 Richard Stallman <rms@gnu.org>
16925
16926 * src/conflicts.c: *** empty log message ***
16927
16928 * src/system.h: entered into RCS
16929
169301993-09-10 Richard Stallman <rms@gnu.org>
16931
16932 * doc/bison.1: entered into RCS
16933
169341993-09-06 Noah Friedman <friedman@gnu.org>
16935
16936 * src/version.c: entered into RCS
16937
169381993-09-06 Noah Friedman <friedman@gnu.org>
16939
16940 * Makefile.in: *** empty log message ***
16941
169421993-07-30 David J. MacKenzie <djm@gnu.org>
16943
16944 * Makefile.in: *** empty log message ***
16945
169461993-07-24 Richard Stallman <rms@gnu.org>
16947
16948 * src/bison.s1: *** empty log message ***
16949
169501993-07-24 Richard Stallman <rms@gnu.org>
16951
16952 * bison.simple: *** empty log message ***
16953
169541993-07-08 David J. MacKenzie <djm@gnu.org>
16955
16956 * Makefile.in: *** empty log message ***
16957
169581993-07-04 Richard Stallman <rms@gnu.org>
16959
16960 * src/bison.s1: *** empty log message ***
16961
169621993-07-04 Richard Stallman <rms@gnu.org>
16963
16964 * bison.simple: *** empty log message ***
16965
169661993-06-26 David J. MacKenzie <djm@gnu.org>
16967
16968 * src/getargs.c: entered into RCS
16969
169701993-06-26 David J. MacKenzie <djm@gnu.org>
16971
16972 * doc/bison.texinfo: *** empty log message ***
16973
16974 * doc/bison.1: New file.
16975
169761993-06-25 Richard Stallman <rms@gnu.org>
16977
16978 * src/getargs.c: New file.
16979
169801993-06-16 Richard Stallman <rms@gnu.org>
16981
16982 * src/bison.s1: *** empty log message ***
16983
169841993-06-16 Richard Stallman <rms@gnu.org>
16985
16986 * bison.simple: *** empty log message ***
16987
169881993-06-03 Richard Stallman <rms@gnu.org>
16989
16990 * src/bison.s1: New file.
16991
169921993-06-03 Richard Stallman <rms@gnu.org>
16993
16994 * doc/bison.texinfo: *** empty log message ***
16995
169961993-06-03 Richard Stallman <rms@gnu.org>
16997
16998 * bison.simple: New file.
16999
170001993-05-19 Richard Stallman <rms@gnu.org>
17001
17002 * doc/bison.texinfo: New file.
17003
170041993-05-07 Noah Friedman <friedman@gnu.org>
17005
17006 * Makefile.in: *** empty log message ***
17007
170081993-04-28 Noah Friedman <friedman@gnu.org>
17009
17010 * src/reader.c: *** empty log message ***
17011
170121993-04-23 Noah Friedman <friedman@gnu.org>
17013
17014 * src/alloc.h: entered into RCS
17015
170161993-04-20 David J. MacKenzie <djm@gnu.org>
17017
17018 * src/version.c: *** empty log message ***
17019
17020 * src/files.c, src/allocate.c:
17021 entered into RCS
17022
17023 * src/reader.c: *** empty log message ***
17024
17025 * src/lex.c: entered into RCS
17026
17027 * src/conflicts.c: New file.
17028
17029 * src/symtab.c: entered into RCS
17030
17031 * src/alloc.h: New file.
17032
17033 * src/LR0.c: entered into RCS
17034
170351993-04-18 Noah Friedman <friedman@gnu.org>
17036
17037 * src/reader.c: New file.
17038
17039 * src/version.c: *** empty log message ***
17040
170411993-04-18 Noah Friedman <friedman@gnu.org>
17042
17043 * Makefile.in: *** empty log message ***
17044
170451993-04-17 Noah Friedman <friedman@gnu.org>
17046
17047 * Makefile.in: *** empty log message ***
17048
170491993-04-15 Richard Stallman <rms@gnu.org>
17050
17051 * src/main.c, src/files.c:
17052 New file.
17053
170541993-04-15 Noah Friedman <friedman@gnu.org>
17055
17056 * configure.in: entered into RCS
17057
17058 * configure.in: *** empty log message ***
17059
17060 * configure.in: New file.
17061
170621993-04-14 Richard Stallman <rms@gnu.org>
17063
17064 * Makefile.in: New file.
17065
170661993-04-13 Richard Stallman <rms@gnu.org>
17067
17068 * src/version.c: New file.
17069
170701993-03-25 Richard Stallman <rms@gnu.org>
17071
17072 * src/output.c: entered into RCS
17073
170741992-09-25 Richard Stallman <rms@gnu.org>
17075
17076 * configure.bat: entered into RCS
17077
170781992-06-22 Richard Stallman <rms@gnu.org>
17079
17080 * src/vmsgetargs.c: entered into RCS
17081
170821992-06-22 Richard Stallman <rms@gnu.org>
17083
17084 * doc/bison.rnh: entered into RCS
17085
170861992-04-20 David J. MacKenzie <djm@gnu.org>
17087
17088 * README: entered into RCS
17089
170901992-01-22 Richard Stallman <rms@gnu.org>
17091
17092 * src/machine.h: entered into RCS
17093
170941991-12-21 Richard Stallman <rms@gnu.org>
17095
17096 * src/lalr.c, src/closure.c:
17097 entered into RCS
17098
170991991-12-20 Richard Stallman <rms@gnu.org>
17100
17101 * src/state.h: entered into RCS
17102
171031991-12-18 Richard Stallman <rms@gnu.org>
17104
17105 * src/print.c, src/nullable.c, src/derives.c:
17106 entered into RCS
17107
171081991-11-03 David J. MacKenzie <djm@gnu.org>
17109
17110 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
17111 entered into RCS
17112
171131988-09-09 Richard Stallman <rms@gnu.org>
17114
17115 * src/bison.hairy: entered into RCS
17116
171171987-12-16 Richard Stallman <rms@gnu.org>
17118
17119 * REFERENCES: entered into RCS
17120
17121
17122 -----
17123
17124 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
17125 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
17126 Software Foundation, Inc.
17127
17128 Copying and distribution of this file, with or without
17129 modification, are permitted provided the copyright notice and this
17130 notice are preserved.
17131
17132$Id$