]> git.saurik.com Git - bison.git/blob - ChangeLog
Finish implementation of per-type %destructor/%printer. Discussed
[bison.git] / ChangeLog
1 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 Finish implementation of per-type %destructor/%printer. Discussed
4 starting at
5 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
6 and
7 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
8 * NEWS (2.3+): Add a description of this feature to the default
9 %destructor/%printer description.
10 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
11 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
12 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
13 list node contains a semantic type.
14 * src/symtab.c, src/symtab.h: Extend with a table that associates
15 semantic types with their %destructor's and %printer's.
16 (semantic_type_from_uniqstr, semantic_type_get,
17 semantic_type_destructor_set, semantic_type_printer_set): New functions
18 composing the public interface of that table.
19 (symbol_destructor_get, symbol_destructor_location_get,
20 symbol_printer_get, symbol_printer_location_get): If there's no
21 per-symbol %destructor/%printer, look up the per-type before trying
22 the default.
23 * tests/actions.at (Per-type %printer and %destructor): New test case.
24 * tests/input.at (Default %printer and %destructor redeclared):
25 Extend to check that multiple occurrences of %symbol-default in a
26 single %destructor/%printer declaration is an error.
27 (Per-type %printer and %destructor redeclared, Unused values with
28 per-type %destructor): New test cases.
29
30 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
31
32 Require default %destructor/%printer to be declared using
33 %symbol-default instead of an empty symbol list, and start working on
34 new per-type %destructor/%printer. Discussed at
35 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
36 * NEWS (2.3+): Add %symbol-default to example.
37 * bison.texinfo (Freeing Discarded Symbols): Likewise.
38 (Bison Symbols): Add entry for %symbol-default.
39 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
40 (generic_symlist, generic_symlist_item): New nonterminals for creating
41 a list in which each item is a symbol, semantic type, or
42 %symbol-default.
43 (grammar_declaration): Use generic_symlist in %destructor and %printer
44 declarations instead of symbols.1 or an empty list.
45 (symbol_declaration, precedence_declaration, symbols.1): Update actions
46 for changes to symbol_list.
47 * src/reader.c: Update for changes to symbol_list.
48 * src/scan-code.l: Likewise.
49 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
50 * src/symlist.c, src/symlist.h: Extend such that a list node may
51 represent a semantic type or a %symbol-default in addition to just an
52 ordinary symbol. Add switched functions for setting %destructor's and
53 %printer's.
54 * tests/actions.at, tests/input.at: Add %symbol-default to all default
55 %destructor/%printer declarations.
56
57 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
58
59 Whether the default %destructor/%printer applies to a particular symbol
60 isn't a question of whether the user *declares* that symbol (in %token,
61 for example). It's a question of whether the user by any means
62 *defines* the symbol at all (by simply using a char token, for
63 example). $end is defined by Bison whereas any other token with token
64 number 0 is defined by the user. The error token is always defined by
65 Bison regardless of whether the user declares it with %token, but we
66 may one day let the user define error as a nonterminal instead.
67 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
68 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
69 the meaning of "user-defined".
70 * tests/actions.at (Default %printer and %destructor for user-declared
71 end token): Rename to...
72 (Default %printer and %destructor for user-defined end token): ...
73 this.
74
75 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
76 computation of whether to apply the default, don't maintain a list of
77 every Bison-defined symbol. Instead, just check for a first character
78 of '$', which a user symbol cannot have, and check for the error token.
79
80 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
81
82 Don't apply the default %destructor or %printer to the error token,
83 $undefined, or $accept. This change fits the general rule that the
84 default %destructor and %printer are only for user-declared symbols,
85 and it solves several difficulties that are described in the new test
86 cases listed below.
87 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
88 * tests/actions.at (Default %printer and %destructor are not for error
89 or $undefined, Default %printer and %destructor are not for $accept):
90 New test cases.
91
92 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
93
94 Allow %start after the first rule.
95 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
96 when parsing the first rule.
97 (check_and_convert_grammar): Search for it here after all grammar
98 declarations have been parsed. Skip midrules, which have dummy LHS
99 nonterminals.
100 * src/symtab.c (symbol_is_dummy): New function.
101 * src/symtab.h (symbol_is_dummy): Declare it.
102 * tests/input.at (%start after first rule): New test.
103
104 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
105
106 Redo some of the previous commit: add back the ability to use
107 non-aliased/undeclared string literals since it might be useful to
108 those declaring %token-table.
109 * src/reader.c (check_and_convert_grammar): Undo changes in previous
110 commit: don't worry about complaints from symbols_pack.
111 * src/symtab.c (symbol_new, symbol_class_set,
112 symbol_check_alias_consistency): Undo changes in previous commit: count
113 each string literal as a new symbol and token, assign it a symbol
114 number, and don't complain about non-aliased string literals.
115 (symbols_pack): Since symbol_make_alias still does not decrement symbol
116 and token counts but does still set aliased tokens to the same number,
117 symbol_pack_processor now leaves empty slots in the symbols array.
118 Remove those slots.
119 * tests/regression.at (Undeclared string literal): Remove test case
120 added in previous commit since non-aliased string literals are allowed
121 again.
122 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
123 remove unnecessary string literal declarations.
124 * tests/sets.at (Firsts): Likewise.
125
126 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
127
128 Don't allow an undeclared string literal, but allow a string literal to
129 be used before its declaration.
130 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
131 symbols_pack complained.
132 * src/symtab.c (symbol_new): Don't count a string literal as a new
133 symbol.
134 (symbol_class_set): Don't count a string literal as a new token, and
135 don't assign it a symbol number since symbol_make_alias does that.
136 (symbol_make_alias): It's not necessary to decrement the symbol and
137 token counts anymore. Don't assume that an alias declaration occurs
138 before any uses of the identifier or string, and thus don't assert that
139 one of them has the highest symbol number so far.
140 (symbol_check_alias_consistency): Complain if there's a string literal
141 that wasn't declared as an alias.
142 (symbols_pack): Bail if symbol_check_alias_consistency failed since
143 symbol_pack asserts that every token has been assigned a symbol number
144 although undeclared string literals have not.
145 * tests/regression.at (String alias declared after use, Undeclared
146 string literal): New test cases.
147 (Characters Escapes, Web2c Actions): Declare string literals as
148 aliases.
149 * tests/sets.at (Firsts): Likewise.
150
151 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
152
153 In the grammar scanner, STRING_FINISH unclosed constructs and return
154 them to the parser in order to improve error messages.
155 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
156 SC_BRACED_CODE, SC_PROLOGUE): Implement.
157 * tests/input.at (Unclosed constructs): New test case.
158 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
159 seen.
160
161 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
162 unused global.
163
164 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
165
166 Handle string aliases for character tokens correctly.
167 * src/symtab.c (symbol_user_token_number_set): If the token has an
168 alias, check and set its alias's user token number instead of its own,
169 which is set to indicate the alias. Previously, every occurrence of
170 the character token in the grammar overwrote that alias indicator with
171 the character code.
172 * tests/input.at (String aliases for character tokens): New test.
173
174 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
175
176 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
177
178 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
179
180 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
181 to prevent failures when building on older platforms.
182 Check for autopoint failure.
183 Set XGETTEXT_OPTIONS to values that check for C format strings,
184 so that translators are warned about them (this also helps
185 prevent core dumps).
186
187 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
188 function, since it simplifies our code a bit.
189
190 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
191 rather than -W, so we don't get bogus warnings about sign comparisons.
192 Add -Wpointer-arith, since that warning is useful (it reports code
193 that does not conform to C89 and that some compilers reject).
194 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
195 since it's no longer needed.
196
197 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
198
199 Clean up scanners a bit.
200 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
201 definitions so gcc won't warn when obstack_for_string is unused.
202 * src/scan-code.l: config.h and system.h are already #include'd by
203 scan-code-c.c, so get rid of them here.
204 * src/scan-gram.l: Likewise.
205 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
206 definitions rather than duplicating the rest of it.
207 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
208
209 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
210
211 Suppress signed/unsigned comparison warnings for yycheck.
212 * data/c.m4 (b4_safest_int_type): New macro.
213 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
214 a signed int type, cast it to b4_safest_int_type first.
215 * data/yacc.c: Likewise.
216 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
217 also overwritten.
218
219 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
220
221 * doc/bison.texinfo: Fix some typos.
222
223 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
224
225 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
226 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
227
228 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
229 the latest gnulib does this a different way.
230 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
231 translation was patched, so stop omitting it.
232
233 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
234
235 Enable declaration of default %printer/%destructor. Make the parser
236 use these for all user-declared grammar symbols for which the user does
237 not declare a specific %printer/%destructor. Thus, the parser uses it
238 for token 0 if the user declares it but not if Bison generates it as
239 $end. Discussed starting at
240 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
241 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
242 and
243 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
244 * NEWS (2.3+): Mention.
245 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
246 declare a %destructor for a mid-rule's semantic value. It's just
247 impossible to declare one specific to it.
248 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
249 code. Describe default %destructor form.
250 * src/parse-gram.y (grammar_declaration): Parse default
251 %printer/%destructor declarations.
252 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
253 and symbol_destructor_location_get rather than accessing the destructor
254 and destructor_location members of struct symbol.
255 (symbol_printers_output): Likewise but for %printer's.
256 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
257 again.
258 * src/symtab.c (default_destructor, default_destructor_location,
259 default_printer, default_printer_location): New static global
260 variables to record the default %destructor and %printer.
261 (symbol_destructor_get, symbol_destructor_location_get,
262 symbol_printer_get, symbol_printer_location_get): New functions to
263 compute the appropriate %destructor and %printer for a symbol.
264 (default_destructor_set, default_printer_set): New functions to set the
265 default %destructor and %printer.
266 * src/symtab.h: Prototype all those new functions.
267 * tests/actions.at (Default %printer and %destructor): New test to
268 check that the right %printer and %destructor are called, that they're
269 not called for $end, and that $$ and @$ work correctly.
270 (Default %printer and %destructor for user-declared end token): New
271 test to check that the default %printer and %destructor are called for
272 a user-declared end token.
273 * tests/input.at (Default %printer and %destructor redeclared, Unused
274 values with default %destructor): New tests to check related grammar
275 warnings and errors.
276
277 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
278
279 Clean up handling of %destructor for the end token (token 0).
280 Discussed starting at
281 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
282 and
283 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
284
285 Make the skeletons consistent in how they pop the end token and invoke
286 its %destructor.
287 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
288 state, which has token number 0, since this would invoke the
289 %destructor for the end token.
290 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
291 until after shifting the end token, or else it won't be popped.
292 * data/yacc.c (yyparse): Likewise.
293
294 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
295 it's the end token. Upon termination, destroy an unshifted lookahead
296 even when it's the end token.
297 * data/lalr1.cc (yy::parser::parse): Likewise.
298 * data/yacc.c (yyparse): Likewise.
299
300 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
301 value warnings for the end token when the user gives the end token a
302 %destructor.
303
304 * tests/actions.at (Printers and Destructors): Test all the above.
305
306 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
307
308 Update to latest gnulib and gettext versions.
309 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
310 Add fopen-safer.
311 (gnulib_files): Add m4/warning.m4. Don't worry about files
312 overwritten by autopoint.
313 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
314 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
315 rejects them.
316 Don't use autoreconf; instead, invoke autopoint etc. by hand,
317 so that we can remove the intl files at a better time.
318 (intl_files_to_remove): Remove aclocal.m4, since it gets
319 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
320 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
321 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
322 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
323 Remove datarootdir hack; no longer needed.
324 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
325 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
326 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
327 strdup.h.
328 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
329 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
330
331 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
332
333 * bootstrap: Adjust to today's change to gnulib-tool by invoking
334 it with --assume-autoconf='latest-stable'.
335
336 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
337
338 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
339 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
340 YYSTYPE' and `{'.
341 * src/muscle_tab.h (muscle_grow): Replace the header comments with
342 those from muscle_tab.c since the old ones are misleading.
343
344 2006-07-13 Akim Demaille <akim@epita.fr>
345
346 Support %define "KEY" {VALUE}.
347 * src/scan-code.h, src/scan-code.l (translate_action)
348 (translate_rule_action, translate_symbol_action, translate_code):
349 Return char *, not const char *.
350 * src/parse-gram.y (declaration): Rename as...
351 (prologue_declaration): this.
352 (string_content): Remove this nonterminal, use STRING.
353 (braceless, content, content.opt): New nonterminal.
354 Use them.
355 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
356 as value.
357 * src/scan-gram.l (getargs.h): Don't include it.
358
359 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
360
361 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
362 rather than a for-loop that declares a local bool variable. This
363 should work around a compatibility problem with a Cray x1e C++
364 compiler reported by Hung Nguyen in
365 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
366 The for-loop was introduced in the 2004-11-17 change but I don't
367 know why it was needed.
368
369 2006-07-12 Akim Demaille <akim@epita.fr>
370
371 * data/c.m4: Comment changes.
372
373 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
374
375 * src/complain.c (error_message, ERROR_MESSAGE): New.
376 To factor...
377 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
378 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
379
380 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
381
382 * NEWS: Instead of %union, you can define and use your own union type
383 YYSTYPE if your grammar contains at least one <type> tag.
384 Your YYSTYPE need not be a macro; it can be a typedef.
385 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
386 (Union Decl, Decl Summary): Document this.
387 * data/glr.c (YYSTYPE): Implement this.
388 * data/glr.cc (YYSTYPE): Likewise.
389 * data/lalr1.cc (YYSTYPE): Likewise.
390 * data/yacc.c (YYSTYPE): Likewise.
391 * src/output.c (prepare): Output tag_seen_flag.
392 * src/parse-gram.y (declaration, grammar_declaration):
393 Use 'union_seen' rather than 'typed' to determine whether
394 %union has been seen, since grammars can now be typed without
395 %union.
396 (symbol_declaration, type.opt, symbol_def):
397 Keep track of whether a tag has been seen.
398 * src/reader.c (union_seen, tag_seen): New vars.
399 (typed): remove.
400 * src/reader.h (union_seen, tag_seen, typed): Likewise.
401 * src/scan-code.l (untyped_var_seen): New variable.
402 (handle_action_dollar): Adjust to above changes.
403 (handle_action_dollar, handle_action_at):
404 Improve overflow checking for outlandish numbers.
405 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
406 avoid new diagnostics generated by above changes.
407 * tests/regression.at (YYSTYPE typedef): Add test to check
408 for type tags without %union.
409
410 * src/symlist.c (symbol_list_length): Return int, not unsigned
411 int, since callers expect int. This may need to get revisited
412 once we have proper integer overflow checking.
413
414 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
415 object is now static.
416
417 * src/getargs.c (flags_argmatch): Return void, not int,
418 to pacify ./configure --enable-gcc-warnings.
419
420 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
421 since last_string is already defined to FLEX_PREFIX (last_string).
422
423 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
424
425 Implement --warnings/-W.
426 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
427 replaced by...
428 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
429 Adjust callers.
430 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
431 (warnings_args, warnings_types): New.
432 (getargs, short_options, long_options): Accept -W/--warnings.
433 Sort the options by alphabetical order, upper case letter right
434 before its lower case.
435
436 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
437
438 Change %merge result type clash warnings to errors. Discussed at
439 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
440 * src/reader.c (record_merge_function_type): Use complain_at.
441 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
442 declared later): Update test case results.
443
444 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
445
446 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
447 to be in alphabetical order.
448 (trace_args): Spelling fixes.
449
450 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
451
452 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
453 so they don't collide with user-defined macros.
454 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
455 this was never guaranteed, and now that we're using gnulib stdint,
456 which defines int_fast16_t to long int, the problem is exposed.
457
458 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
459
460 * data/c.m4 (b4_basename): Simplify a bit, since we don't
461 need the full POSIX semantics (and weren't implementing them
462 anyway).
463
464 Adjust to Autoconf 2.60 and today's gnulib.
465 * bootstrap (gnulib_modules): Add stdint.
466 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
467 no longer copies it.
468 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
469 since stdint needs the former and wcwidth (which is now required
470 by mbswidth) needs the latter.
471 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
472 work around a compatibility glitch between gettext 0.14.6 and
473 Autoconf 2.60.
474 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
475 Do not check for uintptr_t, since new stdint module does the right
476 thing.
477 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
478 Add stdint.h, stdint_.h, wcwidth.h.
479 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
480 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
481 stdint.m4, wchar_t.m4, wcwidth.m4.
482 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
483 usual order for ../lib/*.h files.
484 (file_name_split): Use last_component, not base_name, to adjust
485 to gnulib changes.
486 * src/parse-gram.h: Include <strverscmp.h> in the usual order
487 for ../lib/*.h files.
488 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
489 Define unconditionally, since we now assume the stdint module.
490 * src/scan-skel.l: Include <dirname.h>.
491 (BASE_QPUTS): Use last_component, not base_name.
492 * src/system.h: Include <unlocked-io.h> in the usual order
493 for ../lib/*.h files. Include <stdint.h> unconditionally,
494 since we now use the stdint module.
495 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
496 HAVE_UINTPTR_T, since we now use the stdint module.
497 (base_name): Remove decl, since files now include <dirname.h>
498 to get the decl.
499
500 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
501
502 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
503 New, default to 1.
504 * data/yacc.c, data/glr.c, data/location.cc: Use them.
505 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
506 default.
507 * tests/calc.at: Adjust.
508
509 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
510
511 * data/c.m4 (b4_basename): New.
512 (b4_syncline): Also output the location of its invocation (from
513 the skeleton).
514 (b4_user_action, b4_define_user_action, b4_user_actions)
515 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
516 (b4_user_stype): New.
517 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
518
519 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
520
521 In the grammar file, the first column is 1 not 0 on the first line as
522 on every other line.
523 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
524 * tests/input.at (Torturing the Scanner): Update output.
525
526 * src/scan-gram.l (scanner_cursor): Declare it static.
527
528 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
529
530 In warnings, say "previous declaration" rather than "first
531 declaration".
532 * src/symtab.c (redeclaration): Do that here.
533 * src/reader.c (record_merge_function_type): In the case of a result
534 type clash, report the previous declaration rather than the very first
535 one in the grammar file.
536 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
537 declared later): Add a third declaration to check this behavior.
538 * tests/input.at (Incompatible Aliases): Update output.
539
540 2006-06-27 Akim Demaille <akim@epita.fr>
541
542 * doc/Doxyfile.in: New.
543 * doc/Makefile.am: Use it.
544 * src/lalr.h, src/symtab.h: Initial doxygenation.
545
546 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
547
548 Don't miss %merge result type warnings just because the LHS types are
549 declared after the %merge. This continues the effort of the previous
550 patch.
551 * src/reader.c (get_merge_function): Don't set the merger type yet.
552 (record_merge_function_type): New function for setting the merger type
553 and checking for clashes.
554 (grammar_current_rule_merge_set): Set the location of the %merge for
555 the current rule.
556 (packgram): Invoke record_merge_function_type for each rule now that
557 all symbol type declarations have been parsed.
558 * src/reader.h (merger_list.type_declaration_location): New member
559 storing the location of the first %merge from which the type for this
560 merging function was derived.
561 * src/symlist.h (symbol_list.merger_declaration_location): New member
562 storing the location of a rule's %merge, if any.
563 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
564 declared later): New test to catch the error fixed by the above patch.
565
566 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
567
568 Get action warnings (grammar_rule_check) right even when symbol
569 declarations appear after the rules. Discussed at
570 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
571 and
572 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
573 Don't mistake the type of $$ in a midrule to be that of its parent
574 rule's $$.
575 * src/reader.c (grammar_current_rule_end): Don't invoke
576 grammar_rule_check yet since not all symbol declarations may have been
577 parsed yet.
578 (grammar_midrule_action): Likewise.
579 Don't record whether the midrule's $$ has been used yet since actions
580 haven't been translated yet.
581 Record the midrule's parent rule and its RHS index within the parent
582 rule.
583 (grammar_current_rule_action_append): Don't translate the action yet
584 since not all symbol declarations may have been parsed yet and, thus,
585 warnings about types for $$, $n, @$, and @n can't be reported yet.
586 (packgram): Translate the action and invoke grammar_rule_check now that
587 all symbol declarations have been parsed.
588 * src/scan-code.l (handle_action_dollar): Now that this is invoked
589 after parsing the entire grammar file, the symbol list here in the case
590 of a midrule is actually the midrule's empty RHS, so reference its
591 parent rule's RHS where necessary.
592 On the other hand, now that you can already know it's a midrule, you
593 aren't forced to think $$ has the same type as its parent rule's $$.
594 (handle_action_at): In the case of a midrule, reference the parent rule
595 where necessary.
596 * src/symlist.c (symbol_list_new): Initialize new midrule-related
597 members.
598 (symbol_list_length): Now that this is invoked after all rules have
599 been parsed, a NULL symbol (rather than a NULL symbol list node)
600 terminates a rule. symbol_list_print already does this correctly.
601 * src/symlist.h (symbol_list.midrule_parent_rule,
602 symbol_list.midrule_parent_rhs_index): New members so that midrules can
603 remember their relationships with their parents.
604 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
605 fixed by the above patch.
606 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
607 implementing...
608 (Unused values): ... this old test case and...
609 (Unused values before symbol declarations): ... this new test case.
610 This one is the same as `Unused values' except that all symbol
611 declarations appear after the rules in order to catch the rest of the
612 errors fixed by the above patch.
613
614 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
615
616 More cleanup.
617 * src/reader.c (current_rule): Declare it static since it's no longer
618 used outside this file.
619 (grammar_current_rule_action_append): Remove redundant arguments from
620 translate_rule_action invocation.
621 * src/reader.h (current_rule): Remove this unused extern.
622 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
623 * src/scan-code.l (translate_rule_action): Likewise.
624
625 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
626
627 Clean up yesterday's patch.
628 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
629 to...
630 * src/reader.c (grammar_current_rule_action_append): ... here for
631 consistency with grammar_current_rule_symbol_append.
632 * tests/regression.at (Braced code in declaration in rules section):
633 Make yyerror and yylex static as usual.
634
635 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
636
637 Fix bug that mistakes braced code in a declaration in the rules section
638 to be a rule action. Mentioned at
639 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
640 * src/scan-gram.l: Move midrule action detection from the start of the
641 scanning of any braced code to...
642 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
643 action. For readability, use $2 and @2 rather than the equivalent
644 global variables.
645 * tests/regression.at (Braced code in declaration in rules section):
646 New test to catch the error fixed by the above patch.
647
648 Work on code readability some.
649 * src/scan-code.l (current_rule): Get rid of this misleading and
650 redundant declaration: it's actually extern'ed in reader.h.
651 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
652 translate_action): Add a rule argument and use it instead of the global
653 current_rule.
654 (translate_rule_action): This already receives current_rule through an
655 argument, so pass it on to translate_action instead of assigning
656 current_rule to current_rule.
657 (translate_symbol_action, translate_code): Pass rule = NULL to
658 translate_action.
659
660 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
661
662 Rename %before-definitions to %start-header and %after-definitions to
663 %end-header. Don't use these declarations to separate pre-prologue
664 blocks from post-prologue blocks. Add new order-independent
665 declarations %before-header and %after-header as alternatives to the
666 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
667 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
668 * NEWS (2.3+): Update for these changes.
669 * data/glr.c (b4_before_definitions): Update to...
670 (b4_start_header): ... this.
671 (b4_after_definitions): Update to...
672 (b4_end_header): ... this.
673 * data/glr.cc: Likewise.
674 * data/lalr1.cc: Likewise.
675 * data/yacc.c: Likewise.
676 * doc/bison.texinfo (The prologue): Update names, and replace remaining
677 prologue blocks with %*-header declarations.
678 (Calc++ Parser): Likewise.
679 (Bison Declaration Summary): Update names.
680 (Bison Symbols): Update description.
681 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
682 (PERCENT_END_HEADER): ... this.
683 (PERCENT_BEFORE_DEFINITIONS): Update to...
684 (PERCENT_START_HEADER): ... this.
685 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
686 (declaration): Update token names and m4 macro names.
687 When parsing %end-header and %start-header, invoke translate_code
688 before muscle_code_grow, and no longer set global booleans to remember
689 whether these declarations have been seen.
690 Parse new %after-header and %before-header.
691 * src/reader.c (before_definitions, after_definitions): Remove.
692 (prologue_augment): Accept a new bool argument to specify whether to
693 augment the pre-prologue or post-prologue.
694 * src/reader.h (before_definitions, after_definitions): Remove these
695 extern's.
696 (prologue_augment): Add new bool argument.
697 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
698 (PERCENT_END_HEADER): ... this.
699 (PERCENT_BEFORE_DEFINITIONS): Update to...
700 (PERCENT_START_HEADER): ... this.
701 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
702 * tests/actions.at (Printers and Destructors): Update names.
703
704 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
705
706 Add comparison operators for C++ location classes. Discussed at
707 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
708 * data/c++.m4 (b4_define_location_comparison): New boolean %define
709 declaration indicating whether filename_type has an operator==. If
710 filename_type is `std::string', it defaults to `1', `0' otherwise.
711 * data/location.cc: Iff b4_define_location_comparison is `1', add
712 operator== and operator!= for class position and for class location.
713
714 Some minor fixes.
715 * src/scan-action.l: Remove unused file.
716 * src/symtab.c (symbol_printer_set): Use printer_location not
717 destructor_location.
718 * src/symtab.h (struct symbol): Replace incorrect source comment for
719 printer members.
720 * tests/input.at (Incompatible Aliases): Update output with correct
721 printer location.
722
723 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
724
725 Don't put the pre-prologue in the header file. For the yacc.c code
726 file and the glr.c header and code files, move the pre-prologue before
727 the token definitions. Add new %before-definitions and
728 %after-definitions to declare code that will go in both the header file
729 and code file. Discussed at
730 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
731 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
732 and
733 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
734 * NEWS (2.3+): Describe these changes.
735 * data/glr.c (b4_pre_prologue): Move from within to before...
736 (b4_shared_declarations): ... this.
737 Add new b4_before_definitions before b4_token_enums.
738 Add new b4_after_definitions at the end.
739 * data/glr.cc (b4_pre_prologue): Replace with...
740 (b4_before_definitions): ... this in the header file.
741 (b4_after_definitions): New near the end of the header file.
742 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
743 code file right before including the header file.
744 (b4_before_definitions): New in the previous position of
745 b4_pre_prologue in the header file.
746 (b4_after_definitions): New near the end of the header file.
747 * data/yacc.c: Clean up some m4 quoting especially in the header file.
748 (b4_token_enums_defines): In the code file, move to right before
749 YYSTYPE for consistency with the header file.
750 (b4_before_definitions): New right before b4_token_enums_defines in
751 both the header and code file.
752 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
753 header and code file.
754 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
755 of prologues for %union dependencies.
756 (Bison Declaration Summary): In %defines description, mention the
757 effect of %before-definitions and %after-definitions on the header
758 file.
759 (Calc++ Parser): Forward declare driver in a %before-definitions rather
760 than in the pre-prologue so that make check succeeds.
761 (Bison Symbols): Add entries for %before-definitions and
762 %after-definitions.
763 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
764 %before-definitions.
765 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
766 (declaration): Parse those declarations and append to
767 b4_before_definitions and b4_after_definitions, respectively.
768 * src/reader.c (before_definitions, after_definitions): New bools to
769 track whether those declarations have been seen.
770 (prologue_augment): Add to the post-prologue if %union,
771 %before-definitions, or %after-definitions has been seen.
772 * src/reader.h (before_definitions, after_definitions): New extern's.
773 * src/scan-gram.l: Scan the new declarations.
774 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
775 prologue block in a %before-definitions or a %after-definitions based
776 on whether the %union is declared.
777 * tests/regression.at (Early token definitions with --yacc, Early token
778 definitions without --yacc): Move tests for token definitions into the
779 post-prologue since token names are no longer defined in the
780 pre-prologue.
781
782 2006-06-20 Akim Demaille <akim@epita.fr>
783
784 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
785 (symbol_get): Use it.
786 * src/parse-gram.y: Use it.
787
788 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
789
790 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
791 build succeeds when configured with --enable-gcc-warnings.
792
793 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
794
795 * src/parse-gram.y (char_name): New function.
796 (CHAR, STRING, string_content): For %printer, properly escape.
797 (ID): Prefer fputs to fprintf.
798 (id): Reindent to be consistent with other rules.
799 Properly quote char.
800
801 The Translation Project changed its way of publishing translations
802 to maintainers. I haven't received any responses to my request
803 for supporting the old way, or for documenting the new way. I
804 have modified 'bootstrap' to use screen scraping
805 (in this case, HTML scraping). This is unreliable and inelegant,
806 but I don't see any better way. Yuck.
807 * bootstrap (TP_URL, WGET_COMMAND): New vars.
808 (get_translations): New function, which uses HTML scraping to
809 deduce locations of latest translations.
810 Use this function to grab both bison and bison-runtime .po files.
811 Don't bother priming the pump for the runtime-po domain any more,
812 as it's now translated better than bison is.
813
814 2006-06-19 Akim Demaille <akim@epita.fr>
815
816 * src/scan-gram.l: No longer "parse" things after `%union' until
817 `{'. Rather, return a single "%union" token.
818 No longer make symbols: return strings, and leave the conversion
819 to symbols to the parser.
820 (SC_PRE_CODE, token_type): Remove.
821 * src/parse-gram.y (%union): New field `character'.
822 Sort tokens.
823 (CHAR): New token.
824 (ID, ID_COLON): Now that the scanner no longer makes them
825 identifiers, adjust all uses to invoke symbol_get.
826 (id_colon): New, wraps the conversion from string to symbol.
827 (%union): Accept a possible union_name.
828 (symbol): Now can be a char.
829 * data/c.m4 (b4_union_name): Leave a default value.
830 * data/glr.c, data/yacc.c: Use it.
831
832 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
833
834 For associating token numbers with token names for "yacc.c", don't use
835 #define statements unless `--yacc' is specified; always use enum
836 yytokentype. Most important discussions start at:
837 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
838 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
839 and
840 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
841 * NEWS (2.3+): Mention.
842 * data/c.m4 (b4_yacc_if): New.
843 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
844 token #define's.
845 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
846 on token name definitions.
847 * src/getargs.c (usage): Capitalize `Yacc' in English.
848 * src/output.c (prepare): Define b4_yacc_flag.
849 * tests/regression.at (Early token definitions): Test that tokens names
850 are defined before the pre-prologue not just before the post-prologue.
851 Remove this test case and copy to...
852 (Early token definitions with --yacc): ... this to test #define's.
853 (Early token definitions without --yacc): ... and this to test enums.
854
855 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
856
857 * NEWS: Reword the post-2.3 change to not be so optimistic about
858 removing the old "look-ahead" spelling.
859 Update previous look-ahead/lookahead change reports.
860 * REFERENCES: look-ahead -> lookahead (since that's
861 what he actually wrote).
862 * doc/refcard.tex: look ahead -> lookahead,
863 look-ahead -> lookahead
864
865 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
866
867 For consistency, use `lookahead' instead of `look-ahead' or
868 `look_ahead'. Discussed starting at
869 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
870 and then at
871 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
872 * NEWS: For the next release, note the change to `--report'.
873 * TODO, doc/bison.1: Update English.
874 * doc/bison.texinfo: Update English.
875 (Understanding Your Parser, Bison Options): Document as
876 `--report=lookahead' rather than `--report=look-ahead'.
877 * src/conflicts.c: Update English in comments.
878 (lookahead_set): Rename from look_ahead_set.
879 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
880 (resolve_sr_conflict): Rename local look_ahead_tokens to
881 lookahead_tokens, and update other uses.
882 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
883 count_rr_conflicts, conflicts_free): Update uses.
884 * src/getargs.c (report_args): Move "lookahead" before alternate
885 spellings.
886 (report_types): Update uses.
887 (usage): For `--report' usage description, state `lookahead' spelling
888 rather than `look-ahead'.
889 * src/getargs.h (report.report_lookahead_tokens): Rename from
890 report_look_ahead_tokens.
891 * src/lalr.c: Update English in comments.
892 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
893 (state_lookahead_tokens_count): Rename from
894 state_look_ahead_tokens_count.
895 Rename local n_look_ahead_tokens to n_lookahead_tokens.
896 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
897 Rename local n_look_ahead_tokens to n_lookahead_tokens.
898 Update other uses.
899 Update English in output.
900 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
901 * src/print.c: Update English in comments.
902 (lookahead_set): Rename from look_ahead_set.
903 (print_reduction): Rename argument lookahead_token from
904 look_ahead_token.
905 (print_core, state_default_rule, print_reductions, print_results):
906 Update uses.
907 * src/print_graph.c: Update English in comments.
908 (print_core): Update uses.
909 * src/state.c: Update English in comments.
910 (reductions_new): Update uses.
911 (state_rule_lookahead_tokens_print): Rename from
912 state_rule_look_ahead_tokens_print, and update other uses.
913 * src/state.h: Update English in comments.
914 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
915 (state_rule_lookahead_tokens_print): Rename from
916 state_rule_look_ahead_tokens_print.
917 * src/tables.c: Update English in comments.
918 (conflict_row, action_row): Update uses.
919 * tests/glr-regression.at
920 (Incorrect lookahead during deterministic GLR,
921 Incorrect lookahead during nondeterministic GLR): Rename
922 print_look_ahead to print_lookahead.
923 * tests/torture.at: Update English in comments.
924 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
925 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
926 (Many lookahead tokens): Update uses.
927 * data/glr.c: Update English in comments.
928 * lalr1.cc: Likewise.
929 * yacc.c: Likewise.
930 * src/conflicts.h: Likewise.
931 * src/lalr.h: Likewise.
932 * src/main.c: Likewise.
933 * src/output.c: Likewise.
934 * src/parse-gram.c: Likewise.
935 * src/tables.h: Likewise.
936 * tests/calc.at: Likewise.
937
938 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
939
940 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
941
942 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
943
944 * TODO: Add request from Nelson H. F. Beebe to be able to install
945 Bison without installing the yacc script.
946
947 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
948
949 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
950 and yytext if they're already #define'd.
951 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
952 * src/scan-code-c.c: ... here.
953 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
954 <config.h>.
955
956 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
957
958 Get Bison to build again when configured with --enable-gcc-warnings.
959 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
960 missing #include's.
961 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
962 loc argument as it shadows a global.
963 * src/scan-gram.l: Remove stray comma that prevents boundary_set
964 invocation.
965
966 * src/.cvsignore: Add scan-code.c.
967
968 2006-06-07 Akim Demaille <akim@epita.fr>
969
970 * src/scan-gram.l: Move the "add a trailing ; to actions" code
971 to...
972 * src/scan-code.l: here.
973 * tests/input.at (Torturing the Scanner): Fix another location
974 error.
975
976 2006-06-07 Akim Demaille <akim@epita.fr>
977
978 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
979
980 2006-06-06 Akim Demaille <akim@epita.fr>
981
982 Extract the parsing of user actions from the grammar scanner.
983 As a consequence, the relation between the grammar scanner and
984 parser is much simpler. We can also split "composite tokens" back
985 into simple tokens.
986 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
987 * src/scan-gram.l (add_column_width, adjust_location): Move to and
988 rename as...
989 * src/location.h, src/location.c (add_column_width)
990 (location_compute): these.
991 Fix the column count: the initial column is 0.
992 (location_print): Be robust to ending column being 0.
993 * src/location.h (boundary_set): New.
994 * src/main.c: Adjust to scanner_free being renamed as
995 gram_scanner_free.
996 * src/output.c: Include scan-code.h.
997 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
998 Use boundary_set.
999 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
1000 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
1001 which is now, again, a separate token.
1002 Adjust all dependencies.
1003 Whereever actions with $ and @ are used, use translate_code.
1004 (action): Remove this nonterminal which is now useless.
1005 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
1006 (grammar_current_rule_action_append): Use translate_code.
1007 (packgram): Bound check ruleno, itemno, and rule_length.
1008 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
1009 (last_string, last_braced_code_loc, max_left_semantic_context)
1010 (scanner_initialize, scanner_free, scanner_last_string_free)
1011 (gram_out, gram_lineno, YY_DECL_): Move to...
1012 * src/scan-gram.h: this new file.
1013 (YY_DECL): Rename as...
1014 (GRAM_DECL): this.
1015 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
1016 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
1017 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
1018 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
1019 Move these declarations, and...
1020 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
1021 these to...
1022 * src/flex-scanner.h: this new file.
1023 * src/scan-gram.l (rule_length, rule_length_overflow)
1024 (increment_rule_length): Remove.
1025 (last_braced_code_loc): Rename as...
1026 (gram_last_braced_code_loc): this.
1027 Adjust to the changes of the parser.
1028 Move all the handling of $ and @ into...
1029 * src/scan-code.l: here.
1030 * src/scan-gram.l (handle_dollar, handle_at): Remove.
1031 (handle_action_dollar, handle_action_at): Move to...
1032 * src/scan-code.l: here.
1033 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
1034 scan-code.h, scan-code-c.c, scan-gram.h.
1035 (EXTRA_bison_SOURCES): Add scan-code.l.
1036 (BUILT_SOURCES): Add scan-code.c.
1037 (yacc): Be robust to white spaces.
1038
1039 * tests/conflicts.at, tests/input.at, tests/reduce.at,
1040 * tests/regression.at: Adjust the column numbers.
1041 * tests/regression.at: Adjust the error message.
1042
1043 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1044
1045 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1046 Use Akim's wording from
1047 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
1048
1049 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1050
1051 Between Bison releases, manually append `+' to the previous Bison
1052 release number, and use that as a signal to automatically print the
1053 ChangeLog's CVS Id keyword from --version. Discussed starting at
1054 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
1055 * ChangeLog: Add Id header.
1056 * configure.ac (AC_INIT): Append `+' to `2.3'.
1057 * src/.cvsignore: Add revision.c.
1058 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
1059 (BUILT_SOURCES): Add revision.c.
1060 (revision.c): New target rule. This file defines a new global variable
1061 named revision. It initializes it with either the Id from ChangeLog
1062 or, if VERSION doesn't contain `+', with the empty string.
1063 * src/getargs.c (version): Print the value of revision.
1064 * src/revision.h: Extern revision.
1065
1066 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
1067
1068 * NEWS: Version 2.3.
1069 * configure.ac (AC_INIT): Likewise.
1070
1071 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
1072
1073 * data/glr.c (YYRECOVERING): Define to be a function-like macro
1074 with no arguments, not as an object-like macro. This is for
1075 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
1076 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
1077 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
1078 Document this.
1079
1080 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
1081
1082 * src/getargs.c (usage): Back out yesterday's modification of the
1083 --help output so that we don't have to wait for translation before
1084 releasing 2.3.
1085
1086 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
1087
1088 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
1089 Problem reported by Akim Demaille.
1090
1091 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
1092
1093 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1094
1095 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
1096
1097 * data/yacc.c (yy_reduce_print): Omit trailing white space in
1098 generated source code. Problem reported by Frans Englich in
1099 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
1100
1101 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
1102
1103 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
1104 shell, not within 'make', so that 'make' by an ordinary builder
1105 (using GNU make) does not worry about configuring gzip. This also
1106 works around a bug reported independently by Keith Thompson and by
1107 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
1108 stderr rather than stdout, messing up the build logs.
1109
1110 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1111
1112 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
1113 to make sure that YYID will never be unused. This fixes a 'make
1114 maintainer-check' failure caused by the recent changes to the 'Trivial
1115 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
1116 not used.
1117 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
1118
1119 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1120
1121 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
1122 state before an empty RHS is always resolved here. Only the location
1123 of that state is guaranteed to be resolved, and that's enough. This
1124 fixes the remaining bug reported by Derek M. Jones in
1125 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1126 * tests/glr-regression.at (Uninitialized location when reporting
1127 ambiguity): Test the above case.
1128 Also, the embedded comments in this test case claim it checks the case
1129 of an empty RHS that has inherited the initial location. However, the
1130 corresponding LHS was already resolved, so yyresolveLocations didn't
1131 actually have reason to modify it. Fix this by forcing
1132 nondeterministic operation at the beginning of the parse.
1133
1134 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
1135
1136 * data/c.m4 (b4_yy_symbol_print_generate):
1137 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
1138 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
1139 of the bugs reported today by Derek M Jones in
1140 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1141 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
1142 defined to be a type name without parens or brackets.
1143 (Location Type): Similarly for YYLTYPE.
1144 * tests/regression.at (Trivial grammars): Put in a test for this
1145 bug that will be caught by 'make maintainer-check' (though not,
1146 alas, by 'make check' unless your compiler is picky).
1147
1148 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
1149
1150 * NEWS: Version 2.2.
1151 * configure.ac (AC_INIT): Likewise.
1152
1153 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
1154
1155 * data/glr.c (yyreportTree): Make room in yystates for the state
1156 preceding the RHS. This fixes the segmentation fault reported by Derek
1157 M. Jones in
1158 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
1159 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
1160 to the user. Reported for yyreportTree by Derek M. Jones later in the
1161 same thread.
1162 * THANKS: Add Derek M. Jones.
1163 Update my email address.
1164 Fix typo in Steve Murphy's name.
1165
1166 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
1167
1168 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
1169 checking against YYLAST that caused the parser to miss a potential
1170 alternative in its diagnostic.
1171 Problem reported by Maria Jose Moron Fernandez in
1172 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
1173 * data/lalr1.cc (yysyntax_error_): Likewise.
1174 * data/yacc.c (yysyntax_error): Likewise.
1175 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
1176 tokens, in case we run into an older C compiler.
1177 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
1178 Use them to check for the off-by-one error fixed above.
1179
1180 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
1181 YYSIZE_T, not size_t.
1182 * tests/regression.at (Trivial grammars): New test, to catch
1183 the error fixed by the above patch.
1184
1185 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1186
1187 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
1188 scheme.
1189 Reported by Steve Murphy.
1190
1191 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1192
1193 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
1194 * data/glr.cc: b4_location_flag is now b4_locations_flag.
1195
1196 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1197
1198 Implement --trace=m4.
1199 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
1200 * src/output.c (output_skeleton): When set, pass -dV to m4.
1201
1202 Factor the handling of flags in m4.
1203 * src/output.c (prepare): Rename the muscle names debug, defines,
1204 error_verbose to debug_flag, defines_flag, error_verbose_flag.
1205 * data/c.m4: Adjust.
1206 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
1207 Use b4_define_flag_if to define other b4_FLAG_if macros.
1208 (b4_location_if): As a consequence, rename as...
1209 (b4_locations_if): this, for consistency.
1210 Adjust all the skeletons.
1211
1212 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1213
1214 * etc/bench.pm: Shorten bench names.
1215
1216 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
1217
1218 * src/output.h, src/output.c (error_verbose): Move to...
1219 * src/getargs.h, src/getargs.c: here.
1220 Sort the flags.
1221 Adjust dependencies.
1222
1223 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
1224
1225 * data/c.m4 (b4_copyright): Put the special exception for Bison
1226 skeletons here, so we don't have to put it in each skeleton. All
1227 uses changed. Suggested by Akim Demaille. Also, wrap the
1228 copyright notice, in case it is longer than 80 columns. Replace
1229 comma by newline after title.
1230
1231 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
1232
1233 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
1234 incompatibility, not a bug. Mention that it wasn't fixed as of
1235 flex 2.5.33.
1236
1237 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
1238
1239 * examples/extexi: Enforce the precedence of concatenation over
1240 >>.
1241 Reported by Tommy Nordgren.
1242
1243 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
1244
1245 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
1246 with the member "token".
1247 Reported by Martin Nylin.
1248
1249 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
1250
1251 * data/glr.c: Switch to Bison 2.2 special-exception language in
1252 the copyright notice. Use more-regular format for titles and
1253 copyright notices.
1254 * data/glr.cc: Likewise.
1255 * data/location.cc: Likewise.
1256 * data/yacc.cc: Likewise.
1257 * doc/bison.texinfo (Conditions): Document this.
1258 * NEWS: likewise. Upgrade version to 2.2.
1259
1260 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
1261
1262 * data/glr.cc: Remove dead code.
1263
1264 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
1265
1266 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
1267 that variable and the line breaks the bootstrap. Problem reported
1268 by Juan M. Guerrero.
1269
1270 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
1271
1272 * doc/bison.texinfo (Multiple start-symbols): New.
1273
1274 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
1275
1276 * etc/README, etc/bench.pl: New.
1277
1278 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
1279
1280 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
1281 rule.
1282 Reported by Mickael Labau.
1283 * tests/input.at (Torturing the Scanner): Test it.
1284
1285 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
1286
1287 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
1288 Problem reported by Bob Rossi.
1289
1290 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
1291
1292 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
1293 and didn't really work.
1294 For the index, use @ifnotinfo, not @iftex.
1295 Minor cleanups of spacing and terminology.
1296
1297 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
1298
1299 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
1300 of AT_NAME_PREFIX when %name-prefix is not used.
1301
1302 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
1303
1304 Apply --prefix to C++ skeletons too: they change the namespace.
1305 The test suite already exercize these cases.
1306 * data/c++.m4 (b4_namespace): New.
1307 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
1308 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
1309 * data/yacc.c, data/glr.c: Remove a useless `[]'.
1310 * doc/bison.texinfo: Document it.
1311 (Option Cross Key): Use @multitable in all formats. It looks
1312 nicer, even in TeX outputs.
1313 (Rules): Use the same code whatever the output type is.
1314 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
1315 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
1316 * tests/calc.at: Use it, instead of hard coding `yy'.
1317
1318 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
1319
1320 * TODO: Remove dead items.
1321
1322 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
1323
1324 * doc/FAQ: Remove, merged into...
1325 * doc/bison.texinfo (FAQ): this.
1326 * doc/Makefile.am (EXTRA_DIST): Adjust.
1327
1328 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
1329
1330 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
1331 even if empty.
1332 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
1333 * doc/bison.texinfo (Calc++ Scanner): Use it.
1334
1335 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
1336
1337 Fix two nits reported by twlevo, plus one more that I discovered.
1338
1339 * src/assoc.h (assoc_to_string): Give a name to the arg, as
1340 this is the usual Bison style.
1341 * src/location.h (location_print): Likewise.
1342
1343 * src/reader.h (token_name): Likewise.
1344
1345 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
1346
1347 Fix some nits reported by twlevo.
1348 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
1349 and "POSIX". Use more-modern syntax for URLs. Mention C++
1350 and ask for Java. Don't hardwire OS version numbers. Add
1351 copyright notice.
1352 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
1353 * src/conflicts.c (solved_conflicts_obstack): Now static.
1354
1355 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1356
1357 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
1358 page. Say "you can use it" not "you may use it" as on the web page;
1359 we're describing capabilities not granting permission.
1360
1361 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
1362
1363 * data/glr.c (yyresolveLocations): Rename local variables to avoid
1364 shadowing warnings. Use usual patter for iterating through RHS.
1365 * tests/glr-regression.at
1366 (Uninitialized location when reporting ambiguity):
1367 Modify yylex so that it uses its argument, rather than trying
1368 to rely on ARGSUSED (which doesn't work for gcc with warnings).
1369 const char -> char const.
1370
1371 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
1372 Don't use tabs inside commands; it messes up 'ps'.
1373 Problem reported by twlevo.
1374
1375 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
1376
1377 * tests/glr-regression.at (Uninitialized location when reporting
1378 ambiguity): New test case.
1379 * data/glr.c (yyresolveLocations): New function, which uses
1380 YYLLOC_DEFAULT.
1381 (yyresolveValue): Invoke yyresolveLocations before reporting an
1382 ambiguity.
1383 * doc/bison.texinfo (Default Action for Locations): Note
1384 YYLLOC_DEFAULT's usage for ambiguity locations.
1385 (GLR Semantic Actions): Cross-reference those notes.
1386
1387 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
1388
1389 * tests/glr-regression.at (Leaked semantic values when reporting
1390 ambiguity): Remove unnecessary union and type declarations.
1391 (Leaked lookahead after nondeterministic parse syntax error): New test
1392 case.
1393 * data/glr.c (yyparse): Check for zero stacks remaining before
1394 attempting to shift the lookahead so that you don't lose it.
1395
1396 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1397
1398 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
1399 * tests/glr-regression.at (Leaked semantic values when reporting
1400 ambiguity): New test case.
1401 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
1402 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
1403 now unnecessary yystackp parameter.
1404 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
1405 destructors can be called.
1406
1407 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
1408 in existing testcases.
1409
1410 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1411
1412 Don't leak semantic values for parent RHS when a user action cuts the
1413 parser, and clean up related code a bit.
1414 * tests/glr-regression.at (Leaked merged semantic value if user action
1415 cuts parse): Rename to...
1416 (Leaked semantic values if user action cuts parse): ... this. Add check
1417 for leaked parent RHS values.
1418 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
1419 between an unresolved state (non-empty chain of semantic options) and
1420 an incomplete one (signaled by an empty chain).
1421 (yyresolveStates): Document the interface. Move all manipulation of a
1422 successfully or unsuccessfully resolved yyGLRState to...
1423 (yyresolveValue): ... here so that yyresolveValue always leaves a
1424 yyGLRState with consistent data and thus is easier to understand.
1425 Remove the yyvalp and yylocp parameters since they are always just
1426 taken from the yys parameter. When reporting a discarded merged value
1427 in debugging output, note that it is incompletely merged. Document the
1428 interface.
1429 (yyresolveAction): If resolving any of the RHS states fails, destroy
1430 them all rather than leaking them. Thus, as long as user actions are
1431 written to clean up the RHS correctly, yyresolveAction always cleans up
1432 the RHS of a semantic option. Document the interface.
1433
1434 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
1435
1436 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
1437 led to a segmentation fault in GNU Pascal. Problem reported
1438 by Waldek Hebisch.
1439
1440 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
1441
1442 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
1443 mid-rule action inside a nonterminal symbol in order to declare a
1444 destructor for its semantic value.
1445
1446 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
1447
1448 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
1449 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
1450 __cplusplus && ! defined _STDLIB_H && !
1451 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
1452 defined free))]: Include <stdlib.h> rather than rolling our own
1453 declarations of malloc and free, to avoid problems with
1454 incompatible declarations (using 'throw') C++'s stdlib.h. This
1455 should fix Debian bug 340012
1456 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
1457 reported by Guillaume Melquiond.
1458
1459 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1460
1461 * NEWS: Clarify symbols versus types in unused-value warnings.
1462
1463 * configure.ac (AC_INIT): Bump version number.
1464
1465 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1466
1467 * NEWS: Version 2.1a.
1468 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
1469 since C99 requires this.
1470
1471 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
1472
1473 * m4/c-working.m4: New file.
1474 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
1475
1476 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
1477
1478 * Makefile.maint: Merge from coreutils.
1479
1480 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
1481
1482 More portability fixes for problems summarized by Nelson H. F. Beebe.
1483
1484 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
1485 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
1486 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
1487 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
1488 messes up because C++ code is compiled in 32-bit mode but linked
1489 in 64-bit mode.
1490
1491 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
1492
1493 More portability fixes for problems summarized by Nelson H. F. Beebe.
1494
1495 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
1496 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
1497
1498 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
1499 nodist_PROGRAMS, since we don't need to actually compile the
1500 example if we're just doing a plain 'make'. This avoids bothering
1501 the installer unnecessarily about problems due to weird C++
1502 compilers.
1503
1504 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
1505
1506 More portability fixes for problems summarized by Nelson H. F. Beebe.
1507
1508 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
1509 than #include "...", and compile with -I'.'. The old method was
1510 not portable, according to Posix and the C standard, and it does
1511 not work with Sun C 5.7, where previous #line directives affect
1512 the working directory used in later #include "..." directives.
1513
1514 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1515
1516 Various DJGGP specific issues in /djgpp
1517
1518 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
1519
1520 More portability fixes for problems summarized by Nelson H. F. Beebe.
1521
1522 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
1523 '#include <map>' works and that you can apply ++ to iterators.
1524
1525 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
1526
1527 Work around portability problems summarized by Nelson H. F. Beebe in
1528 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
1529
1530 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
1531 that '#include <string>' works.
1532
1533 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
1534 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
1535 "warning: sorry: semantics of inline function static data `const
1536 unsigned char translate_table[262]' are wrong (you'll wind up with
1537 multiple copies)".
1538
1539 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
1540 or, xor to not_, and_, or_, and xor_, respectively. This works
1541 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
1542 random system header somewhere that includes the equivalent of
1543 <iso646.h>.
1544
1545 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
1546 -E" works; it apparently doesn't work with PathScale EKO Compiler
1547 Suite Version 2.0.
1548
1549 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
1550
1551 During deterministic GLR operation, user actions should be able to
1552 influence the parse by changing yychar. To make this easier to fix and
1553 to make glr.c easier to evolve in general, don't maintain yytoken in
1554 parallel with yychar; just compute yytoken when needed.
1555 * tests/glr-regression.at (Incorrect lookahead during deterministic
1556 GLR): Check that setting yychar in a user action has the intended
1557 effect.
1558 * data/glr.c (yyGLRStack): Remove yytokenp member.
1559 (yyclearin): Don't set *yytokenp.
1560 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
1561 yychar rather than *yytokenp to determine the current lookahead.
1562 Compute yytoken locally when needed.
1563 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
1564 point to.
1565
1566 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
1567 after `--report' documentation.
1568
1569 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
1570
1571 * src/parse-gram.y (grammar_declaration): Location of printer
1572 symbol is @1, not list->location. Bug reported by twlevo.
1573 * tests/input.at (Incompatible Aliases): Adjust to above change.
1574
1575 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
1576
1577 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
1578 all the test at once. This makes the output easier to read in the
1579 normal case.
1580
1581 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
1582 got from <http://bro-ids.org/download.html>. The bug is that
1583 when two actions appeared in succession, the second one was
1584 scanned before the first one was added to the grammar rule
1585 as a midrule action. Bison then output the incorrect warning
1586 "parse.y:905.17-906.36: warning: unused value: $3".
1587 * src/parse-gram.y (BRACED_CODE, action): These are no longer
1588 associated with a value.
1589 (rhs): Don't invoke grammar_current_rule_action_append.
1590 (action): Invoke it here instead.
1591 * src/reader.c (grammar_midrule_action): Now extern.
1592 (grammar_current_rule_action_append): Don't invoke
1593 grammar_midrule_action; that is now the scanner's job.
1594 * src/reader.h (last_string, last_braced_code_loc):
1595 (grammar_midrule_action): New decls.
1596 * src/scan-gram.l (last_string): Now extern, sigh.
1597 (last_braced_code_loc): New extern variable.
1598 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
1599 rule already has an action.
1600 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
1601 * tests/input.at (AT_CHECK_UNUSED_VALUES):
1602 Add some tests to check that the above changes fixed the bug.
1603
1604 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
1605
1606 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
1607 All used changed. Check whether the symbol has a destructor,
1608 not whether it is typed.
1609 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
1610 that the values are still reported as unused. All line numbers
1611 adjusted.
1612
1613 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
1614
1615 Work around a bug in bro 0.8, which underparenthesizes its
1616 definition of YYLLOC_DEFAULT.
1617 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
1618 their arguments.
1619 * data/lalr1.cc: Likewise.
1620 * data/yacc.cc: Likewise.
1621
1622 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
1623
1624 Work around a bug in Pike 7.0, and give the Pike folks a
1625 better way to override the usual int widths.
1626 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
1627 user can override the types.
1628 (short): #undef, to work around a bug in Pike 7.0.
1629 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
1630 (union yyalloc.yyss): Use yytype_int16 rather than short.
1631 All uses changed.
1632 (yysigned_char): Remove.
1633 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
1634 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
1635 * tests/regression.at (Web2c Actions): Adjust to above changes.
1636
1637 * src/reader.c (check_and_convert_grammar): New function.
1638 (reader): Close the input file even if something went wrong during
1639 parsing. Minor file descriptor leak reported by twlevo.
1640
1641 * src/assoc.c (assoc_to_string): Use a default: abort (); case
1642 to pacify gcc -Wswitch-default.
1643 * src/scan-gram.l (adjust_location): Use a default: break; case
1644 to pacify gcc -Wswitch-default.
1645 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
1646 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
1647 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
1648 Move these decls to scan-skel.l, since they don't need to be
1649 visible elsewhere.
1650 * src/scan-skel.l: Accept the above decls.
1651 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
1652 is used.
1653
1654 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
1655
1656 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
1657 since we don't want to insist on a version number at the start
1658 of the changelog every time.
1659 * Makefile.maint: Sync from coreutils a bit better.
1660 (sc_trailing_blank): Renamed from sc_trailing_space.
1661 All uses changed.
1662 (sc_no_if_have_config_h, sc_require_config_h):
1663 (sc_prohibit_assert_without_use): New rules.
1664 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
1665 (sc_dd_max_sym_length): Fix leading spaces in rule.
1666 (sc_system_h_headers): Prefix with @.
1667 (sc_useless_cpp_parens, m4-check): Output line numbers.
1668 (changelog-check): Allow version only in head.
1669 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
1670 satisfy new Makefile.maint rule.
1671 * data/glr.c: Likewise.
1672 * data/glr.cc: Likewise.
1673 * data/lalr1.cc: Likewise.
1674 * data/yacc.c: Likewise.
1675 * lib/ebitsetv.c: Likewise.
1676 * lib/lbitset.c: Likewise.
1677 * lib/subpipe.c: Likewise.
1678 * lib/timevar.c: Likewise.
1679 * src/system.h: Likewise.
1680 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
1681 * djgpp/Makefile.maint: Add copyright notice.
1682 * djgpp/README.in: Likewise.
1683 * djgpp/config.bat: Likewise.
1684 * djgpp/config.site: Likewise.
1685 * djgpp/config_h.sed: Likewise.
1686 * djgpp/djunpack.bat: Likewise.
1687 * djgpp/config.sed: Fix copyright notice to match standard format.
1688 * djgpp/subpipe.h: Likewise.
1689 * lib/bitsetv-print.c: Likewise.
1690 * lib/bitsetv.c: Likewise.
1691 * lib/subpipe.h: Likewise.
1692 * lib/timevar.c: Likewise.
1693 * lib/timevar.h: Likewise.
1694 * djgpp/subpipe.c: Use standard recipe for config.h.
1695 * lib/abitset.c: Likewise.
1696 * lib/bitset.c: Likewise.
1697 * lib/bitset_stats.c: Likewise.
1698 * lib/bitsetv-print.c: Likewise.
1699 * lib/bitsetv.c: Likewise.
1700 * lib/ebitsetv.c: Likewise.
1701 * lib/get-errno.c: Likewise.
1702 * lib/lbitset.c: Likewise.
1703 * lib/subpipe.c: Likewise.
1704 * lib/timevar.c: Likewise.
1705 * lib/vbitset.c: Likewise.
1706 * tests/local.at: Likewise.
1707 * src/scan-gram.l: Don't include verify.h, since system.h does
1708 that for us.
1709 * .x-sc_require_config_h: New file.
1710 * .x-sc_unmarked_diagnostics: New file.
1711
1712 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
1713
1714 Be a bit more systematic about using 'abort'.
1715 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
1716 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
1717 Put 'default: abort ();' before some other case, to satisfy older
1718 pedantic compilers.
1719 * lib/bitset_stats.c (bitset_stats_init): Likewise.
1720 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
1721 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
1722 * src/conflicts.c (resolve_sr_conflict): Likewise.
1723 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
1724 (get_decision_str, get_orientation_str, get_node_alignment_str):
1725 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
1726 (get_linestyle_str, get_arrowstyle_str): Likewise.
1727 * src/conflicts.c (resolve_sr_conflict):
1728 Use a default case rather than one for the one remaining enum
1729 value, to catch invalid enum values as well.
1730 * src/lalr.c (set_goto_map, map_goto):
1731 Prefer "assert (FOO);" to "if (!FOO) abort ();".
1732 * src/nullable.c (nullable_compute, token_definitions_output):
1733 Likewise.
1734 * src/reader.c (packgram, reader): Likewise.
1735 * src/state.c (transitions_to, state_new, state_reduction_find):
1736 Likewise.
1737 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
1738 (symbol_pack): Likewise.
1739 * src/tables.c (conflict_row, pack_vector): Likewise.
1740 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
1741 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
1742 * src/system.h: Don't include <assert.h>.
1743 (assert): New macro.
1744
1745 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
1746 (Destructor Decl, Parser Function, Pure Calling):
1747 Describe rules for braces inside C code more carefully.
1748
1749 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
1750
1751 Fix some porting glitches found by Nelson H. F. Beebe.
1752 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
1753 compilers that don't understand that abort () does not return.
1754 * src/state.c (transitions_to): Likewise.
1755 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
1756 that '#include <cstdlib>' works.
1757 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
1758 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
1759 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
1760 for the benefit of some pre-C99 compilers.
1761
1762 * bootstrap: Undo changes to gnulib files that autoreconf made.
1763
1764 Minor fixups to get 'make maintainer-check' to work.
1765 * configure.ac: Don't use -Wnested-externs, as it's incompatible
1766 with the new verify.h implementation.
1767 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
1768 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
1769 * data/yacc.c (YYUSE): Likewise.
1770 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
1771 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
1772 * src/parse-gram.y (declaration): Don't pass a string constant
1773 to a function that expects char *, since GCC might complain
1774 about the constant value.
1775 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
1776 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
1777 before #defining them.
1778 * tests/glr-regression.at
1779 (Incorrectly initialized location for empty right-hand side in GLR):
1780 In yyerror, use the msg arg.
1781 (Corrupted semantic options if user action cuts parse):
1782 (Incorrect lookahead during deterministic GLR):
1783 (Incorrect lookahead during nondeterministic GLR):
1784 Don't name a local var 'index'; it shadows string.h's 'index'.
1785
1786 2006-01-19 Akim Demaille <akim@epita.fr>
1787
1788 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
1789 location, not just parts of it.
1790
1791 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
1792
1793 * NEWS: Document the fact that multiple %unions are now allowed.
1794 * doc/bison.texinfo (Union Decl): Likewise.
1795 * TODO: This feature is now implemented, so remove it from
1796 the wishlist.
1797
1798 * Makefile.maint: Merge with coreutils Makefile.maint.
1799 (CVS_LIST): Use build-aux version if available.
1800 (VERSION_REGEXP): New macro.
1801 (syntax-check-rules): Add sc_no_if_have_config_h,
1802 sc_prohibit_assert_without_use, sc_require_config_h,
1803 sc_useless_cpp_parens.
1804 (sc_obsolete_symbols): Check for O_NDELAY.
1805 (sc_dd_max_sym_length): Track coreutils.
1806 (sc_unmarked_diagnostics): Look in all files, not just *.c.
1807 (sc_useless_cpp_parens): New rule.
1808 (news-date-check): Look for version or today's date.
1809 (changelog-check): Don't require version number near head.
1810 (copyright-check): Use current year instead of hardwiring 2005.
1811 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
1812 (announcement): Add --gpg-key-ID.
1813
1814 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
1815 with "file system".
1816
1817 Avoid undefined behavior that addressed just before the start of an
1818 array. Problem reported by twlevo.
1819 * src/reader.c (packgram): Prepend a new sentinel before ritem.
1820 * src/lalr.c (build_relations): Rely on new sentinel.
1821 * src/gram.c (gram_free): Adjust to new sentinel.
1822
1823 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
1824
1825 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
1826 yylookaheadNeeds. All uses updated.
1827 (yysplitStack): Rename local yynewLookaheadStatuses to
1828 yynewLookaheadNeeds.
1829 * data/glr-regression.at (Incorrect lookahead during nondeterministic
1830 GLR): In comments, change `lookahead status' to `lookahead need'.
1831
1832 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1833
1834 * data/glr.c (yysplitStack): A little stylistic rewrite.
1835
1836 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1837
1838 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
1839
1840 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
1841
1842 * doc/bison.texinfo: Fix some typos.
1843 (GLR Semantic Actions): New subsection discussing special
1844 considerations because GLR semantic actions might be deferred.
1845 (Actions): Mention look-ahead usage of yylval.
1846 (Actions and Locations): Mention look-ahead usage of yylloc.
1847 (Special Features for Use in Actions): Add YYEOF entry and mention it
1848 in the yychar entry.
1849 In the yychar entry, remove mention of the local yychar case (pure
1850 parser) since this is irrelevant information when writing semantic
1851 actions and since it's already discussed in `Bison Symbols' where
1852 yychar is otherwise described as an external variable.
1853 In the yychar entry, don't call it the `current' look-ahead since it
1854 isn't when semantic actions are deferred.
1855 In the yychar and yyclearin entries, add note about deferred semantic
1856 actions.
1857 Add yylloc and yylval entries discussing look-ahead usage.
1858 (Look-Ahead Tokens): When discussing yychar, don't call it the
1859 `current' look-ahead, and do mention yylval and yylloc.
1860 (Error Recovery): Cross-reference `Action Features' when mentioning
1861 yyclearin.
1862 (Bison Symbols): In the yychar entry, don't call it the `current'
1863 look-ahead.
1864 In the yylloc and yylval entries, mention look-ahead usage.
1865
1866 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
1867
1868 * tests/glr-regression.at: Update copyright year to 2006.
1869
1870 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1871
1872 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
1873 use during nondeterministic operation to track which stacks have
1874 actually needed the current lookahead.
1875 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
1876 Allocate, deallocate, resize, and otherwise shuffle space for
1877 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
1878 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
1879 appropriately during nondeterministic operation.
1880 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
1881 members to store the current lookahead to be used by the deferred
1882 user action.
1883 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
1884 from which the RHS is taken. Set the lookahead members of the new
1885 yySemanticOption according to the lookahead status for stack yyk.
1886 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
1887 yyaddDeferredAction.
1888 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
1889 members of yySemanticOption before invoking yyuserAction, and then set
1890 them back to their current values afterward.
1891 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
1892 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
1893 * tests/glr-regression.at: Remove `.' from the ends of recent test case
1894 titles for consistency.
1895 (Leaked merged semantic value if user action cuts parse): In order to
1896 suppress lint warnings, use arguments in merge function, and assign
1897 char value < 128 in main.
1898 (Incorrect lookahead during deterministic GLR): New test case.
1899 (Incorrect lookahead during nondeterministic GLR): New test case.
1900
1901 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1902
1903 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
1904 !yyvaluep as signal that no semantic value is available to print.
1905 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
1906 to print a semantic value.
1907
1908 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1909
1910 * tests/glr-regression.at: For consistency with my newer test cases,
1911 don't thank myself.
1912
1913 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
1914
1915 * data/glr.c (yyresolveValue): When merging semantic options, if at
1916 least one user action succeeds but a later one cuts the parse, then
1917 destroy the semantic value before returning rather than leaking it.
1918 (yyresolveStates): If a user action cuts the parse and thus
1919 yyresolveValue fails, ignore the (unset) semantic value rather than
1920 corrupting the yyGLRState, and empty the semantic options list since
1921 the user actions should have called all necessary destructors.
1922 Simplify code with YYCHK.
1923 * tests/glr-regression.at (Corrupted semantic options if user action
1924 cuts parse): New test case.
1925 (Undesirable destructors if user action cuts parse): New test case.
1926 Before applying any of this patch, this test case never actually failed
1927 for me... but only because the corrupted semantic options usually
1928 masked this bug.
1929 (Leaked merged semantic value if user action cuts parse): New test
1930 case.
1931
1932 2006-01-05 Akim Demaille <akim@epita.fr>
1933
1934 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
1935
1936 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
1937
1938 * data/c.m4 (b4_c_modern): New macro, with a new provision for
1939 _MSC_VER. Problem reported by Cenzato Marco.
1940 (b4_c_function_def): Use it.
1941 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
1942 b4_c_modern.
1943 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
1944 than rolling our own.
1945
1946 2006-01-04 Akim Demaille <akim@epita.fr>
1947
1948 Also warn about non-used mid-rule values.
1949 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
1950 member.
1951 (symbol_list_new): Adjust.
1952 * src/reader.c (symbol_typed_p): New.
1953 (grammar_rule_check): Use it.
1954 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
1955 Check its rule.
1956 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
1957 Use it.
1958 * tests/actions.at (Exotic Dollars): Adjust.
1959
1960 2006-01-04 Akim Demaille <akim@epita.fr>
1961
1962 * src/reader.c (grammar_midrule_action): If $$ is set in a
1963 mid-rule, move the `used' bit to its lhs.
1964 * tests/input.at (Unused values): New.
1965 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
1966
1967 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
1968
1969 * doc/bison.texinfo (Bison Options): Say more accurately what
1970 --yacc does.
1971 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
1972 about declarations in the grammar when in Yacc mode, as POSIX does
1973 not require a diagnostic when the grammar uses extensions.
1974
1975 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
1976
1977 Warn about dubious constructions like "%token T T".
1978 Reported by twlevo.
1979 * src/symtab.h (struct symbol.declared): New member.
1980 * src/symtab.c (symbol_new): Initialize it to false.
1981 (symbol_class_set): New arg DECLARING, specifying whether
1982 this is a declaration that we want to warn about, if there
1983 is more than one of them. All uses changed.
1984
1985 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
1986 Allow multiple %union directives, whose contents concatenate.
1987 * src/parse-gram.y (grammar_declaration): Likewise.
1988 Use muscle_code_grow, so that we don't need stype_line any more.
1989 All uses changed.
1990
1991 * src/muscle_tab.c (muscle_grow): Fix comment.
1992
1993 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
1994 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
1995 Update copyright year to 2006.
1996
1997 2006-01-03 Akim Demaille <akim@epita.fr>
1998
1999 Have glr.cc pass (some of) the calc.at tests.
2000 * data/glr.cc (b4_parse_param_orig): New.
2001 (b4_parse_param): Improve its definition, and bound it more
2002 clearly in the skeleton.
2003 (b4_epilogue): Append, instead of prepending, in order to keep
2004 #line consistency.
2005 Simplify the generation of auxiliary functions: locations and
2006 purity are mandated.
2007 (b4_global_tokens_and_yystype): Honor it.
2008 * data/location.cc (c++.m4): Don't include it.
2009 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
2010 and AT_SKEL_CC_IF.
2011 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
2012 AT_LALR1_CC_IF.
2013 Be sure to initialize the first position's filename.
2014 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
2015 mandated anyway.
2016 (AT_CHECK_CALC_GLR_CC): New.
2017 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
2018
2019 2006-01-02 Akim Demaille <akim@epita.fr>
2020
2021 * src/output.c (output_skeleton): Don't hard wire the inclusion of
2022 c.m4.
2023 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
2024 * data/glr.cc: Do not include stack.hh.
2025
2026 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2027
2028 * data/glr.c: Reformat whitespace with tabs.
2029 (b4_lpure_formals): Remove this unused m4 macro.
2030 * tests/cxx-type.at: Reformat whitespace with tabs.
2031 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
2032 since it's a member. Rename type to isNterm for clarity.
2033
2034 2005-12-29 Akim <akim@sulaco.local>
2035
2036 Let glr.cc catch up with symbol_value_print.
2037 * data/glr.cc (b4_yysymprint_generate): Replace by...
2038 (b4_yy_symbol_print_generate): this.
2039 (yy_symbol_print, yy_symbol_value_print): Declare them.
2040
2041 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
2042
2043 * src/location.h (boundary): Note that a line or column equal
2044 to INT_MAX indicates an overflow.
2045 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
2046 (rule_length_overflow, increment_rule_length, add_column_width):
2047 New functions.
2048 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
2049 (<SC_BRACED_CODE>"}"):
2050 Use increment_rule_length rather than incrementing it by hand.
2051 (adjust_location, handle_syncline): Diagnose overflow.
2052 (handle_action_dollar, handle_action_at):
2053 Fix bug with monstrosities like $-2147483648.
2054 Remove now-unnecessary checks.
2055 (scan_integer): Verify assumptions and remove now-unnecessary checks.
2056 (convert_ucn_to_byte): Verify assumptions.
2057 (handle_syncline): New arg LOC. All callers changed.
2058 Don't store through a value derived from char const * pointer.
2059
2060 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
2061 GCC warnings.
2062
2063 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
2064
2065 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
2066 Remove unnecessary forward static decls.
2067
2068 2005-12-27 Akim Demaille <akim@epita.fr>
2069
2070 * src/reader.c (grammar_current_rule_check): Also check that $$
2071 is used.
2072 Take the rule to check as argument, hence rename as...
2073 (grammar_rule_check): this.
2074 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
2075 Rename as...
2076 (grammar_rule_begin, grammar_rule_end): these, for consistency.
2077 (grammar_midrule_action, grammar_symbol_append): Now static.
2078 * tests/torture.at (input): Don't rely on the default action
2079 being always performed.
2080 * tests/calc.at: "Set" $$ even when the action is "cut" with
2081 YYERROR or other.
2082 * tests/actions.at (Exotic Dollars): Instead of using unused
2083 values, check that the warning is issued.
2084
2085 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
2086
2087 * NEWS: Improve wording for unused-value warnings.
2088
2089 2005-12-22 Akim Demaille <akim@epita.fr>
2090
2091 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
2092 (b4_yysymprint_generate): Rename as...
2093 (b4_yy_symbol_print_generate): this.
2094 Generate yy_symbol_print instead of yysymprint.
2095 Generate also yy_symbol_value_print, and use it.
2096
2097 2005-12-22 Akim Demaille <akim@epita.fr>
2098
2099 * NEWS: Warn about unused values.
2100 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
2101 a `used' member.
2102 (symbol_list_n_get, symbol_list_n_used_set): New.
2103 (symbol_list_n_type_name_get): Use symbol_list_n_get.
2104 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
2105 * src/reader.c (grammar_current_rule_check): Check that values are
2106 used.
2107 * src/symtab.c (symbol_print): Accept 0.
2108 * tests/existing.at: Remove the type information.
2109 Empty the actions.
2110 Remove useless actions (beware of mid-rule actions: perl -000
2111 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
2112 * tests/actions.at (Exotic Dollars): Use unused values.
2113 * tests/calc.at: Likewise.
2114 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2115 Likewise.
2116
2117 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
2118 rule_useful_p.
2119
2120 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
2121
2122 Undo 2005-12-01 tentative license wording change. The wording is
2123 still being reviewed by the lawyers, and we don't want to wait for
2124 them before publishing a test release. For now, revert to the
2125 previous wording.
2126 * NEWS: Undo 2005-12-01 change.
2127 * data/glr.c: Revert to previous license wording.
2128 * data/glr.cc: Likewise.
2129 * data/lalr1.cc: Likewise.
2130 * data/location.cc: Likewise.
2131 * data/yacc.c: Likewise.
2132
2133 * NEWS: Reword %destructor vs YYABORT etc.
2134 * data/glr.c: Use American spacing, for consistency.
2135 * data/glr.cc: Likewise.
2136 * data/lalr1.cc: Likewise.
2137 * data/yacc.c: Likewise.
2138 * data/yacc.c: Reformat comments slightly.
2139 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
2140 for consistency. Fix some spelling errors and reword recently-included
2141 text slightly.
2142 * tests/cxx-type.at: Cast results of malloc, for C++.
2143
2144 2005-12-21 Joel E. Denny <address@hidden>
2145
2146 * tests/cxx-type.at: Construct a tree, count the parents of shared
2147 nodes, and free each node once and only once. Previously, the memory
2148 for semantic values was leaked instead.
2149
2150 2005-12-21 Joel E. Denny <address@hidden>
2151
2152 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
2153 (yylval, yylloc): If pure, #define to yystackp->yyval and
2154 yystackp->yyloc similar to yychar and yynerrs.
2155 (yyparse): If pure, remove local yylval and yylloc. Add local
2156 yystackp to accommodate pure definitions of yylval and yylloc.
2157 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
2158 yylvalp and yyllocp to &yylval and &yylloc.
2159 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
2160 namespace. Previously, nerrs and char were missing, but lval and lloc
2161 weren't necessary.
2162 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
2163 yylvalp and yyllocp parameters since, if pure, these are now always
2164 accessible through yystackp. If not pure, they are still accessible
2165 globally.
2166 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
2167 `if (YYID (N))' to pacify lint.
2168
2169 2005-12-21 Akim Demaille <akim@epita.fr>
2170
2171 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
2172 destroy the RHS symbols of a rule.
2173 * data/yacc.c (yylen): Initialize to 0.
2174 Keep its value to the number of items to possibly shift.
2175 In particular, a regular successful parse that ends on YYFINAL by
2176 a (internal) YYACCEPT must not have yylen != 0.
2177 (yyerrorlab, yyreturn): Pop the RHS.
2178 Reorder a bit to emphasize the `shifting' bits of code.
2179 (YYPOPSTACK): Now accept a number of items to pop.
2180 * data/lalr1.cc: Likewise.
2181 * data/glr.c: Formatting changes.
2182 Use goto instead of fall through.
2183 * doc/bison.texinfo (Destructor Decl): Complete.
2184
2185 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2186
2187 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2188 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
2189 * djgpp/config.bat: Replace every occurence of the file name
2190 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2191 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2192 * djgpp/config.sed: Replace every occurence of the file name
2193 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2194 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2195 * djgpp/djunpack.bat: DJGPP specific file.
2196 * djgpp/fnchange.lst: DJGPP specific file.
2197 * djgpp/README.in: Add new information about how to unpack the bison
2198 source on MSDOS and other systems which have 8.3 file name restrictions
2199 using djunpack.bat and fnchange.lst.
2200
2201 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
2202
2203 * bootstrap (build_cvs_prefix): Remove; unused.
2204 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
2205 when getting gnulib.
2206
2207 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
2208
2209 * data/glr.c: Reorder typedef declarations for structs to match order
2210 of struct declarations.
2211 Rename yystack everywhere to yystackp except in yyparse where it's not
2212 a pointer.
2213 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
2214 consistency.
2215 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
2216 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
2217 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
2218 lint.
2219
2220 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
2221
2222 * tests/sets.at (Accept): Fix typos in regular expression used to
2223 sed out the final state number.
2224
2225 Work around portability problem on Solaris 10: flex-generated
2226 files include <stdio.h> before <config.h>, which messes up
2227 because the latter defines __EXTENSIONS__. Address the problem
2228 by creating two new little files that include <config.h> first,
2229 then include the flex-generated files. Rewrite everyone else
2230 to include <config.h> first, as well.
2231 * lib/timevar.c: Always include "config.h".
2232 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
2233 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
2234 (EXTRA_bison_SOURCES): New macro.
2235 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
2236 * src/system.h: Don't include config.h.
2237 * src/LR0.c: Include <config.h> first.
2238 * src/assoc.c: Likewise.
2239 * src/closure.c: Likewise.
2240 * src/complain.c: Likewise.
2241 * src/conflicts.c: Likewise.
2242 * src/derives.c: Likewise.
2243 * src/files.c: Likewise.
2244 * src/getargs.c: Likewise.
2245 * src/gram.c: Likewise.
2246 * src/lalr.c: Likewise.
2247 * src/location.c: Likewise.
2248 * src/main.c: Likewise.
2249 * src/muscle_tab.c: Likewise.
2250 * src/nullable.c: Likewise.
2251 * src/output.c: Likewise.
2252 * src/parse-gram.y: Likewise.
2253 * src/print.c: Likewise.
2254 * src/print_graph.c: Likewise.
2255 * src/reader.c: Likewise.
2256 * src/reduce.c: Likewise.
2257 * src/relation.c: Likewise.
2258 * src/state.c: Likewise.
2259 * src/symlist.c: Likewise.
2260 * src/symtab.c: Likewise.
2261 * src/tables.c: Likewise.
2262 * src/uniqstr.c: Likewise.
2263 * src/vcg.c: Likewise.
2264
2265 * src/parse-gram.y: Fix minor problems uncovered by lint.
2266 (current_lhs, current_lhs_location): Now static.
2267 (current_assoc): Remove unused variable.
2268
2269 Cleanups so that Bison-generated parsers have less lint.
2270 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
2271 Prepend /*ARGSUSED*/, for lint's sake.
2272 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
2273 definition if 'lint' is defined.
2274 (YYID): New macro (or function, if lint).
2275 All uses of /*CONSTCOND*/0 replaced by YYID(0).
2276 * data/yacc.c: Likewise.
2277 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
2278 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
2279 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
2280 is C++ only.
2281 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
2282 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
2283 Use YYID(0) rather than 0, for lint.
2284 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
2285 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
2286
2287 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
2288
2289 * tests/glr-regression.at
2290 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
2291 Close memory leak reported by twlevo.
2292
2293 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
2294
2295 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
2296 all stacks.
2297 (yyparse): Iterate another stack in order to call user destructors.
2298 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2299 New test case.
2300 (Duplicated user destructor for lookahead): This test now is expected
2301 to succeed.
2302
2303 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
2304
2305 * NEWS: Document the following change.
2306 * data/yacc.c: Say "parser skeleton" rather than "file", since
2307 it's no longer just a file.
2308 * data/glr.c: Grant a special exception for C GLR parsers, that
2309 reads like the already-existing exception for C LALR(1) parsers.
2310 * data/glr.cc: Likewise.
2311 * data/lalr1.cc: Likewise.
2312 * data/location.cc: Likewise.
2313 * data/yacc.c: Reword the "written by" statement to clarify that
2314 it was the parser skeleton, not the entire output file.
2315 * data/glr.c: Written by Paul Hilfinger.
2316 * data/glr.cc: Written by Akim Demaille.
2317 * data/lalr1.cc: Likewise.
2318
2319 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
2320
2321 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
2322 Fix typos in previous change that broke 'make check'.
2323 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
2324 supported in C.
2325 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
2326 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
2327 We can revert this once things settle down.
2328
2329 * src/conflicts.c (conflicts_print): Don't print file name twice
2330 when %expect fails because there were no conflicts.
2331 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
2332 change.
2333 * tests/conflicts.at (%expect not enough, %expect too much):
2334 (%expect with reduce conflicts): Adjust to new behavior.
2335
2336 2005-11-18 Akim Demaille <akim@epita.fr>
2337
2338 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
2339 errors.
2340 * NEWS: Document this.
2341 * doc/bison.texinfo (Expect Decl): Likewise.
2342
2343 2005-11-16 Akim Demaille <akim@epita.fr>
2344
2345 Generalize the display of semantic values and locations in traces.
2346 * data/glr.c (yy_reduce_print): Fix indices (again).
2347 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
2348 literal integers.
2349 * data/lalr1.cc (yyreduce_print): Rename as...
2350 (yy_reduce_print): this.
2351 Display values and locations.
2352 * data/yacc.c (yy_reduce_print): Likewise.
2353 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
2354 (yysymprint): Move higher to be visible from yy_reduce_print).
2355 (yyparse): Adjust.
2356 * tests/calc.at: Adjust the expected length of the traces.
2357
2358 2005-11-14 Akim Demaille <akim@epita.fr>
2359
2360 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
2361 from 1 to N, while values and location start at 0.
2362 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
2363
2364 2005-11-14 Akim Demaille <akim@epita.fr>
2365
2366 * data/glr.c (yy_reduce_print): Fix the $ number.
2367
2368 2005-11-14 Akim Demaille <akim@epita.fr>
2369
2370 "Use" parse parameters.
2371 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
2372 * data/glr.c, data/glr.cc: Use them.
2373 * data/glr.c (YYUSE): Have a C++ definition that supports
2374 non-pointer types.
2375
2376 2005-11-14 Akim Demaille <akim@epita.fr>
2377
2378 * data/glr.c (yyexpandGLRStack): Declare only if defined.
2379
2380 2005-11-14 Akim Demaille <akim@epita.fr>
2381
2382 * data/glr.cc: New.
2383 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
2384
2385 2005-11-12 Akim Demaille <akim@epita.fr>
2386
2387 Let position and location be PODs.
2388 * data/location.cc (position::initialize, location::initialize): New.
2389 (position::position, location::location): Define only if
2390 b4_location_constructors is defined.
2391 * data/lalr1.cc (b4_location_constructors): Define it for backward
2392 compatibility.
2393 * doc/bison.texinfo (Initial Action Decl): Use initialize.
2394
2395 2005-11-12 Akim Demaille <akim@epita.fr>
2396
2397 * data/lalr1.cc: Move the body of the ctor and dtor into the
2398 parser file (instead of the header).
2399 Wrap the implementations in a "namespace yy".
2400
2401 2005-11-12 Akim Demaille <akim@epita.fr>
2402
2403 Have glr.c include its header file when created.
2404 * data/glr.c (b4_shared_declarations): New.
2405 Output them verbatim in the parser if !%defines, otherwise
2406 output then in the header file, and include it instead.
2407
2408 2005-11-11 Akim Demaille <akim@epita.fr>
2409
2410 * data/glr.c: Comment changes.
2411
2412 2005-11-11 Akim Demaille <akim@epita.fr>
2413
2414 When yydebug, report semantic and location values for reductions.
2415 * data/glr.c (yy_reduce_print): Report the semantic values and the
2416 locations.
2417 (YY_REDUCE_PRINT): Adjust.
2418 (yyglrReduce): Use them.
2419 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
2420 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
2421 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
2422 traces.
2423
2424 2005-11-10 Akim Demaille <akim@epita.fr>
2425
2426 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
2427 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
2428 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
2429
2430 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
2431
2432 * m4/cxx.m4, examples/Makefile.am: Don't build
2433 examples/calc++ if no C++ compiler is available. (trivial change)
2434
2435 2005-11-09 Akim Demaille <akim@epita.fr>
2436
2437 * src/scan-skel.l: Use a couple of asserts.
2438
2439 2005-11-03 Akim Demaille <akim@epita.fr>
2440
2441 In some (weird) cases, the final state number is incorrect.
2442 Reported by Alexandre Duret-Lutz.
2443 * src/LR0.c (state_list_append): Remove the computation of
2444 final_state.
2445 (save_reductions): Do it here.
2446 (get_state): Alpha conversion.
2447 (generate_states): Use a for loop.
2448 * src/gram.h (item_number_is_rule_number)
2449 (item_number_is_symbol_number): New.
2450 * src/state.c: Use assert.
2451 * src/system.h: Include assert.h.
2452 * tests/sets.at (Accept): New.
2453
2454 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2455
2456 * data/glr.c (yyfill): Adjust comment.
2457 (yyresolveAction): Initialize default location properly
2458 for empty right-hand sides.
2459 (yydoAction): Ditto.
2460 Add comment explaining apparently dead code.
2461 * tests/glr-regression.at
2462 (Incorrectly initialized location for empty right-hand side in GLR):
2463 New test.
2464
2465 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
2466
2467 * bootstrap (cleanup_gnulib): New function. Use it to clean up
2468 gnulib when interrupted. This fixes some race conditions and
2469 works around some portability problems (one noted by Paul
2470 Hilfinger).
2471
2472 2005-10-22 Akim <akim@epita.fr>
2473
2474 * Makefile.cfg: Adjust to config -> build-aux.
2475 Reported by twledo.
2476
2477 2005-10-21 Akim Demaille <akim@epita.fr>
2478
2479 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
2480 the %parse-params.
2481 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
2482 * data/yacc.c (b4_Pure_if): Rename as...
2483 (b4_yacc_pure_if): this.
2484 (YY_SYMBOL_PRINT, yyparse): Adjust.
2485 * doc/bison.texinfo: Formatting changes.
2486
2487 2005-10-21 Akim Demaille <akim@epita.fr>
2488
2489 Finish the transition config -> build-aux.
2490 * configure.ac, Makefile.am: Use build-aux.
2491 * config/prev-version, config/announce-gen, config/Makefile.am:
2492 Move to...
2493 * build-aux/prev-version, build-aux/announce-gen,
2494 * build-aux/Makefile.am: here.
2495
2496 2005-10-14 Akim Demaille <akim@epita.fr>
2497
2498 * examples/calc++/test: Use set -x only when VERBOSE.
2499
2500 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
2501
2502 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
2503 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
2504
2505 2005-10-13 Akim Demaille <akim@epita.fr>
2506
2507 * src/scan-skel.l: Output the base name parts of the parser and
2508 header file names.
2509 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
2510 additional checks.
2511 Use this to exercise C++ outputs in subdirs.
2512 Reported by Oleg Smolsky.
2513
2514 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
2515
2516 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
2517 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
2518 Problem reported by John P. Hartmann.
2519 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
2520 already defined it.
2521
2522 2005-10-12 Akim Demaille <akim@epita.fr>
2523
2524 * src/parse-gram.y (version_check): Exit 63 to please missing
2525 (stands for "version mismatch).
2526 * tests/input.at, doc/bison.texinfo: Adjust.
2527
2528 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
2529
2530 Work around portability problems with Visual Age C compiler
2531 (xlc and xlC_r) reported by John P. Hartmann.
2532 * data/location.cc (initial_column, initial_line): Remove.
2533 All uses replaced by 0 and 1.
2534 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
2535 that xlc complains about.
2536 * src/scan-skel.l (skel_wrap): Likewise.
2537 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
2538 as __STDC__.
2539 * data/yacc.c (YYMODERN_C): New macro, which also looks at
2540 __STDC_VERSION__. Use it everywhere instead of looking at
2541 __STDC__ and __cplusplus.
2542
2543 2005-10-10 Akim Demaille <akim@epita.fr>
2544
2545 * examples/calc++/test: Be quiet unless VERBOSE.
2546
2547 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
2548
2549 * data/c.m4 (yydestruct, yysymprint):
2550 Use YYUSE instead of casting to void.
2551 * data/glr.c (YYUSE): New macro.
2552 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2553 Use it instead of rolling our own.
2554 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2555 (YYCHK1):
2556 Use /*CONSTCOND*/ to suppress lint warnings.
2557 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2558 (YY_STACK_PRINT): Use 'false' not '0'.
2559 (YYUSE): New macro.
2560 (yysymprint_, yydestruct_): Use it instead of rolling our own.
2561 * data/yacc.c (YYUSE): New macro.
2562 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
2563 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
2564 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
2565
2566
2567 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
2568 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
2569
2570 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
2571
2572 Undo the parts of the unlocked-I/O change that substituted
2573 putc or puts for printf. This might hurt performance a bit,
2574 but some people prefer the printf style.
2575 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
2576 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
2577 All uses replaced by YYFPRINTF and YYDPRINTF.
2578 * data/yacc.c: Likewise.
2579 * lib/bitset.c (bitset_print): Likewise.
2580 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
2581 putc and puts.
2582 * lib/lbitset.c (debug_lbitset): Likewise.
2583 * src/closure.c (print_firsts, print_fderives): Likewise.
2584 * src/gram.c (grammar_dump): Likewise.
2585 * src/lalr.c (look_ahead_tokens_print): Likewise.
2586 * src/output.c (escaped_output): Likewise.
2587 (user_actions_output): Break apart two printfs.
2588 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
2589 * src/reduce.c (reduce_print): Likewise.
2590 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2591 * src/system.h: Include unlocked-io.h rathe than stdio.h.
2592
2593 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2594 Use assignments rather than casts-to-void to suppress
2595 unused-variable warnings. This pacifies 'lint'.
2596 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
2597 unused-variable warnings.
2598
2599 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2600
2601 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2602
2603 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
2604
2605 Use unlocked I/O for a minor performance improvement on hosts like
2606 GNU/Linux and Solaris that support unlocked I/O. The basic idea
2607 is to use the gnlib unlocked-io module, and to prefer putc and
2608 puts to printf when either will work (since the latter doesn't
2609 come in an unlocked flavor).
2610 * bootstrap (gnulib_modules): Add unlocked-io.
2611 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
2612 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
2613 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
2614 and similarly for puts and putc and printf.
2615 * data/yacc.c: Likewise.
2616 * lib/bitset.c (bitset_print): Likewise.
2617 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
2618 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
2619 to printf.
2620 * lib/lbitset.c (debug_lbitset): Likewise.
2621 * src/closure.c (print_firsts, print_fderives): Likewise.
2622 * src/gram.c (grammar_dump): Likewise.
2623 * src/lalr.c (look_ahead_tokens_print): Likewise.
2624 * src/output.c (escaped_output): Likewise.
2625 (user_actions_output): Coalesce two printfs.
2626 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
2627 * src/reduce.c (reduce_print): Likewise.
2628 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2629 * src/system.h: Include unlocked-io.h rather than stdio.h.
2630
2631 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
2632 this confuses xgettext.
2633
2634 2005-10-02 Akim Demaille <akim@epita.fr>
2635
2636 * bootstrap (gnulib_modules): Add strverscmp.
2637 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
2638 * m4/.cvsignore: Add strverscmp.m4.
2639 * src/parse-gram.y (%require): New token, new rule.
2640 (version_check): New.
2641 * src/scan-gram.l (%require): Adjust.
2642 * tests/input.at (AT_REQUIRE): New.
2643 Use it.
2644 * doc/bison.texinfo (Require Decl): New.
2645 (Calc++ Parser): Use %require.
2646
2647 2005-10-02 Akim Demaille <akim@epita.fr>
2648
2649 * data/location.cc: New.
2650
2651 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
2652 Akim Demaille <akim@epita.fr>
2653
2654 Make sure -odir/foo.cc creates dir/location.hh etc.
2655 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
2656 (spec_file_prefix, spec_verbose_file, spec_graph_file)
2657 (spec_defines_file): Now const.
2658 (dir_prefix): New.
2659 (short_base_name): Remove.
2660 * src/files.c: Adjust.
2661 (dirname.h): Include.
2662 (base_name): Don't prototype it.
2663 (finput): Remove, duplicates gram_in.
2664 (full_base_name, short_base_name): Replace by...
2665 (all_but_ext, all_but_tab_ext): these.
2666 (compute_base_names): Rename as...
2667 (compute_file_name_parts): this.
2668 Update to compute the new variables, including dir_prefix.
2669 Adjust dependencies.
2670 * src/output.c (prepare): Output them.
2671 * src/reader.c: Adjust to use gram_in, not finput.
2672 * src/scan-skel.l (@dir_prefix@): New.
2673
2674 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2675
2676 * lib/subpipe.c: New function end_of_output_subpipe() added
2677 to allow support for non-posix systems. This is a no-op function
2678 for posix systems.
2679
2680 * lib/subpipe.h: New function end_of_output_subpipe() added
2681 to allow support for non-posix systems. This is a no-op function
2682 for posix systems.
2683
2684 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
2685 handle the lack of pipe/fork functionality on non-posix systems.
2686
2687 * djgpp/Makefile.maint: DJGPP specific file.
2688
2689 * djgpp/README.in: DJGPP specific file.
2690
2691 * djgpp/config.bat: DJGPP specific configuration file.
2692
2693 * djgpp/config.sed: DJGPP specific configuration file.
2694
2695 * djgpp/config.site: DJGPP specific configuration file.
2696
2697 * djgpp/config_h.sed: DJGPP specific configuration file.
2698
2699 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
2700
2701 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
2702
2703 2005-10-02 Akim Demaille <akim@epita.fr>
2704
2705 * data/location.cc: New, extract from...
2706 * data/lalr1.cc: here.
2707 (location.hh): Include it after the user prologue, in case the
2708 filename type is defined by the user.
2709 Forward declation location and position before the pre-prologue.
2710 (yyresult_): Rename as...
2711 (yyresult): this, it's a local variable, not an attribute.
2712 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
2713
2714 2005-10-01 Akim Demaille <akim@epita.fr>
2715
2716 * examples/extexi: Restore the #line generation.
2717
2718 2005-09-30 Akim Demaille <akim@epita.fr>,
2719 Alexandre Duret-Lutz <adl@gnu.org>
2720
2721 Move the token type and YYSTYPE in the parser class.
2722 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
2723 (parser::token): New, from the moved free definition of tokens.
2724 (parser::semantic_value): Now a full definition instead of an
2725 indirection to YYSTYPE.
2726 (b4_post_prologue): No longer included in the header file, but
2727 in the implementation file.
2728 * doc/bison.texi (C+ Language Interface): Update.
2729 * src/parse-gram.y: Support unary %define.
2730 * tests/actions.at: Define global_tokens_and_yystype for backward
2731 compatibility until we update the tests.
2732 * tests/calc.at: Idem.
2733 (first_line, first_column, last_line, last_column): Define for lalr1.cc
2734 to simplify the code.
2735
2736 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
2737
2738 Port to SunOS 4.1.4, which lacks strtoul and strerror.
2739 Ah, the good old days! Problem reported by Peter Klein.
2740 * bootstrap (gnulib_modules): Add strerror, strtoul.
2741 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
2742 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
2743
2744 2005-09-29 Akim Demaille <akim@epita.fr>
2745
2746 * data/c.m4 (b4_error_verbose_if): New.
2747 * data/lalr1.cc: Use it.
2748 (YYERROR_VERBOSE_IF): Remove.
2749 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
2750 parser members, replaced by...
2751 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
2752 local variables.
2753 (yysyntax_error_): Takes the state number as argument.
2754 (yyreduce_print_): Use the argument yyrule, not the former
2755 attribute yyn_.
2756
2757 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
2758
2759 * bootstrap (gnulib_modules): Add verify.
2760 * lib/.cvsignore: Add verify.h.
2761 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
2762 * src/system.h (verify): Remove.
2763 Include verify.h instead.
2764 * src/tables.c (tables_generate): Use new API for 'verify'.
2765
2766 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
2767
2768 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
2769 local variables whose names begin with 'yy'.
2770 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
2771 Trivial changes from Joel E. Denny.
2772
2773 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
2774 it itself.
2775 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
2776 don't use alloca any more.
2777
2778 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
2779 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
2780 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
2781 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
2782 to match yacc.c, to test more hosts.
2783
2784 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
2785
2786 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
2787 doesn't affect behavior.
2788 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
2789 Solaris, AIX, MSC.
2790 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
2791 This works a bit better with glibc, if user code has already included
2792 stdlib.h.
2793 * doc/bison.texinfo (Bison Parser): Document that users can't
2794 arbitrarily use malloc and free for other purposes. Document
2795 that <alloca.h> and <malloc.h> might be included.
2796 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
2797 user must declare alloca.
2798
2799 * HACKING (release): Forwarn the Translation Project about
2800 stable releses.
2801
2802 2005-09-20 Akim Demaille <akim@epita.fr>
2803
2804 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
2805
2806 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
2807
2808 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
2809 (YYSTACK_ALLOC_MAXIMUM): Use it.
2810 (yysyntax_error): New function.
2811 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
2812 multiple syntax errors are reported, and alloca is being used.
2813 Instead, reallocate buffers twice as big each time, so that
2814 we waste at most half the allocated memory. Start with a small
2815 (128-byte) buffer that will suffice in most cases anyway.
2816 Use yysyntax_error to do most of the work.
2817
2818 * doc/bison.texinfo (Error Reporting, Table of Symbols):
2819 yynerrs is the number of errors reported, not the number of
2820 errors encountered.
2821
2822 * tests/glr-regression.at (Duplicated user destructor for lookahead):
2823 Mark it as expected to fail.
2824 Cast result of malloc; problem reported by twlevo@xs4all.nl.
2825 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
2826 Don't start user-code symbols with "yy", to avoid name space problems.
2827
2828 2005-09-19 Akim Demaille <akim@epita.fr>
2829
2830 Remove the traits, failed experiment.
2831 It never proved useful, and anyway because of the current
2832 definition, it was not possible to have several specialization of
2833 this traits, making it useless.
2834 * data/lalr1.cc (yy:traits): Remove.
2835 Inline its definitions in the parser class.
2836
2837 2005-09-19 Akim Demaille <akim@epita.fr>
2838
2839 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
2840 least Mac OSX with a /usr/local install of gettext.
2841
2842 2005-09-19 Akim Demaille <akim@epita.fr>
2843
2844 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
2845 and yytoken for similarity with the other skeletons.
2846
2847 2005-09-19 Akim Demaille <akim@epita.fr>
2848
2849 * NEWS, configure.ac: update version number to 2.1a.
2850
2851 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
2852
2853 * NEWS: Version 2.1.
2854
2855 * NEWS: Remove notice of yytname change, since it was never in an
2856 official release.
2857 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
2858 diagnostic.
2859 * src/output.c (prepare): Likewise.
2860 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
2861 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
2862 is not defined. This is an awful hack, but it's enough for now.
2863 All callers changed.
2864 * tests/glr-regression-at (make_value): Args are const pointers now,
2865 to avoid GCC warning.
2866 (Duplicated user destructor for lookahead): New test. Currently
2867 skipped. It fails on my host but I'm not sure it'll always fail.
2868
2869 2005-09-16 Akim Demaille <akim@epita.fr>
2870
2871 * src/symtab.h (struct symbol): Declare the printer and destructor
2872 as const, to avoid accidental calls to free.
2873 (symbol_destructor_set, symbol_printer_set): Adjust.
2874 * src/symtab.c: Adjust.
2875
2876 2005-09-16 Akim Demaille <akim@epita.fr>
2877
2878 * data/c.m4 (b4_token_enums): New.
2879 (b4_token_defines): Rename as...
2880 (b4_token_enums_defines): this.
2881 (b4_token_defines): New, output only the #defines.
2882 * data/yacc.c, data/glr.c: Adjust.
2883 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
2884 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
2885 as default values.
2886
2887 2005-09-16 Akim Demaille <akim@epita.fr>
2888
2889 * data/lalr1.cc (yylex_): Remove, inline its code.
2890 (yyreport_syntax_error_): Remove, replaced by...
2891 (yysyntax_error_): this which returns a string and leaves to the
2892 caller the call to the users' error function.
2893 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
2894 Move from members of the parser object...
2895 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
2896 to local variables of the parse function.
2897
2898 2005-09-16 Akim Demaille <akim@epita.fr>
2899
2900 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
2901 since it's in Bison's name space.
2902
2903 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
2904
2905 * data/glr.c (yyresolveValue): Add default case to pacify
2906 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
2907
2908 * NEWS: Document when yyparse started to return 2.
2909 * doc/bison.texinfo (Parser Function): Document when yyparse
2910 returns 2.
2911
2912 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
2913 (b4_filename_type): Renamed back from b4_file_name_type. All uses
2914 changed.
2915 (class position): file_name -> filename (reverting). All uses changed.
2916
2917 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
2918
2919 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
2920 do anything if $@ exists. This reverts part of the 2005-07-07
2921 patch.
2922
2923 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
2924
2925 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
2926 contains obsolete information and isn't worth distributing as a
2927 separate file anyway.
2928 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
2929 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
2930 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
2931 (yyparse): Abort if user code uses longjmp to throw an unexpected
2932 value.
2933
2934 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
2935
2936 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
2937 Suggested by twlevo@xs4all.nl.
2938
2939 * data/glr.c (YYCHK1): Do not assume YYE is in range.
2940 This avoids a diagnostic from gcc -Wswitch-enum.
2941 Problem reported by twlevo@xs4all.nl.
2942
2943 * doc/bison.texinfo: Don't use "filename", as per GNU coding
2944 standards. Use "file name" or "file" or "name", depending on
2945 the context.
2946 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
2947 not to hack/foo.tab.c.
2948 (Calc++ Top Level): 2nd arg of main is not const.
2949 * data/glr.c: b4_filename -> b4_file_name.
2950 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
2951 All uses changed.
2952 (class position): filename -> file_name. All uses changed.
2953 * data/yacc.c: b4_filename -> b4_file_name.
2954 * lib/bitset.h: filename -> file_name in local vars.
2955 * lib/bitset_stats.c: Likewise.
2956 * src/files.c: Likewise.
2957 * src/scan-skel.l ("@output ".*\n): Likewise.
2958 * src/files.c (file_name_split): Renamed from filename_split.
2959 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
2960
2961 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
2962
2963 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
2964 to accommodate latest gnulib.
2965
2966 * tests/glr-regression.at (Duplicate representation of merged trees):
2967 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
2968
2969 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
2970 needed.
2971
2972 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
2973
2974 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
2975 All uses changed. Invoke user destructor after an error during a
2976 split parse (trivial change from Joel E. Denny).
2977
2978 * tests/glr-regression.at
2979 (User destructor after an error during a split parse): New test case.
2980 Problem reported by Joel E. Denny in:
2981 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
2982
2983 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
2984
2985 * README-cvs: Give URLs for recommended tools.
2986 Mention Gzip version problem, and bootstrapping issues.
2987 Remove troubleshooting section, as it's somewhat obsolete.
2988
2989 * bootstrap (no_cache): New var, to accommodate different wget
2990 variants. Use it instead of '-C off'. Problem reported by
2991 twlevo@xs4all.nl.
2992
2993 * data/glr.c (yydestroyStackItem): New function.
2994 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
2995 debugging information. Problem reported by Joel E. Denny.
2996
2997 2005-08-25 Akim Demaille <akim@epita.fr>
2998
2999 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
3000
3001 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
3002
3003 * data/glr.c (yyrecoverSyntaxError, yyreturn):
3004 Don't invoke destructor on unresolved entries.
3005 * tests/glr-regression.at
3006 (User destructor for unresolved GLR semantic value): New test case.
3007 Problem reported by Joel E. Denny in:
3008 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
3009
3010 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
3011
3012 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
3013 Add strnlen.c.
3014 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
3015 lib-prefix.m4, po.m4.
3016
3017 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
3018 in yydestruct diagnostic, since it might not be an error.
3019 Problem reported by Joel Denny near end of
3020 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
3021 * data/lalr1.cc (yyerturn): Likewise.
3022 * data/yacc.c (yyreturn): Likewise.
3023 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
3024
3025 * src/files.c: Remove obsolete FIXME comment.
3026
3027 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
3028 with the other templates, and to fix bogus run-on messages such
3029 as the one reported at the end of
3030 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
3031 All callers changed to avoid the newline.
3032 (yyprocessOneStack): Output two lines rather than one, to accommodate
3033 the above change. This changes the debug output format slightly.
3034
3035 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
3036 reported by Joel E. Denny in
3037 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
3038 (trivial change).
3039 * tests/glr-regression.at (Duplicate representation of merged trees):
3040 New test, from Joel E. Denny in:
3041 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
3042 * THANKS: Add Joel E. Denny.
3043
3044 * configure.ac (AC_INIT): Bump to 2.0c.
3045
3046 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
3047
3048 * NEWS: Version 2.0b.
3049
3050 * Makefile.am (SUBDIRS): Put examples before tests, so that
3051 "make check" doesn't finish with "All 1 tests passed".
3052
3053 * tests/regression.at (Token definitions): Don't rely on
3054 AT_PARSER_CHECK for data that contains backslashes. It currently
3055 uses 'echo', and 'echo' isn't portable if its argument contains
3056 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
3057 that the byte '\0xff' is not printable in the C locale; it is,
3058 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
3059 not printable, so use '\0x81' to test.
3060
3061 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
3062 version of GCC, since the macro is used with non-GCC compilers.
3063
3064 Fix core dump reported by Pablo De Napoli in
3065 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
3066 * tests/regression.at (Invalid inputs with {}): New test.
3067 * src/parse-gram.y (token_name): Translate type before using
3068 it as an index.
3069
3070 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
3071 the user's name space. All uses changed to __attribute__
3072 ((__unused__)).
3073 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
3074 Add __attribute__ ((__noreturn__)).
3075
3076 * etc/clcommit: Remove. We weren't using it, and it failed
3077 "make maintainer-distcheck".
3078 * Makefile.maint: Merge from coreutils.
3079 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
3080 (syntax-check-rules): Change list of rules as described below.
3081 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
3082 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
3083 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
3084 (sc_trailing_space): New rules.
3085 (sc_xalloc_h_in_src): Remove.
3086 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
3087 (sc_space_tab, sc_error_exit_success, sc_changelog):
3088 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
3089 (makefile-check, po-check, author_mark_check):
3090 (makefile_path_separator_check, copyright-check):
3091 Use grep -n, to make it easier to find violations.
3092 Use CVS_LIST and CVS_LIST_EXCEPT.
3093 (header_regexp, h_re): Remove.
3094 (dd_c): New macro.
3095 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
3096 (my-distcheck): Use more-modern GCC flags.
3097 (signatures, %.asc): Remove.
3098 (rel-files, announcement): Remove signatures.
3099 Restore old updating code, even though we don't use it, so
3100 that we're the same as coreutils.
3101 (alpha, beta, major): Depend on news-date-check.
3102 Make the upload commands.
3103
3104 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
3105 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
3106 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
3107 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
3108 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
3109 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
3110 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
3111 * tests/sets.at: Likewise.
3112
3113 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
3114 we comment out the Autoconf version number.
3115 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
3116 it's error-prone and "make maintainer-distcheck" rejects it.
3117
3118 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
3119 Indent calls to "error" to pacify "make maintainer-distcheck",
3120 when the calls are not intended to be translated.
3121 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
3122
3123 * src/Makefile.am (DEFS): Use +=, to pacify
3124 "make maintainer-distcheck".
3125 (bison_SOURCES): Add scan-skel.h.
3126 (sc_tight_scope): New rule, from coreutils.
3127
3128 * src/files.c (src_extension, header_extension):
3129 Now static, not extern.
3130 * src/getargs.c (short_options): Likewise.
3131 * src/muscle_tab.c (muscle_table): Likewise.
3132 * src/parse-gram.y (current_class, current_type, current_prec):
3133 Likewise.
3134 * src/reader.c (grammar_end, previous_rule_end): Likewise.
3135 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
3136 * src/main.c (main): Cast bindtextdomain and textdomain calls to
3137 void, to avoid warning when NLS is disabled.
3138 * src/output.c: Include scan-skel.h.
3139 (scan_skel): Remove decl, since scan-skel.h does this.
3140 (output_skeleton):
3141 Indent calls to "error" to pacify "make maintainer-distcheck".
3142 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
3143 * src/reader.h (gram_end, gram_lineno): New decls to pacify
3144 "make maintainer-distcheck".
3145 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
3146 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
3147 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
3148 (skel_lex_destroy, scan_skel): Move these decls to...
3149 * src/scan-skel.h: New file.
3150 * src/uniqstr.c (uniqstr_assert):
3151 Indent calls to "error" to pacify "make maintainer-distcheck".
3152
3153 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
3154 not @VAR@.
3155
3156 * tests/torture.at: Revamp to avoid misuse of atoi that
3157 "make maintainer-distcheck" complained about.
3158
3159 * examples/extexi (message): Don't print a message more than once,
3160 and omit line-number decoration that makes Emacs compile think
3161 that informative messages are worth worrying about.
3162
3163 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
3164
3165 * configure.ac: Update version number.
3166
3167 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
3168 accidentally.
3169 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
3170 autogenerated by the maintainer.
3171 * examples/calc++/.cvsignore: Add *.yy.
3172
3173 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
3174 * lib/bitset_stats.c (bitset_stats_init): Likewise.
3175 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3176
3177 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
3178
3179 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
3180 from maintainer-distcheck about casting the argument of 'free'.
3181
3182 * NEWS: Mention recent yytname changes.
3183 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
3184
3185 * bootstrap: For translations that have not yet been upgraded to
3186 the new runtime-po domain, prime the pump by extracting the
3187 relevant strings from the obsolete translations. This code can be
3188 removed once the bison-runtime domain has been translated by each
3189 team.
3190
3191 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
3192 now that token names are already quoted.
3193
3194 Fix problem reported by Anthony Heading.
3195 * data/glr.c (YYTOKEN_TABLE): New macro.
3196 (yytname): Define if YYTOKEN_TABLE.
3197 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
3198 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
3199 (YYERROR_VERBOSE): Define the same way the other skeletons do.
3200 * src/output.c (prepare_symbols): Output token_table_flag.
3201
3202 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
3203
3204 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
3205 again if the first call fails.
3206
3207 * data/glr.c (yytnamerr): New function.
3208 (yyreportSyntaxError): Use it to dequote most string literals.
3209 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
3210 with other skeletons. All uses changed.
3211 (yytnameerr_): New function.
3212 (yyreport_syntax_error): Use it to dequote most string literals.
3213 * data/yacc.c (yytnamerr): New function.
3214 (yyerrlab): Use it to decode most string literals.
3215 * doc/bison.texinfo (Decl Summary, Calling Convention):
3216 Clarify quoting convention of yytname.
3217 * src/output.c (prepare_symbols): Quote all names. This undoes
3218 the 2005-04-17 change, which is now accomplished (mostly) via
3219 changes in the parsers as described above.
3220 * tests/regression.at (Token definitions, Web2c Actions):
3221 Undo most 2005-04-17 change here, too.
3222
3223 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
3224
3225 Fix more problems reported by twlevo@xs4all.nl.
3226 * tests/cxx-type.at: Don't pipe output of ./types through sed to
3227 remove trailing spaces. This loses the exit status of ./types,
3228 and isn't needed since ./types shouldn't be emitting trailing
3229 spaces.
3230 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
3231 as the stack isn't valid in that case.
3232
3233 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
3234 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
3235 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
3236 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
3237 is used.
3238 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
3239 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
3240 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
3241 Likewise.
3242
3243 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
3244 overly-picky compilers that reject 'char *foo = "bar";'.
3245
3246 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
3247 to FILE * parameter, not to stderr. This fixes a typo introduced
3248 in the 2005-07-12 change.
3249
3250 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
3251 warnings from GCC 4.
3252
3253 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
3254 (yyglrShiftDefer, yysplitStack):
3255 Remove unused parameters b4_pure_formals. All uses changed.
3256 (yyglrShift): Remove unused parameters b4_user_formals.
3257 All uses changed.
3258 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
3259
3260 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
3261
3262 Destructor cleanups and regularization among the three skeletons.
3263 * NEWS: Document the behavior changes.
3264 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
3265 stack before failing, as the cleanup code will do it for us now.
3266 * data/lalr1.cc (yyerrlab): Likewise.
3267 * data/glr.c (yyparse): Pop everything off the stack before
3268 freeing it, so that destructors get called properly.
3269 * data/lalr1.cc (yyreturn): Likewise.
3270 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
3271 This is more consistent.
3272 * doc/bison.texinfo (Destructor Decl): Mention more reasons
3273 why destructors might be called. 1.875 -> 2.1.
3274 (Destructor Decl, Decl Summary, Table of Symbols):
3275 Some English-language cleanups for %destructor.
3276 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
3277 Add output line for destructor of start symbol.
3278 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
3279 because of that same extra output line.
3280
3281 * NEWS: Document minor wording changes in diagnostics of
3282 Bison-generated parsers.
3283 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
3284 Remove unused formals. All uses changed.
3285 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
3286 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
3287 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
3288 Rename yyoverflowab to yyexhaustedlab.
3289 When memory exhaustion occurs during syntax-error reporting,
3290 report it separately rather than in a single diagnostic; this
3291 eases translation.
3292 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
3293 (Memory Exhausted): Renamed from Parser Stack Overflow.
3294 Revamp wording slightly to prefer "memory exhaustion".
3295 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
3296
3297 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
3298
3299 Add i18n support to the GLR skeleton. Partially fix the C++
3300 skeleton; a C++ expert needs to finish this. Remove debugging
3301 msgids; there's little point to having them translated, since they
3302 can be understood only by someone who can read the
3303 (English-language) source code.
3304
3305 Generate runtime-po/bison-runtime.pot automatically, so that we
3306 don't have to worry about garbage getting in that file. We'll
3307 make sure after the next official release that old msgids don't
3308 get lost. See
3309 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
3310
3311 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
3312 Now auto-generated.
3313 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
3314 Fix typos in explanations of the runtime file.
3315 * bootstrap: Change gettext keyword from YYI18N to YY_.
3316 Use standard Makefile.in.in in runtime-po, since we'll arrange
3317 for backward-compatible bison-runtime.po files in a different way.
3318 * data/glr.c (YY_): New macro, from yacc.c.
3319 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
3320 Translate messages intended for users.
3321 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
3322 the wording in the other skeletons. We don't know that the memory
3323 is virtual.
3324 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
3325 Use same method that yacc.c uses.
3326 Don't translate debugging messages.
3327 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
3328 it doesn't work (yet), and requires C++ expertise to fix.
3329 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
3330 Move defn to a more logical place, to be consistent with other
3331 skeletons.
3332 Don't translate debugging messages.
3333 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
3334 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
3335 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
3336 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
3337
3338 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
3339 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
3340 void, not int.
3341 * tests/glr-regression.at (Badly Collapsed GLR States):
3342 Likewise.
3343 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3344 yylex should return 0 at EOF rather than aborting.
3345
3346 Improve tests for stack overflow in GLR parser.
3347 Problem reported by twlevo@xs4all.nl.
3348 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
3349 All uses removed.
3350 (yyStackOverflow): Just longjmp, but with value 2 so that caller
3351 can handle the problem.
3352 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
3353 (yyparse): New local variable yyresult to record the result.
3354 Use result of setjmp to set it, rather than storing itinto
3355 struct.
3356 (yyDone): Remove label.
3357 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
3358 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
3359 if YYABORT is used).
3360 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
3361 yyparse status; put status > 1 into diagnostic.
3362 Check that status==2 works.
3363 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
3364 Use exit status 3 for failure to open (which shouldn't happen).
3365
3366 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
3367
3368 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
3369 1 on syntax error; just let yyparse do its thing.
3370 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
3371 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
3372 (Exploding the Stack Size with Alloca):
3373 (Exploding the Stack Size with Malloc):
3374 Expect exit status 2, not 1, since the parser is supposed to blow
3375 its stack. Problem reported by twlevo@xs4all.nl.
3376
3377 * data/glr.c (yyparse): Don't assume that the initial calls
3378 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
3379 Print a stack-overflow message and fail instead.
3380 Initialize the line-number information before creating the stack,
3381 so that the stack-overflow message can report line zero safely.
3382
3383 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
3384
3385 Fix problems reported by twlevo@xs4all.nl.
3386 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
3387 (yyuserMerge): Provide a default case if b4_mergers is empty.
3388 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
3389 * tests/glr-regression.at
3390 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3391 Add casts to pacify C++ compilers.
3392 * tests/glr-regression.at (Improper merging of GLR delayed action
3393 sets): Declare yylex before using it.
3394 * tests/Makefile.am (maintainer-check-g++): Fix a stray
3395 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
3396 test for valgrind; valgrind is independent of g++.
3397 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
3398 for compatibility with POSIX 1003.1-2001 (if running coreutils).
3399 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
3400 Use a destructor, so that we can expand the stack. Change
3401 YYSTYPE to char * so that we can free it. Cast result of malloc.
3402
3403 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3404
3405 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
3406 a valgrind failure. Problem reported by twlevo@xs4all.nl.
3407
3408 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
3409
3410 * PACKAGING: New file, suggested by Bruno Haible and taken from
3411 similar wording in gettext's PACKAGING file.
3412 * NEWS: Mention PACKAGING.
3413 * Makefile.am (EXTRA_DIST): Add PACKAGING.
3414
3415 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
3416
3417 * NEWS: Document recent i18n improvements.
3418 * bootstrap: Get runtime translations into runtime-po.
3419 Create runtime-po files automatically, if possible.
3420 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
3421 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
3422 does not infringe on the user's name space.
3423 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
3424 * doc/bison.texinfo (Internationalization): Revamp the English
3425 and Texinfo syntax a bit, to try to make it clearer.
3426 (Bison Options, Option Cross Key): Mention --print-localedir.
3427 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
3428 YYENABLE_NLS. Quote a bit more.
3429 * runtime-po/.cvsignore: New file.
3430 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
3431 * runtime-po/Rules-quot: Remove; now created by bootstrap.
3432 * runtime-po/quot.sed: Likewise.
3433 * runtime-po/boldquot.sed: Likewise.
3434 * runtime-po/en@quot.header: Likewise.
3435 * runtime-po/en@boldquot.header: Likewise.
3436 * runtime-po/insert-header.sin: Likewise.
3437 * runtime-po/remove-potcdate.sin: Likewise.
3438 * runtime-po/Makevars: Likewise.
3439 * runtime-po/LINGUAS: Likewise.
3440 * runtime-po/de.po: Likewise; we will rely on the translation project
3441 to maintain this, so "bootstrap" should get it.
3442 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
3443 its value.
3444 * src/main.c (main): Bind the bison-runtime domain, too.
3445
3446 2005-07-12 Bruno Haible <bruno@clisp.org>
3447
3448 * data/yacc.c: Include <libintl.h> when NLS is enabled.
3449 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
3450 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
3451 * runtime-po: New directory.
3452 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
3453 $(DOMAIN).pot-update rule, so that old messages are never dropped.
3454 * runtime-po/Rules-quot: New file, copied from po/.
3455 * runtime-po/quot.sed: Likewise.
3456 * runtime-po/boldquot.sed: Likewise.
3457 * runtime-po/en@quot.header: Likewise.
3458 * runtime-po/en@boldquot.header: Likewise.
3459 * runtime-po/insert-header.sin: Likewise.
3460 * runtime-po/remove-potcdate.sin: Likewise.
3461 * runtime-po/Makevars: New file.
3462 * runtime-po/POTFILES.in: New file.
3463 * runtime-po/LINGUAS: New file.
3464 * runtime-po/bison-runtime.pot: New file.
3465 * runtime-po/de.po: New file.
3466 * m4/bison.m4: New file.
3467 * Makefile.am (SUBDIRS): Add runtime-po.
3468 (aclocaldir, aclocal_DATA): New variables.
3469 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
3470 Define aclocaldir.
3471 * src/getargs.c (usage): Document --print-localedir option.
3472 (PRINT_LOCALEDIR_OPTION): New enum item.
3473 (long_options): Add --print-localedir option.
3474 (getargs): Handle --print-localedir option.
3475 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
3476 (Internationalization): New section.
3477
3478 2005-07-12 Akim Demaille <akim@epita.fr>
3479
3480 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
3481 for consistency with the rest of the code.
3482 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
3483 Add separators.
3484
3485 2005-07-12 Akim Demaille <akim@epita.fr>
3486
3487 * src/parse-gram.y: Use %printer instead of YYPRINT.
3488
3489 2005-07-12 Akim Demaille <akim@epita.fr>
3490
3491 * src/symtab.h, src/symtab.c (symbol_print): New.
3492 * src/symlist.h, src/symlist.c (symbol_list_print): New.
3493 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
3494
3495 2005-07-12 Akim Demaille <akim@epita.fr>
3496
3497 * data/glr.c (b4_syncline): Fix (swap) the definitions of
3498 b4_at_dollar and b4_dollar_dollar.
3499
3500 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
3501
3502 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
3503 and Pennello's paper.
3504
3505 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
3506
3507 * data/yacc.c (yyparse): Undo previous patch. Instead,
3508 set yylsp[0] and yyvsp[0] only if the initial action
3509 sets yylloc and yylval, respectively.
3510
3511 * data/yacc.c (yyparse): In the initial action, set
3512 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
3513 This avoids the use of undefined variables if the initial
3514 action does not set yylloc and/or yylval.
3515
3516 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
3517
3518 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
3519 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
3520 Remove from CVS. These files are automatically generated.
3521 * examples/extexi: Clarify that this file is now part of Bison,
3522 not GNU M4, and that it works with any POSIX-compatible Awk.
3523 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
3524 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
3525 so that we also get calc++-parser.yy. Geneate it.
3526 Use $(AWK), not gawk, since any conforming Awk will do.
3527 Put comment before action, since older 'make' can't handle comment
3528 in action.
3529 $(BUILT_SOURCES): List all built sources, not just some of them.
3530 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
3531 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
3532 $($(calc_sources_generated)): Remove unnecessary test for existence
3533 of target. (This had a shell syntax error anyway; a stray "x".)
3534 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
3535 calc++-parser.yy.
3536 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
3537
3538 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
3539 implied by the other modules.
3540
3541 2005-07-06 Akim Demaille <akim@epita.fr>
3542
3543 Bind examples/calc++ to the package.
3544 * examples/calc++/Makefile: Remove, replaced by...
3545 * examples/calc++/Makefile.am: ... this new file.
3546 * examples/calc++/test: Remove input.
3547 * examples/calc++/compile: Remove.
3548 * examples/Makefile.am: New.
3549 * configure.ac, Makefile.am: Adjust.
3550 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
3551
3552 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
3553
3554 * data/glr.c (yyFail): Drastically simplify; since the format argument
3555 never had any % directives, we can simply pass it to yyerror.
3556 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
3557 be modified later, as that is the usual style in glr.c.
3558 Problems reported by Paul Hilfinger.
3559
3560 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
3561 and size overflow errors.
3562 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
3563 in case the user prolog sets feature-test macros like _GNU_SOURCE.
3564 (YYSIZEMAX): New macro.
3565 (yystpcpy): New function, taken from yacc.c.
3566 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
3567 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
3568 so that we don't have to maintain their signatures.
3569 (yyFail): Check for buffer overflow, by using vsnprintf rather
3570 than vsprintf. Allocate a bigger buffer if possible.
3571 Report an error if buffer allocation fails.
3572 (yyStackOverflow): New function.
3573 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
3574 the initialization was successful. It might fail if storage was
3575 exhausted.
3576 (yyexpandGLRStack): Add more checks for storage allocation failure.
3577 Use yyStackOverflow to report failures.
3578 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
3579 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
3580 Don't assume stack number fits in int.
3581 (yysplitStack): Check for storage allocation failure.
3582 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
3583 can print diagnostics on storage allocation failure. All callers
3584 changed.
3585 (yyresolveValue): Use yybool for boolean.
3586 (yyreportSyntaxError): Check for size-calculation overflow.
3587 This code is taken from yacc.c.
3588 (yyparse): Check for storage allocation errors when allocating
3589 the initial stack.
3590
3591 2005-07-05 Akim Demaille <akim@epita.fr>
3592
3593 Extract calc++ from the documentation.
3594 * doc/bison.texinfo (Calc++): Add the extraction marks.
3595 * examples/extexi: New, from the aborted GNU Programming 2E.
3596 Separate the different paragraph of a file with empty lines.
3597 * examples/Makefile: Use it to extract the whole calc++ example.
3598
3599 2005-06-24 Akim Demaille <akim@epita.fr>
3600
3601 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
3602 class typedefs.
3603
3604 2005-06-22 Akim Demaille <akim@epita.fr>
3605
3606 * doc/bison.texinfo (C++ Language Interface): First stab.
3607 (C++ Parsers): Remove.
3608
3609 2005-06-22 Akim Demaille <akim@epita.fr>
3610
3611 * data/lalr1.cc (yylex_): Honor %lex-param.
3612
3613 2005-06-22 Akim Demaille <akim@epita.fr>
3614
3615 Start a set of simple examples.
3616 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
3617 * examples/calc++/calc++-driver.hh,
3618 * examples/calc++/calc++-parser.yy,
3619 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
3620 * examples/calc++/compile, examples/calc++/test: New.
3621
3622 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
3623
3624 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
3625 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
3626 which stems from the 2005-05-27 patch.
3627
3628 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3629
3630 * data/glr.c: Modify treatment of unused parameters to permit use
3631 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
3632
3633 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
3634
3635 Fix infringement on user name space reported by Janos Zoltan Szabo.
3636 * data/yacc.c (yyparse): strlen -> yystrlen.
3637
3638 2005-05-30 Akim Demaille <akim@epita.fr>
3639
3640 * data/lalr1.cc (_): New.
3641 Translate the various messages.
3642
3643 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
3644
3645 Fix infringement on user name space reported by Bruno Haible.
3646 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
3647 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
3648 the user's name space.
3649 (alloca): Include <stdlib.h> to get it, if it's not built in.
3650 (YYMALLOC, YYFREE): Define only if needed.
3651 (malloc, free): Declare, but only if needed, as this infringes on
3652 the user name space.
3653
3654 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
3655
3656 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
3657 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
3658 with %d format.
3659 * lib/ebitset.c (min, max): Undef before defining.
3660 * lib/vbitset.c (min, max): Likewise.
3661 * lib/subpipe.c (create_subpipe): Save local variables in case
3662 vfork clobbers them.
3663
3664 2005-05-24 Bruno Haible <bruno@clisp.org>
3665
3666 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
3667 error message syntax used by gcc-4.0.
3668
3669 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
3670
3671 * README: Mention m4 1.4.3. Remove obsolete advice about
3672 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
3673
3674 * bootstrap: Remove workaround for problem I encountered with
3675 gettext 0.14.1; it seems to be fixed now.
3676
3677 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
3678
3679 * NEWS: Version 2.0a.
3680
3681 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
3682 the previous change.
3683
3684 Various maintainer cleanups.
3685 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
3686 conftest*, for benefit of CVS commands run at the same time as
3687 "configure". Add build-aux, since "bootstrap" now creates it and
3688 its subfiles.
3689 * Makefile.cfg (move_if_change): Remove.
3690 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
3691 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
3692 (po_repo, do-po-update, po-update, wget_files, get-targets):
3693 (config.guess-url_prefix, config.sub-url_prefix):
3694 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
3695 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
3696 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
3697 Remove.
3698 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
3699 this is now the recommended name.
3700 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
3701 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
3702 ylwrap. These files now go into build-aux.
3703 * config/move-if-change: Remove.
3704 * config/prev-version.txt: Bump from 1.75 to 2.0.
3705
3706 * bootstrap: Add stdio-safer, unistd-safer modules.
3707 Remove m4/glibc2.m4 (introduced by latest gnulib, but
3708 we don't need it).
3709 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
3710 fopen-safer.c, stdio-safer.h, unistd-safer.h.
3711 * lib/subpipe.c: Include "unistd-safer.h".
3712 (create_subpipe): Make sure all the newly-created
3713 file descriptors are > 2, so that diagnostics don't
3714 get sent down them (which might cause Bison to hang, in theory).
3715 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
3716 * src/files.c (xfopen): Use fopen_safer, not fopen.
3717
3718 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
3719 yesterday's yacc.c fix.
3720
3721 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
3722
3723 * data/glr.c, data/lalr1.cc: Update copyright date.
3724
3725 Fix a destructor bug reported by Wolfgang Spraul in
3726 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
3727 * data/yacc.c (yyabortlab): Don't call destructor, and
3728 don't set yychar to EMPTY.
3729 (yyoverflowlab): Don't call destructor.
3730 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
3731 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
3732 since we no longer output the message "discarding lookahead token
3733 end of input ()".
3734
3735 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3736
3737 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
3738 fix a small glitch in debugging output.
3739 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
3740 after YY_SYMBOL_PRINT where needed.
3741
3742 (struct yyGLRState): Add some comments.
3743 (struct yySemanticOption): Add some comments.
3744 (union yyGLRStackItem): Add comment.
3745
3746 (yymergeOptionSets): Correct this to properly perform the union,
3747 avoiding infinite reported by Michael Rosien.
3748 Update comment.
3749
3750 * tests/glr-regression.at: Add test for GLR merging error reported
3751 by M. Rosien.
3752
3753 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
3754
3755 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
3756 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
3757 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
3758 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
3759 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
3760 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
3761 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
3762 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
3763 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
3764 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
3765 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
3766 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
3767 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
3768 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
3769 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
3770 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
3771 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
3772 src/derives.h, src/files.c, src/files.h, src/getargs.c,
3773 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
3774 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
3775 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
3776 src/output.h, src/parse-gram.c, src/parse-gram.h,
3777 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
3778 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
3779 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
3780 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
3781 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
3782 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
3783 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
3784 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
3785 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
3786 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
3787 tests/reduce.at, tests/regression.at, tests/sets.at,
3788 tests/synclines.at, tests/testsuite.at, tests/torture.at:
3789 Update FSF postal mail address.
3790
3791 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
3792
3793 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
3794 Problem reported by Ralf Menzel.
3795
3796 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
3797
3798 * tests/actions.at: Test that stack overflow invokes destructors.
3799 From Marcus Holland-Moritz.
3800 * data/yacc.c (yyerrlab): Move the code that destroys the stack
3801 from here....
3802 (yyreturn): to here. That way, destructors are called properly
3803 even if the stack overflows, or the user calls YYACCEPT or
3804 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
3805 (yyoverflowlab): Destroy the lookahead.
3806
3807 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
3808
3809 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
3810
3811 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
3812
3813 * NEWS: Bison-generated C parsers no longer quote literal strings
3814 associated with tokens.
3815 * src/output.c (prepare_symbols): Don't escape strings,
3816 since users don't want to see C escapes.
3817 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
3818 in diagnostics.
3819 * tests/input.at (Torturing the Scanner): Likewise.
3820 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
3821
3822 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
3823
3824 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
3825 the data size is known to be too small and we can't increase it.
3826 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
3827
3828 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
3829
3830 * src/parse-gram.y: Include quotearg.h.
3831 (string_as_id): Quote $1 before using it as a key, since the
3832 lexer no longer quotes it for us.
3833 (string_content): Don't strip quotes, since lexer no longer
3834 quotes it for us.
3835 * src/scan-gram.l: Include quotearg.h.
3836 ("\""): Omit quote.
3837 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
3838 a key, since the rest of the lexer doesn't quote it.
3839 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
3840 * tests/regression.at (Token definitions): Check for backslashes
3841 in token strings.
3842
3843 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
3844 (YYSIZE_T): Define to unsigned long int when using an older compiler.
3845 (yyparse): Revamp code to generate long syntax error message, to
3846 make it easier to translate, and to avoid problems with arithmetic
3847 overflow. Change "virtual memory" to "memory" in diagnostic, since
3848 we don't know whether the memory is virtual.
3849
3850 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
3851
3852 * NEWS: Bison-generated C parsers now use the _ macro to
3853 translate strings.
3854 * data/yacc.c (_) [!defined _]: New macro.
3855 All English strings wrapped inside this macro.
3856 * doc/bison.texinfo (Bison Parser): Document _.
3857 * po/POTFILES.in: Include src/parse-gram.c, since it now
3858 includes translateable strings that parse-gram.y doesn't.
3859
3860 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
3861
3862 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
3863 reverting the 2004-10-11 change to this function.
3864 (symbol_check_alias_consistency): Don't call symbol_type_set
3865 if the type name is already correct.
3866 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
3867
3868 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
3869
3870 * tests/regression.at (Token definitions): Don't use a token named
3871 c, as that generates a "#define c ..." that runs afoul of buggy
3872 stdlib.h that uses the identifier c as a member of struct
3873 drand48_data. Problem reported by Horst Wente.
3874
3875 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
3876
3877 * bootstrap: Change translation URL from
3878 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
3879 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
3880 redirection glitches. Problem reported by twlevo@xs4all.nl.
3881
3882 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
3883
3884 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
3885 after operands; POSIX says this isn't portable for the c99 command.
3886
3887 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
3888
3889 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
3890 immediately if a data overrun has occurred; this may help us track
3891 down what may be a spurious failure on MacOS.
3892
3893 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
3894
3895 Respond to problems reported by twlevo@xs4all.nl.
3896
3897 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
3898
3899 * src/vcg.h: Comment fix.
3900 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
3901 (G_CMAX): Change to -1 instead of INT_MAX.
3902
3903 * data/yacc.c (yyparse): Omit spaces before #line.
3904
3905 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
3906
3907 * src/tables.c (state_number_to_vector_number): Put it inside an
3908 "#if 0", since it's not currently used. Problem reported by
3909 Roland McGrath.
3910
3911 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
3912
3913 * src/output.c (escaped_output): Renamed from
3914 escaped_file_name_output, since we now use it for symbol tags as
3915 well. All uses changed.
3916 (symbol_destructors_output, symbol_printers_output):
3917 Escape symbol tags too.
3918 Problem reported by Matyas Forstner in
3919 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
3920
3921 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
3922 not needed.
3923 * src/output.c (user_actions_output, token_definitions_output,
3924 symbol_destructors_output, symbol_printers_output): Likewise.
3925 * src/reader.c (prologue_augment): Likewise.
3926 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
3927
3928 * src/vcg.c (output_edge): Don't quote linestyle arg.
3929 Problem reported by twlevo@xs4all.nl.
3930
3931 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
3932
3933 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
3934 example, reported by Derek M Jones. Also, make the example even
3935 more outrageous, to better illustrate how bad the problem is.
3936
3937 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
3938
3939 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
3940 putsym. Typo reported by Sebastian Piping.
3941
3942 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
3943
3944 * doc/bison.texinfo (Language and Grammar): some -> same
3945 (Epilogue): int he -> in the
3946 Typos reported by Sebastian Piping via Justin Pence.
3947
3948 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
3949
3950 * tests/glr-regression.at (Improper handling of embedded actions
3951 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
3952 embedded actions and $-N in GLR parsers", work around an Autoconf bug
3953 with dollar signs in test names.
3954 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
3955 for a similar reason.
3956
3957 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
3958
3959 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
3960 wants to redefine G_VIEW.
3961
3962 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
3963
3964 * src/vcg.c (get_view_str): Remove case for normal_view.
3965 Problem reported by twlevo@xs4all.nl.
3966
3967 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
3968
3969 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
3970 Problem reported by twlevo@xs4all.nl.
3971
3972 * doc/bison.texinfo: Change @dircategory from "GNU programming
3973 tools" to "Software development". Requested by Richard Stallman
3974 via Karl Berry.
3975
3976 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
3977
3978 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
3979 Problem reported by twlevo@xs4all.nl.
3980
3981 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
3982
3983 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
3984 keyword; it's not needed with modern compilers, and it doesn't
3985 affect correctness with older compilers. Suggested by
3986 twlevo@xs4all.nl.
3987
3988 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
3989
3990 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
3991 gcc -Wswitch-default.
3992 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
3993 * data/yacc.c (yyparse): Likewise.
3994
3995 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
3996
3997 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
3998 already. Let config.h define any nonstandard values.
3999
4000 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
4001
4002 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
4003 for the benefit of slower hosts. Problem reported by
4004 Nelson H. F. Beebe.
4005
4006 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
4007
4008 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
4009 being defined and not used.
4010 * data/lalr1.cc (yyparse): Likewise.
4011 Use "if (false)" rather than "if (0)".
4012
4013 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
4014
4015 * TODO: Mention that we should allow NUL bytes in tokens.
4016
4017 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
4018
4019 * src/scan-skel.l (<<EOF>>): Don't close standard output.
4020 Problem reported by Hans Aberg.
4021
4022 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
4023
4024 * src/getargs.c (version): Happy new year; update overall
4025 program copyright date from 2004 to 2005.
4026
4027 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
4028 Problem reported by Hans Aberg.
4029 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
4030 (Output file names.): Add a test for the case when standard output
4031 is closed.
4032
4033 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
4034
4035 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
4036 to fix an oversight in the Bison 2.0 manual.
4037
4038 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
4039
4040 * NEWS: Version 2.0. Reformat the existing news items since
4041 1.875, so that related items are grouped together.
4042 * configure.ac (AC_INIT): Bump version to 2.0.
4043 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
4044
4045 * tests/torture.at (Exploding the Stack Size with Alloca): Set
4046 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
4047 otherwise, we're not testing alloca. Unfortunately there's no
4048 simple way to consult HAVE_ALLOCA here.
4049
4050 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
4051 for yymsg, too.
4052
4053 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
4054 hand. This avoids a warning about comparing int to size_t when
4055 GCC warnings are enabled.
4056
4057 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
4058
4059 * NEWS: Bison-generated parsers no longer default to using the
4060 alloca function (when available) to extend the parser stack, due
4061 to widespread problems in unchecked stack-overflow detection.
4062 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
4063 responsibility to set it to a positive value. This lets the user
4064 specify a value that is not a preprocessor constant.
4065 * data/yacc.c (YYMAXDEPTH): Likewise.
4066 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
4067 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
4068 to be a compile-time constant. However, explain the constraints on it.
4069 Also, explain the constraints on YYINITDEPTH.
4070 (Table of Symbols): Explain that alloca is no longer the default.
4071 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
4072 to 1.
4073
4074 * doc/bison.texinfo (Location Default Action): Mention that n must
4075 be zero when k is zero. Suggested by Frank Heckenbach.
4076
4077 2004-12-22 Akim Demaille <akim@epita.fr>
4078
4079 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
4080 (parser::state_type, parser::semantic_type, parser::location_type):
4081 Private, not public.
4082 (parser::parse): Return ints, not bool.
4083 Returning a bool introduces a problem: 0 corresponds to false, and
4084 it seems weird to return false on success. Returning true changes
4085 the conventions for yyparse.
4086 Alternatively we could return void and send an exception.
4087 There is no clear consensus (yet?).
4088 (state_stack, semantic_stack, location_stack): Rename as...
4089 (state_stack_type, semantic_stack_type, location_stack_type): these.
4090 Private, not public.
4091 * tests/c++.at: New.
4092 * tests/testsuite.at, tests/Makefile.am: Adjust.
4093
4094 2004-12-21 Akim Demaille <akim@epita.fr>
4095
4096 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
4097
4098 2004-12-21 Akim Demaille <akim@epita.fr>
4099
4100 Don't impose std::string for filenames.
4101
4102 * data/lalr1.cc (b4_filename_type): New.
4103 (position::filename): Use it.
4104 (parser.hh): Move the inclusion of stack.hh and location.hh below
4105 the user code, so that needed headers for the filename type can be
4106 included first.
4107 Forward declare them before the user code.
4108 * tests/Makefile.am (check-local, installcheck-local): Pass
4109 TESTSUITEFLAGS to the TESTSUITE.
4110
4111 2004-12-20 Akim Demaille <akim@epita.fr>
4112
4113 Use more STL like names: my_class instead of MyClass.
4114
4115 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
4116 (SemanticStack, SemanticType, StateStack, StateType)
4117 (TokenNumberType, Stack, Slice, Traits, Parser::location)
4118 (Parser::value): Rename as...
4119 (location_stack, location_type, rhs_number_type, semantic_stack)
4120 (semantic_type, state_stack, state_type, token_number_type, stack)
4121 (slice, traits, parser::yylloc, parser::yylval): these.
4122
4123 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
4124
4125 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
4126
4127 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
4128 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
4129
4130 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
4131
4132 Remove uses of 'short int' and 'unsigned short int'. This raises
4133 some arbitrary limits. It uses more memory but nowadays that's
4134 not much of an issue.
4135
4136 This change does not affect the generated parsers; that's a different
4137 task, as some users will want to conserve memory there.
4138
4139 Ideally we should use size_t to represent all object counts, and
4140 something like ptrdiff_t to represent signed differences of object
4141 counts; but that will require more code-cleanup than I have the
4142 time to do right now.
4143
4144 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
4145 Use size_t, not int or short int, to count objects.
4146 * src/closure.c (nritemset, closure): Likewise.
4147 * src/closure.h (nritemset, closure): Likewise.
4148 * src/nullable.c (nullable_compute): Likewise.
4149 * src/print.c (print_core): Likewise.
4150 * src/print_graph.c (print_core): Likewise.
4151 * src/state.c (state_compare, state_hash): Likewise.
4152 * src/state.h (struct state): Likewise.
4153 * src/tables.c (default_goto, goto_actions): Likewise.
4154
4155 * src/gram.h (rule_number, rule): Use int, not short int.
4156 * src/output.c (prepare_rules): Likewise.
4157 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
4158 errs, reductions): Likewise.
4159 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
4160 Likewise.
4161 * src/tables.c (vector_number, tally, action_number,
4162 ACTION_NUMBER_MINIMUM): Likewise.
4163 * src/output.c (muscle_insert_short_int_table): Remove.
4164
4165 2004-12-17 Akim Demaille <akim@epita.fr>
4166
4167 * data/lalr1.cc: Extensive Doxygenation.
4168 (error_): Rename as...
4169 (error): this, since it is visible to the user.
4170 Adjust callers.
4171 (Parser::message): Now an automatic variable from...
4172 (Parser::yyreport_syntax_error_): here.
4173 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
4174 Parser::error.
4175 * tests/input.at: Escape $.
4176
4177 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
4178
4179 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
4180 Parenthesize rhs to avoid obscure problems with mistakes like
4181 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
4182 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4183 b4_rhs_location): Likewise.
4184 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4185 b4_rhs_location): Likewise.
4186
4187 2004-12-16 Akim Demaille <akim@epita.fr>
4188
4189 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
4190 yacc.c: be sure to stay within yycheck_.
4191 * tests/actions.at: Re-enable C++ tests.
4192
4193 2004-12-16 Akim Demaille <akim@epita.fr>
4194
4195 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
4196 real.
4197
4198 2004-12-16 Akim Demaille <akim@epita.fr>
4199
4200 Use #define to handle the %name-prefix.
4201
4202 * data/glr.c, data/yacc.c: Comment changes.
4203 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
4204 so that one can refer to yylex in the parser file, and have it
4205 renamed, as is the case with other skeletons.
4206
4207 2004-12-16 Akim Demaille <akim@epita.fr>
4208
4209 Move lalr1.cc internals into yy*.
4210
4211 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
4212 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
4213 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
4214 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
4215 (empty_, final_, terror_, errcode_, ntokens_)
4216 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
4217 (looka_, ilooka_, error_range_, nerrs_):
4218 Rename as...
4219 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
4220 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
4221 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
4222 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
4223 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
4224 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
4225 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
4226 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
4227 these.
4228
4229 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
4230
4231 Fix some problems reported by twlevo at xs4all.
4232 * src/symtab.c (symbol_new): Report an error if the input grammar
4233 contains too many symbols. This is better than calling abort() later.
4234 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
4235 (struct node, struct graph):
4236 Rename member expand to stretch. All uses changed.
4237 (struct graph): Remove member layoutalgorithm. All uses removed.
4238 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
4239 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
4240 All uses changed.
4241 (N_STRETCH): Rename from N_EXPAND. All uses changed.
4242
4243 2004-12-15 Akim Demaille <akim@epita.fr>
4244
4245 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
4246 Add more Doxygen comments.
4247 (symprint_, stack_print_, reduce_print_, destruct_, pop)
4248 (report_syntax_error_, translate_): Rename as...
4249 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
4250 (yypop_, yyreport_syntax_error_, yytranslate_): this.
4251
4252 2004-12-15 Akim Demaille <akim@epita.fr>
4253
4254 * data/lalr1.cc (lex_): Rename as...
4255 (yylex_): this.
4256 Move the trace here.
4257 Take the %name-prefix into account.
4258 Reported by Alexandre Duret-Lutz.
4259
4260 2004-12-15 Akim Demaille <akim@epita.fr>
4261
4262 Simplify the C++ parser constructor.
4263
4264 * data/lalr1.cc (debug_): Rename as...
4265 (yydebug_): so that the parser's internals are always in the yy*
4266 pseudo namespace.
4267 Adjust uses.
4268 (b4_parse_param_decl): Remove the leading comma as it is now only
4269 called as unique argument list.
4270 (Parser::Parser): Remove the constructor accepting a location and
4271 an initial debugging level.
4272 Remove from the other ctor the argument for the debugging level.
4273 (debug_level_type, debug_level, set_debug_level): New.
4274
4275 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
4276 constructor calls.
4277
4278 2004-12-15 Akim Demaille <akim@epita.fr>
4279
4280 Remove b4_root related material: failure experiment
4281 (which goal was to allow to derive from a class).
4282
4283 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
4284 definitions and uses.
4285
4286 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
4287
4288 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
4289 not 2, since it's not portable to subtract 1 from the start of an
4290 array. The new item 0 is never set or used. All uses changed.
4291
4292 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
4293 the default definition of YYLLOC_DEFAULT. Problem reported
4294 by Frank Heckenbach.
4295
4296 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
4297
4298 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
4299 the normal case and one for the error case. Just use the
4300 first one uniformly. Problem reported by Frank Heckenbach.
4301 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
4302 use exactly the same macro in both places.
4303 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
4304 so that the normal-case YYRHSLOC works for the error case too.
4305 All uses changed.
4306 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
4307 (YYLLOC_DEFAULT): Use the same macro as glr.c.
4308 * doc/bison.texinfo (Location Default Action): Don't claim that
4309 we have an array of locations. Use the same macro for both glr
4310 and lalr parsers. Mention YYRHSLOC. Mention what happens when
4311 the index is 0.
4312
4313 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4314
4315 * HACKING: Update email addresses to send announcements to.
4316
4317 * configure.ac (AC_INIT): Bump version to 1.875f.
4318
4319 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4320
4321 * NEWS: Version 1.875e.
4322 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
4323
4324 * src/scan-skel.l: Include "complain.h", for "fatal".
4325
4326 * src/relation.h (relation_print, relation_digraph):
4327 Relation sizes are of type relation_node, not size_t (this is
4328 merely a doc fix, since the two types are equivalent).
4329 (relation_transpose): Relation sizes are of type relation_node,
4330 not int.
4331 * src/relation.c: Likewise.
4332 (top, infinity): Now of type relation_node, not int.
4333 (traverse, relation_transpose): Use relation_node, not int.
4334
4335 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
4336 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
4337 (yyparse): Remove unused local introduced in 2004-10-25 patch.
4338
4339 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
4340 specifying whether the test should be skipped. Use it tp
4341 specify that the [%defines %skeleton "lalr1.cc"] tests currently
4342 fail on some hosts, and should be skipped.
4343
4344 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
4345
4346 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
4347 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
4348 unless otherwise specified below.
4349
4350 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
4351 to allocate kernel_base, kernel_items, kernel_size, since
4352 they needn't be initialized to 0.
4353 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
4354 * src/closure.c (new_closure): Likewise, for itemset.
4355 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
4356 * src/lalr.c (set_goto_map): Likewise, for temp_map.
4357 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
4358 (build_relations): Likewise for edge, states1, includes.
4359 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
4360 * src/reader.c (packgram): Likewise, for ritem, rules.
4361 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
4362 * src/relation.c (relation_digraph): Likewise for VERTICES.
4363 (relation_transpose): Likewise for new_R, end_R.
4364 * src/symtab.c (symbols_token_translations_init): Likewise for
4365 token_translations.
4366 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
4367 (token_actions): Likewise for yydefact, actrow, conflrow,
4368 conflict_list.
4369 (save_column): Likewise for froms[symno], tos[symno].
4370 (goto_actions): Likewise for state_count.
4371 (pack_table): Likewise for base, pos, check.
4372 (tables_generate): Likewise for width.
4373
4374 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
4375 for initial core. Just have a separate core, so we needn't worry
4376 about whether kernel_size and kernel_base are initialized.
4377
4378 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
4379 kernel_size, kernel_items): Remove unnecessary initialization.
4380 * src/conflicts.c (conflicts): Likewise.
4381 * src/derives.c (derives): Likewise.
4382 * src/muscle_tablc (muscle_insert): Likewise.
4383 * src/relation.c (relation_digraph): Likewise.
4384 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
4385 conflrow, conflict_table, conflict_list, table, check):
4386 Likewise.
4387
4388 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
4389 This is because all callers pass unsigned int.
4390 * src/closure.h (new_closure): Likewise.
4391
4392 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
4393 (build_relations): Initialize includes[i] in all cases.
4394 * src/reader.c (packgram): Always initialize rules[ruleno].prec
4395 and rules[ruleno].precsym. Initialize members in order.
4396 * src/relation.c (relation_transpose): Always initialize new_R[i]
4397 and end_R[i].
4398 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
4399
4400 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
4401 conflict_list[0] was always 0, but now it isn't initialized.
4402
4403 * src/table.c (table_grow): When conflict_table grew, the grown
4404 area wasn't cleared. Fix this.
4405
4406 * lib/.cvsignore: Add strdup.c, strdup.h.
4407 * m4/.cvsignore: Add strdup.m4.
4408
4409 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
4410
4411 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
4412 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
4413 GOTO_NUMBER_MAXIMUM, since we occasionally compute
4414 ngotos + 1 without checking for overflow.
4415 (build_relations): Use END_NODE, not -1, to denote end of edges.
4416 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
4417 build_relations): Use goto_number, not int, for goto numbers.
4418 * src/tables.c (save_column, default_goto): Likewise.
4419
4420 2004-11-23 Akim Demaille <akim@epita.fr>
4421
4422 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
4423 of #defining from yystype.
4424 Don't typedef yystype, C++ does not need it.
4425 This lets it possible to forward declare it as union.
4426
4427 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
4428
4429 * bootstrap (gnulib_modules): Add extensions.
4430 Problem reported by Jim Meyering.
4431
4432 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
4433
4434 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
4435 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
4436 src/system.h, src/tables.c: XFREE -> free, to accommodate
4437 recent change to gnulib xalloc.h.
4438 Problem reported by Jim Meyering.
4439
4440 2004-11-17 Akim Demaille <akim@epita.fr>
4441
4442 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
4443
4444 2004-11-17 Akim Demaille <akim@epita.fr>,
4445 Alexandre Duret-Lutz <adl@gnu.org>
4446
4447 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
4448 changes.
4449 (YYCDEBUG): Adjust.
4450 Use it instead of cdebug_.
4451 (Parser::debug_stream, Parser::set_debug_stream): New.
4452 (Parser::symprint_): Define cdebug_ for temporary backward
4453 compatibility.
4454 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
4455 debug_stream ().
4456
4457 2004-11-17 Akim Demaille <akim@epita.fr>
4458
4459 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
4460 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
4461 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
4462 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
4463
4464 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
4465
4466 * data/glr.c (yyloc_default): Remove; not used.
4467 Problem reported by Frank Heckenbach.
4468
4469 2004-10-25 Akim Demaille <akim@epita.fr>
4470
4471 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
4472 Introduce another definition to address simple location arrays.
4473 (yyGLRStack): New member: yyerror_range.
4474 (yyrecoverSyntaxError, yyparse): Update it.
4475 (yyrecoverSyntaxError): Use it when shifting the error token to
4476 have an accurate range, equivalent to the one computed by both
4477 yacc.c and lalr1.cc.
4478 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
4479 that column numbers start at column 0, as per GNU Coding
4480 Standards, the others tests, and the doc.
4481 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
4482 Adjust to the above change (first column is 0).
4483 And adjust the location of the "<error>", now covering the whole
4484 line.
4485
4486 2004-10-22 Akim Demaille <akim@epita.fr>
4487 and Paul Eggert <eggert@cs.ucla.edu>
4488
4489 Remove some arbitrary limits on goto numbers and relations.
4490 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
4491 initial values, since they're never used.
4492 (set_goto_map): ngotos is now unsigned, so test for overflow
4493 by seeing whether it wraps around to zero.
4494 * src/lalr.h (goto_number): Now size_t, not short int.
4495 (GOTO_NUMBER_MAXIMUM): Remove.
4496 * src/relation.c (relation_print, traverse, relation_transpose):
4497 Check for END_NODE rather than looking at sign.
4498 * src/relation.h (END_NODE): New macro.
4499 (relation_node): Now size_t, not short int.
4500
4501 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
4502
4503 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
4504 keyword, not an identifier. Problem reported by Baron Schwartz in
4505 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
4506
4507 2004-10-11 Akim Demaille <akim@epita.fr>
4508
4509 * src/symtab.c (symbol_check_alias_consistency): Also check
4510 type names, destructors, and printers.
4511 Reported by Alexandre Duret-Lutz.
4512 Recode the handling of associativity and precedence in terms
4513 of symbol_precedence_set.
4514 Accept no redeclaration at all, not even equal to the previous
4515 value.
4516 (redeclaration): New.
4517 Use it to factor redeclaration complaints.
4518 (symbol_make_alias): Don't set the type of the alias, let
4519 symbol_check_alias_consistency do it as for other features.
4520 * src/symtab.h (symbol): Add new member prec_location, and
4521 type_location.
4522 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
4523 * tests/input.at (Incompatible Aliases): New.
4524
4525 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
4526
4527 .cvsignore fixes to accommodate gnulib changes,
4528 and the practice of naming build directories "_build".
4529 * .cvsignore: Add "_*". Sort.
4530 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
4531 * m4/.cvsignore: Add "*_gl.m4".
4532
4533 2004-10-06 Akim Demaille <akim@epita.fr>
4534
4535 * src/parse-gram.y (add_param): Fix the truncation of trailing
4536 spaces.
4537
4538 2004-10-05 Akim Demaille <akim@epita.fr>
4539
4540 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
4541 whether the reducion was empty or not. This leaves room to
4542 improve the use of YYLLOC_DEFAULT in such a case.
4543 lalr1.cc is still experimental, so changing this is acceptable.
4544 And finally, there are probably not many users who changed the
4545 handling of locations in GLR, so changing is admissible too.
4546
4547 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
4548 empty reduction, set @$ to an empty location ending the previously
4549 stacked symbol.
4550 Adjust uses to make sure the code is triggered on empty
4551 reductions.
4552 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
4553 expected output: empty reductions have empty locations.
4554
4555 2004-09-29 Akim Demaille <akim@epita.fr>
4556
4557 * data/lalr1.cc: Move towards a more standard C++ coding style
4558 for templates: Class < T > -> Class<T>.
4559
4560 2004-09-29 Akim Demaille <akim@epita.fr>
4561
4562 * data/lalr1.cc: Reinstall the former ctor, for sake of
4563 compatibility, but warn it will be removed.
4564 Move towards a more standard C++ coding style (i.e., type *var ->
4565 type* var).
4566
4567 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
4568
4569 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
4570 since it's less likely to work if NULs are involved in the future.
4571
4572 2004-09-27 Akim Demaille <akim@epita.fr>
4573
4574 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
4575
4576 2004-09-27 Akim Demaille <akim@epita.fr>
4577
4578 * data/lalr1.cc (b4_parse_param_decl_1): New.
4579 (b4_parse_param_decl): Use it to have different names between attribute
4580 and argument names.
4581 (b4_cc_constructor_call): Likewise.
4582
4583 2004-09-24 Akim Demaille <akim@epita.fr>
4584
4585 * src/parse-gram.y (add_param): Strip the leading and trailing
4586 blanks from a formal argument declaration.
4587 (YY_LOCATION_PRINT): New.
4588
4589 2004-09-24 Akim Demaille <akim@epita.fr>
4590
4591 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
4592 after the location.
4593
4594 2004-09-24 Akim Demaille <akim@epita.fr>
4595
4596 * doc/bison.texinfo (Table of Symbols): Sort.
4597
4598 2004-09-21 Akim Demaille <akim@epita.fr>
4599
4600 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
4601 the useless parentheses.
4602 Suggested by Paul Eggert.
4603
4604 2004-09-20 Akim Demaille <akim@epita.fr>
4605
4606 Let the initial-action act on the look-ahead, and use it for the
4607 "initial push" (corresponding to an hypothetical beginning-of-file).
4608 And let lalr1.cc honor %initial-action.
4609
4610 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
4611 example.
4612 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
4613 (Parser::Parser): Remove the ctor that used to initialize it.
4614 (Parser::parse): Like in the other skeletons, issue the "starting
4615 parse" message before any action.
4616 Honor %initial-action.
4617 Initialize the stacks with the lookahead.
4618 * data/yacc.c: Let $$ and @$ in %initial-action designate the
4619 look-ahead.
4620 Push them in the stacks.
4621 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
4622
4623 2004-09-20 Akim Demaille <akim@epita.fr>
4624
4625 * doc/bison.texinfo (Initial Action Decl): New.
4626
4627 2004-09-20 Akim Demaille <akim@epita.fr>
4628
4629 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
4630 clearer criterion to define it.
4631 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
4632 When reducing on an empty RHS, use the latest stacked location as
4633 location.
4634 yylloc is not always available.
4635 * data/glr.c: Likewise.
4636 Also, honor initial-actions.
4637
4638 2004-09-20 Akim Demaille <akim@epita.fr>
4639
4640 * data/yacc.c (YY_LOCATION_PRINT): New.
4641 Define when we know YYLTYPE's structure, i.e., when the default
4642 YYLLOC_DEFAULT is used.
4643 * data/c.m4 (b4_yysymprint_generate): Use it.
4644 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
4645 value of the result.
4646 (error_start_): Replace with...
4647 (error_range_): this location array.
4648 This allows to replace code relying on the implementation of
4649 locations by portable code.
4650 * data/yacc.c (yylerrsp): Replace with...
4651 (yyerror_range): this.
4652 Every time a token is popped, update yyerror_range[0], to have an
4653 accurate location for the error token.
4654 * data/glr.c (YY_LOCATION_PRINT): New.
4655 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
4656 deference a pointer.
4657 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
4658 report the location in %printers.
4659
4660 * src/scan-skel.l: Instead of abort, report error messages to ease
4661 understanding skeleton scanning failures.
4662
4663 2004-09-16 Akim Demaille <akim@epita.fr>
4664
4665 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
4666 (iterator, const_iterator): these, to be more in the C++ spirit.
4667 Also, return reverse iterators so that when displaying the stack
4668 we display its bottom first.
4669 (Parser::stack_print_, Parser::reduce_print_): Match the messages
4670 from yacc.c.
4671 We should probably use vector here though.
4672
4673 2004-09-16 Akim Demaille <akim@epita.fr>
4674
4675 Have more complete shift traces.
4676
4677 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
4678 to report Shifts instead of ad hoc YYDPRINTF invocations,
4679 including for the error token.
4680 * data/lalr1.cc (symprint_): Output the location.
4681 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
4682 output the location within the %printer.
4683 Activate GLR tests, at least to make sure they compile properly.
4684 They still don't pass though.
4685 * tests/calc.at: Adjust expect verbose output, since now "Entering
4686 state..." is on a different line than the "Shifting" message.
4687
4688 2004-09-08 Akim Demaille <akim@epita.fr>
4689
4690 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
4691 Bison directive from the Bison file to the invocation of this
4692 macro, so that these directives are passed to
4693 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
4694 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
4695 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
4696 the extra Bison directives instead of the whole series.
4697 Change the grammar so that there are recoverable errors, and
4698 unrecoverable errors. Now we can have the parser give up before
4699 consuming the whole input. As a result we now can observe that
4700 the lookahead is freed when needed.
4701 Change the parser source to parse argv[1] instead of a hard coded
4702 string.
4703 Simplify yylex, and give a value and location to EOF.
4704 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
4705 passed directives already coded in the file.
4706 Add some tests to check the location of "error".
4707 For some tests, the C++ parser is correct, and not yacc.c.
4708 For other tests, they provide different, but unsatisfying, values,
4709 so keep the C++ value so that at least one parser is "correct"
4710 according to the test suite.
4711 (Actions after errors): Remove, this is subsumed by the
4712 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
4713
4714 2004-09-06 Akim Demaille <akim@epita.fr>
4715
4716 * data/lalr1.cc: Adjust the indentation of the labels.
4717 (Parser::pop): New.
4718 Use it.
4719
4720 2004-09-06 Akim Demaille <akim@epita.fr>
4721
4722 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
4723 argument, an informative message.
4724 Call YY_SYMBOL_PRINT.
4725 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
4726 * data/lalr1.cc (destruct_): Likewise.
4727 In addition, no longer depend on b4_yysymprint_generate and
4728 b4_yydestruct_generate to generate these functions, do it "by
4729 hand".
4730
4731 2004-09-03 Akim Demaille <akim@epita.fr>
4732
4733 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
4734 invoked, yydestruct the lookahead.
4735 * tests/calc.at (Calculator $1): Update the expected lengths of
4736 traces: there is an added line for the discarded lookahead.
4737 * doc/bison.texinfo (Destructor Decl): Some rewording.
4738 Define "discarded" symbols.
4739
4740 2004-09-02 Akim Demaille <akim@epita.fr>
4741
4742 * data/lalr1.cc (translate_, destruct_): No reason to be static.
4743
4744 2004-09-02 Akim Demaille <akim@epita.fr>
4745
4746 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
4747 (YYDSYMPRINTF): Rename as...
4748 (YY_SYMBOL_PRINT): this.
4749 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
4750 two.
4751 Use it instead of direct symprint_ calls.
4752 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
4753 one.
4754
4755 2004-09-02 Akim Demaille <akim@epita.fr>
4756
4757 * data/lalr1.cc (b4_yysymprint_generate): New.
4758 (symprint_): New member function, defined when YYDEBUG.
4759 Use it consistently instead of token/nterm debugging output by
4760 hand.
4761 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
4762 %printer calls to use cdebug_ when using lalr1.cc.
4763
4764 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
4765
4766 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
4767 with #ifdef YYDEBUG.
4768
4769 2004-08-26 Akim Demaille <akim@epita.fr>
4770
4771 * doc/bison.texinfo (Implementing Loops): Rename as...
4772 (Implementing Gotos/Loops): this.
4773
4774 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
4775
4776 Adjust to latest gnulib.
4777 * bootstrap (gnulib_modules): Add xalloc-die.
4778 Set LC_ALL=C so that file names sort consistently.
4779 Prefer the gnulib copies of gettext.m4, glibc21.m4,
4780 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
4781 uintmax_t.m4, ulonglong.m4.
4782 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
4783 po.m4 since we are now using _gl.m4 instead.
4784
4785 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
4786
4787 * src/scan-action.l: Remove. Scanning of semantic actions is
4788 handled in scan-gram.l.
4789
4790 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
4791
4792 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
4793
4794 * src/location.h (struct): The file member is a uniqstr.
4795 (equal_boundaries): Use UNIQSTR_EQ for comparison.
4796
4797 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
4798
4799 Fix bug with non-%union parsers that have printers or destructors,
4800 which led to a Bison core dump. Reported by Peter Fales in
4801 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
4802
4803 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
4804 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
4805 not to our own type.
4806 * src/output.c (symbol_destructors_output, symbol_printers_output):
4807 Don't assume %union.
4808 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
4809 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
4810 UNION-FLAG. All callers changed.
4811 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
4812 Use type char, not unsigned int, when declaring an array of char;
4813 this lets us remove a cast.
4814 (Printers and Destructors): Add non-%union test cases.
4815
4816 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4817
4818 * doc/bison.texinfo: Minor editorial changes, mostly to the new
4819 GLR writeups. E.g., avoid frenchspacing and the future tense,
4820 change "lookahead" to "look-ahead", and change "wrt" to "with
4821 respect to".
4822
4823 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4824
4825 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
4826 New sections, split off from the GLR Parsers section. Put the new
4827 Simple GLR Parser near the start of the GLR section, for clarity.
4828 Rewrite connective text.
4829
4830 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
4831
4832 * doc/bison.texinfo (Simple GLR Parsers): New section.
4833
4834 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4835
4836 * NEWS, TODO, doc/bison.texinfo:
4837 Use "look-ahead" instead of "lookahead", to be consistent.
4838 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
4839 while we're fixing "look-ahead".
4840 * src/conflicts.c (shift_set): Renamed from shiftset.
4841 (look_ahead_set): Renamed from lookaheadset.
4842 * src/print.c: Likewise.
4843 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
4844 name for "lookahead".
4845 (report_types, usage): Likewise.
4846 * src/getargs.h (report_look_ahead_tokens): Renamed from
4847 report_lookaheads.
4848 * src/lalr.c (compute_look_ahead_tokens): Renamed from
4849 compute_lookaheads.
4850 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
4851 (look_ahead_tokens_print): Renamed from lookaheads_print.
4852 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
4853 state_rule_lookaheads_print.
4854 * src/state.h: Likewise.
4855 (reductions.look_ahead_tokens): Renamed from lookaheads.
4856 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
4857 AT_DATA_LOOKAHEADS_GRAMMAR.
4858
4859 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
4860
4861 * README: Update location of patched M4 distribution.
4862
4863 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
4864
4865 Don't assume the C++ compiler takes the same arguments as the C compiler
4866 (trivial change).
4867 * configure.ac (O0CXXFLAGS): New var.
4868 * tests/atlocal.in (CXXFLAGS): Use it.
4869
4870 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
4871
4872 Fix some "make check" problems with C++ reported by
4873 Albert Chin-A-Young for Tru64 C++ in this thread:
4874 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
4875
4876 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
4877 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4878 Output to a .cc file for C++, not to a .c file.
4879 * tests/calc.at (AT_CHECK_CALC): Likewise.
4880 * tests/regression.at (AT_CHECK_DANCER): Likewise.
4881 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
4882
4883 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
4884
4885 * tests/calc.at, tests/actions.at: Workaround for SGI
4886 C++ compiler. (trivial change)
4887
4888 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
4889
4890 Spent a few hours checking out which prerequisite versions the
4891 current sources actually require. I went all the way back to
4892 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
4893 a seemingly endless set of combinations of versions more recent
4894 than that. The bottom line is that the current sources require
4895 fairly recent versions of the build tools, and it'll be some work
4896 to change this.
4897 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
4898 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
4899 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
4900 Add comments explaining why those particular versions are
4901 currently needed.
4902
4903 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
4904 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
4905 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
4906
4907 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
4908 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
4909
4910 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
4911
4912 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
4913 0.11.5. Suggested by Bruno Haible.
4914 * bootstrap: Remove gettext version checking.
4915
4916 * doc/bison.texinfo (Decl Summary): Also mention that %union
4917 can depend on prerequisite types. Problem reported by Tim
4918 Van Holder.
4919
4920 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
4921
4922 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
4923 * README-alpha: Don't tell people not to package this.
4924
4925 * bootstrap: Don't assume $(...) works; use `...` instead.
4926 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
4927 gettext better.
4928
4929 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
4930 put into the -d output file, and mention what to do if YYSTYPE is
4931 defined as a macro.
4932
4933 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
4934
4935 Undo change made earlier today: it caused autopoint to not bring
4936 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
4937 autopoint's.
4938
4939 * bootstrap: Check that gettext version matches what's in
4940 configure.ac. Warn users to ignore robots.txt ERROR 404.
4941 * bootstrap: Undo today's earlier change (logged below).
4942 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
4943
4944 The gettext version checking is causing more trouble than it's
4945 curing; remove it. Problem reported by Paul Hilfinger.
4946
4947 * bootstrap: Issue a warning that one can expect a message
4948 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
4949 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
4950
4951 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
4952
4953 Ensure that the C++ compiler used for testing actually works on a
4954 simple test program; if not, skip the C++-related tests. Problem
4955 reported by Vin Shelton in:
4956 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
4957
4958 * m4/cxx.m4: New file.
4959 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
4960 * tests/atlocal.in (BISON_CXX_WORKS): Add.
4961 * tests/local.at (AT_COMPILE_CXX): Use it.
4962
4963 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
4964
4965 * data/glr.c (yylloc): Output this macro even if locations are not
4966 being generated, as the GLR parser needs it even in that case.
4967 Problem reported by Troy A. Johnson
4968 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
4969
4970 * configure.ac (AC_INIT): Update to 1.875e.
4971
4972 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
4973
4974 * NEWS: Version 1.875d.
4975 * configure.ac (AC_INIT): Likewise.
4976 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
4977
4978 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
4979 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
4980 lalr1.cc runs afoul of the first, and the last two are no longer
4981 supported by GCC 3.4.0.
4982 * README: Mention GNU m4 1.4 or later; mention m4 patches.
4983 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
4984
4985 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
4986
4987 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
4988 unsigned int, for compatibility with latest gnulib hash module.
4989 * src/state.c (state_hash, state_hasher): Likewise.
4990 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
4991 * src/uniqstr.c (hash_uniqstr): Likewise.
4992
4993 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
4994
4995 * NEWS: Unescaped newlines are no longer allowed in char & strings.
4996
4997 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
4998 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
4999 character and string literals.
5000 (unexpected_end): New function.
5001 (unexpected_eof): Use it.
5002 (unexpected_newline): New function.
5003 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
5004 actions.
5005
5006 * NEWS: Document %expect-rr.
5007
5008 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
5009 Fix typo by replacing $1 with $option.
5010 Remove more 'intl'-related files.
5011 Don't DEFUN AM_INTL_SUBDIR twice.
5012
5013 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
5014 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
5015 strtoul.c.
5016 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
5017 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
5018 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
5019 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
5020 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
5021 * src/.cvsignore: Add *.output.
5022
5023 * src/parse-gram.y: Put copyright notice inside %{ %} so it
5024 gets copied to the output file.
5025
5026 2004-04-28 Paul Eggert <eggert@twinsun.com>
5027
5028 Get files from the gnulib and po repositories, instead of relying
5029 on them being in our CVS. Upgrade to latest versions of gnulib
5030 and Automake.
5031
5032 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
5033 * bootstrap: Bootstrap from gnulib and po repositories.
5034 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
5035 * README-cvs: Document these changes. Remove version numbers from
5036 mentions of build tools, since they change so often. Mention Flex.
5037
5038 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
5039 (gl_USE_SYSTEM_EXTENSIONS): Add.
5040 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
5041 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
5042 does this for us.
5043 (AC_ISC_POSIX): Remove; we no longer support this
5044 ancient OS, as it gets in the way of latest Autoconf & gnulib.
5045 (AC_HEADER_STDC): Remove: we now assume C89 or better.
5046 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
5047 Do not check for C89 headers, except for locale.h which is used
5048 by the Yacc library and must port to K&R hosts.
5049 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
5050 Do not check for C89 functions, except for setlocale which is
5051 used by the Yacc library.
5052 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
5053 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
5054 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
5055 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
5056 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
5057 AM_GNU_GETTEXT): Remove; now done by:
5058 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
5059 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
5060 for us.
5061
5062 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
5063 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
5064 Define to empty, as gnulib.mk will do the rest for us.
5065 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
5066 for us.
5067 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
5068 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
5069
5070 * src/files.c: Include gnulib's xstrndup.h.
5071
5072 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
5073 (REALLOC): Use xnrealloc, for likewise.
5074 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
5075 (strnlen, memrchr): Remove decls; functions no longer used.
5076 Include <stpcpy.h>.
5077
5078 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
5079 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
5080 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
5081 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
5082 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
5083 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
5084 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
5085 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
5086 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
5087 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
5088 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
5089 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
5090 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
5091 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
5092 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
5093 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
5094 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
5095 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
5096 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
5097 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
5098 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
5099 Remove, as these files are now generated automatically
5100 by bootstrap or automake.
5101
5102 * po/ChangeLog: Remove: all but one entry was a duplicate
5103 of this file, and I moved that 2000-11-02 entry here.
5104
5105 * config/.cvsignore: Add Makefile, depcomp, install-sh.
5106 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
5107 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
5108 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
5109 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
5110 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
5111 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
5112 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
5113 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
5114 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
5115 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
5116 xstrndup.h.
5117 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
5118 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
5119 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
5120 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
5121 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
5122 * src/.cvsignore: Remove *_.c.
5123
5124
5125 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
5126 support it. (The latest stable gzip doesn't.)
5127
5128 2004-04-27 Paul Eggert <eggert@twinsun.com>
5129
5130 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
5131 case, as stos_ is now used by destructors due to the 2004-02-09
5132 change.
5133
5134 Remove more K&R C support.
5135 * lib/libiberty.y (PARAMS): Remove. All uses removed.
5136 * lib/subpipe.c (errno): Remove decl.
5137 Include <stdlib.h> unconditionally.
5138 (EXIT_FAILURE): Remove macro.
5139 * src/complain.c (vfprintf, strerror): Remove.
5140 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
5141 unconditionally.
5142 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
5143 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
5144 (strchr, strspn, memchr): Remove decls.
5145 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
5146 unconditionally. Do not declare perror.
5147 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
5148 unconditionally.
5149
5150 * src/complain.c (_): Remove useless defn, as system.h defines this.
5151
5152 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
5153 with latest obstack.h.
5154 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
5155 to procedure types, as obstack.h now does that for us.
5156 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
5157
5158 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
5159 so that this include file can stand alone.
5160 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
5161 does this now. Include subpipe.h first after config.h, to
5162 test whether it can stand alone.
5163
5164 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
5165 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
5166 unused declaration.
5167
5168 * tests/synclines.at (%union synch line): Put a dummy member in
5169 the union, because empty unions aren't allowed in C. Caught
5170 by GCC 3.4.0.
5171
5172 2004-04-13 Jim Meyering <jim@meyering.net>
5173
5174 * src/conflicts.c (conflicts_print): Correct format string typo:
5175 use `%%' to produce literal `%'. (trivial change)
5176
5177 2004-03-30 Paul Eggert <eggert@twinsun.com>
5178
5179 * src/getargs.c (version): Update copyright year to 2004.
5180
5181 * data/c.m4 (b4_int_type): Use 'short int' rather than
5182 'short', and similarly for 'long', 'unsigned', etc.
5183 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
5184 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
5185 yy_yypstack, yydumpstack): Likewise.
5186 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
5187 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
5188 Likewise.
5189 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
5190 yy_stack_print, yyparse): Likewise.
5191 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
5192 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
5193 * lib/bitset.c (bitset_print): Likewise.
5194 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
5195 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
5196 * lib/bitsetv.c (bitsetv_dump): Likewise.
5197 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
5198 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
5199 Likewise.
5200 * src/LR0.c (allocate_itemsets): Likewise.
5201 * src/gram.h (rule_number, rule): Likewise.
5202 * src/lalr.h (goto_number): Likewise.
5203 * src/nullable.c (nullable_compute): Likewise.
5204 * src/output.c (prepare_rules): Likewise.
5205 * src/relation.c (relation_print, relation_digraph): Likewise.
5206 * src/relation.h (relation_node): Likewise.
5207 * src/state.h (state_number, transitions, errs, reductions,
5208 struct state): Likewise.
5209 * src/symtab.h (symbol_number, struct symbol): Likewise.
5210 * src/tables.c (vector_number, tally, action_number,
5211 default_goto, goto_actions): Likewise.
5212 * tests/existing.at (GNU Cim Grammar): Likewise.
5213 * tests/regression.at (Web2c Actions): Likewise.
5214
5215 * src/output.c (muscle_insert_short_int_table): Renamed from
5216 muscle_insert_short_table. All uses changed.
5217
5218 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5219
5220 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
5221 (declaration): Replace expected_conflicts with expected_sr_conflicts.
5222 Add %expect-rr rule.
5223
5224 * src/scan-gram.l: Recognize %expect-rr.
5225
5226 * src/conflicts.h (expected_sr_conflicts): Rename from
5227 expected_conflicts.
5228 (expected_rr_conflicts): Declare.
5229
5230 * src/conflicts.c (expected_sr_conflicts): Rename from
5231 expected_conflicts.
5232 (expected_rr_conflicts): Define.
5233 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
5234 for GLR parsers.
5235 Use expected_sr_conflicts in place of expected_conflicts.
5236 Warn if expected_rr_conflicts used in non-GLR parser.
5237
5238 * doc/bison.texinfo: Add documentation for %expect-rr.
5239
5240 2004-03-08 Paul Eggert <eggert@gnu.org>
5241
5242 Add support for hex token numbers. Suggested by Odd Arild Olsen in
5243 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
5244
5245 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
5246 in lalr1.cc.
5247 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
5248 * src/scan-gram.l (scan_integer): New function.
5249 ({int}): Use it.
5250 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
5251 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
5252 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
5253 Say "long int", not "long", for uniformity with GNU style.
5254
5255 2004-02-25 Paul Eggert <eggert@twinsun.com>
5256
5257 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
5258 compilers. This fixes a problem with Intel's C++ compiler being
5259 chatty, reported by Guido Trentalancia in
5260 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
5261
5262 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
5263
5264 Support %destructor and merge error locations in lalr1.cc.
5265
5266 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
5267 (Parser::stos_): Define unconditionally.
5268 (Parser::destruct_): New method. Generate its body with
5269 b4_yydestruct_generate.
5270 (Parser::error_start_): New attribute.
5271 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
5272 token which are discarded.
5273 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
5274 error_start_ when erroneous token are discarded.
5275 (Parser::parse) <yyerrlab1>: Compute the location of the error
5276 token so that it covers all the discarded tokens.
5277 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
5278 it can be called with `%skeleton "lalr1.cc"', and do that.
5279
5280 2004-02-02 Paul Eggert <eggert@twinsun.com>
5281
5282 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
5283 $(top_srcdir)/lib and ../lib. This fixes a bug reported
5284 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
5285 There's no need to mention top_builddir since Automake does that
5286 for us.
5287 (INCLUDES): Remove, as Automake says it's obsolescent.
5288 Contents migrated into AM_CPPFLAGS as described above.
5289 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
5290
5291 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5292
5293 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
5294 (yyreportSyntaxError): Handle case where lookahead token is
5295 YYEMPTY.
5296
5297 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5298
5299 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
5300 resulting parsers are compilable with C++.
5301
5302 2003-12-23 Paul Eggert <eggert@twinsun.com>
5303
5304 * config/depcomp, config/install-sh: Sync with Automake 1.8.
5305 * src/output.c (output_skeleton): Rename local var.
5306 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
5307 Bison tokens, as this runs afoul of the 2003-10-07 change that
5308 disallowed NUL bytes in character constants or string literals.
5309
5310 * tests/local.at: Require Autoconf 2.59's Autotest.
5311 * tests/testsuite.at: Don't include local.at, since we now assume
5312 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
5313 including it.
5314 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
5315 multiple inclusion warnings.
5316
5317 2003-12-02 Akim Demaille <akim@epita.fr>
5318
5319 * doc/bison.texinfo (How Can I Reset the Parser): More about start
5320 conditions.
5321 From Bruno Haible.
5322
5323 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
5324
5325 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
5326
5327 2003-10-07 Paul Eggert <eggert@twinsun.com>
5328
5329 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
5330 if testsuite doesn't exist.
5331
5332 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
5333 literals, unfortunately.
5334 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
5335 Complain about NUL bytes in character constants or string literals.
5336
5337 2003-10-05 Paul Eggert <eggert@twinsun.com>
5338
5339 * NEWS: Don't document %no-default-prec, as it's still
5340 too experimental.
5341 * doc/bison.texinfo: Document %no-default-prec only if
5342 the defaultprec flag is set. Normally it's not.
5343
5344 2003-10-04 Paul Eggert <eggert@twinsun.com>
5345
5346 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
5347 non-modifiable lvalue, instead of a modifiable one.
5348 * doc/bison.texinfo (Actions): Document that $$ can
5349 be assigned to. Do not claim that $$ and $N are
5350 array element references: user code should not rely on this.
5351
5352 2003-10-01 Paul Eggert <eggert@twinsun.com>
5353
5354 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
5355 (grammar_declaration): Use it.
5356 * src/scan-gram.l: New token %no-default-prec.
5357 * tests/conflicts.at: Revamp tests to use %no-default-prec.
5358 * NEWS, doc/bison.texinfo: Document the above.
5359
5360 2003-10-01 Akim Demaille <akim@epita.fr>
5361
5362 VCG no longer supports long_straight_phase.
5363
5364 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
5365 * src/print_graph.c (print_graph): Adjust.
5366
5367 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
5368 and Paul Eggert <eggert@twinsun.com>
5369
5370 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
5371 Table of Symbols): Document %default-prec.
5372 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
5373 (grammar_declaration): Set default_prec on %default-prec.
5374 * src/scan-gram.l (%default-prec): New token.
5375 * src/reader.h (default_prec): New flag.
5376 * src/reader.c: Likewise.
5377 (packgram): Handle it.
5378 * tests/conflicts.at (%default-prec without %prec,
5379 %default-prec with %prec, %default-prec 1): New tests.
5380
5381 2003-09-30 Paul Eggert <eggert@twinsun.com>
5382
5383 * tests/testsuite.at: Include local.at, not input.at, fixing
5384 a typo in the 2003-08-25 patch.
5385
5386 2003-08-27 Akim Demaille <akim@epita.fr>
5387
5388 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
5389 GCC warnings.
5390
5391 2003-08-26 Akim Demaille <akim@epita.fr>
5392
5393 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
5394 "<\#" to avoid magic from Gnus when posting parts of this script.
5395
5396 2003-08-26 Akim Demaille <akim@epita.fr>
5397
5398 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
5399 (Parser::parse): here.
5400 Adjust: nerrs and errstatus is now replaced by...
5401 (Parser::nerrs_, Parser::errstatus_): New.
5402
5403 2003-08-25 Akim Demaille <akim@epita.fr>
5404
5405 * config/announce-gen, Makefile.cfg: New.
5406 * Makefile.am: Adjust.
5407 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
5408 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
5409
5410 2003-08-25 Akim Demaille <akim@epita.fr>
5411
5412 When reducing initial empty rules, Bison parser read an initial
5413 location that is not defined. This results in garbage, and that
5414 affects Bison's own parser. Therefore we need (i) to extend Bison
5415 to support a means to initialize this location, and (ii) to use
5416 this CVS Bison to fix CVS Bison's parser.
5417
5418 * src/reader.h, reader.c (epilogue_augment): Remove, replace
5419 with...
5420 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
5421 * src/parse-gram.y: Adjust.
5422 (%initial-action): New.
5423 (%error-verbose): Since we require CVS Bison, there is no reason
5424 not to use it.
5425 * src/scan-gram.l: Adjust.
5426 * src/Makefile.am (YACC): New, to make sure we use our own parser.
5427 * data/yacc.c (yyparse): Use b4_initial_action.
5428
5429 2003-08-25 Akim Demaille <akim@epita.fr>
5430
5431 * doc/bison.texinfo: Don't promote stdout for error messages.
5432
5433 2003-08-25 Akim Demaille <akim@epita.fr>
5434
5435 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
5436 From Alexandre Duret-Lutz.
5437
5438 2003-08-25 Akim Demaille <akim@epita.fr>
5439
5440 Version 1.875c.
5441
5442 2003-08-25 Akim Demaille <akim@epita.fr>
5443
5444 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
5445 Use them.
5446
5447 2003-08-25 Akim Demaille <akim@epita.fr>
5448
5449 * data/lalr1.cc (Parser::reduce_print_): New.
5450 Use it.
5451
5452 2003-08-25 Akim Demaille <akim@epita.fr>
5453
5454 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
5455 error recovery loops. This patch is based on
5456 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
5457 Also, augment the similarity between lalr1.cc and yacc.c.
5458 Note: the locations of error recovery rules are not correct yet.
5459
5460 * data/lalr1.cc: Comment changes to augment the similarity between
5461 lalr1.cc and yacc.c.
5462 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
5463 (yyerrlab1): Remove, but where it used to be (now the bottom part of
5464 yyerrlab), when hitting EOF, pop the whole stack here instead of
5465 merely falling thru the default error handling mechanism.
5466 (yyerrorlab): New label, with the old contents of YYERROR,
5467 plus the following change: pop the stack of rhs corresponding
5468 to the production that invoked YYERROR. That is how Yacc
5469 behaves (required by POSIX).
5470 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
5471 fail.
5472
5473 2003-08-25 Akim Demaille <akim@epita.fr>
5474
5475 Tune local.at so that people can "autom4te -l autotest calc.at -o
5476 calc" for instance, to extract a sub test suite.
5477
5478 * tests/testsuite.at: Move the initialization, Autotest version
5479 requirement, and AT_TESTED invocation into...
5480 * tests/local.at: here.
5481 * tests/testsuite.at: Include it for compatibility with Autoconf
5482 2.57.
5483 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
5484 be ignore.
5485
5486 2003-08-04 Paul Eggert <eggert@twinsun.com>
5487
5488 Rework code slightly to avoid gcc -Wtraditional warnings.
5489 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
5490 The returned value is now stored in *YY0. All callers changed.
5491 * src/output.c (merge_output): Adjust to the above change.
5492
5493 2003-07-26 Paul Eggert <eggert@twinsun.com>
5494
5495 * data/glr.c (YYASSERT): New macro.
5496 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
5497 yyresolveStates, yyprocessOneStack):
5498 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
5499 Derived from a suggestion by Frank Heckenbach.
5500
5501 2003-07-25 Paul Eggert <eggert@twinsun.com>
5502
5503 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
5504 for portability to K&R C (after ansi2knr, presumably). See
5505 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5506 by Frank Heckenbach, though I have omitted the structure-initialization
5507 part of his glr-knr.diff patch since I recall that the Portable
5508 C Compiler didn't require that change.
5509
5510 Let the user specify how to allocate and free memory.
5511 Derived from a suggestion by Frank Heckenbach in
5512 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
5513 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
5514 All uses of free, malloc, realloc changed to use these macros,
5515 and unnecessary casts removed.
5516 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
5517
5518 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
5519
5520 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
5521 use s.empty() rather than s == "" to test for empty string; see
5522 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
5523 (trivial change)
5524
5525 2003-06-25 Akim Demaille <akim@epita.fr>
5526
5527 * config/depcomp, config/install-sh: Update from masters.
5528
5529 2003-06-20 Paul Eggert <eggert@twinsun.com>
5530
5531 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
5532 and return properly parenthesized result.
5533 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
5534 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
5535 Remove unnecessary parentheses from uses.
5536 * doc/bison.texinfo (Location Default Action): Describe the
5537 conventions for parentheses.
5538
5539 2003-06-19 Paul Eggert <eggert@twinsun.com>
5540
5541 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
5542 yyreportTree): Do not assume that size_t is the same width as int,
5543 when printing sizes. Print sizes using an unsigned format.
5544 Problem reported by Frank Heckenbach in
5545 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
5546
5547 Port to Forte Developer 7 C compiler.
5548 * data/glr.c (struct YYLTYPE): If locations are not being used,
5549 declare a single dummy member, as empty structs do not conform
5550 to the C standard.
5551 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
5552 the Forte Developer 7 C compiler complains that end-of-loop
5553 code is not reached.
5554
5555 2003-06-17 Paul Eggert <eggert@twinsun.com>
5556
5557 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
5558 avoid warnings from picky compilers about redefinition of PARAMS.
5559
5560 2003-06-17 Paul Eggert <eggert@twinsun.com>
5561
5562 Version 1.875b.
5563
5564 * NEWS: Document 1.875b.
5565
5566 * lib/bbitset.h: Do not include config.h; that's the includer's job.
5567 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
5568 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
5569 Don't use 'index' in comments, as it's a builtin fn on some hosts.
5570 * lib/bitset_stats.c: Include gettext.h unconditionally, as
5571 per recent gettext manual's suggestion.
5572 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
5573 Use prototypes, not old-style definitions.
5574 * lib/lbitset.c (lbitset_unused_clear): Likewise.
5575 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
5576 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
5577 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
5578 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
5579 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
5580 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
5581 vbitset_or_and_cmp, vbitset_copy): Likewise.
5582
5583 * lib/libiberty.h: Do not include config.h; that's the includer's job.
5584 Do not include <stdlib.h>.
5585 (PARAMS): Define unconditionally for C89.
5586 (ATTRIBUTE_NORETURN): Remove.
5587 (ATTRIBUTE_UNUSED): Define unconditionally.
5588
5589 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
5590 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
5591 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
5592 * lib/vbitset.c, lib/vbitset.h: New files.
5593 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
5594 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
5595 from libbitset.
5596
5597 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
5598 `How Can I Reset @code{yyparse}', since texinfo does not allow
5599 arbitrary @ in node names.
5600
5601 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
5602 shouldn't be needed according to the gettext 0.12.1 documentation
5603 but which seem to be needed anyway: codeset.m4 glibc21.m4
5604 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
5605 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
5606 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
5607
5608 * lib/.cvsignore: Add stdbool.h.
5609 * m4/.cvsignore: Add nls.m4, po.m4.
5610
5611 Upgrade to CVS gnulib.
5612 * stdbool_.h: File renamed from stdbool.h.in.
5613 * configure.ac (AM_STDBOOL_H): Invoke this instead of
5614 AC_HEADER_STDBOOL.
5615 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
5616 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
5617 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
5618 (MOSTLYCLEANFILES): New var.
5619 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
5620 (stdbool.h): New rule.
5621 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
5622 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
5623 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
5624 m4/quote.m4: Upgrade to today's gnulib.
5625
5626 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
5627 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
5628 the tests right now.
5629 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
5630 yyerror are declared before use; C99 requires this.
5631
5632 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5633
5634 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
5635 first.
5636 (yyrecoverSyntaxError): Correct the logic for setting and testing
5637 yyerrState.
5638 Correct comment on handling EOF.
5639 Allow states with only a default reduction, rather than failing
5640 (I can't quite reconstruct why these were not allowed before).
5641
5642 Fixes to avoid problem that $-N rules in GLR parsers can cause
5643 buffer overruns, corrupting state.
5644
5645 * src/output.c (prepare_rules): Output max_left_semantic_context
5646 definition.
5647 * src/reader.h (max_left_semantic_context): New variable declaration.
5648 * src/scan-gram.l (max_left_semantic_context): Define.
5649 (handle_action_dollar): Update max_left_semantic_context.
5650 * data/glr.c (YYMAXLEFT): New definition.
5651 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
5652 (yyresolveAction): Ditto.
5653
5654 Fixes to problems with location handling in GLR parsers reported by
5655 Frank Heckenbach (2003/06/05).
5656
5657 * data/glr.c (YYLTYPE): Make trivial if locations not used.
5658 (YYRHSLOC): Add parentheses, and define only if locations used.
5659 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
5660 locations not used.
5661 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
5662 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
5663
5664 * tests/cxx-type.at: Exercise location information; update tests
5665 to differentiate output with and without locations.
5666 Remove forward declarations of yylex and yyerror---caused errors
5667 because default YYLTYPE not yet defined.
5668 Change semantic actions to compute strings, rather than printing
5669 them directly (to test proper passing of semantics values). Change
5670 output to prefix notation and update test data and expected results.
5671 (yylex): Track locations.
5672 (stmtMerge): Return value rather than printing, and include arguments
5673 in value.
5674
5675 2003-06-03 Paul Eggert <eggert@twinsun.com>
5676
5677 Avoid warnings generated by GCC 2.95.4 when Bison is
5678 configured with --enable-gcc-warnings.
5679 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
5680 yy::]b4_parser_class_name[::translate_,
5681 yy::Stack::operator[] (unsigned),
5682 yy::Stack::operator[] (unsigned) const,
5683 yy::Slice::operator[] (unsigned),
5684 yy::Slice::operator[] (unsigned) const):
5685 Rename local vars to avoid warnings.
5686 * tests/glr-regression.at (Improper handling of embedded actions
5687 and $-N in GLR parsers): Remove unused local variable from yylex.
5688 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
5689 (void) as arg when not pure, since we now assume C89 when building
5690 Bison. Pacify GCC by using parameter.
5691
5692 2003-06-02 Paul Eggert <eggert@twinsun.com>
5693
5694 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
5695 yy::Location::lines, yy::Location::columns): Rename arguments
5696 to avoid shadowing; this removes a warning generated by GCC 3.3.
5697
5698 2003-06-01 Paul Eggert <eggert@twinsun.com>
5699
5700 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
5701 to g++, as GCC 3.3 complains if you do it.
5702 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
5703 everything that WARNING_CFLAGS has, except omit warnings
5704 not suitable for C++.
5705 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
5706 * tests/atlocal.in (CXXFLAGS): New var.
5707 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
5708
5709 Fix a GLR parser bug I reported in February; see
5710 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
5711 The problem was that GLR parsers did not conform to the C standard,
5712 because actions like { $1 = $2 + $3; } expanded to expressions
5713 that invoked YYFILL in separate subexpressions, and YYFILL assigned
5714 to a local variable. The C standard says that expressions
5715 like (var = f ()) + (var = f ()) have undefined behavior.
5716 Another problem was that GCC sometimes issues warnings that
5717 yyfill and its parameters are unused.
5718
5719 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
5720 as possibly unused.
5721 (yyfill): New function.
5722 (YYFILL): Use it.
5723 (yyuserAction): Change type of yynormal to bool, so that it matches
5724 the new yyfill signature. Mark it as possibly unused.
5725
5726
5727 Follow up on a bug I reported in February, where a Bison-generated
5728 parser can loop. Provide a test case and a fix for yacc.c. I
5729 don't have a fix for lalr1.cc or for glr.c, unfortunately.
5730 The original bug report is in:
5731 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
5732
5733 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
5734 macro's size was becoming unwieldy.
5735 (yyerrlab): Do not discard an empty lookahead symbol, as this
5736 might destroy garbage.
5737 (yyerrorlab): New label, with the old contents of YYERROR,
5738 plus the following change: pop the stack of rhs corresponding
5739 to the production that invoked YYERROR. That is how Yacc
5740 behaves, and POSIX requires this behavior.
5741 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
5742 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
5743 Define 'alarm' to do nothing if unistd.h is not available.
5744 Add a new rule "exp: '-' error;" to test the above change to
5745 data/yacc.c. Use 'alarm' to abort any test taking longer than
5746 10 seconds, as it's probably looping.
5747 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
5748 Also, the new yacc.c generates two fewer diagnostics for an
5749 existing test.
5750
5751 2003-05-24 Paul Eggert <eggert@twinsun.com>
5752
5753 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
5754 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
5755 This fixes a problem reported by John Bowman when the Compaq/HP
5756 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
5757 -ansi -Wall -gall).
5758 * data/yacc.c (union yyalloc): Likewise.
5759 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
5760
5761 Switch from 'int' to 'bool' where that makes sense.
5762
5763 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
5764 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
5765 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
5766 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
5767 Return or accept bool, not int. All callers changed.
5768 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
5769 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
5770 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
5771 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
5772 bitset_or_and_cmp_): Likewise.
5773 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
5774 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
5775 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
5776 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
5777 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
5778 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
5779 bitset_stats_or_and_cmp): Likewise.
5780 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
5781 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
5782 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
5783 ebitset_xor_cmp): Likewise.
5784 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
5785 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
5786 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
5787 lbitset_xor_cmp): Likewise.
5788 * lib/bbitset.h: Include <stdbool.h>.
5789 (struct bitset_vtable): The following members now return bool, not
5790 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
5791 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
5792 or_and_cmp).
5793 * src/conflicts.c (count_rr_conflicts): Likewise.
5794 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
5795 All uses changed.
5796 * lib/ebitset.c (ebitset_obstack_init): Likewise.
5797 * lib/lbitset.c (lbitset_obstack_init): Likewise.
5798 * src/getargs.c (debug_flag, defines_flag, locations_flag,
5799 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5800 graph_flag): Likewise.
5801 * src/getargs.h (debug_flag, defines_flag, locations_flag,
5802 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5803 graph_flag): Likewise.
5804 * src/output.c (error_verbose): Likewise.
5805 * src/output.h (error_verbose): Likewise.
5806 * src/reader.c (start_flag, typed): Likewise.
5807 * src/reader.h (typed): Likewise.
5808 * src/getargs.c (LOCATIONS_OPTION): New constant.
5809 (long_options, getargs): Use it.
5810 * src/lalr.c (build_relations): Use bool, not int.
5811 * src/nullable.c (nullable_compute): Likewise.
5812 * src/print.c (print_reductions): Likewise.
5813 * src/tables.c (action_row, pack_vector): Likewise.
5814 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
5815 * src/output.c (prepare): Use it.
5816 * src/output.c (token_definitions_output,
5817 symbol_destructors_output, symbol_destructors_output): Use string,
5818 not boolean integer, to keep track of whether to output separator.
5819 * src/print_graph.c (print_core): Likewise.
5820 * src/state.c (state_rule_lookaheads_print): Likewise.
5821
5822 * config/install-sh: Sync from automake 1.7.5.
5823
5824 2003-05-14 Paul Eggert <eggert@twinsun.com>
5825
5826 * src/parse-gram.y (rules_or_grammar_declaration): Require a
5827 semicolon after a grammar declaration, in the interest of possible
5828 future changes to the Bison input language.
5829 Do not allow a stray semicolon at the start of the grammar.
5830 (rhses.1): Allow one or more semicolons after any rule, including
5831 just before "|" as required by POSIX.
5832 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
5833 grammar.
5834
5835 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
5836
5837 %parse-param support for lalr1.cc.
5838
5839 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
5840 b4_cc_constructor_calls, b4_cc_constructor_call,
5841 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
5842 definitions.
5843 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
5844 parse-param arguments.
5845 (yy::b4_parser_class_name): Declare instance variables to
5846 hold parse-param arguments.
5847 * tests/calc.at: s/value/semantic_value/ because value clashes
5848 with a member of yy::b4_parser_class_name. Adjust C++ code
5849 to handle %parse-param. Enable %parse-param test in C++.
5850
5851 2003-05-12 Paul Eggert <eggert@twinsun.com>
5852
5853 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
5854 English a bit. Fix fclose typo. Change "const char" to "char
5855 const", and use ANSI C rather than K&R for "main". Suggest
5856 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
5857 and suggest yy_switch_to_buffer.
5858
5859 2003-05-05 Paul Eggert <eggert@twinsun.com>
5860
5861 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
5862 C89. This avoids a diagnostic on compilers that define __STDC__
5863 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
5864 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5865
5866 2003-05-03 Paul Eggert <eggert@twinsun.com>
5867
5868 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
5869 Do not overrun array bounds.
5870 This should fix a bug reported today by Olatunji Oluwabukunmi in
5871 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
5872
5873 2003-04-29 Akim Demaille <akim@epita.fr>
5874
5875 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
5876 * src/getargs.c, src/getargs.h: here, as bool, not int.
5877 (nondeterministic_parser): New.
5878 * src/parse-gram.y, src/scan-gram.l: Support
5879 %nondeterministic-parser.
5880 * src/output.c (prepare): Use nondeterministic_parser instead
5881 of glr_parser where appropriate.
5882 * src/tables.c (conflict_row, action_row, save_row)
5883 (token_actions, token_actions, pack_vector): Ditto.
5884
5885 2003-04-29 Akim Demaille <akim@epita.fr>
5886
5887 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
5888
5889 2003-04-29 Akim Demaille <akim@epita.fr>
5890
5891 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
5892 with %pure-parser and %locations to exercise the patch from Yakov
5893 Markovitch below.
5894
5895 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
5896
5897 * data/yacc.c: (b4_lex_param): Corrected for the case where
5898 %lex-param is provided and %pure-parser isn't.
5899
5900 2003-04-27 Paul Eggert <eggert@twinsun.com>
5901
5902 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
5903 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
5904 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
5905 if it is not defined.
5906 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
5907
5908 2003-04-26 Paul Eggert <eggert@twinsun.com>
5909
5910 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
5911 Declare to be of type suitable for the ninf value itself, not of
5912 type suitable for the corresponding table, since the latter might
5913 be unsigned but the ninf value might be negative. This fixes a
5914 bug reported by Alexandre Duret-Lutz in
5915 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
5916
5917 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
5918 invokes it. We shouldn't invoke it twice because it will attempt
5919 to put error.o in the archive twice. This fixes a glitch reported
5920 by Martin Mokrejs in
5921 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5922
5923 2003-04-21 Paul Eggert <eggert@twinsun.com>
5924
5925 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
5926 to gnulib.
5927
5928 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
5929
5930 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
5931 Fix obvious typo that results in uncompilable GLR parsers
5932 when both %pure-parser and %locations are used. (trivial change)
5933
5934 2003-04-17 Paul Eggert <eggert@twinsun.com>
5935
5936 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
5937 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
5938 Do not insert the expected token via unput, as this runs afoul
5939 of a POSIX-compatibility bug in flex 2.5.31.
5940 All uses changed to BEGIN the parent state,
5941 since we no longer insert the expected token via unput.
5942 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
5943 that is no longer emitted after the above change.
5944
5945 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
5946 the first one. This change is from Paul Hilfinger, and it fixes
5947 regression reported by Werner Lemberg in
5948 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5949
5950 (resolve_sr_conflict): Don't invoke state_errs_set
5951 unless one or more tokens have been explicitly made errors.
5952 Otherwise, the above change causes Bison to abort.
5953
5954 * tests/existing.at (GNU pic Grammar): New test case, taken from
5955 Lemberg's email.
5956
5957 2003-03-31 Akim Demaille <akim@epita.fr>
5958
5959 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
5960
5961 2003-03-31 Akim Demaille <akim@epita.fr>
5962
5963 * src/output.c (prepare_symbols): Avoid trailing spaces in the
5964 output.
5965
5966 2003-03-31 Akim Demaille <akim@epita.fr>
5967
5968 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
5969 From Paul Hilfinger.
5970
5971 2003-03-29 Akim Demaille <akim@epita.fr>
5972
5973 * m4/error.m4: Do not put under dynamic conditions some code which
5974 expansion is under static control.
5975
5976 2003-03-29 Akim Demaille <akim@epita.fr>
5977
5978 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
5979
5980 2003-03-29 Akim Demaille <akim@epita.fr>
5981
5982 * doc/bison.texinfo (Strings are Destroyed): New.
5983
5984 2003-03-13 Paul Eggert <eggert@twinsun.com>
5985
5986 * .cvsignore: Add configure.lineno.
5987 * src/.cvsignore: Add yacc.
5988 * tests/.cvsignore: Add testsuite.log.
5989 * doc/fdl.texi: Sync with latest FSF version.
5990
5991 2003-03-12 Paul Eggert <eggert@twinsun.com>
5992
5993 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
5994 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
5995 cursor, instead of leaving it undefined. This fixes a bug
5996 reported by Tim Van Holder in
5997 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
5998 * tests/input.at (Torturing the Scanner): Test the scanner on
5999 an empty input file, which was Tim Van Holder's test case.
6000
6001 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
6002 <sys/resource.h> can be included, include sys/time.h and
6003 sys/times.h first, if available. This works around the SunOS
6004 4.1.4 porting bug reported by Bruce Becker in
6005 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
6006
6007 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
6008 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
6009 AC_HEADER_SYS_WAIT.
6010
6011 Merge changes from gnulib. This was prompted because the CVS
6012 snapshot didn't build on Solaris 7 due to strnlen problems.
6013
6014 These changes need to be merged back into gnulib:
6015 * lib/hash.c: Include <stdbool.h> unconditionally.
6016 * m4/onceonly.m4 (m4_quote): New macro.
6017 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
6018 Quote AC_FOREACH variable-expansions properly.
6019 The 2003-01-03 obstack.h change also needs merging.
6020 {end of changes requiring merging}
6021
6022 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
6023 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
6024 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
6025 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
6026 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
6027 New files, imported from gnulib.
6028 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
6029 above.
6030
6031 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
6032 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
6033 gnulib sources.
6034
6035 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
6036 Add.
6037 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
6038 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
6039 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
6040 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
6041 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
6042 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
6043 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
6044 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
6045 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
6046 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
6047 (jm_PREREQ_ARGMATCH): Remove.
6048 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
6049 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
6050
6051 * src/system.h: Include <stdbool.h> unconditionally.
6052
6053 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
6054 assuming at least C89 in the bitset code for some time now.
6055
6056 2003-03-03 Akim Demaille <akim@epita.fr>
6057
6058 * ro.po: New.
6059
6060 2003-03-02 Akim Demaille <akim@epita.fr>
6061
6062 * doc/bison.texinfo (Table of Symbols): Reactivate the
6063 documentation for %lex-param, and %parse-param.
6064
6065 2003-03-02 Akim Demaille <akim@epita.fr>
6066
6067 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
6068 generate verbose error messages.
6069 Use the number of tokens as an upper bound in yytname, as it
6070 cannot be a non terminal.
6071
6072 2003-03-02 Akim Demaille <akim@epita.fr>
6073
6074 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
6075 message.
6076
6077 2003-03-02 Akim Demaille <akim@epita.fr>
6078
6079 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
6080 Use them to exercise yycheck overrun.
6081 Based on Andrew Suffield's grammar.
6082
6083 2003-03-02 Akim Demaille <akim@epita.fr>
6084
6085 Create tests/local.at for Bison generic testing macros.
6086
6087 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
6088 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
6089 This new file.
6090 * tests/calc.at (AT_CHECK_CALC): Adjust.
6091 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
6092 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
6093 * tests/local.at: here.
6094 (AT_COMPILE_CXX): Tags the tests using it as c++.
6095 Ignore the test if CXX is not functional.
6096
6097 2003-03-01 Paul Eggert <eggert@twinsun.com>
6098
6099 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
6100 not loc->end, since loc->end might contain garbage and this leads
6101 to undefined behavior on some platforms.
6102 (id_loc, token_start): Use (IF_LINTed) initial values that do not
6103 depend on *loc, so that the reader doesn't give the the false
6104 impression that *loc is initialized.
6105 (<INITIAL>"%%"): Do not bother setting code_start, since its value
6106 does not survive the return.
6107
6108 2003-03-01 Akim Demaille <akim@epita.fr>
6109
6110 * src/scan-gram.l (code_start): Always initialize it when entering
6111 into yylex, as SC_EPILOGUE is activated *before* the corresponding
6112 yylex invocation. An alternative would be making it static, but
6113 then it starts with the second %%'s beginning, instead of its end.
6114
6115 2003-02-28 Paul Eggert <eggert@twinsun.com>
6116
6117 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
6118 around a UnixWare 7.1.1 porting bug reported by John Hughes in
6119 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
6120
6121 2003-02-26 Paul Eggert <eggert@twinsun.com>
6122
6123 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
6124 Remove Sequent/Pyramid discussion (nobody uses them any more).
6125 Merge VMS and MS-DOS discussion; these ports may well be dead
6126 but let's keep mentioning them for now. Put <> around email
6127 addresses. Add copyright notice.
6128
6129 2003-02-24 Paul Eggert <eggert@twinsun.com>
6130
6131 * data/glr.c (yy_reduce_print): yylineno -> yylno,
6132 to avoid collision with flex use of yylineno.
6133 Problem reported by Bruce Lilly in
6134 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
6135 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
6136 * data/yacc.c (yy_reduce_print): Likewise.
6137
6138 * config/depcomp: Sync with Automake 1.7.3.
6139
6140 2003-02-21 Akim Demaille <akim@epita.fr>
6141
6142 * data/lalr1.cc: Use temporary variables instead of casts to
6143 change integer types.
6144 Suggested by Paul Eggert.
6145
6146 2003-02-21 Akim Demaille <akim@epita.fr>
6147
6148 * doc/bison.texinfo: Use "location" consistently to refer to @n,
6149 to avoid confusions with lalr1.cc's notion of Position.
6150 Suggested by Paul Eggert.
6151
6152 2003-02-20 Akim Demaille <akim@epita.fr>
6153
6154 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
6155 before initial_columns.
6156 (location.hh): Use consistent variable names when defining the
6157 operator<<.
6158 Use "last" so that we subtract from Positions, not from unsigned.
6159
6160 2003-02-20 Akim Demaille <akim@epita.fr>
6161
6162 * data/lalr1.cc (position.hh): New subfile, including the extended
6163 and Doxygen'ed documentation of class Position.
6164 (location.hh): Use it.
6165 Document a` la Doxygen.
6166 With the help of Benoit Perrot.
6167
6168 2003-02-20 Akim Demaille <akim@epita.fr>
6169
6170 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
6171 AT_YACC_IF.
6172 Redefine AT_YYERROR_SEES_LOC_IF using it.
6173 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
6174 not defined.
6175 Don't use the location in yy::Parser::error_ and
6176 yy::Parser::print_ when not %locations.
6177 Activate more lalr1.cc tests.
6178
6179 2003-02-19 Akim Demaille <akim@epita.fr>
6180
6181 * data/lalr1.cc: When displaying a line number, be sure to make it
6182 an int.
6183
6184 2003-02-19 Akim Demaille <akim@epita.fr>
6185
6186 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
6187 Remove, useless.
6188 (YYABORT, YYACCEPT, YYERROR): New.
6189 * tests/calc.at: Renable the lalr1.cc test.
6190
6191 2003-02-19 Akim Demaille <akim@epita.fr>
6192
6193 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
6194 error recovery, mixing with/without pops and discarding of the
6195 lookahead.
6196 Exercise YYERROR.
6197 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
6198
6199 2003-02-17 Paul Eggert <eggert@twinsun.com>
6200
6201 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
6202 * tests/testsuite.at (AT_COMPILE): Use them.
6203 This fixes the testsuite problem reported by Robert Lentz in
6204 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
6205
6206 2003-02-12 Paul Eggert <eggert@twinsun.com>
6207
6208 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
6209 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
6210 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
6211 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
6212 Check for malloc failure, for consistency with yacc.c.
6213 (yytname_size): Remove, for consistency with yacc.c.
6214
6215 The bug still remains in data/lalr1.cc, as I didn't have time
6216 to fix it there.
6217
6218 2003-02-06 Akim Demaille <akim@epita.fr>
6219
6220 * configure.ac (GXX): Rename as...
6221 (CXX): this, to keep the original Autoconf semantics.
6222 Require 2.57.
6223 * data/lalr1.cc: Fix b4_copyright invocations.
6224 If YYDEBUG is not defined, don't depend upon name_ being defined.
6225 (location.hh): Include string and iostream.
6226 (Position::filename): New member.
6227 (Position::Position ()): New.
6228 (operator<< (Position)): New.
6229 (operator- (Position, int)): New.
6230 (Location::first, Location::last): Rename as...
6231 (Location::begin, Location::end): these, to mock the conventional
6232 iterator names.
6233 (operator<< (Location)): New.
6234 * tests/atlocal.in (CXX): New.
6235 * tests/testsuite.at (AT_COMPILE_CXX): New.
6236 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
6237 locations in a more synthetic way.
6238 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
6239 lalr1.cc is used.
6240 Adjust the C locations to match those from Emacs: first column is
6241 column 0.
6242 Change all the expected results.
6243 Conform to the GCS: simplify the locations when applicable.
6244 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
6245 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
6246 these CPP macros with the m4 macros new defined by...
6247 (AT_CHECK_PUSHDEFS): this, i.e.:
6248 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
6249 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
6250 New macros.
6251 (AT_CHECK_POPDEFS): Undefine them.
6252 (AT_CHECK_CALC_LALR1_CC): New.
6253 Use it for the first lalr1.cc test.
6254
6255 2003-02-04 Akim Demaille <akim@epita.fr>
6256
6257 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
6258 Location as is defined.
6259
6260 2003-02-04 Akim Demaille <akim@epita.fr>
6261
6262 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
6263 name_ being defined.
6264
6265 2003-02-03 Paul Eggert <eggert@twinsun.com>
6266
6267 * src/gram.h (start_symbol): Remove unused decl.
6268
6269 Use more-consistent naming conventions for local vars.
6270
6271 * src/derives.c (derives_compute): Change type of local var from
6272 int to rule_number.
6273 * src/gram.c (grammar_rules_partial_print): Likewise.
6274 * src/print.c (print_core): Likewise.
6275 * src/reduce.c (reduce_grammar_tables): Likewise.
6276
6277 * src/gram.c (grammar_dump): Change name of item_number *
6278 local var from r to rp.
6279 * src/nullable.c (nullable_compute): Likewise.
6280
6281 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
6282
6283 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
6284 for symbol or symbol_number var.
6285 * src/reader.c (grammar_start_symbol_set): Likewise.
6286 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
6287 Likewise.
6288 * src/state.c (transitions_to): Likewise.
6289 * src/state.h: Likewise.
6290 * src/tables.c (symbol_number_to_vector_number): Likewise.
6291
6292 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
6293 char * var.
6294
6295 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
6296 var.
6297
6298 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
6299 var.
6300
6301 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
6302 Use str, not s, for char * var. Use ch, not c, for character var.
6303 Use size for size var.
6304
6305 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
6306 char * var.
6307 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
6308 uniqstr var.
6309 * src/uniqstr.h: Likewise.
6310
6311 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
6312 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
6313 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
6314 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
6315 param to have same name as that of enum, so that we don't use
6316 "s" to stand for a non-state.
6317
6318 2003-02-02 Akim Demaille <akim@epita.fr>
6319
6320 * src/scan-skel.l: Scan more than one inert character per yylex
6321 invocation.
6322
6323 2003-02-01 Paul Eggert <eggert@twinsun.com>
6324
6325 Version 1.875a.
6326
6327 * po/LINGUAS: Add ms.
6328
6329 2003-01-30 Akim Demaille <akim@epita.fr>
6330
6331 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
6332
6333 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6334
6335 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
6336 of $1.
6337
6338 Changes in response to error report by S. Eken: GLR mode does not
6339 handle negative $ indices or $ indices in embedded rules correctly.
6340 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
6341
6342 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
6343 (b4_rhs_location): Ditto.
6344 (yyfill): New function to copy from stack tree into array
6345 incrementally.
6346 (yyuserAction): Modify to allow incremental move of semantic values
6347 to rhs array when in GLR mode.
6348 Define YYFILL to use in user-defined actions to fill semantic array
6349 as needed.
6350 Remove dummy use of yystack, as there is now a guaranteed use.
6351 (yydoAction): Modify to allow incremental move of semantic values
6352 to rhs array when in GLR mode.
6353 (yyresolveAction): Ditto.
6354 (yyglrShiftDefer): Update comment.
6355 (yyresolveStates): Use X == NULL for pointers, not !X.
6356 (yyglrReduce): Ditto.
6357 (yydoAction): Ditto
6358
6359 * tests/glr-regr1.at: Rename to ...
6360 * tests/glr-regression.at: Add new regression test for the problems
6361 described above (adapted from S. Eken).
6362 Update copyright notice.
6363 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
6364 * tests/Makefile.am: Ditto.
6365
6366 2003-01-28 Paul Eggert <eggert@twinsun.com>
6367
6368 * data/lalr1.cc: Do not use @output_header_name@ unless
6369 b4_defines_flag is set. This fixes two bugs reported by
6370 Tim Van Holder in
6371 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
6372 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6373
6374 2003-01-21 Paul Eggert <eggert@twinsun.com>
6375
6376 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
6377 we don't need to worry about yyerrlab1 being reported as an
6378 "unused label" by non-GCC C compilers. The downside is that if
6379 locations are used then a couple of statements are duplicated each
6380 time YYERROR is invoked, but the upside is that the warnings
6381 should vanish.
6382 (yyerrlab1): Move code to YERROR.
6383 (yyerrlab2): Remove. Change uses back to yyerrlab1.
6384 This reverts some of the 2002-12-27 change.
6385
6386 2003-01-17 Paul Eggert <eggert@twinsun.com>
6387
6388 * src/output.c (symbol_printers_output): Fix typo that led
6389 to core dump. Problem reported by Antonio Rus in
6390 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
6391
6392 2003-01-13 Akim Demaille <akim@epita.fr>,
6393 Quoc Peyrot <chojin@lrde.epita.fr>,
6394 Robert Anisko <anisko_r@lrde.epita.fr>
6395
6396 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
6397 when the stacks contain one element, as the loop would otherwise
6398 free the last state, and then use the top state (the one we just
6399 popped). This means that the initial elements will not be freed
6400 explicitly, as is the case in yacc.c; it is not a problem, as
6401 these elements have fake values.
6402
6403 2003-01-11 Paul Eggert <eggert@twinsun.com>
6404
6405 * NEWS: %expect-violations are now just warnings, reverting
6406 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
6407 bootstrapping problem reported by Matthias Klose; see
6408 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
6409 * src/conflicts.c (conflicts_print): Likewise.
6410 * tests/conflicts.at (%expect not enough, %expect too much,
6411 %expect with reduce conflicts): Likewise.
6412 * doc/bison.texinfo (Expect Decl): Document this. Also mention
6413 that the warning is enabled if the number of conflicts changes
6414 (not necessarily increases).
6415
6416 * src/getargs.c (version): Update copyright year.
6417
6418 2003-01-09 Akim Demaille <akim@epita.fr>
6419
6420 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
6421
6422 2003-01-08 Paul Eggert <eggert@twinsun.com>
6423
6424 * Makefile.maint (WGETFLAGS):
6425 New macro, containing "-C off" to disable proxy caches.
6426 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
6427 (rel-check): Use $(WGET) instead of wget.
6428
6429 2003-01-06 Paul Eggert <eggert@twinsun.com>
6430
6431 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
6432 the GLR paper of Scott, Johnstone and Hussain.
6433
6434 2003-01-04 Paul Eggert <eggert@twinsun.com>
6435
6436 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
6437 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
6438 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
6439 (EXTRA_LIBRARIES): New var, for liby.a.
6440 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
6441 (EXTRA_SCRIPTS): New var, for yacc.
6442
6443 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
6444 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
6445 Problem reported by Nelson H. F. Beebe.
6446
6447 2003-01-03 Paul Eggert <eggert@twinsun.com>
6448
6449 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
6450 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
6451 when compiling Bison 1.875's `bitset bset = obstack_alloc
6452 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
6453
6454 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
6455 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
6456 grow to a huge size with typical invocation.
6457
6458 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
6459 Use the pattern recommended by Autoconf 2.57, except also protect
6460 against double-definition.
6461 * src/system.h: Likewise.
6462 Portability issues reported by Nelson H. F. Beebe.
6463
6464 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
6465 All uses changed. Provide a definition in both C and C++.
6466 (yytrue, yyfalse): Define even if defined (__cplusplus).
6467
6468 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
6469 Reported by Nelson H. F. Beebe.
6470
6471 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
6472
6473 2003-01-02 Paul Eggert <eggert@twinsun.com>
6474
6475 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
6476 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
6477 Bug reported by Nelson H. F. Beebe.
6478
6479 2003-01-01 Paul Eggert <eggert@twinsun.com>
6480
6481 * Version 1.875.
6482
6483 2002-12-30 Paul Eggert <eggert@twinsun.com>
6484
6485 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
6486 Moved here from...
6487 (<INITIAL>","): Here. This causes stray "," to be treated
6488 more uniformly.
6489
6490 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
6491 last brace in braced code when not in Yacc mode, for compatibility
6492 with Bison 1.35. This resurrects the 2001-12-15 patch to
6493 src/reader.c.
6494
6495 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
6496 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
6497
6498 2002-12-28 Paul Eggert <eggert@twinsun.com>
6499
6500 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
6501 that of SYM's type. This fixes Debian bug 168069, reported by
6502 Thomas Olsson.
6503
6504 2002-12-28 Paul Eggert <eggert@twinsun.com>
6505
6506 Version 1.75f.
6507
6508 Switch back to the Yacc style of conflict reports, undoing some
6509 of the 2002-07-30 change.
6510 * doc/bison.texinfo (Understanding): Use Yacc style for
6511 conflict reports. Also, use new way of locating rules.
6512 * src/conflicts.c (conflict_report):
6513 Renamed from conflict_report_yacc, removing the old
6514 'conflict_report'. Translate the entire conflict report at once,
6515 so that we don't assume that "," has the same interpretation in
6516 all languages.
6517 (conflicts_output): Use Yacc-style conflict report for each state,
6518 instead of our more-complicated style.
6519 (conflicts_print): Use Yacc-style conflict report, except print
6520 the input file name when not emulating Yacc.
6521 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
6522 Conflicted Reduction, %expect not enough, %expect too much,
6523 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
6524 * tests/existing.at (GNU Cim Grammar): Likewise.
6525 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
6526
6527 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
6528 fatal): Don't invoke fflush; it's not needed and it might even be
6529 harmful for stdout, as stdout might not be open.
6530 * src/reduce.c (reduce_print): Likewise.
6531
6532 2002-12-27 Paul Eggert <eggert@twinsun.com>
6533
6534 Fix a bug where error locations were not being recorded correctly.
6535 This problem was originally reported by Paul Hilfinger in
6536 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
6537
6538 * data/yacc.c (yyparse): New local var yylerrsp, to record the
6539 top of the location stack's error locations.
6540 (yyerrlab): Set it. When discarding a token, push its location
6541 onto yylerrsp so that we don't lose track of the error's end.
6542 (yyerrlab1): Now is only the target of YYERROR, so that we can
6543 properly record the location of the action that failed. For GCC
6544 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
6545 GCC warning about yyerrlab1 being unused if YYERROR is unused.
6546 (yyerrlab2): New label, which yyerrlab now falls through to.
6547 Compute the error's location by applying YYLLOC_DEFAULT to
6548 the locations of all the symbols that went into the error.
6549 * doc/bison.texinfo (Location Default Action): Mention that
6550 YYLLOC_DEFAULT is also invoked for syntax errors.
6551 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
6552 Error locations include the locations of all the tokens that were
6553 discarded, not just the last token.
6554
6555 2002-12-26 Paul Eggert <eggert@twinsun.com>
6556
6557 * src/files.c: Include quote.h.
6558 (compute_output_file_names): Warn if we detect conflicting
6559 outputs to the same file. This should catch the misunderstanding
6560 exemplified by Debian Bug 165349, reported by Bruce Stephens..
6561
6562 * src/conflicts.c (conflicts_print): If the user specifies
6563 "%expect N", report an error if there are any reduce/reduce
6564 conflicts. This is what the manual says should happen.
6565 This fixes Debian bug 130890, reported by Anthony DeRobertis.
6566 * tests/conflicts.at (%expect with reduce conflicts): New test.
6567
6568 Don't use m4_include on relative file names, as it doesn't work as
6569 desired if there happens to be a file with that name under ".".
6570
6571 * m4sugar/version.m4: Remove; it was included but it wasn't used.
6572 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
6573 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
6574 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
6575 * src/output.c (output_skeleton): Use full path names when
6576 specifying a file to include; don't rely on include path, as
6577 it's unreliable when the working file contains a file with
6578 that name.
6579
6580 2002-12-25 Paul Eggert <eggert@twinsun.com>
6581
6582 Remove obsolete references to bison.simple and bison.hairy.
6583 Problem mentioned by Aubin Mahe in
6584 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
6585 * data/glr.c: Comment fix.
6586 * doc/bison.1: Remove references. Also, mention "yacc".
6587
6588 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
6589 with -g option.
6590
6591 * src/parse-gram.y (declaration): Use enum "report_states" rather
6592 than its numeric value 1.
6593
6594 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
6595 opening a new one. This fixes Debian bug 165349, reported by
6596 Bruce Stephens.
6597
6598 2002-12-24 Paul Eggert <eggert@twinsun.com>
6599
6600 Version 1.75e.
6601
6602 * Makefile.maint (cvs-update): Don't assume that the shell
6603 supports $(...), as Solaris sh doesn't.
6604
6605 * src/parse-gram.y (lloc_default): Remove test for empty
6606 nonterminals at the end, since it didn't change the result.
6607
6608 2002-12-24 Paul Eggert <eggert@twinsun.com>
6609
6610 If the user does not define YYSTYPE as a macro, Bison now declares it
6611 using typedef instead of defining it as a macro. POSIX requires this.
6612 For consistency, YYLTYPE is also declared instead of defined.
6613
6614 %union directives can now have a tag before the `{', e.g., the
6615 directive `%union foo {...}' now generates the C code
6616 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
6617 The default union tag is `YYSTYPE', for compatibility with Solaris 9
6618 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
6619 instead of `yyltype'.
6620
6621 `yystype' and `yyltype' are now obsolescent macros instead of being
6622 typedefs or tags; they are no longer documented and will be
6623 withdrawn in a future release.
6624
6625 * data/glr.c (b4_location_type): Remove.
6626 (YYSTYPE): Renamed from yystype.
6627 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
6628 (struct YYLTYPE): Renamed from struct yyltype.
6629 (YYLTYPE): Renamed from yyltype.
6630 (yyltype, yystype): New (and obsolescent) macros,
6631 for backward compatibility.
6632 * data/yacc.c: Likewise.
6633
6634 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
6635 does not specify a union tag. This is for compatibility with
6636 Solaris 9 yacc.
6637
6638 * src/parse-gram.y (add_param): 2nd arg is now char * not char
6639 const *, since it is now modified by stripping surrounding { }.
6640 (current_braced_code): Remove.
6641 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
6642 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
6643 trailing " {...}". Now of type <chars>.
6644 (grammar_declaration): Adjust to bundled tokens.
6645 (code_content): Remove; stripping is now done by add_param.
6646 (print_token_value): Print contents of bundled tokens.
6647 (token_name): New function.
6648
6649 * src/reader.h (braced_code, current_braced_code): Remove.
6650 (token_name): New decl.
6651
6652 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
6653 token_type, not braced_code code_kind. All uses changed.
6654 (SC_PRE_CODE): New state, for scanning after a keyword that
6655 has (or usually has) an immediately-following braced code.
6656 (token_type): New local var, to keep track of which token type
6657 to return when scanning braced code.
6658 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
6659 <INITIAL>"%parse-param", <INITIAL>"%printer",
6660 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
6661 instead of returning a token type immediately.
6662 (<INITIAL>"{"): Set token type.
6663 (<SC_BRACED_CODE>"}"): Use it.
6664 (handle_action_dollar, handle_action_at): Now returns bool
6665 indicating success. Fail if ! current_rule; this prevents a core dump.
6666 (handle_symbol_code_dollar, handle_symbol_code_at):
6667 Remove; merge body into caller.
6668 (handle_dollar, handle_at): Complain in invalid contexts.
6669
6670 * NEWS, doc/bison.texinfo: Document the above.
6671 * NEWS: Fix years and program names in copyright notice.
6672
6673 2002-12-17 Paul Eggert <eggert@twinsun.com>
6674
6675 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
6676 Reporting, Table of Symbols): Omit mentions of %lex-param and
6677 %parse-param from the documentation for now.
6678
6679 2002-12-15 Paul Eggert <eggert@twinsun.com>
6680
6681 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
6682 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
6683 lookahead symbol, and which sets yychar in parser actions) and it
6684 disagreed with the Bison documentation. Bug
6685 reported by Andrew Walrond.
6686
6687 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
6688 as the caller now does that.
6689 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
6690 (YYEMPTY): Parenthesize right hand side, since others use it.
6691 (yyparse): Don't assume that our generated code is the only code
6692 that sets yychar.
6693
6694 2002-12-13 Paul Eggert <eggert@twinsun.com>
6695
6696 Version 1.75d.
6697
6698 POSIX requires a "yacc" command.
6699 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
6700 (MOSTLYCLEANFILES): Add yacc.
6701 (yacc): New rule.
6702 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
6703 as an alias for bison y.
6704
6705 * po/LINGUAS: Add da.
6706
6707 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
6708 problem with latest <getopt.h>.
6709 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
6710
6711 * doc/fdl.texi: Upgrade to 1.2.
6712 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
6713 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
6714 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
6715 gnulib.
6716 * config/install-sh: Sync with autotools.
6717
6718 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
6719 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
6720 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
6721 locations are requested.
6722 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
6723 locations are requested.
6724
6725 2002-12-12 Paul Eggert <eggert@twinsun.com>
6726
6727 Remove unportable casts and storage allocation tricks.
6728 While we're at it, remove almost all casts, since they
6729 usually aren't needed and are a sign of trouble.
6730
6731 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
6732
6733 * src/derives.c (derives_compute): Do not subtract NTOKENS from
6734 the pointer DSET returned by malloc; this isn't portable.
6735 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
6736 Similarly for DERIVES.
6737 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
6738 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
6739 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
6740
6741 * src/derives.c (derives_compute): Do not bother invoking
6742 int_of_rule_number, since rule numbers are integers.
6743
6744 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
6745 rather than XMALLOC (char, N).
6746
6747 * src/files.c (filename_split): Rewrite to avoid cast.
6748
6749 * src/gram.h (symbol_number_as_item_number,
6750 item_number_as_symbol_number, rule_number_as_item_number,
6751 item_number_as_rule_number):
6752 Now inline functions rather than macros, to avoid casts.
6753 * src/state.h (state_number_as_int): Likewise.
6754 * src/tables.c (state_number_to_vector_number,
6755 symbol_number_to_vector_number): Likewise.
6756
6757 * src/gram.h (int_of_rule_number): Remove; no longer used.
6758
6759 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
6760 since the resulting storage is always stored into.
6761
6762 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
6763 where it's needed.
6764
6765 * src/muscle_tab.c (muscle_m4_output):
6766 Now inline. Return bool, not int.
6767 * src/state.c (state_compare): Likewise.
6768 * src/symtab.c (symbol_check_defined,
6769 symbol_check_alias_consistency, symbol_pack, symbol_translation,
6770 hash_compare_symbol, hash_symbol):
6771 Likewise.
6772 * src/uniqstr.c (uniqstr_print): Likewise.
6773 * src/muscle_tab.c (muscle_m4_output_processor):
6774 New function, to avoid casts.
6775 * src/state.c (state_comparator, stage_hasher): Likewise.
6776 * src/symtab.c (symbol_check_defined_processor,
6777 symbol_check_alias_consistency_processor, symbol_pack_processor,
6778 symbol_translation_processor, hash_symbol_comparator,
6779 hash_symbol_hasher): Likewise.
6780 * src/uniqstr.c (uniqstr_print_processor): Likewise.
6781 * src/muscle_tab.c (muscles_m4_output):
6782 Use new functions instead of casting old functions unportably.
6783 * src/state.c (state_hash_new): Likewise.
6784 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
6785 symbols_token_translations_init):
6786 Likewise.
6787 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
6788
6789 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
6790 var instead of casting to long, to avoid casts.
6791 (prepare_states): Use MALLOC rather than alloca, so that we don't
6792 have to worry about alloca.
6793 * src/state.c (state_hash_lookup): Likewise.
6794
6795 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
6796 local var instead of casting to unsigned char, to avoid casts.
6797
6798 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
6799 STATE_ALLOC): Remove.
6800 (transitions_new, errs_new, reductions_new, state_new): Use malloc
6801 rather than calloc, and use offsetof to avoid allocating slightly
6802 too much storage.
6803 (state_new): Initialize all members.
6804
6805 * src/state.c (state_hash): Use unsigned accumulator, not signed.
6806
6807 * src/symtab.c (symbol_free): Remove; unused.
6808 (symbol_get): Remove cast in lhs of assignment.
6809 (symbols_do): Now static. Accept generic arguments, not
6810 hashing-related ones.
6811
6812 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
6813 (symbol_processor): Remove.
6814 (symbols_do): Remove decl; now static.
6815
6816 * src/system.h (alloca): Remove; decl no longer needed.
6817 (<stddef.h>): Include, for offsetof.
6818 (<inttypes.>, <stdint.h>): Include if available.
6819 (uintptr_t): New type, if system lacks it.
6820 (CALLOC, MALLOC, REALLOC): New macros.
6821 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
6822 new macros.
6823
6824 * src/tables.c (table_size): Now int, to pacify GCC.
6825 (table_grow, table_ninf_remap): Use signed table size.
6826 (save_row): Don't bother initializing locals when not needed.
6827 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
6828 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
6829
6830 * src/vcg.h: Correct misspellings.
6831
6832 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
6833
6834
6835 * src/getargs.c (getargs): Don't assume EOF == -1.
6836
6837 2002-12-09 Paul Eggert <eggert@twinsun.com>
6838
6839 Change identifier spellings to avoid collisions with names
6840 that are reserved by POSIX.
6841
6842 Don't use names ending in _t, since POSIX reserves them.
6843 For consistency, remove _e and _s endings -- they're weren't
6844 needed to remove ambiguity. All uses changed.
6845 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
6846 turn was just renamed from struniq_t.
6847 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
6848 which in turn was just renamed from struniq_processor_t.
6849 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
6850 in turn was renamed from hash_compare_struniq_t.
6851 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
6852 (state_list): Renamed from state_list_t.
6853 * src/assoc.h (assoc): Renamed from assoc_t.
6854 * src/conflicts.c (enum conflict_resolution): Renamed from
6855 enum conflict_resolution_e.
6856 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
6857 (rule_list): Renamed from rule_list_t.
6858 * src/getargs.h (enum trace): Renamed from enum trace_e.
6859 (enum report): Renamed from enum report_e.
6860 * src/gram.h (item_number): Renamed from item_number_t.
6861 (rule_number): Renamed from rule_number_t.
6862 (struct rule_s): Remove the "rule_s" part; not used.
6863 (rule): Renamed from rule_t.
6864 (rule_filter): Renamed from rule_filter_t.
6865 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
6866 (goto_list): Renamed from goto_list_t.
6867 * src/lalr.h (goto_number): Renamed from goto_number_t.
6868 * src/location.h (location): Renamed from location_t.
6869 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
6870 and moved here from:
6871 * src/muscle_tab.h (muscle_entry_t): here.
6872 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
6873 (rule_list): Renamed from rule_list_t.
6874 * src/print_graph.c (static_graph): Renamed from graph.
6875 * src/reader.h (braced_code): Renamed from braced_code_t.
6876 Remove brace_code_e tag.
6877 * src/relation.h (relation_node): Renamed from relation_node_t.
6878 (relation_nodes): Renamed from relation_nodes_t.
6879 (relation): Renamed from relation_t.
6880 * src/state.h (state_number): Renamed from state_number_t.
6881 (struct state): Renamed from struct state_s.
6882 (state): Renamed from state_t.
6883 (transitions): Renamed from transitions_t. Unused (and
6884 misspelled) transtion_s tag removed.
6885 (errs): Renamed from errs_t. Unused errs_s tag removed.
6886 (reductions): Renamed from reductions_t. Unused tag
6887 reductions_s removed.
6888 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
6889 (struct symbol_list): Renamed from struct symbol_list_s.
6890 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
6891 (struct symbol): Renamed from struct symbol_s.
6892 (symbol): Renamed from symbol_t.
6893 * src/tables.c (vector_number): Renamed from vector_number_t.
6894 (action_number): Renamed from action_t.
6895 * src/tables.h (base_number): Renamed from base_t.
6896 * src/vcg.h (enum color): Renamed from enum color_e.
6897 (enum textmode): Renamed from enum textmode_e.
6898 (enum shape): Renamed from enum shape_e.
6899 (struct colorentry): Renamed from struct colorentry_s.
6900 (struct classname): Renamed from struct classname_s.
6901 (struct infoname): Renamed from struct infoname_s.
6902 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
6903 (enum decision): Renamed from enum decision_e.
6904 (enum orientation): Renamed from enum orientation_e.
6905 (enum alignment): Renamed from enum alignment_e.
6906 (enum arrow_mode): Renamed from enum arrow_mode_e.
6907 (enum crossing_type): Renamed from enum crossing_type_e.
6908 (enum view): Renamed from enum view_e.
6909 (struct node): Renamed from struct node_s.
6910 (node): Renamed from node_t.
6911 (enum linestyle): Renamed from enum linestyle_e.
6912 (enum arrowstyle): Renamed from enum arrowstyle_e.
6913 (struct edge): Renamed from struct edge.
6914 (edge): Renamed from edge_t.
6915 (struct graph): Renamed from struct graph_s.
6916 (graph): Renamed from graph_t.
6917 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
6918 Rename value_t -> value.
6919 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
6920 value_t_as_yystype -> value_as_yystype.
6921
6922 Don't include <errno.h> in the mainstream code, since it
6923 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
6924 * lib/get-errno.c, lib/get-errno.h: New files.
6925 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
6926 get-errno.c.
6927 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
6928 * src/output.c (output_skeleton): Likewise.
6929 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
6930 instead of errno.
6931 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
6932 Likewise.
6933 (handle_action_dollar, handle_action_at): Likewise.
6934 * src/system.h: Do not include <errno.h>.
6935 (TAB_EXT): Renamed from EXT_TAB.
6936 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
6937
6938 Avoid str[a-z]*, since <string.h> reserves that name space.
6939 Change all instances of "struniq" in names to "uniqstr", and
6940 likewise for "STRUNIQ" and "UNIQSTR".
6941 * src/uniqstr.c: Renamed from src/struniq.c.
6942 * src/uniqstr.h: Renamed from src/struniq.h.
6943 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
6944 * src/files.c (strsuffix): Remove; unused.
6945 (concat2): Renamed from stringappend. Now static.
6946 * src/files.h (strsuffix, stringappend): Remove; unused.
6947 * src/parse-gram.y (<chars>): Renamed from <string>.
6948 (<uniqstr>): Renamed from <struniq>.
6949 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
6950 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
6951 (struct graph_s.expand): Renamed from struct graph_s.stretch.
6952 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
6953 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
6954 (N_EXPAND): Renamed from N_STRETCH.
6955
6956 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
6957 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
6958 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
6959 Remove; unused.
6960 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
6961 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
6962 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
6963 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
6964 (BASE_MAXIMUM): Renamed from BASE_MAX.
6965 (BASE_MINIMUM): Renamed from BASE_MIN.
6966 (ACTION_MAX): Remove; unused.
6967 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
6968 Unnecessary casts removed from above defines.
6969
6970
6971 Fix misspelling in names.
6972 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
6973 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
6974 G_NODE_ALIGNEMENT.
6975
6976
6977 * lib/timevar.c (timevar_report): Renamed from time_report,
6978 for consistency with other names.
6979 * lib/timevar.h (timevar_report): New decl.
6980 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
6981
6982
6983 Sort include-file uses.
6984
6985 Reorder all include files under src to be in the order "system.h".
6986 then the ../lib include files in angle brackets (alphabetized),
6987 then the . include files in double-quotes (alphabetized). Fix
6988 dependency breakages encountered in this process, as follows:
6989 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
6990 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
6991 * src/state.h: Include "symtab.h".
6992
6993 2002-12-08 Paul Eggert <eggert@twinsun.com>
6994
6995 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
6996 since this causes problems when __file__ contains character
6997 sequences like "@" that are treated specially by src/scan-skel.l.
6998 Instead, just use the file's basename. This fixes the bug
6999 reported by Martin Mokrejs in
7000 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
7001
7002 2002-12-06 Paul Eggert <eggert@twinsun.com>
7003
7004 Add support for rules that do not have trailing semicolons, as
7005 POSIX requires. Improve the quality of locations in Bison
7006 diagnostics.
7007
7008 * src/location.c: Include <quotearg.h>.
7009 (empty_location): Now const.
7010 (location_print): New function. Follow the recommendation of the
7011 GNU Coding Standards for locations that span file boundaries.
7012 * src/location.h: Do not include <quotearg.h>; no longer needed.
7013 (boundary): New type.
7014 (location_t): Use it. This allows locations to span file boundaries.
7015 All member uses changed: file -> start.file or end.file (as needed),
7016 first_line -> start.line, first_column -> start.column,
7017 last_line -> end.line, last_column -> end.column.
7018 (equal_boundaries): New function.
7019 (LOCATION_RESET, LOCATION_STEP): Remove.
7020 (LOCATION_PRINT): Remove. All callers changed to use location_print.
7021 (empty_location): Now const.
7022 (location_print): New decl.
7023 * src/parse-gram.y (lloc_default): New function, which handles
7024 empty locations more accurately.
7025 (YYLLOC_DEFAULT): Use it.
7026 (%token COLON): Remove.
7027 (%token ID_COLON): New token.
7028 (rules): Use it.
7029 (declarations, rules): Remove trailing semicolon.
7030 (declaration, rules_or_grammar_declaration):
7031 Allow empty (";") declaration.
7032 (symbol_def): Remove empty actions; no longer needed.
7033 (rules_or_grammar_declaration): Remove trailing semicolon.
7034 (semi_colon.opt): Remove.
7035 * src/reader.h: Include location.h.
7036 (scanner_cursor): New decl.
7037 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
7038 rolling our own.
7039 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
7040 of *loc.
7041 (STEP): Remove. No longer needed, now that adjust_location does
7042 the work. All uses removed.
7043 (scanner_cursor): New var.
7044 (adjust_location): Renamed from extend_location. It now sets
7045 *loc and adjusts the scanner cursor. All uses changed.
7046 Don't bother testing for CR.
7047 (handle_syncline): Remove location arg; now updates scanner cursor.
7048 All callers changed.
7049 (unexpected_end_of_file): Now accepts start boundary of token or
7050 comment, not location. All callers changed. Update scanner cursor,
7051 not the location.
7052 (SC_AFTER_IDENTIFIER): New state.
7053 (context_state): Renamed from c_context. All uses changed.
7054 (id_loc, code_start, token_start): New local vars.
7055 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
7056 processing of Yacc white space and equivalents here.
7057 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
7058 instead of returning ID immediately, since we need to search for
7059 a subsequent colon.
7060 (<INITIAL>"'", "\""): Save token_start.
7061 (<INITIAL>"%{", "{", "%%"): Save code_start.
7062 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
7063 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
7064 BEGIN context_state at end, not INITIAL.
7065 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
7066 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
7067 Return correct token start.
7068 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
7069 the start of a character, string or multiline comment is found.
7070 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
7071 Reduction): Adjust reported locations to match the more-precise
7072 results now expected.
7073 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
7074 * tests/reduce.at (Useless Rules, Reduced Automaton,
7075 Underivable Rules): Likewise.
7076 * tests/regression.at (Invalid inputs): No longer `expecting ";"
7077 or "|"' now that so many other tokens are allowed by the new grammar.
7078
7079 * src/complain.h (current_file): Remove duplicate decl;
7080 current_file is now owned by files.h.
7081 * src/complain.c, src/scan-gram.l: Include files.h.
7082
7083 2002-12-06 Paul Eggert <eggert@twinsun.com>
7084
7085 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
7086 promotes to int; it might be unsigned int.
7087 * data/yacc.c (yy_reduce_print): Likewise.
7088
7089 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
7090 be #defined in the prologue, not in the Bison declarations.
7091 This fixes Debian Bug 102878, reported by Shaul Karl.
7092
7093 2002-12-02 Paul Eggert <eggert@twinsun.com>
7094
7095 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
7096 * lib/strtoul.c: New file, from gnulib.
7097 This fixes a porting bug reported by Peter Klein in
7098 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
7099
7100 2002-11-30 Paul Eggert <eggert@twinsun.com>
7101
7102 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
7103 and put only a forward declaration in the prologue. This is for
7104 consistency with the other scanner helper functions.
7105
7106 Type clashes now generate warnings, not errors, since it
7107 appears that POSIX may allow some grammars with type clashes.
7108 * src/reader.c (grammar_current_rule_check): Warn about
7109 type clashes instead of complaining.
7110 * tests/input.at (Type Clashes): Expect warnings, not complaints.
7111
7112 Add Yacc library, since POSIX requires it.
7113 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
7114 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
7115 * lib/main.c, lib/yyerror.c: New files.
7116
7117 gram_error can be static; it need not be extern.
7118 * src/reader.h (gram_error): Remove decl.
7119 * src/parse-gram.y (gram_error): Now static. Add static decl.
7120 (print_token_value): Omit parameter names from forward decl,
7121 for consistency.
7122
7123 2002-11-29 Paul Eggert <eggert@twinsun.com>
7124
7125 * doc/bison.texinfo: Emphasize that yylex and yyerror must
7126 be declared before being used. E.g., one should typically
7127 declare them in the prologue. Use GNU coding style in examples.
7128 Put "const" consistently after the type it modifies. Mention
7129 that C99 supports "inline". Mention that yyerror traditionally
7130 returns "int".
7131
7132 %parse-param and %lex-param now take just one argument, the
7133 declaration; the argument name is deduced from the declaration.
7134
7135 * doc/bison.texinfo (Parser Function, Pure Calling, Error
7136 Reporting, Table of Symbols): Document this.
7137 * src/parse-gram.y (add_param): New function.
7138 (COMMA): Remove.
7139 (declaration): Implement new rule for %parse-param and %lex-param.
7140 * src/scan-gram.l: "," now elicits a warning, rather than being
7141 a token; this is more compatible with byacc.
7142 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
7143
7144 2002-11-27 Paul Eggert <eggert@twinsun.com>
7145
7146 Rename identifiers to avoid real and potential collisions.
7147
7148 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
7149 to avoid collision with lex macro described by Bruce Lilly in
7150 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
7151 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
7152 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
7153 * src/parse-gram.y (print_token_value): Renamed from yyprint.
7154 All uses changed.
7155 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
7156 The name "yycontrol" violates the name space rules, and this stuff
7157 wasn't being used anyway.
7158 (input): Remove action; this stuff wasn't being used.
7159 (gram_error): Rename local variable yylloc -> loc.
7160 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
7161 (YY_DECL): Don't use "yy" at start of local variables.
7162 All uses changed, e.g., yylloc -> loc.
7163 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
7164 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
7165 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
7166 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
7167
7168 * src/parse-gram.y (gram_error): loc is now const *.
7169 * src/reader.h (gram_error): Likewise.
7170
7171 2002-11-24 Paul Eggert <eggert@twinsun.com>
7172
7173 Version 1.75c.
7174
7175 * tests/actions.at (Actions after errors): Use an output format
7176 more similar to that of the Printers and Destructors test.
7177 Test the position of the ';' token too.
7178 (Printers and Destructors): Likewise.
7179 (Printers and Destructors: %glr-parser): Remove for now, to avoid
7180 unnecessarily alarming people when the test fails.
7181
7182 * data/yacc.c (yyerrlab1): Move this label down, so that the
7183 parser does not discard the lookahead token if the user code
7184 invokes YYERROR. This change is required for POSIX conformance.
7185
7186 * lib/error.c: Sync with gnulib.
7187
7188 2002-11-22 Paul Eggert <eggert@twinsun.com>
7189
7190 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
7191 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
7192 * lib/xmalloc.c: Likewise.
7193
7194 2002-11-20 Paul Eggert <eggert@twinsun.com>
7195
7196 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
7197
7198 2002-11-20 Paul Eggert <eggert@twinsun.com>
7199
7200 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
7201 should use `if (! x) abort ();' rather than `assert (x);', and
7202 anyway it's one less thing to worry about configuring.
7203
7204 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
7205 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
7206 and replace all instances of assert with abort.
7207 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7208 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
7209
7210 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
7211 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
7212 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
7213 hash_find_entry, hash_rehash, hash_insert): Likewise.
7214 * src/conflicts.c (resolve_sr_conflict): Likewise.
7215 * src/lalr.c (set_goto_map, map_goto): Likewise.
7216 * src/nullable.c (nullable_compute): Likewise.
7217 * src/output.c (prepare_rules, token_definitions_output): Likewise.
7218 * src/reader.c (packgram, reader): Likewise.
7219 * src/state.c (state_new, state_free, state_transitions_set,
7220 state_reduction_find): Likewise.
7221 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
7222 symbol_pack): Likewise.
7223 * src/tables.c (conflict_row, pack_vector): Likewise.
7224 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
7225 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
7226 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
7227 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
7228
7229 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
7230 (ARGMATCH_CONSTRAINT): New macro.
7231 (ARGMATCH_ASSERT): Use it.
7232
7233 * src/system.h (verify): New macro.
7234 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
7235 rather than assert.
7236 * src/tables.c (tables_generate): Likewise.
7237
7238 * src/struniq.c (struniq_assert): Now returns void, and aborts
7239 if the assertion is false.
7240 (struniq_assert_p): Remove.
7241 * src/struniq.h: Likewise.
7242
7243 2002-11-18 Paul Eggert <eggert@twinsun.com>
7244
7245 * data/glr.c (yygetLRActions): Replace `yyindex' with
7246 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
7247 This fixes the regression with Sun ONE Studio 7 cc that I reported in
7248 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
7249
7250 2002-11-18 Akim Demaille <akim@epita.fr>
7251
7252 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
7253 space.
7254 From Tim Van Holder.
7255
7256 2002-11-17 Paul Eggert <eggert@twinsun.com>
7257
7258 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
7259 to "SyntaxError" for consistency with my 2002-11-15 change.
7260
7261 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
7262 not define to {}, since this breaks the common use of `YYDPRINTF
7263 ((...));' if a single statement is desired (e.g. before `else').
7264 Work around GCC warnings by surrounding corresponding calls with
7265 {} if needed.
7266 (yyhasResolvedValue): Remove unused function.
7267 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
7268 loop body.
7269 (yyreportSyntaxError): Renamed from yyreportParseError.
7270 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
7271 All uses changed.
7272 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
7273 extern when possible. Remove unused initializations.
7274
7275 2002-11-16 Akim Demaille <akim@epita.fr>
7276
7277 Augment the similarity between GLR and LALR traces.
7278
7279 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
7280 (YY_REDUCE_PRINT): New.
7281 (yyparse): Use them.
7282 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
7283 YYDPRINT here.
7284 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
7285 state reached after the reduction/recovery, since...
7286 (yyparse, yyprocessOneStack): Report the state we are entering in.
7287
7288 2002-11-16 Akim Demaille <akim@epita.fr>
7289
7290 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
7291 Add support for --trace=skeleton.
7292 * src/scan-skel.l: %option debug.
7293 Scan strings of non-@ or \n instead of character by character.
7294 (scan_skel): Handle trace_skeleton.
7295 (QPUTS): New.
7296 (@output_parser_name@, @output_header_name@): ``Restore'' their
7297 support (used to be M4 macros).
7298 * data/yacc.c: Quote larger chunks, a la glr.c.
7299 * data/lalr1.cc: Likewise.
7300 The header guards are no longer available, so use some other
7301 string than `YYLSP_NEEDED'.
7302
7303 2002-11-16 Akim Demaille <akim@epita.fr>
7304
7305 Make the ``Printers and Destructors'' test more verbose, taking
7306 `yacc.c''s behavior as (possibly wrong) reference.
7307
7308 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
7309 instead of fprint on stdout.
7310 Set and report the last_line of the symbols.
7311 Consistently display values and locations.
7312
7313 2002-11-16 Paul Eggert <eggert@twinsun.com>
7314
7315 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
7316
7317 2002-11-15 Paul Eggert <eggert@twinsun.com>
7318
7319 * tests/actions.at (Actions after errors): New test case.
7320
7321 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
7322 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
7323 tests/action.at, tests/calc.at, tests/conflicts.at,
7324 tests/cxx-type.at, tests/regression.at:
7325 "parse error" -> "syntax error" for POSIX compatibility.
7326 "parsing stack overflow..." -> "parser stack overflow" so
7327 that code matches Bison documentation.
7328
7329 2002-11-15 Akim Demaille <akim@epita.fr>
7330
7331 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
7332 take two BRACED_CODE, not two string_content.
7333 Free the scanner's obstack when we are done.
7334 (code_content): New.
7335 * tests/calc.at: Adjust.
7336 * doc/bison.texinfo: Adjust.
7337 Also, make sure to include the `,' for these declarations.
7338
7339 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
7340
7341 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
7342 definition; avoids potential autoreconf problems.
7343
7344 2002-11-15 Akim Demaille <akim@epita.fr>
7345
7346 Always check the value returned by yyparse.
7347
7348 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
7349 returned by yyparse.
7350 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
7351 Adjust calls.
7352 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
7353 returned by yyparse.
7354
7355 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7356
7357 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
7358 on input.at test.
7359
7360 2002-11-14 Paul Eggert <eggert@twinsun.com>
7361
7362 * src/output.c (output_skeleton): Call xfopen instead of
7363 duplicating xfopen's body.
7364
7365 Fix bugs reported by Nelson H. F. Beebe in
7366 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
7367
7368 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
7369 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
7370 Group compiler. Instead, use "$CC -E bar.c". Include the .h
7371 file twice in the grammar, as an extra check.
7372
7373 * tests/input.at (Torturing the Scanner): Surround the
7374 backslash-newline tests with "#if 0", to make it less likely that
7375 we'll run into compiler bugs. Bring back solitary \ inside
7376 comment, but add a closing comment to work around HP C bug. Don't
7377 test backslash-newline in C character constant.
7378
7379 2002-11-14 Akim Demaille <akim@epita.fr>
7380
7381 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
7382 status of the compiler.
7383 Calling `exit 1' is no longer needed.
7384 Reported by Nelson H. F. Beebe.
7385
7386 2002-11-14 Akim Demaille <akim@epita.fr>
7387
7388 * tests/atlocal.in (CPPFLAGS): We have config.h.
7389 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
7390 New.
7391 * tests/actions.at, tests/calc.at, tests/conflicts.at,
7392 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
7393 * tests/regression.at, tests/torture.at: Use them for all the
7394 grammars that are to be compiled.
7395 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
7396 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
7397 * doc/bison.texinfo (GLR Parsers): Document `inline'.
7398
7399 2002-11-14 Akim Demaille <akim@epita.fr>
7400
7401 * doc/bison.texinfo: Various formatting changes (alignments in
7402 samples, additional @group/@end group, GCS in samples.
7403 Use @deffn instead of simple @table to define the directives,
7404 macros, variables etc.
7405
7406 2002-11-13 Paul Eggert <eggert@twinsun.com>
7407
7408 Fix some bugs reported by Albert Chin-A-Young in
7409 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
7410
7411 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
7412 -o c"; the HP C compiler chatters during compilation.
7413 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
7414 * tests/headers.at (export YYLTYPE): Likewise.
7415
7416 * tests/input.at (Torturing the Scanner): Remove lines containing
7417 solitary backslashes, as they tickle a bug in the HP C compiler.
7418
7419 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
7420 comments, since they're not portable. Use GNU coding style.
7421
7422 2002-11-13 Akim Demaille <akim@epita.fr>
7423
7424 * data/yacc.c: Leave bigger chunks of quoted text.
7425 (YYDSYMPRINTF): New.
7426 Use it to report symbol activities.
7427 * data/glr.c (YYDSYMPRINTF): New.
7428 Use it.
7429
7430 2002-11-12 Paul Eggert <eggert@twinsun.com>
7431
7432 Version 1.75b.
7433
7434 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
7435 (yyglrReduce): Return yyok, not 0.
7436 This should avoid the enumerated-type warnings reported
7437 by Nelson H. F. Beebe in
7438 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
7439
7440 * lib/bbitset.h (BITSET_INLINE): Remove.
7441 * lib/bitset.h [! BITSET_INLINE]: Remove.
7442 (bitset_set, bitset_reset, bitset_test): Rename local vars
7443 to avoid shadowing warnings by GCC.
7444
7445 * data/glr.c (inline): Remove #define. It's the user's
7446 responsibility to #define it away, just like 'const'.
7447 This fixes one of the bugs reported by Nelson H. F. Beebe in
7448 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
7449
7450 * Makefile.maint (po-check): Scan .l and .y files instead of the
7451 .c and the .h files that they generate. This fixes the bug
7452 reported by Tim Van Holder in:
7453 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
7454 Look for N_ as well as for _. Try to avoid matching #define for
7455 N_ and _.
7456 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
7457 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
7458 * src/scan-gram.l: Revamp regular expressions so that " and '
7459 do not confuse xgettext.
7460
7461 * src/struniq.h (struniq_new): Do not declare the return type
7462 to be 'const'; this violates the C standard.
7463 * src/struniq.c (struniq_new): Likewise.
7464
7465 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
7466
7467 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
7468 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
7469 linker.
7470
7471 2002-11-12 Akim Demaille <akim@epita.fr>
7472
7473 * Makefile.maint: Sync with Autoconf:
7474 (local_updates): New.
7475
7476 2002-11-12 Akim Demaille <akim@epita.fr>
7477
7478 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
7479
7480 2002-11-12 Akim Demaille <akim@epita.fr>
7481
7482 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
7483 locations.
7484
7485 2002-11-12 Akim Demaille <akim@epita.fr>
7486
7487 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
7488 not yyvalue.
7489
7490 2002-11-12 Akim Demaille <akim@epita.fr>
7491
7492 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
7493 Use it to test the GLR parser.
7494
7495 2002-11-12 Akim Demaille <akim@epita.fr>
7496
7497 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
7498 defines it.
7499 * data/glr.c (yystos): New.
7500 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
7501 (YYDSYMPRINT): New.
7502 (yyval): Don't define it, it is handled via M4.
7503 (yyrecoverParseError): Free verbosely the discarded symbols.
7504 * data/yacc.c (yysymprint): Remove, rather...
7505 (b4_yysymprint_generate): invoke.
7506 * data/c.m4 (b4_yysymprint_generate): New.
7507 Accept pointers as arguments, as opposed to the version from
7508 yacc.c.
7509 (b4_yydestruct_generate): Likewise.
7510 * tests/cations.at (Printers and Destructors): Use Bison directives
7511 instead of CPP macros.
7512 Don't rely on internal details.
7513
7514 2002-11-12 Akim Demaille <akim@epita.fr>
7515
7516 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
7517 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
7518 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
7519 it against YYEMPTY and so forth), work on yytoken (i.e., set
7520 it to YYEMPTY etc.).
7521 (yydestruct): Replace with a b4_yydestruct_generate invocation.
7522 (b4_symbol_actions): Remove.
7523 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
7524 for 0, end-of-input.
7525
7526 2002-11-12 Akim Demaille <akim@epita.fr>
7527
7528 * doc/bison.texinfo (Destructor Decl): New.
7529
7530 2002-11-12 Akim Demaille <akim@epita.fr>
7531
7532 * src/tables.c (tables_generate): Use free for pointers that
7533 cannot be NULL, not XFREE.
7534 (pack_vector): Use assert, not fatal, for bound violations.
7535 * src/state.c (state_new): Likewise.
7536 * src/reader.c (reader): Likewise.
7537 * src/lalr.c (set_goto_map): Likewise.
7538 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
7539 the file name.
7540
7541 2002-11-12 Akim Demaille <akim@epita.fr>
7542
7543 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
7544 Restore.
7545 * src/scan-gram.l (last_string): Is global to the file, not to
7546 yylex.
7547 * src/parse-gram.y (input): Don't append the epilogue here,
7548 (epilogue.opt): do it here, and free the scanner's obstack.
7549 * src/reader.c (epilogue_set): Rename as...
7550 (epilogue_augment): this.
7551 * data/c.m4 (b4_epilogue): Defaults to empty.
7552
7553 2002-11-12 Akim Demaille <akim@epita.fr>
7554
7555 * src/getargs.c (long_options): Remove duplicates.
7556 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
7557 Remove.
7558 * doc/bison.rnh: Remove.
7559 * doc/bison.texinfo (VMS Invocation): Remove.
7560
7561 2002-11-12 Akim Demaille <akim@epita.fr>
7562
7563 * src/struniq.h, src/struniq.c (struniq_t): Is const.
7564 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
7565
7566 Use struniq for symbols.
7567
7568 * src/symtab.h (symbol_t): The tag member is a struniq.
7569 (symbol_type_set): Adjust.
7570 * src/symtab.c (symbol_new): Takes a struniq.
7571 (symbol_free): Don't free the tag member.
7572 (hash_compare_symbol_t, hash_symbol_t): Rename as...
7573 (hash_compare_symbol, hash_symbol): these.
7574 Use the fact that tags as struniqs.
7575 (symbol_get): Use struniq_new.
7576 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
7577 Returns a strniq.
7578 * src/reader.h (merger_list, grammar_currentmerge_set): The name
7579 and type members are struniqs.
7580 * src/reader.c (get_merge_function)
7581 (grammar_current_rule_merge_set): Adjust.
7582 (TYPE, current_type): Are struniq.
7583
7584 Use struniq for file names.
7585
7586 * src/files.h, src/files.c (infile): Split into...
7587 (grammar_file, current_file): these.
7588 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
7589 * src/reduce.c (reduce_print): Likewise.
7590 * src/getargs.c (getargs): Likewise.
7591 * src/complain.h, src/complain.c: Likewise.
7592 * src/main.c (main): Call struniqs_new early enough to use it for
7593 file names.
7594 Don't free the input file name.
7595
7596 2002-11-12 Akim Demaille <akim@epita.fr>
7597
7598 * src/symtab.c (symbol_free): Remove dead deactivated code:
7599 type_name are properly removed.
7600 Don't use XFREE to free items that cannot be NULL.
7601 * src/struniq.h, src/struniq.c: New.
7602 * src/main.c (main): Initialize/free struniqs.
7603 * src/parse-gram.y (%union): Add astruniq member.
7604 (yyprint): Adjust.
7605 * src/scan-gram.l (<{tag}>): Return a struniq.
7606 Free the obstack bit that used to store it.
7607 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
7608
7609 2002-11-11 Paul Eggert <eggert@twinsun.com>
7610
7611 Revamp to fix many (but not all) of the C- and M4-related quoting
7612 problems. Among other things, this fixes the Bison bug reported
7613 by Jan Hubicka when processing the Bash grammar; see:
7614 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7615
7616 Use new @ escapes consistently. Represent brackets with @{ and @}
7617 rather than @<:@ and @:>@, since this works a bit better with dumb
7618 editors like vi. Represent @ with @@, since @ is now consistently
7619 an escape. Use @oline@ and @ofile@ rather than __oline__ and
7620 __ofile__, to avoid unexpected expansions. Similarly, use @output
7621 rather than #output.
7622
7623 * data/c.m4 (b4_copyright): Omit file name from comment, since
7624 the file name could contain "*/".
7625 (b4_synclines_flag): Don't quote the 2nd argument; it should already
7626 be quoted. All uses changed.
7627
7628 * data/glr.c: Use new @ escapes consistently.
7629 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
7630 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
7631 Remove, since they couldn't handle arbitrary characters in file
7632 names.
7633 * data/lalr1.cc: Likewise.
7634 * data/yacc.c: Likewise.
7635
7636 * src/files.c (output_infix): Remove; all uses removed.
7637 * src/files.h: Likewise.
7638
7639 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
7640 mishandled funny characters in file names, and anyway it isn't
7641 needed any more.
7642 * data/yacc.c: Likewise.
7643 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
7644
7645 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
7646 * data/yacc.c: Likewise.
7647
7648 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
7649 strings now.
7650 (muscle_init): Quote filename as a C string.
7651 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
7652 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
7653 * src/output.c (escaped_file_name_output): New function.
7654 (prepare_symbols): Quote tokens for M4.
7655 (prepare): Don't insert output_infix, output_prefix,
7656 output_parser_name, output_header_name; this is now down by scan-skel.
7657 Insert skeleton as a C string.
7658
7659 * src/output.c (user_actions_output, symbol_destructors_output,
7660 symbol_printers_output): Quote filenames for C and M4.
7661 * src/reader.c (prologue_augment, epilogue_set): Likewise.
7662
7663 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
7664 escapes other than \\ and \'; this simplifies the code.
7665 (<SC_STRING>): Likewise, for \\ and \".
7666 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
7667 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
7668 Use new escapes @{ and @} for [ and ].
7669
7670 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
7671 them with auto vars.
7672 Switch to new escape scheme, where @ is the escape character uniformly.
7673 Abort if a stray escape character is found. Avoid unbounded input
7674 buffer when parsing non-escaped text.
7675
7676 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
7677 __oline__, #output, $@, and @{ do not have unintended meanings.
7678
7679 2002-11-09 Paul Eggert <eggert@twinsun.com>
7680
7681 Fix the test failure due to GCC warnings described in
7682 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
7683 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
7684 evaluate to 0 if it's impossible for NINF to be in the respective
7685 table.
7686 (yygetLRActions, yyrecoverParseError): Use them.
7687
7688 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
7689 counted in the token inserted at end of file. Now takes
7690 location_t *, not location_t, so that the location can be
7691 adjusted. All uses changed.
7692
7693 * tests/regression.at (Invalid inputs): Adjust wording in
7694 diagnostic to match the new behavior.
7695
7696 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
7697 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
7698 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
7699 abort ();'. This reduces the runtime of the "Many lookaheads"
7700 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
7701 GCC 3.2.
7702
7703 2002-11-07 Paul Eggert <eggert@twinsun.com>
7704
7705 * src/parse-gram.y (CHARACTER): Remove unused token.
7706 All uses removed.
7707
7708 * src/scan-gram.l: Remove stack option. We no longer use the
7709 stack, since the stack was never deeper than 1; instead, use the
7710 new auto var c_context to record the stacked value.
7711
7712 Remove nounput option. At an unexpected end of file, we now unput
7713 the minimal input necessary to end cleanly; this simplifies the
7714 code.
7715
7716 Avoid unbounded token sizes where this is easy.
7717
7718 (unexpected_end_of_file): New function.
7719 Use it to systematize the error message on unexpected EOF.
7720 (last-string): Now auto, not static.
7721 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
7722 (scanner_last_string_free): Remove; not used.
7723 (percent_percent_count): Move decl to just before use.
7724 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
7725 not the (never otherwised-used) CHARACTER.
7726
7727 2002-11-07 Akim Demaille <akim@epita.fr>
7728
7729 Let yyerror always receive the msg as last argument, so that
7730 yyerror can be variadic.
7731
7732 * data/yacc.c (b4_yyerror_args): New.
7733 Use it when calling yyerror.
7734 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
7735 Use it when calling yyerror.
7736 * doc/bison.texinfo (Error Reporting): Adjust.
7737 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
7738 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
7739
7740 2002-11-06 Akim Demaille <akim@epita.fr>
7741
7742 #line should have quoted strings.
7743 Ideally, this should be done by m4_quotearg.
7744
7745 * src/scan-skel.l: Include quotearg.h.
7746 Quote __ofile__.
7747 * src/output.c (symbol_printers_output)
7748 (symbol_destructors_output): Quote the file name.
7749
7750 2002-11-06 Akim Demaille <akim@epita.fr>
7751
7752 * tests/regression.at (Invalid inputs): Adjust to the recent
7753 messages.
7754
7755 2002-11-06 Akim Demaille <akim@epita.fr>
7756
7757 Restore --no-lines.
7758 Reported by Jim Kent.
7759
7760 * data/c.m4 (b4_syncline): New.
7761 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
7762 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
7763 * src/output.c (user_actions_output): Likewise.
7764 (prepare): Define 'b4_synclines_flag'.
7765 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
7766
7767 2002-11-06 Akim Demaille <akim@epita.fr>
7768
7769 * src/main.c (main): Free `infile'.
7770 * src/scan-gram.l (handle_syncline): New.
7771 Recognize `#line'.
7772 * src/output.c (user_actions_output, symbol_destructors_output)
7773 (symbol_printers_output): Use the location's file name, not
7774 infile.
7775 * src/reader.c (prologue_augment, epilogue_set): Likewise.
7776
7777 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7778
7779 * src/tables.c (matching_state): Don't allow states to match if
7780 either has GLR conflict entries.
7781
7782 2002-11-05 Paul Eggert <eggert@twinsun.com>
7783
7784 * src/scan-gram.l: Use more accurate diagnostics, e.g.
7785 "integer out of range" rather than "invalid value".
7786 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
7787 accordingly.
7788
7789 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
7790 Also, remove one static variable in the scanner.
7791
7792 * src/scan-gram.l (braces_level): Now auto, not static.
7793 Initialize to zero if the compiler is being picky.
7794 (INITIAL): Clear braces_level instead of incrementing it.
7795 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
7796 as POSIX 1003.1-2001 requires.
7797 * src/system.h (IF_LINT): New macro, taken from coreutils.
7798 * configure.ac: Define "lint" if --enable-gcc-warnings.
7799
7800 2002-11-05 Akim Demaille <akim@epita.fr>
7801
7802 * src/scan-gram.l: When it starts with `%', complain about the
7803 whole directive, not just that `invalid character: %'.
7804
7805 2002-11-04 Akim Demaille <akim@epita.fr>
7806
7807 * Makefile.maint: Update from Autoconf.
7808 (update, cvs-update, po-update, do-po-update): New.
7809
7810 2002-11-04 Akim Demaille <akim@epita.fr>
7811
7812 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
7813 and yyerror.
7814 Have yyerror `use' its arguments.
7815 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
7816 returns true when location & yacc & pure & parse-param.
7817 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
7818
7819 2002-11-04 Akim Demaille <akim@epita.fr>
7820
7821 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
7822 clashes.
7823 * src/scan-gram.l: Use [\'] instead of ['] to pacify
7824 font-lock-mode.
7825 Use complain_at.
7826 Use quote, not quote_n since LOCATION_PRINT no longer uses the
7827 slot 0.
7828
7829 2002-11-03 Paul Eggert <eggert@twinsun.com>
7830
7831 * src/reader.c (get_merge_function, grammar_current_rule_check):
7832 Use consistent diagnostics for reporting type name clashes.
7833 Quote the types with <>, for consistency with Yacc.
7834 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
7835
7836 2002-11-03 Akim Demaille <akim@epita.fr>
7837
7838 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
7839 New.
7840 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
7841 (b4_parse_param): Remove.
7842 Use b4_identification.
7843 Propagate b4_pure_args where needed to pass them to yyerror.
7844 * data/glr.m4 (b4_parse_param): Remove.
7845 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
7846 (b4_lpure_formals): New.
7847 Use b4_identification.
7848 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
7849 b4_user_formals and b4_user_args.
7850 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
7851 (yyreportAmbiguity): When using a pure parser, also need
7852 the location, and the parse-params.
7853 Adjust callers.
7854 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
7855 When using a pure parser, also need the parse-params.
7856 Adjust callers.
7857 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
7858 (%pure-parser + %parse-param) LALR and GLR parsers.
7859 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
7860 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
7861 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
7862 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
7863 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
7864 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
7865 * doc/bison.texinfo: Untabify the whole file.
7866 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
7867 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
7868 (Error Reporting): Adjust to these new directives.
7869 Document %error-verbose, deprecate YYERROR_VERBOSE.
7870
7871 2002-11-03 Akim Demaille <akim@epita.fr>
7872
7873 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
7874 AT_CHECK_CALC_GLR invocations to use % directives, instead of
7875 command line options.
7876 * tests/cxx-type.at: Formatting changes.
7877
7878 2002-11-03 Paul Eggert <eggert@twinsun.com>
7879
7880 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
7881 to count columns correctly, and to check for invalid inputs.
7882
7883 Use mbsnwidth to count columns correctly. Account for tabs, too.
7884 Include mbswidth.h.
7885 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
7886 (extend_location): New function.
7887 (YY_LINES): Remove.
7888
7889 Handle CRLF in C code rather than in Lex code.
7890 (YY_INPUT): New macro.
7891 (no_cr_read): New function.
7892
7893 Scan UCNs, even though we don't fully handle them yet.
7894 (convert_ucn_to_byte): New function.
7895
7896 Handle backslash-newline correctly in C code.
7897 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
7898 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
7899 all uses changed.
7900 (tag, splice): New EREs. Do not allow NUL or newline in tags.
7901 Use {splice} wherever C allows backslash-newline.
7902 YY_STEP after space, newline, vertical-tab.
7903 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
7904
7905 (letter, id): Don't assume ASCII; e.g., spell out a-z.
7906
7907 ({int}, handle_action_dollar, handle_action_at): Check for integer
7908 overflow.
7909
7910 (YY_STEP): Omit trailing semicolon, so that it's more like C.
7911
7912 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
7913 as well as \000. Check for UCHAR_MAX, not 255.
7914 Allow \x with an arbitrary positive number of digits, as in C.
7915 Check for overflow here.
7916 Allow \? and UCNs, for compatibility with C.
7917
7918 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
7919 with quote slot used by complain_at.
7920
7921 * tests/input.at: Add tests for backslash-newline, m4 quotes
7922 in symbols, long literals, and funny escapes in strings.
7923
7924 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
7925 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
7926 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
7927 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
7928 * m4/mbswidth.m4: New file, from GNU coreutils.
7929
7930 * doc/bison.texinfo (Grammar Outline): Document // comments.
7931 (Symbols): Document that trigraphs have no special meaning in Bison,
7932 nor is backslash-newline allowed.
7933 (Actions): Document that trigraphs have no special meaning.
7934
7935 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
7936 no longer used.
7937
7938 2002-11-02 Paul Eggert <eggert@twinsun.com>
7939
7940 * src/reader.c: Don't include quote.h; not needed.
7941 (get_merge_function): Reword warning to be consistent with
7942 type clash diagnostic in grammar_current_rule_check.
7943
7944 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
7945 bug in trigraph handling.
7946
7947 * src/output.c (prepare_symbols): When printing token names,
7948 escape "[" as "@<:@" and likewise for "]".
7949
7950 * src/system.h (errno): Remove declaration, as we are now
7951 assuming C89 or better, and C89 guarantees errno.
7952
7953 2002-10-30 Paul Eggert <eggert@twinsun.com>
7954
7955 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
7956 Check for close failures.
7957 * src/files.h (xfclose): Return void, not int, since it always
7958 returned zero.
7959 * src/files.c (xfclose): Likewise. Report I/O error if ferror
7960 indicates one.
7961 * src/output.c (output_skeleton): Use xfclose rather than fclose
7962 and ferror. xfclose now checks ferror.
7963
7964 * data/glr.c (YYLEFTMOST_STATE): Remove.
7965 (yyreportTree): Use a stack-based leftmost state. This avoids
7966 our continuing battles with bogus warnings about initializers.
7967
7968 2002-10-30 Akim Demaille <akim@epita.fr>
7969
7970 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
7971 #if.
7972
7973 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7974
7975 * tests/glr-regr1.at: New test for reported regressions.
7976 * tests/testsuite.at: Add glr-regr1.at test.
7977 * tests/Makefile.am: Add glr-regr1.at test.
7978
7979 2002-10-24 Paul Eggert <eggert@twinsun.com>
7980
7981 Version 1.75a.
7982
7983 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
7984 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
7985 we use malloc. Don't assume 'A' through 'Z' are contiguous.
7986 Don't assume strdup exists; POSIX says its an XSI extension.
7987 Check for buffer overflow on input.
7988
7989 2002-10-24 Akim Demaille <akim@epita.fr>
7990
7991 * src/output.c (output_skeleton): Don't disable M4sugar comments
7992 too soon: it results in comments being expanded.
7993 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
7994 first output.
7995
7996 2002-10-24 Akim Demaille <akim@epita.fr>
7997
7998 * data/yacc.c (m4_int_type): New.
7999 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
8000 char' as only yacc.c wants K&R portability.
8001 * data/glr.c (yysigned_char): Remove.
8002 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
8003 Reported by Quoc Peyrot.
8004
8005 2002-10-23 Paul Eggert <eggert@twinsun.com>
8006
8007 * src/main.c (main): With --trace=time, report times even if a
8008 non-fatal error occurs. Formerly, the times were reported in some
8009 such cases but not in others.
8010 * src/reader.c (reader): Just return if a complaint has been issued,
8011 instead of exiting, so that 'main' can report times.
8012
8013 2002-10-22 Akim Demaille <akim@epita.fr>
8014
8015 * src/system.h: Include sys/types.
8016 Reported by Bert Deknuydt.
8017
8018 2002-10-23 Paul Eggert <eggert@twinsun.com>
8019
8020 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
8021 Suggested by Art Haas.
8022
8023 2002-10-22 Paul Eggert <eggert@twinsun.com>
8024
8025 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
8026 decl; not needed any more.
8027 * src/main.c (main): Use return to exit, undoing yesterday's change.
8028 The last OS that we could find where this wouldn't work is
8029 SunOS 3.5, and that's too old to worry about now.
8030
8031 * data/glr.c (struct yyltype): Define members even when not
8032 doing locations. This is more consistent with yacc.c, and it
8033 works around the following bug reports:
8034 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
8035 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
8036
8037 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
8038 @acronym consistently. Standardize on "Yacc" instead of "YACC",
8039 "Algol" instead of "ALGOL". Give a bit more history about BNF.
8040
8041 2002-10-22 Akim Demaille <akim@epita.fr>
8042
8043 * data/README: New.
8044
8045 2002-10-21 Paul Eggert <eggert@twinsun.com>
8046
8047 Be consistent about 'bool'; the old code used an enum in one
8048 module and an int in another, and this violates the C standard.
8049 * m4/stdbool.m4: New file, from coreutils 4.5.3.
8050 * configure.ac (AC_HEADER_STDBOOL): Add.
8051 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
8052 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
8053 * src/symtab.c (hash_compare_symbol_t): Likewise.
8054 * src/system.h (bool, false, true): Use a definition consistent
8055 with ../lib/hash.c. All uses changed.
8056
8057 * src/complain.c (warning_issued): Renamed from warn_message_count,
8058 so that we needn't worry about integer overflow (!).
8059 Now of type bool. All uses changed.
8060 (complaint_issued): Renamed from complain_message_count; likewise.
8061
8062 * src/main.c (main): Use exit to exit with failure.
8063
8064 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
8065 rather than 1 and 0.
8066 * src/main.c (main): Likewise.
8067 * src/getargs.c (getargs): Likewise.
8068 * src/reader.c (reader): Likewise.
8069
8070 * src/getarg.c (getargs): Remove duplicate code for
8071 "Try `bison --help'".
8072
8073 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
8074 What was that "2" for?
8075
8076 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
8077 * src/getargs.c (usage): Likewise.
8078
8079 * src/getargs.c (getargs): When there are too few operands, report
8080 the last one. When there are too many, report the first extra
8081 one. This is how diffutils does it.
8082
8083 2002-10-20 Paul Eggert <eggert@twinsun.com>
8084
8085 Remove K&R vestiges.
8086 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
8087 * src/complain.c (VA_START): Remove. Assume prototypes.
8088 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
8089 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
8090 fatal): Assume prototypes.
8091 * src/complain.h: Assume prototypes.
8092 * src/system.h (PARAMS): Remove.
8093 Include <limits.h> unconditionally, since it's guaranteeed even
8094 for a freestanding C89 compiler.
8095 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
8096 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8097
8098 2002-10-20 Akim Demaille <akim@epita.fr>
8099
8100 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
8101 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
8102 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
8103 (yyresolveStates, yyresolveAction, yyresolveStack)
8104 (yyprocessOneStack): Use them.
8105 (yy_reduce_print): New.
8106 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
8107
8108 2002-10-20 Akim Demaille <akim@epita.fr>
8109
8110 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
8111 arguments and output `void'.
8112 (b4_c_function): Rename as...
8113 (b4_c_function_def): this.
8114 (b4_c_function_decl, b4_c_ansi_function_def)
8115 (b4_c_ansi_function_decl): New.
8116 Change the interpretation of the arguments: before `int, foo', now
8117 `int foo, foo'.
8118 * data/yacc.c (yyparse): Prototype and define thanks to these.
8119 Adjust b4_c_function_def uses.
8120 * data/glr.c (yyparse): Likewise, but ANSI only.
8121
8122 2002-10-20 Akim Demaille <akim@epita.fr>
8123
8124 * src/output.c (prepare): Move the definition of `tokens_number',
8125 `nterms_number', `undef_token_number', `user_token_number_max'
8126 to...
8127 (prepare_tokens): Here.
8128 (prepare_tokens): Rename as...
8129 (prepare_symbols): this.
8130 (prepare): Move the definition of `rules_number' to...
8131 (prepare_rules): here.
8132 (prepare): Move the definition of `last', `final_state_number',
8133 `states_number' to...
8134 (prepare_states): here.
8135 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
8136
8137 2002-10-20 Akim Demaille <akim@epita.fr>
8138
8139 * src/tables.h, src/tables.c, src/output.c: Comment changes.
8140
8141 2002-10-20 Akim Demaille <akim@epita.fr>
8142
8143 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
8144 * data/c.m4: here.
8145
8146 2002-10-20 Akim Demaille <akim@epita.fr>
8147
8148 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
8149 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
8150 `pair'.
8151 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
8152 `name' to...
8153 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
8154 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
8155 These.
8156
8157 2002-10-19 Paul Eggert <eggert@twinsun.com>
8158
8159 Do not create a temporary file, as that involves security and
8160 cleanup headaches. Instead, use a pair of pipes.
8161 Derived from a suggestion by Florian Krohm.
8162 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
8163 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
8164 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
8165 (BISON_PREREQ_SUBPIPE): Add.
8166 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
8167 Add subpipe.h, subpipe.c.
8168 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
8169 * po/POTFILES.in: Add lib/subpipe.c.
8170 * src/output.c: Include "subpipe.h".
8171 (m4_invoke): Remove decl.
8172 (scan_skel): New decl.
8173 (output_skeleton): Use pipe rather than temporary file for m4 input.
8174 Check that m4sugar.m4 is readable, to avoid deadlock.
8175 Check for pipe I/O error.
8176 * src/scan-skel.l (readpipe): Remove decl.
8177 (scan_skel): New function, to be used in place of m4_invoke.
8178 Read from stream rather than file.
8179
8180 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
8181 float, as this generates a warning on Solaris 8 + GCC 3.2 with
8182 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
8183 this generates a more-accurate value anyway.
8184
8185 * lib/timevar.c (timervar_accumulate): Rename locals to
8186 avoid confusion with similarly-named more-global.
8187 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
8188
8189 * src/output.c (prepare): Use xstrdup to convert char const *
8190 to char *, to avoid GCC warning.
8191
8192 2002-10-19 Akim Demaille <akim@epita.fr>
8193
8194 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
8195 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
8196 Use them to have `calc.y' ready for %pure-parser.
8197 * data/yacc.c (YYLEX): Pass a yylex return type to
8198 b4_c_function_call.
8199
8200 2002-10-19 Akim Demaille <akim@epita.fr>
8201
8202 Prototype support of %lex-param and %parse-param.
8203
8204 * src/parse-gram.y: Add the definition of the %lex-param and
8205 %parse-param tokens, plus their rules.
8206 Drop the `_' version of %glr-parser.
8207 Add the "," token.
8208 * src/scan-gram.l (INITIAL): Scan them.
8209 * src/muscle_tab.c: Comment changes.
8210 (muscle_insert, muscle_find): Rename `pair' as `probe'.
8211 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
8212 (muscle_entry_s): The `value' member is no longer const.
8213 Adjust all dependencies.
8214 * src/muscle_tab.c (muscle_init): Adjust: use
8215 MUSCLE_INSERT_STRING.
8216 Initialize the obstack earlier.
8217 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
8218 (muscle_pair_list_grow): New.
8219 * data/c.m4 (b4_c_function_call, b4_c_args): New.
8220 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
8221 * tests/calc.at: Use %locations, not --locations.
8222 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
8223
8224 2002-10-19 Akim Demaille <akim@epita.fr>
8225
8226 * src/getargs.c (usage): Take status as argument and exit
8227 accordingly.
8228 Report the traditional `Try ... --help' message when status != 0.
8229 (usage, version): Don't take a FILE * as arg, it is pointless.
8230 (getargs): When there is an incorrect number of arguments, make it
8231 an error, and report it GNUlically thanks to `usage ()'.
8232
8233 2002-10-18 Paul Eggert <eggert@twinsun.com>
8234
8235 * data/glr.c (yyreportParseError): Don't assume that sprintf
8236 yields the length of the printed string, as this is not true
8237 on SunOS 4.1.4. Reported by Peter Klein.
8238
8239 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
8240 * tests/conflicts.at (%nonassoc and eof): Likewise.
8241 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
8242
8243 2002-10-17 Akim Demaille <akim@epita.fr>
8244
8245 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
8246 * src/getargs.c (trace_types, trace_args): Adjust.
8247 * src/reader.c (grammar_current_rule_prec_set)
8248 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
8249 Standardize error messages.
8250 And s/@prec/%prec/!
8251 (reader): Use trace_flag to enable scanner/parser debugging,
8252 instead of an adhoc scheme.
8253 * src/scan-gram.l: Remove trailing debugging code.
8254
8255 2002-10-16 Paul Eggert <eggert@twinsun.com>
8256
8257 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
8258 MUSCLE_TAB_H.
8259
8260 * NEWS: Officially drop support for building Bison with K&R C,
8261 since it didn't work anyway and it's not worth worrying about.
8262 * Makefile.maint (wget_files): Remove ansi2knr.c.
8263 (ansi2knr.c-url_prefix): Remove.
8264 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
8265 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8266 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8267
8268 2002-10-15 Paul Eggert <eggert@twinsun.com>
8269
8270 Stop using the "enum_" trick for K&R-style function definitions;
8271 it confused me, and I was the author! Instead, assume that people
8272 who want to use K&R C compilers (when using these modules in GCC,
8273 perhaps?) will run ansi2knr.
8274
8275 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
8276 All uses of "enum_" changed to "enum ".
8277 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8278 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
8279
8280 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
8281 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
8282 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
8283 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
8284 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
8285 abitset_not, abitset_ones, abitset_or, abitset_or_and,
8286 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
8287 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
8288 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
8289 Use function prototypes; this removes the need for declaring
8290 static functions simply to provide their prototypes.
8291 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
8292 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
8293 bitset_count_, bitset_create, bitset_dump, bitset_first,
8294 bitset_free, bitset_init, bitset_last, bitset_next,
8295 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
8296 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
8297 bitset_print, bitset_release_memory, bitset_toggle_,
8298 bitset_type_choose, bitset_type_get, bitset_type_name_get,
8299 debug_bitset): Likewise.
8300 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
8301 * lib/bitset_stats.c (bitset_log_histogram_print,
8302 bitset_percent_histogram_print, bitset_stats_and,
8303 bitset_stats_and_cmp, bitset_stats_and_or,
8304 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
8305 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
8306 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
8307 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
8308 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
8309 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
8310 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
8311 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
8312 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
8313 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
8314 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
8315 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
8316 bitset_stats_zero): Likewise.
8317 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
8318 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
8319 bitsetv_dump, debug_bitsetv): Likewise.
8320 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
8321 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
8322 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
8323 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
8324 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
8325 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
8326 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
8327 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
8328 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
8329 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
8330 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
8331 Likewise.
8332 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
8333 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
8334 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
8335 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
8336 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
8337 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
8338 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
8339 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
8340 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
8341 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
8342 lbitset_xor_cmp, lbitset_zero): Likewise.
8343
8344 2002-10-14 Akim Demaille <akim@epita.fr>
8345
8346 Version 1.75.
8347
8348 2002-10-14 Akim Demaille <akim@epita.fr>
8349
8350 * tests/Makefile.am (maintainer-check-posix): New.
8351
8352 2002-10-14 Akim Demaille <akim@epita.fr>
8353
8354 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
8355 member.
8356
8357 2002-10-14 Akim Demaille <akim@epita.fr>
8358
8359 * src/tables.c (table_ninf_remap): base -> tab.
8360 Reported by Matt Rosing.
8361
8362 2002-10-14 Paul Eggert <eggert@twinsun.com>
8363
8364 * tests/action.at, tests/calc.at, tests/conflicts.at,
8365 tests/cxx-type.at, tests/headers.at, tests/input.at,
8366 tests/regression.at, tests/synclines.at, tests/torture.at:
8367 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
8368 so that the tests still work even if POSIXLY_CORRECT is set.
8369 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
8370
8371 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
8372 for portability to K&R hosts. Fix typo: signed char is guaranteed
8373 only to 127, not to 128.
8374 * data/glr.c (yysigned_char): New type.
8375 * data/yacc.c (yysigned_char): Likewise.
8376 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
8377
8378 2002-10-13 Paul Eggert <eggert@twinsun.com>
8379
8380 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
8381 true due to limited range of data type" warning from GCC.
8382
8383 * data/c.m4 (b4_token_defines): Protect against double-inclusion
8384 by wrapping enum yytokentype's definition inside #ifndef
8385 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
8386
8387 2002-10-13 Akim Demaille <akim@epita.fr>
8388
8389 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
8390 Un yy- yyrhs to avoid the name clash with the global YYRHS.
8391
8392 2002-10-13 Akim Demaille <akim@epita.fr>
8393
8394 * Makefile.maint: Update from Autoconf 2.54.
8395 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
8396
8397 2002-10-13 Akim Demaille <akim@epita.fr>
8398
8399 * src/print.c (print_state): Separate the list of solved conflicts
8400 from the other items.
8401 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
8402
8403 2002-10-13 Akim Demaille <akim@epita.fr>
8404
8405 Let nondeterministic skeletons be usable with deterministic
8406 tables.
8407
8408 With the patch, GAWK compiled by GCC without -O2 passes its test
8409 suite using a GLR parser driven by LALR tables. It fails with -O2
8410 because `struct stat' gives two different answers on my machine:
8411 88 (definition of an auto var) and later 96 (memset on this var).
8412 Hence the stack is badly corrumpted. The headers inclusion is to
8413 blame: if I move the awk.h inclusion before GLR's system header
8414 inclusion, the two struct stat have the same size.
8415
8416 * src/tables.c (pack_table): Always create conflict_table.
8417 (token_actions): Always create conflict_list.
8418 * data/glr.c (YYFLAG): Remove, unused.
8419
8420 2002-10-13 Akim Demaille <akim@epita.fr>
8421
8422 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
8423 (O0FLAGS): New.
8424 (VALGRIND, GXX): New.
8425 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
8426 * tests/bison.in: Run $PREBISON a pre-command.
8427 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
8428 (maintainer-check-g++): New.
8429 * Makefile.am (maintainer-check): New.
8430
8431 2002-10-13 Akim Demaille <akim@epita.fr>
8432
8433 * data/glr.c: Formatting changes.
8434 Tweak some trace messages to match yacc.c's.
8435
8436 2002-10-13 Akim Demaille <akim@epita.fr>
8437
8438 GLR parsers sometimes raise parse errors instead of performing the
8439 default reduction.
8440 Reported by Charles-Henry de Boysson.
8441
8442 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
8443 check the length of the traces when %glr.
8444 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
8445 GLR's traces.
8446 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
8447 Test GLR parsers.
8448 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
8449 (yyltype): Remove the yy prefix from the member names.
8450 (yytable): Complete its comment.
8451 (yygetLRActions): Map error action number from YYTABLE from
8452 YYTABLE_NINF to 0.
8453 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
8454 (which was a bug: it should have been YYTABEL_NINF, and yet it was
8455 not satisfying as we could compare an YYACTION computed from
8456 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
8457 only value for error actions.
8458 (yyreportParseError): In verbose parse error messages, don't issue
8459 `error' in the list of expected tokens.
8460 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
8461 next action to perform to match glr.c's decoding.
8462 (yytable): Complete its comment.
8463
8464 2002-10-13 Paul Eggert <eggert@twinsun.com>
8465
8466 Fix problem reported by Henrik Grubbstroem in
8467 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
8468 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
8469 because the Bison parser reads the second action before reducing
8470 the first one.
8471 * src/scan-gram.l (rule_length): New static var.
8472 Use it to keep track of the rule length in the scanner, since
8473 we can't expect the parser to be in lock-step sync with the scanner.
8474 (handle_action_dollar, handle_action_at): Use this var.
8475 * tests/actions.at (Exotic Dollars): Test for the problem.
8476
8477 2002-10-12 Paul Eggert <eggert@twinsun.com>
8478
8479 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
8480 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
8481 Include <sys/time.h> when checking for clock_t and struct tms.
8482 Use same include order as source.
8483 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
8484 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
8485
8486 * lib/timevar.c: Update copyright date and clarify comments.
8487 (get_time) [IN_GCC]: Keep the GCC version for reference.
8488
8489 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
8490 GCC version as of today, then merge Bison's changes.
8491 Change "GCC" to "Bison" in copyright notice. timevar.def's
8492 author is Akim, so change that too.
8493
8494 * src/reader.c (grammar_current_rule_check):
8495 Don't worry about the default action if $$ is untyped.
8496 Prevents bogus warnings reported by Jim Gifford in
8497 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
8498
8499 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
8500 * data/glr.c, data/lalr1.cc, data/yacc.c:
8501 Output token definitions before the first part of user declarations.
8502 Fixes compatibility problem reported by Jim Gifford for kbd in
8503 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
8504
8505 2002-10-11 Paul Eggert <eggert@twinsun.com>
8506
8507 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
8508 (yyparse): here. This undoes some of the 2002-07-25 change.
8509 Compatibility problem reported by Ralf S. Engelschall with
8510 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
8511
8512 2002-10-11 Akim Demaille <akim@epita.fr>
8513
8514 * tests/regression.at Characters Escapes): New.
8515 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
8516 characters.
8517 Reported by Jan Nieuwenhuizen.
8518
8519 2002-10-11 Akim Demaille <akim@epita.fr>
8520
8521 * po/id.po: New.
8522
8523 2002-10-10 Paul Eggert <eggert@twinsun.com>
8524
8525 Portability fixes for bitsets; this also avoids several GCC
8526 warnings.
8527
8528 * lib/abitset.c: Include <stddef.h>, for offsetof.
8529 * lib/lbitset.c: Likewise.
8530
8531 * lib/abitset.c (abitset_bytes): Return a size that is aligned
8532 properly for vectors of objects. Do not assume that adding a
8533 header size to a multiple of a word size yields a value that is
8534 properly aligned for the whole union.
8535 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8536
8537 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
8538 unique names for structures.
8539 * lib/ebitset.c (ebitset_bytes): Likewise.
8540 * lib/lbitset.c (lbitset_bytes): Likewise.
8541
8542 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
8543 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
8544 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
8545 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
8546 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
8547 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
8548 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
8549 to improve the type-checking that GCC can do.
8550 * lib/bitset.c (bitset_op4_cmp): Likewise.
8551 * lib/bitset_stats.c (bitset_stats_count,
8552 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
8553 bitset_stats_copy, bitset_stats_disjoint_p,
8554 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
8555 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
8556 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
8557 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
8558 bitset_stats_and_or_cmp, bitset_stats_andn_or,
8559 bitset_stats_andn_or_cmp, bitset_stats_or_and,
8560 bitset_stats_or_and_cmp): Likewise.
8561 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
8562 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
8563 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
8564 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
8565
8566 * lib/abitset.h: Include bitset.h, not bbitset.h.
8567 * lib/ebitset.h: Likewise.
8568 * lib/lbitset.h: Likewise.
8569
8570 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
8571 All instances of parameters of type enum bitset_opts are now of
8572 type enum_bitset_opts, to conform to the C Standard, and similarly
8573 for enum_bitset_type.
8574 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8575 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
8576
8577 Do not use "struct bitset_struct" to mean different things in
8578 different modules. Not only is this confusing, it violates
8579 the C Standard, which requires that structure types in different
8580 modules must be compatible if one is to be passed to the other.
8581 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
8582 All instances of "struct bitset_struct *" replaced with "bitset".
8583 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
8584 (union bitset_union, struct abitset_struct, struct ebitset_struct,
8585 struct lbitset_struct, struct bitset_stats_struct): New types.
8586 All uses of struct bitset_struct changed to union bitset_union,
8587 etc.
8588 * lib/abitset.c (struct abitset_struct, abitset,
8589 struct bitset_struct): Remove.
8590 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
8591 struct bitset_struct): Remove.
8592 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
8593 bitset_struct): Remove.
8594 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
8595 Likewise.
8596
8597 Do not call a function of type T using a call that assumes the
8598 function is of a different type U. Standard C requires that a
8599 function must be called with a type that is compatible with its
8600 definition.
8601 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8602 New decls.
8603 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8604 New functions.
8605 * lib/ebitset.c (PFV): Remove.
8606 * lib/lbitset.c (PFV): Likewise.
8607 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
8608 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
8609 decls.
8610 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
8611 (ebitset_vtable): Use them.
8612 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
8613 lbitset_xor): New functions.
8614 (lbitset_vtable): Use them.
8615
8616 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
8617 Declare.
8618
8619 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
8620 GCC warning.
8621 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
8622 Use offsetof, for simplicity.
8623
8624 2002-10-06 Paul Eggert <eggert@twinsun.com>
8625
8626 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
8627 the same width as int. This reapplies a hunk of the 2002-08-12 patch
8628 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
8629 which was inadvertently undone by the 2002-09-30 patch.
8630 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
8631 the same width as int.
8632
8633 2002-10-04 Paul Eggert <eggert@twinsun.com>
8634
8635 Version 1.50.
8636
8637 * configure.ac (AC_INIT), NEWS: Increment version number.
8638
8639 * doc/bison.texinfo: Minor spelling, grammar, and white space
8640 fixes.
8641 (Symbols): Mention that any negative value returned from yylex
8642 signifies end-of-input. Warn about negative chars. Mention
8643 the portable Standard C character set.
8644
8645 The GNU coding standard says CFLAGS and YFLAGS are reserved
8646 for the installer to set.
8647 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
8648 * src/Makefile.am (AM_CFLAGS): Likewise.
8649 (AM_YFLAGS): Renamed from YFLAGS.
8650
8651 Fix some MAX and MIN problems.
8652 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
8653 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
8654 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
8655 * src/reader.c (reader): Use it.
8656
8657 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
8658 POSIX 1003.1-2001 has removed fgrep.
8659
8660 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
8661
8662 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
8663 interpreted as signed.
8664 * lib/ebitset.c (ebitset_list): Fix bug.
8665
8666 2002-10-01 Paul Eggert <eggert@twinsun.com>
8667
8668 More fixes for 64-bit hosts and large bitsets.
8669
8670 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
8671 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
8672 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
8673 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
8674 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
8675 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
8676 bitset_count_): Likewise.
8677 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
8678 bitset_first, bitset_last): Likewise.
8679 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
8680 bitset_stats_list_reverse, bitset_stats_size,
8681 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
8682 Likewise.
8683 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
8684 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
8685 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
8686 bitsetv_reflexive_transitive_closure): Likewise.
8687 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
8688 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
8689 Likewise.
8690 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
8691 Likewise.
8692
8693 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
8694 Use size_t, not unsigned int, to count bytes.
8695 * lib/abitset.h (abitset_bytes): Likewise.
8696 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
8697 Likewise.
8698 * lib/bitset.h (bitset_bytes): Likewise.
8699 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
8700 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
8701 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8702 * lib/ebitset.c (ebitset_bytes): Likewise.
8703 * lib/ebitset.h (ebitset_bytes): Likewise.
8704 * lib/lbitset.c (lbitset_bytes): Likewise.
8705 * lib/lbitset.h (lbitset_bytes): Likewise.
8706
8707 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
8708 abitset_subset_p, abitset_disjoint_p, abitset_and,
8709 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
8710 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
8711 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
8712 abitset_or_and, abitset_or_and_cmp):
8713 Use bitset_windex instead of unsigned int.
8714 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
8715 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
8716 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
8717 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
8718 Likewise.
8719 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
8720
8721 * lib/bitset.c (bitset_print):
8722 Use proper printf formats for widths of integer types.
8723 * lib/bitset_stats.c (bitset_percent_histogram_print,
8724 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
8725 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
8726 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
8727 * lib/lbitset.c (lbitset_bytes): Likewise.
8728
8729 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
8730 BITSET_SIZE_MAX): New macros.
8731 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
8732 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
8733 to BITSET_WINDEX_MAX.
8734
8735 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
8736 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
8737 since we now return the bitset_bindex type (not int).
8738
8739 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
8740 when computing sizes.
8741 * lib/ebitset.c (ebitset_elts_grow): Likewise.
8742
8743 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
8744 and avoid cast to unsigned.
8745
8746 2002-09-30 Akim Demaille <akim@epita.fr>
8747
8748 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
8749 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
8750 Updates from Michael Hayes.
8751
8752 2002-09-30 Art Haas <ahaas@neosoft.com>
8753
8754 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
8755 invocations.
8756 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
8757 defined.
8758
8759 2002-09-27 Akim Demaille <akim@epita.fr>
8760
8761 Version 1.49c.
8762
8763 2002-09-27 Akim Demaille <akim@epita.fr>
8764
8765 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
8766 (Because of AC_LIBSOURCE).
8767
8768 2002-09-27 Akim Demaille <akim@epita.fr>
8769
8770 Playing with Autoscan.
8771
8772 * configure.ac: Remove the old LIBOBJ tweaks.
8773 (AC_REPLACE_FUNCS): Add strrchr and strtol.
8774 * lib/strrchr.c: New.
8775 * lib/strtol.c: New, from the Coreutils 4.5.1.
8776
8777 2002-09-27 Akim Demaille <akim@epita.fr>
8778
8779 Playing with Autoscan.
8780
8781 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
8782 * lib/Makefile.am (libbison_a_SOURCES): No longer include
8783 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
8784 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
8785 Coreutils 4.5.1.
8786
8787 2002-09-24 Akim Demaille <akim@epita.fr>
8788
8789 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
8790 (Frequently Asked Questions, Parser Stack Overflow): New.
8791
8792 2002-09-13 Akim Demaille <akim@epita.fr>
8793
8794 Playing with autoscan.
8795
8796 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
8797 * src/files.c (skeleton_find): Remove, unused.
8798 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
8799 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
8800
8801 2002-09-13 Akim Demaille <akim@epita.fr>
8802
8803 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
8804 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
8805
8806 2002-09-13 Akim Demaille <akim@epita.fr>
8807
8808 * configure.ac: Require 2.54.
8809 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
8810 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
8811 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
8812 Remove, provided by Autoconf macros.
8813
8814 2002-09-12 Akim Demaille <akim@epita.fr>
8815
8816 * m4/prereq.m4: Update, from Coreutils 4.5.1.
8817
8818 2002-09-12 Akim Demaille <akim@epita.fr>
8819
8820 * m4/prereq.m4: Update, from Fileutils 4.1.5.
8821 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
8822 Reported by Martin Mokrejs.
8823
8824 2002-09-10 Akim Demaille <akim@epita.fr>
8825
8826 * src/parse-gram.y: Associate a human readable string to each
8827 token type.
8828 * tests/regression.at (Invalid inputs): Adjust.
8829
8830 2002-09-10 Gary V. Vaughan <gary@gnu.org>
8831
8832 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
8833 with an Autoconf-2.5x style configure.ac.
8834
8835 2002-09-06 Paul Eggert <eggert@twinsun.com>
8836
8837 * doc/bison.texinfo (Conditions): Make explicit that the GPL
8838 exception applies only to yacc.c. This is a modification of a
8839 patch originally suggested by Akim Demaille.
8840
8841 2002-09-06 Akim Demaille <akim@epita.fr>
8842
8843 * data/c.m4 (b4_copyright): Move the GPL exception comment from
8844 here to...
8845 * data/yacc.c: here.
8846
8847 * data/lalr1.cc (struct yyltype): Don't define it, since we use
8848 LocationType.
8849 (b4_ltype): Default to yy::Location from location.hh.
8850
8851 2002-09-04 Jim Meyering <jim@meyering.net>
8852
8853 * data/yacc.c: Guard the declaration of yytoknum also with
8854 `#ifdef YYPRINT', so it is declared only when used.
8855
8856 2002-09-04 Akim Demaille <akim@epita.fr>
8857
8858 * configure.in: Rename as...
8859 * configure.ac: this.
8860 Bump to 1.49c.
8861
8862 2002-09-04 Akim Demaille <akim@epita.fr>
8863
8864 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
8865 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
8866 translate maintainer only messages.
8867
8868 2002-08-12 Paul Eggert <eggert@twinsun.com>
8869
8870 Version 1.49b.
8871
8872 * Makefile.am (SUBDIRS): Remove intl.
8873 (DISTCLEANFILES): Remove.
8874 * NEWS: Mention that GNU M4 is now required. Clarify what is
8875 meant by "larger grammars". Mention the pt_BR translation.
8876 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
8877 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
8878 Bump version from 0.11.2 to 0.11.5.
8879 (BISON_PREREQ_STAGE): Remove.
8880 (AM_GNU_GETTEXT): Use external gettext.
8881 (AC_OUTPUT): Remove intl/Makefile.
8882
8883 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
8884
8885 * data/glr.c: Include string.h, for strlen.
8886 (yyreportParseError): Use size_t for yysize.
8887 (yy_yypstack): No longer nested inside yypstates, as nested
8888 functions are not portable. Do not assume size_t is the
8889 same width as int.
8890 (yypstates): Do not assume that ptrdiff_t is the same width
8891 as int, and similarly for yyposn and YYINDEX.
8892
8893 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
8894
8895 * lib/Makefile.am (INCLUDES): Do not include from the intl
8896 directory, which has been removed.
8897 * src/Makefile.am (INCLUDES): Likewise.
8898
8899 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
8900 (bitsets_sources, additional_bitsets_sources, timevars_sources):
8901 New vars.
8902
8903 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
8904 * tests/Makefile.am (EXTRA_DIST): Likewise.
8905
8906 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
8907 Do not assume that bitset_windex is the same width as unsigned.
8908
8909 * lib/abitset.c (abitset_unused_clear): Do not assume that
8910 bitset_word is the same width as int.
8911 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
8912 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
8913 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
8914 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
8915 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
8916
8917 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
8918 portability to one's complement hosts!).
8919 * lib/ebitset.c (ebitset_op1): Likewise.
8920 * lib/lbitset.c (lbitset_op1): Likewise.
8921
8922 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
8923 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
8924 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
8925 Sync with fileutils.
8926 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
8927 lib/gettext.h: Sync with diffutils.
8928
8929 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
8930 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
8931
8932 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
8933 PROTOTYPES to check for prototypes, and "defined __STDC__" to
8934 check for void *.
8935
8936 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
8937 size_t; the old version tried to do this but casted improperly.
8938 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
8939 (bitset_test): Now returns int, not unsigned long.
8940
8941 * lib/bitset_stats.c: Include "gettext.h".
8942 (_): New macro.
8943 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
8944 name locals "index", as it generates unnecessary warnings on some
8945 hosts that have an "index" function.
8946
8947 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
8948 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
8949 they need translation.
8950 * src/LR0.c (state_list_append, new_itemsets, get_state,
8951 append_states, generate_states): Likewise.
8952 * src/assoc.c (assoc_to_string): Likewise.
8953 * src/closure.c (print_closure, set_firsts, closure): Likewise.
8954 * src/gram.c (grammar_dump): Likewise.
8955 * src/injections.c (injections_compute): Likewise.
8956 * src/lalr.c (lookaheads_print): Likewise.
8957 * src/relation.c (relation_transpose): Likewise.
8958 * src/scan-gram.l: Likewise.
8959 * src/tables.c (table_grow, pack_vector): Likewise.
8960
8961 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
8962 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
8963 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
8964 * m4/mbstate_t.m4: Sync with fileutils.
8965 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
8966
8967 * po/LINGUAS: Add pt_BR.
8968 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
8969 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
8970 lib/timevar.c.
8971 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
8972 manual recommends.
8973 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
8974
8975 * src/complain.c (strerror_r): Remove decl; not needed.
8976 (strerror): Use same pattern as ../lib/error.c.
8977
8978 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
8979
8980 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
8981
8982 * src/main.c (main): Cast result of bindtextdomain and textdomain
8983 to void, to avoid a GCC warning when --disable-nls is in effect.
8984
8985 * src/scan-gram.l: Use strings rather than escapes when possible,
8986 to minimize the number of warnings from xgettext.
8987 (handle_action_dollar, handle_action_at): Don't use isdigit,
8988 as it mishandles negative chars and it may not work as expected
8989 outside the C locale.
8990
8991 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
8992 this is a GCC extension and is not portable to other compilers.
8993
8994 * src/system.h (alloca): Use same pattern as ../lib/error.c.
8995 Do not include <ctype.h>; no longer needed.
8996 Do not include <malloc.h>; no longer needed (and generates
8997 warnings on OpenBSD 3.0).
8998
8999 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
9000 it's not portable.
9001
9002 * tests/regression.at: Do not use 'cc -c input.c -o input';
9003 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
9004
9005 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
9006 exit status as failure, not just exit status 1. Sun C exits
9007 with status 2 sometimes.
9008
9009 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
9010 Use it for the two large tests.
9011
9012 2002-08-02 Akim Demaille <akim@epita.fr>
9013
9014 * src/conflicts.c (conflicts_output): Don't output rules never
9015 reduced here, since anyway that computation doesn't work.
9016 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
9017 (rule_useless_p, rule_never_reduced_p): New.
9018 (grammar_rules_partial_print): Use a filter instead of a range.
9019 Display the title only if needed.
9020 (grammar_rules_print): Adjust.
9021 (grammar_rules_never_reduced_report): New.
9022 * src/tables.c (action_row): Move the computation of rules never
9023 reduced to...
9024 (token_actions): here.
9025 * src/main.c (main): Make the parser before making the report, so
9026 that rules never reduced are computed.
9027 Call grammar_rules_never_reduced_report.
9028 * src/print.c (print_results): Report rules never reduced.
9029 * tests/conflicts.at, tests/reduce.at: Adjust.
9030
9031 2002-08-01 Akim Demaille <akim@epita.fr>
9032
9033 Instead of attaching lookaheads and duplicating the rules being
9034 reduced by a state, attach the lookaheads to the reductions.
9035
9036 * src/state.h (state_t): Remove the `lookaheads',
9037 `lookaheads_rule' member.
9038 (reductions_t): Add a `lookaheads' member.
9039 Use a regular array for the `rules'.
9040 * src/state.c (reductions_new): Initialize the lookaheads member
9041 to 0.
9042 (state_rule_lookaheads_print): Adjust.
9043 * src/state.h, src/state.c (state_reductions_find): New.
9044 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
9045 (count_rr_conflicts): Adjust.
9046 * src/lalr.c (LArule): Remove.
9047 (add_lookback_edge): Adjust.
9048 (state_lookaheads_count): New.
9049 (states_lookaheads_initialize): Merge into...
9050 (initialize_LA): this.
9051 (lalr_free): Adjust.
9052 * src/main.c (main): Don't free nullable and derives too early: it
9053 is used by --verbose.
9054 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
9055
9056 2002-08-01 Akim Demaille <akim@epita.fr>
9057
9058 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
9059 `rule_number_t**'.
9060 (set_derives, free_derives): Rename as...
9061 (derives_compute, derives_free): this.
9062 Adjust all dependencies.
9063 * src/nullable.c (set_nullable, free_nullable): Rename as...
9064 (nullable_compute, nullable_free): these.
9065 (rule_list_t): Store rule_t *, not rule_number_t.
9066 * src/state.c (state_rule_lookaheads_print): Directly compare rule
9067 pointers, instead of their numbers.
9068 * src/main.c (main): Call nullable_free, and derives_free earlier,
9069 as they were lo longer used.
9070
9071 2002-08-01 Akim Demaille <akim@epita.fr>
9072
9073 * lib/timevar.c (get_time): Include children time.
9074 * src/lalr.h (LA, LArule): Don't export them: used with the
9075 state_t.
9076 * src/lalr.c (LA, LArule): Static.
9077 * src/lalr.h, src/lalr.c (lalr_free): New.
9078 * src/main.c (main): Call it.
9079 * src/tables.c (pack_vector): Check whether loc is >= to the
9080 table_size, not >.
9081 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
9082 (tables_generate): do it, since that's also it which allocates
9083 them.
9084 Don't free LA and LArule, main does.
9085
9086 2002-07-31 Akim Demaille <akim@epita.fr>
9087
9088 Separate parser tables computation and output.
9089
9090 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
9091 (conflict_list, conflict_list_cnt, table, check, table_ninf)
9092 (yydefgoto, yydefact, high): Move to...
9093 * src/tables.h, src/tables.c: here.
9094 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9095 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9096 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
9097 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
9098 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
9099 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
9100 (action_row, save_row, token_actions, save_column, default_goto)
9101 (goto_actions, sort_actions, matching_state, pack_vector)
9102 (table_ninf_remap, pack_table, prepare_actions): Move to...
9103 * src/tables.c: here.
9104 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
9105 * src/output.c (token_actions, output_base, output_conflicts)
9106 (output_check): Merge into...
9107 (prepare_actions): this.
9108 (actions_output): Rename as...
9109 (user_actions_output): this.
9110 * src/main.c (main): Call tables_generate and tables_free.
9111
9112 2002-07-31 Akim Demaille <akim@epita.fr>
9113
9114 Steal GCC's --time-report support.
9115
9116 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
9117 stolen/adjusted from GCC.
9118 * m4/stage.m4: Remove time related checks.
9119 * m4/timevar.m4: New.
9120 * configure.in: Adjust.
9121 * src/system.h: Adjust to using timevar.h.
9122 * src/getargs.h, src/getargs.c: Support trace_time for
9123 --trace=time.
9124 * src/main.c (stage): Remove.
9125 (main): Replace `stage' invocations with timevar calls.
9126 * src/output.c: Insert pertinent timevar calls.
9127
9128 2002-07-31 Akim Demaille <akim@epita.fr>
9129
9130 Let --trace have arguments.
9131
9132 * src/getargs.h (enum trace_e): New.
9133 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
9134 (long_options, short_options): --trace/-T takes an optional
9135 argument.
9136 Change all the uses of trace_flag to reflect the new flags.
9137 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
9138
9139 Strengthen `stage' portability.
9140
9141 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
9142 * configure.in: Use it.
9143 Don't check for malloc.h and sys/times.h.
9144 * src/system.h: Include them when appropriate.
9145 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
9146 times and struct tms are available.
9147
9148 2002-07-30 Akim Demaille <akim@epita.fr>
9149
9150 In verbose parse error message, don't report `error' as an
9151 expected token.
9152 * tests/actions.at (Printers and Destructors): Adjust.
9153 * tests/calc.at (Calculator $1): Adjust.
9154 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
9155 error message, do not report the parser accepts the error token in
9156 that state.
9157
9158 2002-07-30 Akim Demaille <akim@epita.fr>
9159
9160 Normalize conflict related messages.
9161
9162 * src/complain.h, src/complain.c (warn, complain): New.
9163 * src/conflicts.c (conflicts_print): Use them.
9164 (conflict_report_yacc): New, extracted from...
9165 (conflicts_print): here.
9166 * tests/conflicts.at, tests/existing.at: Adjust.
9167
9168 2002-07-30 Akim Demaille <akim@epita.fr>
9169
9170 Report rules which are never reduced by the parser: those hidden
9171 by conflicts.
9172
9173 * src/LR0.c (save_reductions): Don't make the final state too
9174 different: save its reduction (accept) instead of having a state
9175 without any action (no shift or goto, no reduce).
9176 Note: the final state is now a ``regular'' state, i.e., the
9177 parsers now contain `reduce 0' as default reduction.
9178 Nevertheless, since they decide to `accept' when yystate =
9179 final_state, they still will not reduce rule 0.
9180 * src/print.c (print_actions, print_reduction): Adjust.
9181 * src/output.c (action_row): Track reduced rules.
9182 (token_actions): Report rules never reduced.
9183 * tests/conflicts.at, tests/regression.at: Adjust.
9184
9185 2002-07-30 Akim Demaille <akim@epita.fr>
9186
9187 `stage' was accidently included in a previous patch.
9188 Initiate its autoconfiscation.
9189
9190 * configure.in: Look for malloc.h and sys/times.h.
9191 * src/main.c (stage): Adjust.
9192 Report only when trace_flag.
9193
9194 2002-07-29 Akim Demaille <akim@epita.fr>
9195
9196 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
9197 state_number_t.
9198 (errs_t): symbol_t*, not symbol_number_t.
9199 (reductions_t): rule_t*, not rule_number_t.
9200 (FOR_EACH_SHIFT): New.
9201 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
9202 * src/print.c, src/print_graph.c: Adjust.
9203
9204 2002-07-29 Akim Demaille <akim@epita.fr>
9205
9206 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
9207
9208 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
9209 (endtoken, accept): these.
9210 * src/reader.c (reader): Set endtoken's default tag to "$end".
9211 Set undeftoken's tag to "$undefined" instead of "$undefined.".
9212 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
9213 Adjust.
9214
9215 2002-07-29 Akim Demaille <akim@epita.fr>
9216
9217 * src/reduce.c (reduce_grammar): When the language is empty,
9218 complain about the start symbol, not the axiom.
9219 Use its location.
9220 * tests/reduce.at (Empty Language): New.
9221
9222 2002-07-26 Akim Demaille <akim@epita.fr>
9223
9224 * src/reader.h, src/reader.c (gram_error): ... can't get
9225 yycontrol without making too strong assumptions on the parser
9226 itself.
9227 * src/output.c (prepare_tokens): Use the real 0th value of
9228 token_translations instead of `0'.
9229 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
9230 visible here.
9231 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
9232 for the time being: %locations ought to provide it to yyerror.
9233
9234 2002-07-25 Akim Demaille <akim@epita.fr>
9235
9236 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
9237 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
9238 * tests/regression.at (Web2c Actions): Adjust.
9239
9240 2002-07-25 Akim Demaille <akim@epita.fr>
9241
9242 Stop storing rules from 1 to nrules + 1.
9243
9244 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
9245 * src/nullable.c, src/output.c, src/print.c, src/reader.c
9246 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
9247 Iterate from 0 to nrules.
9248 Use rule_number_as_item_number and item_number_as_rule_number.
9249 Adjust to `derive' now containing possibly 0.
9250 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
9251 Handle the `- 1' part in rule numbers from/to item numbers.
9252 * src/conflicts.c (log_resolution): Fix the message which reversed
9253 shift and reduce.
9254 * src/output.c (action_row): Initialize default_rule to -1.
9255 (token_actions): Adjust.
9256 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
9257 expected output.
9258 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
9259
9260 2002-07-25 Akim Demaille <akim@epita.fr>
9261
9262 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
9263 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
9264 (b4_c_knr_arg_decl): New.
9265 * data/yacc.c: Use it to define yysymprint, yydestruct, and
9266 yyreport_parse_error.
9267
9268 2002-07-25 Akim Demaille <akim@epita.fr>
9269
9270 * data/yacc.c (yyreport_parse_error): New, extracted from...
9271 (yyparse): here.
9272 (yydestruct, yysymprint): Move above yyparse.
9273 Be K&R compliant.
9274
9275 2002-07-25 Akim Demaille <akim@epita.fr>
9276
9277 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
9278 replace...
9279 (b4_sint_type, b4_uint_type): these.
9280 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
9281 * tests/regression.at (Web2c Actions): Adjust.
9282
9283 2002-07-25 Akim Demaille <akim@epita.fr>
9284
9285 * src/gram.h (TIEM_NUMBER_MAX): New.
9286 (item_number_of_rule_number, rule_number_of_item_number): Rename
9287 as...
9288 (rule_number_as_item_number, item_number_as_rule_number): these.
9289 Adjust dependencies.
9290 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9291 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9292 (symbol_number_to_vector_number): New.
9293 (order): Of vector_number_t* type.
9294 (base_t, BASE_MAX, BASE_MIN): New.
9295 (froms, tos, width, pos, check): Of base_t type.
9296 (action_number_t, ACTION_MIN, ACTION_MAX): New.
9297 (actrow): Of action_number_t type.
9298 (conflrow): Of unsigned int type.
9299 (table_ninf, base_ninf): New.
9300 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
9301 (muscle_insert_int_table, muscle_insert_base_table)
9302 (muscle_insert_rule_number_table): New.
9303 (prepare_tokens): Output `toknum' as int_table.
9304 (action_row): Returns a rule_number_t.
9305 Use ACTION_MIN, not SHRT_MIN.
9306 (token_actions): yydefact is rule_number_t*.
9307 (table_ninf_remap): New.
9308 (pack_table): Use it for `base' and `table'.
9309 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
9310 replaced with...
9311 (YYPACT_NINF, YYTABLE_NINF): these.
9312 (yypact, yytable): Compute their types instead of hard-coded
9313 `short'.
9314 * tests/regression.at (Web2c Actions): Adjust.
9315
9316 2002-07-19 Akim Demaille <akim@epita.fr>
9317
9318 * src/scan-gram.l (id): Can start with an underscore.
9319
9320 2002-07-16 Akim Demaille <akim@epita.fr>
9321
9322 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
9323 Adjust all former `associativity' dependencies.
9324 * src/symtab.c (symbol_new): Default associativity is `undef', not
9325 `right'.
9326 (symbol_check_alias_consistence): Adjust.
9327
9328 2002-07-09 Akim Demaille <akim@epita.fr>
9329
9330 * doc/bison.texinfo: Properly set the ``header'' part.
9331 Use @dircategory ``GNU programming tools'' as per Texinfo's
9332 documentation.
9333 Use @copying.
9334
9335 2002-07-09 Akim Demaille <akim@epita.fr>
9336
9337 * lib/quotearg.h: Protect against multiple inclusions.
9338 * src/location.h (location_t): Add a `file' member.
9339 (LOCATION_RESET, LOCATION_PRINT): Adjust.
9340 * src/complain.c (warn_at, complain_at, fatal_at): Drop
9341 `error_one_per_line' support.
9342
9343 2002-07-09 Akim Demaille <akim@epita.fr>
9344
9345 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
9346 * src/reader.c (lineno): Remove.
9347 Adjust all dependencies.
9348 (get_merge_function): Take a location and use complain_at.
9349 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
9350 * tests/regression.at (Invalid inputs, Mixing %token styles):
9351 Adjust.
9352
9353 2002-07-09 Akim Demaille <akim@epita.fr>
9354
9355 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
9356 recovery rule, and forbid extensions when --yacc.
9357 (gram_error): Use complain_at.
9358 * src/reader.c (reader): Exit if there were parse errors.
9359
9360 2002-07-09 Akim Demaille <akim@epita.fr>
9361
9362 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
9363 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
9364 Reported by R Blake <blakers@mac.com>.
9365
9366 2002-07-09 Akim Demaille <akim@epita.fr>
9367
9368 * data/yacc.c: Output the copyright notive in the header.
9369
9370 2002-07-03 Akim Demaille <akim@epita.fr>
9371
9372 * src/output.c (froms, tos): Are state_number_t.
9373 (save_column): sp, sp1, and sp2 are state_number_t.
9374 (prepare): Rename `final' as `final_state_number', `nnts' as
9375 `nterms_number', `nrules' as `rules_number', `nstates' as
9376 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
9377 unused.
9378 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
9379 * data/lalr1.cc (nsym_): Remove, unused.
9380
9381 2002-07-03 Akim Demaille <akim@epita.fr>
9382
9383 * src/lalr.h, src/lalr.c (goto_number_t): New.
9384 * src/lalr.c (goto_list_t): New.
9385 Propagate them.
9386 * src/nullable.c (rule_list_t): New.
9387 Propagate.
9388 * src/types.h: Remove.
9389
9390 2002-07-03 Akim Demaille <akim@epita.fr>
9391
9392 * src/closure.c (print_fderives): Use rule_rhs_print.
9393 * src/derives.c (print_derives): Use rule_rhs_print.
9394 (rule_list_t): New, replaces `shorts'.
9395 (set_derives): Add comments.
9396 * tests/sets.at (Nullable, Firsts): Adjust.
9397
9398 2002-07-03 Akim Demaille <akim@epita.fr>
9399
9400 * src/output.c (prepare_actions): Free `tally' and `width'.
9401 (prepare_actions): Allocate and free `order'.
9402 * src/symtab.c (symbols_free): Free `symbols'.
9403 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
9404 * src/output.c (m4_invoke): Move to...
9405 * src/scan-skel.l: here.
9406 (<<EOF>>): Close yyout, and free its name.
9407
9408 2002-07-03 Akim Demaille <akim@epita.fr>
9409
9410 Fix some memory leaks, and fix a bug: state 0 was examined twice.
9411
9412 * src/LR0.c (new_state): Merge into...
9413 (state_list_append): this.
9414 (new_states): Merge into...
9415 (generate_states): here.
9416 (set_states): Don't ensure a proper `errs' state member here, do it...
9417 * src/conflicts.c (conflicts_solve): here.
9418 * src/state.h, src/state.c: Comment changes.
9419 (state_t): Rename member `shifts' as `transitions'.
9420 Adjust all dependencies.
9421 (errs_new): For consistency, also take the values as argument.
9422 (errs_dup): Remove.
9423 (state_errs_set): New.
9424 (state_reductions_set, state_transitions_set): Assert that no
9425 previous value was assigned.
9426 (state_free): New.
9427 (states_free): Use it.
9428 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
9429 temporary storage: use `errs' and `nerrs' as elsewhere.
9430 (set_conflicts): Allocate and free this `errs'.
9431
9432 2002-07-02 Akim Demaille <akim@epita.fr>
9433
9434 * lib/libiberty.h: New.
9435 * lib: Update the bitset implementation from upstream.
9436 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
9437 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
9438 * src/main.c: Adjust bitset stats calls.
9439
9440 2002-07-01 Paul Eggert <eggert@twinsun.com>
9441
9442 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
9443 char, so that negative chars don't collide with $.
9444
9445 2002-06-30 Akim Demaille <akim@epita.fr>
9446
9447 Have the GLR tests be `warning' checked, and fix the warnings.
9448
9449 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
9450 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
9451 (yyremoveDeletes): `yyi' and `yyj' are size_t.
9452 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
9453 (yyaddDeferredAction): static.
9454 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
9455 (yyreportParseError): yyprefix is const.
9456 yytokenp is used only when verbose.
9457 (yy__GNUC__): Replace with __GNUC__.
9458 (yypdumpstack): yyi is size_t.
9459 (yypreference): Un-yy local variables and arguments, to avoid
9460 clashes with `yyr1'. Anyway, we are not in the user name space.
9461 (yytname_size): be an int, as is compared with ints.
9462 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
9463 Use them.
9464 * tests/cxx-gram.at: Use quotation to protect $1.
9465 Use AT_COMPILE to enable warnings hunts.
9466 Prototype yylex and yyerror.
9467 `Use' argc.
9468 Include `string.h', not `strings.h'.
9469 Produce and prototype stmtMerge only when used.
9470 yylex takes a location.
9471
9472 2002-06-30 Akim Demaille <akim@epita.fr>
9473
9474 We spend a lot of time in quotearg, in particular when --verbose.
9475
9476 * src/symtab.c (symbol_get): Store a quoted version of the key.
9477 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
9478 Adjust all callers.
9479
9480 2002-06-30 Akim Demaille <akim@epita.fr>
9481
9482 * src/state.h (reductions_t): Rename member `nreds' as num.
9483 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
9484 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
9485
9486 2002-06-30 Akim Demaille <akim@epita.fr>
9487
9488 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
9489 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
9490 (shifts_to): Rename as...
9491 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
9492 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
9493 (TRANSITION_IS_DISABLED, transitions_to): these.
9494
9495 2002-06-30 Akim Demaille <akim@epita.fr>
9496
9497 * src/print.c (print_shifts, print_gotos): Merge into...
9498 (print_transitions): this.
9499 (print_transitions, print_errs, print_reductions): Align the
9500 lookaheads columns.
9501 (print_core, print_transitions, print_errs, print_state,
9502 print_grammar): Output empty lines separator before, not after.
9503 (state_default_rule_compute): Rename as...
9504 (state_default_rule): this.
9505 * tests/conflicts.at (Defaulted Conflicted Reduction),
9506 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
9507 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
9508
9509 2002-06-30 Akim Demaille <akim@epita.fr>
9510
9511 Display items as we display rules.
9512
9513 * src/gram.h, src/gram.c (rule_lhs_print): New.
9514 * src/gram.c (grammar_rules_partial_print): Use it.
9515 * src/print.c (print_core): Likewise.
9516 * tests/conflicts.at (Defaulted Conflicted Reduction),
9517 (Unresolved SR Conflicts): Adjust.
9518 (Unresolved SR Conflicts): Adjust and rename as...
9519 (Resolved SR Conflicts): this, as was meant.
9520 * tests/regression.at (Web2c Report): Adjust.
9521
9522 2002-06-30 Akim Demaille <akim@epita.fr>
9523
9524 * src/print.c (state_default_rule_compute): New, extracted from...
9525 (print_reductions): here.
9526 Pessimize, but clarify the code.
9527 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
9528
9529 2002-06-30 Akim Demaille <akim@epita.fr>
9530
9531 * src/output.c (action_row): Let default_rule be always a rule
9532 number.
9533
9534 2002-06-30 Akim Demaille <akim@epita.fr>
9535
9536 * src/closure.c (print_firsts, print_fderives, closure):
9537 Use BITSET_EXECUTE.
9538 * src/lalr.c (lookaheads_print): Likewise.
9539 * src/state.c (state_rule_lookaheads_print): Likewise.
9540 * src/print_graph.c (print_core): Likewise.
9541 * src/print.c (print_reductions): Likewise.
9542 * src/output.c (action_row): Likewise.
9543 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
9544
9545 2002-06-30 Akim Demaille <akim@epita.fr>
9546
9547 * src/print_graph.c: Use report_flag.
9548
9549 2002-06-30 Akim Demaille <akim@epita.fr>
9550
9551 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
9552 to...
9553 * src/relation.h, src/relation.c (traverse, relation_digraph)
9554 (relation_print, relation_transpose): New.
9555
9556 2002-06-30 Akim Demaille <akim@epita.fr>
9557
9558 * src/state.h, src/state.c (shifts_to): New.
9559 * src/lalr.c (build_relations): Use it.
9560
9561 2002-06-30 Akim Demaille <akim@epita.fr>
9562
9563 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
9564 (item_number_of_rule_number, rule_number_of_item_number): New.
9565 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
9566 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
9567 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
9568 Propagate their use.
9569 Much remains to be done, in particular wrt `shorts' from types.h.
9570
9571 2002-06-30 Akim Demaille <akim@epita.fr>
9572
9573 * src/symtab.c (symbol_new): Initialize the `printer' member.
9574
9575 2002-06-30 Akim Demaille <akim@epita.fr>
9576
9577 * src/LR0.c (save_reductions): Remove, replaced by...
9578 * src/state.h, src/state.c (state_reductions_set): New.
9579 (reductions, errs): Rename as...
9580 (reductions_t, errs_t): these.
9581 Adjust all dependencies.
9582
9583 2002-06-30 Akim Demaille <akim@epita.fr>
9584
9585 * src/LR0.c (state_list_t, state_list_append): New.
9586 (first_state, last_state): Now symbol_list_t.
9587 (this_state): Remove.
9588 (new_itemsets, append_states, save_reductions): Take a state_t as
9589 argument.
9590 (set_states, generate_states): Adjust.
9591 (save_shifts): Remove, replaced by...
9592 * src/state.h, src/state.c (state_shifts_set): New.
9593 (shifts): Rename as...
9594 (shifts_t): this.
9595 Adjust all dependencies.
9596 * src/state.h (state_t): Remove the `next' member.
9597
9598 2002-06-30 Akim Demaille <akim@epita.fr>
9599
9600 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
9601 escaped in slot 0.
9602
9603 2002-06-30 Akim Demaille <akim@epita.fr>
9604
9605 Use hash.h for the state hash table.
9606
9607 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
9608 (allocate_storage): Use state_hash_new.
9609 (free_storage): Use state_hash_free.
9610 (new_state, get_state): Adjust.
9611 * src/lalr.h, src/lalr.c (states): Move to...
9612 * src/states.h (state_t): Remove the `link' member, no longer
9613 used.
9614 * src/states.h, src/states.c: here.
9615 (state_hash_new, state_hash_free, state_hash_lookup)
9616 (state_hash_insert, states_free): New.
9617 * src/states.c (state_table, state_compare, state_hash): New.
9618 * src/output.c (output_actions): Do not free states now, since we
9619 still need to know the final_state number in `prepare', called
9620 afterwards. Do it...
9621 * src/main.c (main): here: call states_free after `output'.
9622
9623 2002-06-30 Akim Demaille <akim@epita.fr>
9624
9625 * src/state.h, src/state.c (state_new): New, extracted from...
9626 * src/LR0.c (new_state): here.
9627 * src/state.h (STATE_ALLOC): Move to...
9628 * src/state.c: here.
9629 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
9630 * src/state.h, src/state.c: here.
9631
9632 2002-06-30 Akim Demaille <akim@epita.fr>
9633
9634 * src/reader.c (gensym): Rename as...
9635 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
9636 (getsym): Rename as...
9637 (symbol_get): this.
9638
9639 2002-06-30 Akim Demaille <akim@epita.fr>
9640
9641 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
9642 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
9643 * src/output.c, src/print.c, src/print_graph.c: Propagate.
9644 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
9645
9646 2002-06-30 Akim Demaille <akim@epita.fr>
9647
9648 Make the test suite pass with warnings checked.
9649
9650 * tests/actions.at (Printers and Destructors): Improve.
9651 Avoid unsigned vs. signed issues.
9652 * tests/calc.at: Don't exercise the scanner here, do it...
9653 * tests/input.at (Torturing the Scanner): here.
9654
9655 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9656
9657 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
9658 reorganize first lines parallel to yacc.c.
9659
9660 2002-06-28 Akim Demaille <akim@epita.fr>
9661
9662 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
9663 (b4_token_enum, b4_token_defines): New, factored from...
9664 * data/lalr1.cc, data/yacc.c, glr.c: here.
9665
9666 2002-06-28 Akim Demaille <akim@epita.fr>
9667
9668 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
9669 unused variables.
9670 * src/output.c (merger_output): static.
9671
9672 2002-06-28 Akim Demaille <akim@epita.fr>
9673
9674 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
9675 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
9676 pacify GCC.
9677 * src/output.c (save_row): Initialize all the variables to pacify GCC.
9678
9679 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9680
9681 Accumulated changelog for new GLR parsing features.
9682
9683 * src/conflicts.c (count_total_conflicts): Change name to
9684 conflicts_total_count.
9685 * src/conflicts.h: Ditto.
9686 * src/output.c (token_actions): Use the new name.
9687 (output_conflicts): Change conflp => conflict_list_heads, and
9688 confl => conflict_list for better readability.
9689 * data/glr.c: Use the new names.
9690 * NEWS: Add self to GLR announcement.
9691
9692 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
9693
9694 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
9695 Akim Demaille.
9696
9697 * data/bison.glr: Change name to glr.c
9698 * data/glr.c: Renamed from bison.glr.
9699 * data/Makefile.am: Add glr.c
9700
9701 * src/getargs.c:
9702
9703 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
9704 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
9705
9706 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9707
9708 * data/bison.glr: Be sure to restore the
9709 current #line when returning to the skeleton contents after having
9710 exposed the input file's #line.
9711
9712 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9713
9714 * data/bison.glr: Bring up to date with changes to bison.simple.
9715
9716 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9717
9718 * data/bison.glr: Correct definitions that use b4_prefix.
9719 Various reformatting.
9720 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
9721 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
9722 yytokenp argument; now part of stack.
9723 (yychar): Define to behave as documented.
9724 (yyclearin): Ditto.
9725
9726 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9727
9728 * src/reader.h: Add declaration for free_merger_functions.
9729
9730 * src/reader.c (merge_functions): New variable.
9731 (get_merge_function): New function.
9732 (free_merger_functions): New function.
9733 (readgram): Check for %prec that is not followed by a symbol.
9734 Handle %dprec and %merge declarations.
9735 (packgram): Initialize dprec and merger fields in rules array.
9736
9737 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
9738 conflict_list_cnt, conflict_list_free): New variables.
9739 (table_grow): Also grow conflict_table.
9740 (prepare_rules): Output dprec and merger tables.
9741 (conflict_row): New function.
9742 (action_row): Output conflict lists for GLR parser. Don't use
9743 default reduction in conflicted states for GLR parser so that there
9744 are spaces for the conflict lists.
9745 (save_row): Also save conflict information.
9746 (token_actions): Allocate conflict list.
9747 (merger_output): New function.
9748 (pack_vector): Pack conflict table, too.
9749 (output_conflicts): New function to output yyconflp and yyconfl.
9750 (output_check): Allocate conflict_tos.
9751 (output_actions): Output conflict tables, also.
9752 (output_skeleton): Output b4_mergers definition.
9753 (prepare): Output b4_max_rhs_length definition.
9754 Use 'bison.glr' as default skeleton for GLR parsers.
9755
9756 * src/gram.c (glr_parser): New flag.
9757 (grammar_free): Call free_merger_functions.
9758
9759 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
9760 all pairs of conflicting reductions, rather than just all tokens
9761 causing conflicts. Needed to size conflict tables.
9762 (conflicts_output): Modify call to count_rr_conflicts for new
9763 interface.
9764 (conflicts_print): Ditto.
9765 (count_total_conflicts): New function.
9766
9767 * src/reader.h (merger_list): New type.
9768 (merge_functions): New variable.
9769
9770 * src/lex.h (tok_dprec, tok_merge): New token types.
9771
9772 * src/gram.h (rule_s): Add dprec and merger fields.
9773 (glr_parser): New flag.
9774
9775 * src/conflicts.h (count_total_conflicts): New function.
9776
9777 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
9778
9779 * doc/bison.texinfo (Generalized LR Parsing): New section.
9780 (GLR Parsers): New section.
9781 (Language and Grammar): Mention GLR parsing.
9782 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
9783 Correct typo ("tge" -> "the").
9784
9785 * data/bison.glr: New skeleton for GLR parsing.
9786
9787 * tests/cxx-gram.at: New tests for GLR parsing.
9788
9789 * tests/testsuite.at: Include cxx-gram.at.
9790
9791 * tests/Makefile.am: Add cxx-gram.at.
9792
9793 * src/parse-gram.y:
9794
9795 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
9796
9797 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
9798
9799 2002-06-27 Akim Demaille <akim@epita.fr>
9800
9801 * src/options.h, src/options.c: Remove.
9802 * src/getargs.c (short_options, long_options): New.
9803
9804 2002-06-27 Akim Demaille <akim@epita.fr>
9805
9806 * data/bison.simple, data/bison.c++: Rename as...
9807 * data/yacc.c, data/lalr1.cc: these.
9808 * doc/bison.texinfo (Environment Variables): Remove.
9809
9810 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
9811
9812 * src/getargs.c (report_argmatch): Initialize strtok().
9813
9814 2002-06-20 Akim Demaille <akim@epita.fr>
9815
9816 * data/bison.simple (b4_symbol_actions): New, replaces...
9817 (b4_symbol_destructor, b4_symbol_printer): these.
9818 (yysymprint): Be sure to call YYPRINT only for tokens, and using
9819 user token numbers.
9820
9821 2002-06-20 Akim Demaille <akim@epita.fr>
9822
9823 * data/bison.simple (yydestructor): Rename as...
9824 (yydestruct): this.
9825
9826 2002-06-20 Akim Demaille <akim@epita.fr>
9827
9828 * src/symtab.h, src/symtab.c (symbol_type_set)
9829 (symbol_destructor_set, symbol_precedence_set): The location is
9830 the last argument.
9831 Adjust all callers.
9832
9833 2002-06-20 Akim Demaille <akim@epita.fr>
9834
9835 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
9836 internals.
9837 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
9838 Takes a location.
9839 * src/symtab.h, src/symtab.c (symbol_class_set)
9840 (symbol_user_token_number_set): Likewise.
9841 Adjust all callers.
9842 Promote complain_at.
9843 * tests/input.at (Type Clashes): Adjust.
9844
9845 2002-06-20 Akim Demaille <akim@epita.fr>
9846
9847 * data/bison.simple (YYLEX): Fix the declaration when
9848 %pure-parser.
9849
9850 2002-06-20 Akim Demaille <akim@epita.fr>
9851
9852 * data/bison.simple (yysymprint): Don't print the token number,
9853 just its name.
9854 * tests/actions.at (Destructors): Rename as...
9855 (Printers and Destructors): this.
9856 Also exercise %printer.
9857
9858 2002-06-20 Akim Demaille <akim@epita.fr>
9859
9860 * data/bison.simple (YYDSYMPRINT): New.
9861 Use it to remove many of the #if YYDEBUG/if (yydebug).
9862
9863 2002-06-20 Akim Demaille <akim@epita.fr>
9864
9865 * src/symtab.h, src/symtab.c (symbol_t): printer and
9866 printer_location are new members.
9867 (symbol_printer_set): New.
9868 * src/parse-gram.y (PERCENT_PRINTER): New token.
9869 Handle its associated rule.
9870 * src/scan-gram.l: Adjust.
9871 (handle_destructor_at, handle_destructor_dollar): Rename as...
9872 (handle_symbol_code_at, handle_symbol_code_dollar): these.
9873 * src/output.c (symbol_printers_output): New.
9874 (output_skeleton): Call it.
9875 * data/bison.simple (yysymprint): New. Cannot be named yyprint
9876 since there are already many grammar files with a user `yyprint'.
9877 Replace the calls to YYPRINT to calls to yysymprint.
9878 * tests/calc.at: Adjust.
9879 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
9880 taking advantage of parser very internal details (stack size!).
9881
9882 2002-06-20 Akim Demaille <akim@epita.fr>
9883
9884 * src/scan-gram.l: Complete the scanner with the missing patterns
9885 to pacify Flex.
9886 Use `quote' and `symbol_tag_get' where appropriate.
9887
9888 2002-06-19 Akim Demaille <akim@epita.fr>
9889
9890 * tests/actions.at (Destructors): Augment to test locations.
9891 * data/bison.simple (yydestructor): Pass it the current location
9892 if locations are enabled.
9893 Prototype only when __STDC__ or C++.
9894 Change the argument names to move into the yy name space: there is
9895 user code here.
9896
9897 2002-06-19 Akim Demaille <akim@epita.fr>
9898
9899 * data/bison.simple (b4_pure_if): New.
9900 Use it instead of #ifdef YYPURE.
9901
9902 2002-06-19 Akim Demaille <akim@epita.fr>
9903
9904 * data/bison.simple (b4_location_if): New.
9905 Use it instead of #ifdef YYLSP_NEEDED.
9906
9907 2002-06-19 Akim Demaille <akim@epita.fr>
9908
9909 Prepare @$ in %destructor, but currently don't bind it in the
9910 skeleton, as %location use is not cleaned up yet.
9911
9912 * src/scan-gram.l (handle_dollar, handle_destructor_at)
9913 (handle_action_at): New.
9914 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
9915 a braced_code_t and a location as additional arguments.
9916 (handle_destructor_dollar): Instead of requiring `b4_eval', just
9917 unquote one when outputting `b4_dollar_dollar'.
9918 Adjust callers.
9919 * data/bison.simple (b4_eval): Remove.
9920 (b4_symbol_destructor): Adjust.
9921 * tests/input.at (Invalid @n): Adjust.
9922
9923 2002-06-19 Zack Weinberg <zack@codesourcery.com>
9924
9925 * doc/bison.texinfo: Document ability to have multiple
9926 prologue sections.
9927
9928 2002-06-18 Akim Demaille <akim@epita.fr>
9929
9930 * src/files.c (compute_base_names): When computing the output file
9931 names from the input file name, strip the directory part.
9932
9933 2002-06-18 Akim Demaille <akim@epita.fr>
9934
9935 * data/bison.simple.new: Comment changes.
9936 Reported by Andreas Schwab.
9937
9938 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
9939
9940 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
9941 there are no `label `yyoverflowlab' defined but not used' warnings
9942 when yyoverflow is defined.
9943
9944 2002-06-18 Akim Demaille <akim@epita.fr>
9945
9946 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
9947 new member.
9948 (symbol_destructor_set): Adjust.
9949 * src/output.c (symbol_destructors_output): Output the destructor
9950 locations.
9951 Output the symbol name.
9952 * data/bison.simple (b4_symbol_destructor): Adjust.
9953
9954 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
9955 and Akim Demaille <akim@epita.fr>
9956
9957 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
9958 what's left on the stack when the error recovery hits EOF.
9959 * tests/actions.at (Destructors): Complete to exercise this case.
9960
9961 2002-06-17 Akim Demaille <akim@epita.fr>
9962
9963 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
9964 arguments is really empty, not only equal to `[]'.
9965 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
9966 member.
9967 (symbol_destructor_set): New.
9968 * src/output.c (symbol_destructors_output): New.
9969 * src/reader.h (brace_code_t, current_braced_code): New.
9970 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
9971 (handle_dollar): Rename as...
9972 (handle_action_dollar): this.
9973 (handle_destructor_dollar): New.
9974 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
9975 (grammar_declaration): Use it.
9976 * data/bison.simple (yystos): Is always defined.
9977 (yydestructor): New.
9978 * tests/actions.at (Destructors): New.
9979 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
9980
9981 2002-06-17 Akim Demaille <akim@epita.fr>
9982
9983 * src/symlist.h, src/symlist.c (symbol_list_length): New.
9984 * src/scan-gram.l (handle_dollar, handle_at): Compute the
9985 rule_length only when needed.
9986 * src/output.c (actions_output, token_definitions_output): Output
9987 the full M4 block.
9988 * src/symtab.c: Don't access directly to the symbol tag, use
9989 symbol_tag_get.
9990 * src/parse-gram.y: Use symbol_list_free.
9991
9992 2002-06-17 Akim Demaille <akim@epita.fr>
9993
9994 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
9995 (symbol_list_prepend, get_type_name): Move to...
9996 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
9997 (symbol_list_prepend, symbol_list_n_type_name_get): here.
9998 Adjust all callers.
9999 (symbol_list_free): New.
10000 * src/scan-gram.l (handle_dollar): Takes a location.
10001 * tests/input.at (Invalid $n): Adjust.
10002
10003 2002-06-17 Akim Demaille <akim@epita.fr>
10004
10005 * src/reader.h, src/reader.c (symbol_list_new): Export it.
10006 (symbol_list_prepend): New.
10007 * src/parse-gram.y (%union): `list' is a new member.
10008 (symbols.1): New, replaces...
10009 (terms_to_prec.1, nterms_to_type.1): these.
10010 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
10011 Take a location as additional argument.
10012 Adjust all callers.
10013
10014 2002-06-15 Akim Demaille <akim@epita.fr>
10015
10016 * src/parse-gram.y: Move %token in the declaration section so that
10017 we don't depend upon CVS Bison.
10018
10019 2002-06-15 Akim Demaille <akim@epita.fr>
10020
10021 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
10022 * src/print.c (print_core): Use it.
10023
10024 2002-06-15 Akim Demaille <akim@epita.fr>
10025
10026 * src/conflicts.c (log_resolution): Accept the rule involved in
10027 the sr conflicts instead of the lookahead number that points to
10028 that rule.
10029 (flush_reduce): Accept the current lookahead vector as argument,
10030 instead of the index in LA.
10031 (resolve_sr_conflict): Accept the current number of lookahead
10032 bitset to consider for the STATE, instead of the index in LA.
10033 (set_conflicts): Adjust.
10034 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
10035
10036 2002-06-15 Akim Demaille <akim@epita.fr>
10037
10038 * src/state.h (state_t): Replace the `lookaheadsp' member, a
10039 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
10040 Adjust all dependencies.
10041 * src/lalr.c (initialize_lookaheads): Split into...
10042 (states_lookaheads_count, states_lookaheads_initialize): these.
10043 (lalr): Adjust.
10044
10045 2002-06-15 Akim Demaille <akim@epita.fr>
10046
10047 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
10048 out of...
10049 (grammar_rules_print): here.
10050 * src/reduce.c (reduce_output): Use it.
10051 * tests/reduce.at (Useless Rules, Reduced Automaton)
10052 (Underivable Rules): Adjust.
10053
10054 2002-06-15 Akim Demaille <akim@epita.fr>
10055
10056 Copy BYacc's nice way to report the grammar.
10057
10058 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
10059 New.
10060 Don't print the rules' location, it is confusing and useless.
10061 (rule_print): Use grammar_rhs_print.
10062 * src/print.c (print_grammar): Use grammar_rules_print.
10063
10064 2002-06-15 Akim Demaille <akim@epita.fr>
10065
10066 Complete and rationalize `useless thing' warnings.
10067
10068 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
10069 (symbol_tag_print): New.
10070 Use them everywhere in place of accessing directly the tag member.
10071 * src/gram.h, src/gram.c (rule_print): New.
10072 Use it where a rule used to be printed `by hand'.
10073 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
10074 (reduce_grammar_tables): Report the useless rules.
10075 (reduce_print): Useless things are a warning, not an error.
10076 Report it as such.
10077 * tests/reduce.at (Useless Nonterminals, Useless Rules):
10078 (Reduced Automaton, Underivable Rules): Adjust.
10079 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
10080 * tests/conflicts.at (Unresolved SR Conflicts)
10081 (Solved SR Conflicts): Adjust.
10082
10083 2002-06-15 Akim Demaille <akim@epita.fr>
10084
10085 Let symbols have a location.
10086
10087 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
10088 (getsym): Adjust.
10089 Adjust all callers.
10090 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
10091 Use location_t, not int.
10092 * src/symtab.c (symbol_check_defined): Take advantage of the
10093 location.
10094 * tests/regression.at (Invalid inputs): Adjust.
10095
10096 2002-06-15 Akim Demaille <akim@epita.fr>
10097
10098 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
10099 (input): Don't try to initialize yylloc here, do it in the
10100 scanner.
10101 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
10102 * src/gram.h (rule_t): Change line and action_line into location
10103 and action_location, of location_t type.
10104 Adjust all dependencies.
10105 * src/location.h, src/location.c (empty_location): New.
10106 * src/reader.h, src/reader.c (grammar_start_symbol_set)
10107 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
10108 (grammar_current_rule_symbol_append)
10109 (grammar_current_rule_action_append): Expect a location as argument.
10110 * src/reader.c (grammar_midrule_action): Adjust to attach an
10111 action's location as dummy symbol location.
10112 * src/symtab.h, src/symtab.c (startsymbol_location): New.
10113 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
10114 the line numbers.
10115
10116 2002-06-14 Akim Demaille <akim@epita.fr>
10117
10118 Grammar declarations may be found in the grammar section.
10119
10120 * src/parse-gram.y (rules_or_grammar_declaration): New.
10121 (declarations): Each declaration may end with a semicolon, not
10122 just...
10123 (grammar_declaration): `"%union"'.
10124 (grammar): Branch to rules_or_grammar_declaration.
10125
10126 2002-06-14 Akim Demaille <akim@epita.fr>
10127
10128 * src/main.c (main): Invoke scanner_free.
10129
10130 2002-06-14 Akim Demaille <akim@epita.fr>
10131
10132 * src/output.c (m4_invoke): Extracted from...
10133 (output_skeleton): here.
10134 Free tempfile.
10135
10136 2002-06-14 Akim Demaille <akim@epita.fr>
10137
10138 * src/parse-gram.y (directives, directive, gram)
10139 (grammar_directives, precedence_directives, precedence_directive):
10140 Rename as...
10141 (declarations, declaration, grammar, grammar_declaration)
10142 (precedence_declaration, precedence_declarator): these.
10143 (symbol_declaration): New.
10144
10145 2002-06-14 Akim Demaille <akim@epita.fr>
10146
10147 * src/files.c (action_obstack): Remove, unused.
10148 (output_obstack): Remove it, and all its dependencies, as it is no
10149 longer needed.
10150 * src/reader.c (epilogue_set): Build the epilogue in the
10151 muscle_obstack.
10152 * src/output.h, src/output.c (muscle_obstack): Move to...
10153 * src/muscle_tab.h, src/muscle_tab.h: here.
10154 (muscle_init): Initialize muscle_obstack.
10155 (muscle_free): New.
10156 * src/main.c (main): Call it.
10157
10158 2002-06-14 Akim Demaille <akim@epita.fr>
10159
10160 * src/location.h: New, extracted from...
10161 * src/reader.h: here.
10162 * src/Makefile.am (noinst_HEADERS): Merge into
10163 (bison_SOURCES): this.
10164 Add location.h.
10165 * src/parse-gram.y: Use location_t instead of Bison's.
10166 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
10167 Use location_t instead of ints.
10168
10169 2002-06-14 Akim Demaille <akim@epita.fr>
10170
10171 * data/bison.simple, data/bison.c++: Be sure to restore the
10172 current #line when returning to the skeleton contents after having
10173 exposed the input file's #line.
10174
10175 2002-06-12 Akim Demaille <akim@epita.fr>
10176
10177 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
10178 eager.
10179 * tests/actions.at (Exotic Dollars): New.
10180
10181 2002-06-12 Akim Demaille <akim@epita.fr>
10182
10183 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
10184 ['"/] too eagerly.
10185 * tests/input.at (Torturing the Scanner): New.
10186
10187 2002-06-11 Akim Demaille <akim@epita.fr>
10188
10189 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
10190 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
10191 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
10192 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
10193 * src/reader.c (reader): Use it.
10194
10195 2002-06-11 Akim Demaille <akim@epita.fr>
10196
10197 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
10198 Adjust all callers.
10199 (scanner_last_string_free): New.
10200
10201 2002-06-11 Akim Demaille <akim@epita.fr>
10202
10203 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
10204 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
10205 (last_string, YY_OBS_FREE): New.
10206 Use them when returning an ID.
10207
10208 2002-06-11 Akim Demaille <akim@epita.fr>
10209
10210 Have Bison grammars parsed by a Bison grammar.
10211
10212 * src/reader.c, src/reader.h (prologue_augment): New.
10213 * src/reader.c (copy_definition): Remove.
10214
10215 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
10216 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
10217 (grammar_current_rule_prec_set, grammar_current_rule_check)
10218 (grammar_current_rule_symbol_append)
10219 (grammar_current_rule_action_append): Export.
10220 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
10221 (symbol_list_action_append): Remove.
10222 Hook the routines from reader.
10223 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
10224 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
10225
10226 * src/reader.c (read_declarations): Remove, unused.
10227
10228 * src/parse-gram.y: Handle the epilogue.
10229 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
10230 (grammar_start_symbol_set): this.
10231 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
10232 * src/reader.c (readgram): Remove, unused.
10233 (reader): Adjust to insert eoftoken and axiom where appropriate.
10234
10235 * src/reader.c (copy_dollar): Replace with...
10236 * src/scan-gram.h (handle_dollar): this.
10237 * src/parse-gram.y: Remove `%thong'.
10238
10239 * src/reader.c (copy_at): Replace with...
10240 * src/scan-gram.h (handle_at): this.
10241
10242 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
10243 New.
10244
10245 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
10246 time being.
10247
10248 * src/reader.h, src/reader.c (grammar_rule_end): New.
10249
10250 * src/parse.y (current_type, current_class): New.
10251 Implement `%nterm', `%token' support.
10252 Merge `%term' into `%token'.
10253 (string_as_id): New.
10254 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
10255 type name.
10256
10257 * src/parse-gram.y: Be sure to handle properly the beginning of
10258 rules.
10259
10260 * src/parse-gram.y: Handle %type.
10261 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
10262
10263 * src/parse-gram.y: More directives support.
10264 * src/options.c: No longer handle source directives.
10265
10266 * src/parse-gram.y: Fix %output.
10267
10268 * src/parse-gram.y: Handle %union.
10269 Use the prologue locations.
10270 * src/reader.c (parse_union_decl): Remove.
10271
10272 * src/reader.h, src/reader.c (epilogue_set): New.
10273 * src/parse-gram.y: Use it.
10274
10275 * data/bison.simple, data/bison.c++: b4_stype is now either not
10276 defined, then default to int, or to the contents of %union,
10277 without `union' itself.
10278 Adjust.
10279 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
10280
10281 * src/output.c (actions_output): Don't output braces, as they are
10282 already handled by the scanner.
10283
10284 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
10285 characters to themselves.
10286
10287 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
10288 that the epilogue has a proper #line.
10289
10290 * src/parse-gram.y: Handle precedence/associativity.
10291
10292 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
10293 a terminal.
10294 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
10295 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
10296 at all to define terminals that cannot be emitted.
10297
10298 * src/scan-gram.l: Escape M4 characters.
10299
10300 * src/scan-gram.l: Working properly with escapes in user
10301 strings/characters.
10302
10303 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
10304 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
10305 grammar.
10306 Use more modest sizes, as for the time being the parser does not
10307 release memory, and therefore the process swallows a huge amount
10308 of memory.
10309
10310 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
10311 stricter %token grammar.
10312
10313 * src/symtab.h (associativity): Add `undef_assoc'.
10314 (symbol_precedence_set): Do nothing when passed an undef_assoc.
10315 * src/symtab.c (symbol_check_alias_consistence): Adjust.
10316
10317 * tests/regression.at (Invalid %directive): Remove, as it is now
10318 meaningless.
10319 (Invalid inputs): Adjust to the new error messages.
10320 (Token definitions): The new grammar doesn't allow too many
10321 eccentricities.
10322
10323 * src/lex.h, src/lex.c: Remove.
10324 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
10325 (copy_character, copy_string2, copy_string, copy_identifier)
10326 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
10327 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
10328 (parse_action): Remove.
10329 * po/POTFILES.in: Adjust.
10330
10331 2002-06-11 Akim Demaille <akim@epita.fr>
10332
10333 * src/reader.c (parse_action): Don't store directly into the
10334 rule's action member: return the action as a string.
10335 Don't require `rule_length' as an argument: compute it.
10336 (grammar_current_rule_symbol_append)
10337 (grammar_current_rule_action_append): New, eved out from
10338 (readgram): here.
10339 Remove `action_flag', `rulelength', unused now.
10340
10341 2002-06-11 Akim Demaille <akim@epita.fr>
10342
10343 * src/reader.c (grammar_current_rule_prec_set).
10344 (grammar_current_rule_check): New, eved out from...
10345 (readgram): here.
10346 Remove `xaction', `first_rhs': useless.
10347 * tests/input.at (Type clashes): New.
10348 * tests/existing.at (GNU Cim Grammar): Adjust.
10349
10350 2002-06-11 Akim Demaille <akim@epita.fr>
10351
10352 * src/reader.c (grammar_midrule_action): New, Eved out from
10353 (readgram): here.
10354
10355 2002-06-11 Akim Demaille <akim@epita.fr>
10356
10357 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
10358 New.
10359 (readgram): Use them as replacement of inlined code, crule and
10360 crule1.
10361
10362 2002-06-11 Akim Demaille <akim@epita.fr>
10363
10364 * src/reader.c (grammar_end, grammar_symbol_append): New.
10365 (readgram): Use them.
10366 Make the use of `p' as local as possible.
10367
10368 2002-06-10 Akim Demaille <akim@epita.fr>
10369
10370 GCJ's parser requires the tokens to be defined before the prologue.
10371
10372 * data/bison.simple: Output the token definition before the user's
10373 prologue.
10374 * tests/regression.at (Braces parsing, Duplicate string)
10375 (Mixing %token styles): Check the output from bison.
10376 (Early token definitions): New.
10377
10378 2002-06-10 Akim Demaille <akim@epita.fr>
10379
10380 * src/symtab.c (symbol_user_token_number_set): Don't complain when
10381 assigning twice the same user number to a token, so that we can
10382 use it in...
10383 * src/lex.c (lex): here.
10384 Also use `symbol_class_set' instead of hand written code.
10385 * src/reader.c (parse_assoc_decl): Likewise.
10386
10387 2002-06-10 Akim Demaille <akim@epita.fr>
10388
10389 * src/symtab.c, src/symtab.c (symbol_class_set)
10390 (symbol_user_token_number_set): New.
10391 * src/reader.c (parse_token_decl): Use them.
10392 Use a switch instead of ifs.
10393 Use a single argument.
10394
10395 2002-06-10 Akim Demaille <akim@epita.fr>
10396
10397 Remove `%thong' support as it is undocumented, unused, duplicates
10398 `%token's job, and creates useless e-mail traffic with people who
10399 want to know what it is, why it is undocumented, unused, and
10400 duplicates `%token's job.
10401
10402 * src/reader.c (parse_thong_decl): Remove.
10403 * src/options.c (option_table): Remove "thong".
10404 * src/lex.h (tok_thong): Remove.
10405
10406 2002-06-10 Akim Demaille <akim@epita.fr>
10407
10408 * src/symtab.c, src/symtab.c (symbol_type_set)
10409 (symbol_precedence_set): New.
10410 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
10411 (value_components_used): Remove, unused.
10412
10413 2002-06-09 Akim Demaille <akim@epita.fr>
10414
10415 Move symbols handling code out of the reader.
10416
10417 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
10418 (axiom): Move to...
10419 * src/symtab.h, src/symtab.c: here.
10420
10421 * src/gram.c (start_symbol): Remove: use startsymbol->number.
10422 * src/reader.c (startval): Rename as...
10423 * src/symtab.h, src/symtab.c (startsymbol): this.
10424 * src/reader.c: Adjust.
10425
10426 * src/reader.c (symbol_check_defined, symbol_make_alias)
10427 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
10428 (token_translations_init)
10429 Move to...
10430 * src/symtab.c: here.
10431 * src/reader.c (packsymbols): Move to...
10432 * src/symtab.h, src/symtab.c (symbols_pack): here.
10433 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
10434 argument.
10435
10436 2002-06-03 Akim Demaille <akim@epita.fr>
10437
10438 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
10439 then statements.
10440
10441 2002-06-03 Akim Demaille <akim@epita.fr>
10442
10443 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
10444 structs with non literals.
10445 * src/scan-skel.l: never-interactive.
10446 * src/conflicts.c (enum conflict_resolution_e): No trailing
10447 comma.
10448 * src/getargs.c (usage): Split long literal strings.
10449 Reported by Hans Aberg.
10450
10451 2002-05-28 Akim Demaille <akim@epita.fr>
10452
10453 * data/bison.c++: Use C++ ostreams.
10454 (cdebug_): New member.
10455
10456 2002-05-28 Akim Demaille <akim@epita.fr>
10457
10458 * src/output.c (output_skeleton): Be sure to allocate enough room
10459 for `/' _and_ for `\0' in full_skeleton.
10460
10461 2002-05-28 Akim Demaille <akim@epita.fr>
10462
10463 * data/bison.c++: Catch up with bison.simple:
10464 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10465 and Paul Eggert <eggert@twinsun.com>: `error' handing.
10466 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
10467 and popping traces.
10468
10469 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10470
10471 * src/output.c (output_skeleton): Put an explicit path in front of
10472 the skeleton file name, rather than relying on the -I directory,
10473 to partially alleviate effects of having a skeleton file lying around
10474 in the current directory.
10475
10476 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10477
10478 * src/conflicts.c (log_resolution): Correct typo:
10479 obstack_printf should be obstack_fgrow1.
10480
10481 2002-05-26 Akim Demaille <akim@epita.fr>
10482
10483 * src/state.h (state_t): `solved_conflicts' is a new member.
10484 * src/LR0.c (new_state): Set it to 0.
10485 * src/conflicts.h, src/conflicts.c (print_conflicts)
10486 (free_conflicts, solve_conflicts): Rename as...
10487 (conflicts_print, conflicts_free, conflicts_solve): these.
10488 Adjust callers.
10489 * src/conflicts.c (enum conflict_resolution_e)
10490 (solved_conflicts_obstack): New, used by...
10491 (log_resolution): this.
10492 Adjust to attach the conflict resolution to each state.
10493 Complete the description with the precedence/associativity
10494 information.
10495 (resolve_sr_conflict): Adjust.
10496 * src/print.c (print_state): Output its solved_conflicts.
10497 * tests/conflicts.at (Unresolved SR Conflicts)
10498 (Solved SR Conflicts): Exercise --report=all.
10499
10500 2002-05-26 Akim Demaille <akim@epita.fr>
10501
10502 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10503 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
10504 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
10505 (token_number_t, item_number_as_token_number)
10506 (token_number_as_item_number, muscle_insert_token_number_table):
10507 Rename as...
10508 (symbol_number_t, item_number_as_symbol_number)
10509 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
10510 these, since it is more appropriate.
10511
10512 2002-05-26 Akim Demaille <akim@epita.fr>
10513
10514 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
10515 `Error:' lines.
10516 * data/bison.simple (yystos) [YYDEBUG]: New.
10517 (yyparse) [YYDEBUG]: Display the symbols which are popped during
10518 error recovery.
10519 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
10520
10521 2002-05-25 Akim Demaille <akim@epita.fr>
10522
10523 * doc/bison.texinfo (Debugging): Split into...
10524 (Tracing): this new section, its former contents, and...
10525 (Understanding): this new section.
10526 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
10527 by...
10528 (report_flag): this.
10529 Adjust all dependencies.
10530 (report_args, report_types, report_argmatch): New.
10531 (usage, getargs): Report/support -r, --report.
10532 * src/options.h
10533 (struct option_table_struct): Rename as..,
10534 (struct option_table_s): this.
10535 Rename the `set_flag' member to `flag' to match with getopt_long's
10536 struct.
10537 * src/options.c (option_table): Split verbose into an entry for
10538 %verbose, and another for --verbose.
10539 Support --report/-r, so remove -r from the obsolete --raw.
10540 * src/print.c: Attach full item sets and lookaheads reports to
10541 report_flag instead of trace_flag.
10542 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
10543
10544 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10545 and Paul Eggert <eggert@twinsun.com>
10546
10547 * data/bison.simple (yyparse): Correct error handling to conform to
10548 POSIX and yacc. Specifically, after syntax error is discovered,
10549 do not reduce further before shifting the error token.
10550 Clean up the code a bit by removing the labels yyerrdefault,
10551 yyerrhandle, yyerrpop.
10552 * NEWS: Document the above.
10553
10554 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10555
10556 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
10557 type; it isn't always big enough, since it doesn't necessarily
10558 include non-terminals.
10559 (yytranslate): Expand definition of yy_token_number_type, so that
10560 the latter can be removed.
10561 (yy_token_number_type): Remove, only one use.
10562 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
10563 don't use TokenNumberType as element type.
10564
10565 * tests/regression.at: Modify expected output to agree with change
10566 to yyr1 and yytranslate.
10567
10568 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
10569
10570 * src/reader.c (parse_action): Use copy_character instead of
10571 obstack_1grow.
10572
10573 2002-05-13 Akim Demaille <akim@epita.fr>
10574
10575 * tests/regression.at (Token definitions): Prototype yylex and
10576 yyerror.
10577
10578 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10579
10580 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
10581 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
10582 32-bit arithmetic.
10583 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
10584
10585 2002-05-07 Akim Demaille <akim@epita.fr>
10586
10587 * tests/synclines.at: Be sure to prototype yylex and yyerror to
10588 avoid GCC warnings.
10589
10590 2002-05-07 Akim Demaille <akim@epita.fr>
10591
10592 Kill GCC warnings.
10593
10594 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
10595 over the RHS of each rule.
10596 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
10597 * src/state.h (state_t): Member `nitems' is unsigned short.
10598 * src/LR0.c (get_state): Adjust.
10599 * src/reader.c (packgram): Likewise.
10600 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
10601 `Type'.
10602 (muscle_insert_int_table): Remove, unused.
10603 (prepare_rules): Remove `max'.
10604
10605 2002-05-06 Akim Demaille <akim@epita.fr>
10606
10607 * src/closure.c (print_firsts): Display of the symbol tags.
10608 (bitmatrix_print): Move to...
10609 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
10610 here.
10611 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
10612
10613 2002-05-06 Akim Demaille <akim@epita.fr>
10614
10615 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
10616 hash_do_for_each.
10617
10618 2002-05-06 Akim Demaille <akim@epita.fr>
10619
10620 * src/LR0.c (new_state, get_state): Instead of using the global
10621 `kernel_size' and `kernel_base', have two new arguments:
10622 `core_size' and `core'.
10623 Adjust callers.
10624
10625 2002-05-06 Akim Demaille <akim@epita.fr>
10626
10627 * src/reader.c (packgram): No longer end `ritem' with a 0
10628 sentinel: it is not used.
10629
10630 2002-05-05 Akim Demaille <akim@epita.fr>
10631
10632 New experimental feature: display the lookaheads in the report and
10633 graph.
10634
10635 * src/print (print_core): When --trace-flag, display the rules
10636 lookaheads.
10637 * src/print_graph.c (print_core): Likewise.
10638 Swap the arguments.
10639 Adjust caller.
10640
10641 2002-05-05 Akim Demaille <akim@epita.fr>
10642
10643 * tests/torture.at (Many lookaheads): New test.
10644
10645 2002-05-05 Akim Demaille <akim@epita.fr>
10646
10647 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
10648 (GENERATE_MUSCLE_INSERT_TABLE): this.
10649 (output_int_table, output_unsigned_int_table, output_short_table)
10650 (output_token_number_table, output_item_number_table): Replace with...
10651 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
10652 (muscle_insert_short_table, muscle_insert_token_number_table)
10653 (muscle_insert_item_number_table): these.
10654 Adjust all callers.
10655 (prepare_tokens): Don't free `translations', since...
10656 * src/reader.h, src/reader.c (grammar_free): do it.
10657 Move to...
10658 * src/gram.h, src/gram.c (grammar_free): here.
10659 * data/bison.simple, data/bison.c++: b4_token_number_max is now
10660 b4_translate_max.
10661
10662 2002-05-05 Akim Demaille <akim@epita.fr>
10663
10664 * src/output.c (output_unsigned_int_table): New.
10665 (prepare_rules): `i' is unsigned.
10666 `prhs', `rline', `r2' are unsigned int.
10667 Rename muscle `rhs_number_max' as `rhs_max'.
10668 Output muscles `prhs_max', `rline_max', and `r2_max'.
10669 Free rline and r1.
10670 * data/bison.simple, data/bison.c++: Adjust to use these muscles
10671 to compute types instead of constant types.
10672 * tests/regression.at (Web2c Actions): Adjust.
10673
10674 2002-05-04 Akim Demaille <akim@epita.fr>
10675
10676 * src/symtab.h (SALIAS, SUNDEF): Rename as...
10677 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
10678 Adjust dependencies.
10679 * src/output.c (token_definitions_output): Be sure not to output a
10680 `#define 'a'' when fed with `%token 'a' "a"'.
10681 * tests/regression.at (Token definitions): New.
10682
10683 2002-05-03 Paul Eggert <eggert@twinsun.com>
10684
10685 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
10686 for K&R C.
10687
10688 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
10689
10690 * Makefile.am (SUBDIRS): Remove intl.
10691 (EXTRA_DIST): Add config/config.rpath.
10692
10693 2002-05-03 Akim Demaille <akim@epita.fr>
10694
10695 * data/bison.simple (m4_if): Don't output empty enums.
10696 And actually, output valid enum definitions :(.
10697
10698 2002-05-03 Akim Demaille <akim@epita.fr>
10699
10700 * configure.bat: Remove, completely obsolete.
10701 * Makefile.am (EXTRA_DIST): Adjust.
10702 Don't distribute config.rpath...
10703 * config/Makefile.am (EXTRA_DIST): Do it.
10704
10705 2002-05-03 Akim Demaille <akim@epita.fr>
10706
10707 * configure.in (GETTEXT_VERSION): New.
10708 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
10709
10710 2002-05-03 Akim Demaille <akim@epita.fr>
10711
10712 * data/bison.simple (b4_token_enum): New.
10713 (b4_token_defines): Use it to output tokens both as #define and
10714 enums.
10715 Suggested by Paul Eggert.
10716 * src/output.c (token_definitions_output): Don't output spurious
10717 white spaces.
10718
10719 2002-05-03 Akim Demaille <akim@epita.fr>
10720
10721 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
10722
10723 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
10724
10725 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
10726 Update the stack class, give a try to deque as the default container.
10727
10728 2002-05-02 Akim Demaille <akim@epita.fr>
10729
10730 * data/bison.simple (yyparse): Do not implement @$ = @1.
10731 (YYLLOC_DEFAULT): Adjust to do it.
10732 * doc/bison.texinfo (Location Default Action): Fix.
10733
10734 2002-05-02 Akim Demaille <akim@epita.fr>
10735
10736 * src/reader.c (parse_braces): Merge into...
10737 (parse_action): this.
10738
10739 2002-05-02 Akim Demaille <akim@epita.fr>
10740
10741 * configure.in (ALL_LINGUAS): Remove.
10742 * po/LINGUAS, hr.po: New.
10743
10744 2002-05-02 Akim Demaille <akim@epita.fr>
10745
10746 Remove the so called hairy (semantic) parsers.
10747
10748 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
10749 * src/gram.h, src/gram.c (semantic_parser): Remove.
10750 (rule_t): Remove the guard and guard_line members.
10751 * src/lex.h (token_t): remove tok_guard.
10752 * src/options.c (option_table): Remove %guard and %semantic_parser
10753 support.
10754 * src/output.c, src/output.h (guards_output): Remove.
10755 (prepare): Adjust.
10756 (token_definitions_output): Don't output the `T'
10757 tokens (???).
10758 (output_skeleton): Don't output the guards.
10759 * src/files.c, src/files.c (attrsfile): Remove.
10760 * src/reader.c (symbol_list): Remove the guard and guard_line
10761 members.
10762 Adjust dependencies.
10763 (parse_guard): Remove.
10764 * data/bison.hairy: Remove.
10765 * doc/bison.texinfo (Environment Variables): Remove occurrences of
10766 BISON_HAIRY.
10767
10768 2002-05-02 Akim Demaille <akim@epita.fr>
10769
10770 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
10771 (parse_guard): Rename the formal argument `stack_offset' as
10772 `rule_length', which is more readable.
10773 Adjust callers.
10774 (copy_at, copy_dollar): Instead of outputting the hard coded
10775 values of $$, $n and so forth, output invocation to b4_lhs_value,
10776 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
10777 Note: this patch partially drops `semantic-parser' support: it
10778 always does `rule_length - n', where semantic parsers ought to
10779 always use `-n'.
10780 * data/bison.simple, data/bison.c++ (b4_lhs_value)
10781 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
10782
10783 2002-05-02 Akim Demaille <akim@epita.fr>
10784
10785 * configure.in (AC_INIT): Bump to 1.49b.
10786 (AM_INIT_AUTOMAKE): Short invocation.
10787
10788 2002-05-02 Akim Demaille <akim@epita.fr>
10789
10790 Version 1.49a.
10791
10792 2002-05-01 Akim Demaille <akim@epita.fr>
10793
10794 * src/skeleton.h: Remove.
10795
10796 2002-05-01 Akim Demaille <akim@epita.fr>
10797
10798 * src/skeleton.h: Fix the #endif.
10799 Reported by Magnus Fromreide.
10800
10801 2002-04-26 Paul Eggert <eggert@twinsun.com>
10802
10803 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
10804 Define if we define YYSTYPE and YYLTYPE, respectively.
10805 (YYCOPY): Fix [] quoting problem in the non-GCC case.
10806
10807 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
10808
10809 * src/scan-skel.l: Postprocess quadrigraphs.
10810
10811 * src/reader.c (copy_character): New function, used to output
10812 single characters while replacing `[' and `]' with quadrigraphs, to
10813 avoid troubles with M4 quotes.
10814 (copy_comment): Output characters with copy_character.
10815 (read_additionnal_code): Likewise.
10816 (copy_string2): Likewise.
10817 (copy_definition): Likewise.
10818
10819 * tests/calc.at: Exercise M4 quoting.
10820
10821 2002-04-25 Akim Demaille <akim@epita.fr>
10822
10823 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
10824 between `!' and the command.
10825 Reported by Paul Eggert.
10826
10827 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
10828
10829 * tests/calc.at: Exercise prologue splitting.
10830
10831 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
10832 `b4_post_prologue' instead of `b4_prologue'.
10833
10834 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
10835 muscles.
10836 (output): Free pre_prologue_obstack and post_prologue_obstack.
10837 * src/files.h, src/files.c (attrs_obstack): Remove.
10838 (pre_prologue_obstack, post_prologue_obstack): New.
10839 * src/reader.c (copy_definition): Add a parameter to specify the
10840 obstack to fill, instead of using attrs_obstack unconditionally.
10841 (read_declarations): Pass pre_prologue_obstack to copy_definition if
10842 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
10843
10844 2002-04-23 Paul Eggert <eggert@twinsun.com>
10845
10846 * data/bison.simple: Remove unnecessary commentary and white
10847 space differences from 1_29-branch.
10848 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
10849
10850 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
10851 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
10852 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
10853 constructors or destructors.
10854
10855 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
10856
10857 2002-04-23 Akim Demaille <akim@epita.fr>
10858
10859 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
10860 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
10861 location with columns.
10862 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
10863 All reported by Paul Eggert.
10864
10865 2002-04-22 Akim Demaille <akim@epita.fr>
10866
10867 * src/reduce.c (dump_grammar): Move to...
10868 * src/gram.h, src/gram.c (grammar_dump): here.
10869 Be sure to separate long item numbers.
10870 Don't read the members of a rule's prec if its nil.
10871
10872 2002-04-22 Akim Demaille <akim@epita.fr>
10873
10874 * src/output.c (table_size, table_grow): New.
10875 (MAXTABLE): Remove, replace uses with table_size.
10876 (pack_vector): Instead of dying when the table is too big, grow it.
10877
10878 2002-04-22 Akim Demaille <akim@epita.fr>
10879
10880 * data/bison.simple (yyr1): Its type is that of a token number.
10881 * data/bison.c++ (r1_): Likewise.
10882 * tests/regression.at (Web2c Actions): Adjust.
10883
10884 2002-04-22 Akim Demaille <akim@epita.fr>
10885
10886 * src/reader.c (token_translations_init): 256 is now the default
10887 value for the error token, i.e., it will be assigned another
10888 number if the user assigned 256 to one of her tokens.
10889 (reader): Don't force 256 to error.
10890 * doc/bison.texinfo (Symbols): Adjust.
10891 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
10892 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
10893 etc. instead of 10, 20, 30 (which was used to `jump' over error
10894 (256) and undefined (2)).
10895
10896 2002-04-22 Akim Demaille <akim@epita.fr>
10897
10898 Propagate more token_number_t.
10899
10900 * src/gram.h (token_number_as_item_number)
10901 (item_number_as_token_number): New.
10902 * src/output.c (GENERATE_OUTPUT_TABLE): New.
10903 Use it to create output_item_number_table and
10904 output_token_number_table.
10905 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10906 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
10907 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
10908 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
10909
10910 2002-04-22 Akim Demaille <akim@epita.fr>
10911
10912 * src/output.h, src/output.c (get_lines_number): Remove.
10913
10914 2002-04-19 Akim Demaille <akim@epita.fr>
10915
10916 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
10917 as Lex/Flex'.
10918 (Debugging): More details about enabling the debugging features.
10919 (Table of Symbols): Describe $$, $n, @$, and @n.
10920 Suggested by Tim Josling.
10921
10922 2002-04-19 Akim Demaille <akim@epita.fr>
10923
10924 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
10925
10926 2002-04-10 Akim Demaille <akim@epita.fr>
10927
10928 * src/system.h: Rely on HAVE_LIMITS_H.
10929 Suggested by Paul Eggert.
10930
10931 2002-04-09 Akim Demaille <akim@epita.fr>
10932
10933 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
10934 full stderr, and strip it according to the bison options, instead
10935 of composing the error message from different bits.
10936 This makes it easier to check for several error messages.
10937 Adjust all the invocations.
10938 Add an invocation exercising the error token.
10939 Add an invocation demonstrating a stupid error message.
10940 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
10941 Adjust the tests.
10942 Error message are for stderr, not stdout.
10943
10944 2002-04-09 Akim Demaille <akim@epita.fr>
10945
10946 * src/gram.h, src/gram.c (error_token_number): Remove, use
10947 errtoken->number.
10948 * src/reader.c (reader): Don't specify the user token number (2)
10949 for $undefined, as it uselessly prevents using it.
10950 * src/gram.h (token_number_t): Move to...
10951 * src/symtab.h: here.
10952 (state_t.number): Is a token_number_t.
10953 * src/print.c, src/reader.c: Use undeftoken->number instead of
10954 hard coded 2.
10955 (Even though this 2 is not the same as above: the number of the
10956 undeftoken remains being 2, it is its user token number which
10957 might not be 2).
10958 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
10959 `user_token_number_max'.
10960 Output `undef_token_number'.
10961 * data/bison.simple, data/bison.c++: Use them.
10962 Be sure to map invalid yylex return values to
10963 `undef_token_number'. This saves us from gratuitous SEGV.
10964
10965 * tests/conflicts.at (Solved SR Conflicts)
10966 (Unresolved SR Conflicts): Adjust.
10967 * tests/regression.at (Web2c Actions): Adjust.
10968
10969 2002-04-08 Akim Demaille <akim@epita.fr>
10970
10971 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
10972 Adding #line.
10973 Remove the duplicate `typedefs'.
10974 (RhsNumberType): Fix the declaration and various other typos.
10975 Use __ofile__.
10976 * data/bison.simple: Use __ofile__.
10977 * src/scan-skel.l: Handle __ofile__.
10978
10979 2002-04-08 Akim Demaille <akim@epita.fr>
10980
10981 * src/gram.h (item_number_t): New, the type of item numbers in
10982 RITEM. Note that it must be able to code symbol numbers as
10983 positive number, and the negation of rule numbers as negative
10984 numbers.
10985 Adjust all dependencies (pretty many).
10986 * src/reduce.c (rule): Remove this `short *' pointer: use
10987 item_number_t.
10988 * src/system.h (MINSHORT, MAXSHORT): Remove.
10989 Include `limits.h'.
10990 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
10991 (shortcpy): Remove.
10992 (MAXTABLE): Move to...
10993 * src/output.c (MAXTABLE): here.
10994 (prepare_rules): Use output_int_table to output rhs.
10995 * data/bison.simple, data/bison.c++: Adjust.
10996 * tests/torture.at (Big triangle): Move the limit from 254 to
10997 500.
10998 * tests/regression.at (Web2c Actions): Ajust.
10999
11000 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
11001 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
11002 passes, but produces negative #line number, once fixed, GCC is
11003 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
11004 C), it passes.
11005 * src/state.h (state_h): Code input lines on ints, not shorts.
11006
11007 2002-04-08 Akim Demaille <akim@epita.fr>
11008
11009 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
11010 and then the grammar.
11011
11012 2002-04-08 Akim Demaille <akim@epita.fr>
11013
11014 * src/system.h: No longer using strndup.
11015
11016 2002-04-07 Akim Demaille <akim@epita.fr>
11017
11018 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
11019 * src/output.c (output_table_data): Return the longest number.
11020 (prepare_tokens): Output `token_number_max').
11021 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
11022 New.
11023 Use them to define yy_token_number_type/TokenNumberType.
11024 Use this type for yytranslate.
11025 * tests/torture.at (Big triangle): Push the limit from 124 to
11026 253.
11027 * tests/regression.at (Web2c Actions): Adjust.
11028
11029 2002-04-07 Akim Demaille <akim@epita.fr>
11030
11031 * tests/torture.at (Big triangle): New.
11032 (GNU AWK Grammar, GNU Cim Grammar): Move to...
11033 * tests/existing.at: here.
11034
11035 2002-04-07 Akim Demaille <akim@epita.fr>
11036
11037 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
11038 nritems.
11039 Adjust dependencies.
11040
11041 2002-04-07 Akim Demaille <akim@epita.fr>
11042
11043 * src/reader.c: Normalize increments to prefix form.
11044
11045 2002-04-07 Akim Demaille <akim@epita.fr>
11046
11047 * src/reader.c, symtab.c: Remove debugging code.
11048
11049 2002-04-07 Akim Demaille <akim@epita.fr>
11050
11051 Rename all the `bucket's as `symbol_t'.
11052
11053 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
11054 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
11055 * src/symtab.c, src/symtab.h (bucket): Rename as...
11056 (symbol_t): this.
11057 (symbol_list_new, bucket_check_defined, bucket_make_alias)
11058 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
11059 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11060 (buckets_new, buckets_free, buckets_do): Rename as...
11061 (symbol_list_new, symbol_check_defined, symbol_make_alias)
11062 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
11063 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
11064 (symbols_new, symbols_free, symbols_do): these.
11065
11066 2002-04-07 Akim Demaille <akim@epita.fr>
11067
11068 Use lib/hash for the symbol table.
11069
11070 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
11071 EOF.
11072 * src/lex.c (lex): Set the `number' member of new terminals.
11073 * src/reader.c (bucket_check_defined, bucket_make_alias)
11074 (bucket_check_alias_consistence, bucket_translation): New.
11075 (reader, grammar_free, readgram, token_translations_init)
11076 (packsymbols): Adjust.
11077 (reader): Number the predefined tokens.
11078 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
11079 for predefined tokens.
11080 * src/symtab.h (bucket): Remove all the hash table related
11081 members.
11082 * src/symtab.c (symtab): Replace by...
11083 (bucket_table): this.
11084 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11085 (buckets_new, buckets_do): New.
11086
11087 2002-04-07 Akim Demaille <akim@epita.fr>
11088
11089 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
11090 (start_symbol, max_user_token_number, semantic_parser)
11091 (error_token_number): Initialize.
11092 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
11093 Initialize.
11094 (reader): Don't.
11095 (errtoken, eoftoken, undeftoken, axiom): Extern.
11096
11097 2002-04-07 Akim Demaille <akim@epita.fr>
11098
11099 * src/gram.h (rule_s): prec and precsym are now pointers
11100 to the bucket giving the priority/associativity.
11101 Member `associativity' removed: useless.
11102 * src/reduce.c, src/conflicts.c: Adjust.
11103
11104 2002-04-07 Akim Demaille <akim@epita.fr>
11105
11106 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
11107 Properly escape the symbols' TAG when outputting them.
11108
11109 2002-04-07 Akim Demaille <akim@epita.fr>
11110
11111 * src/lalr.h (LA): Is a bitsetv, not bitset*.
11112
11113 2002-04-07 Akim Demaille <akim@epita.fr>
11114
11115 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
11116 (LArule): this, which is an array to rule_t*.
11117 * src/print.c, src/conflicts.c: Adjust.
11118
11119 2002-04-07 Akim Demaille <akim@epita.fr>
11120
11121 * src/gram.h (rule_t): Rename `number' as `user_number'.
11122 `number' is a new member.
11123 Adjust dependencies.
11124 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
11125
11126 2002-04-07 Akim Demaille <akim@epita.fr>
11127
11128 As a result of the previous patch, it is no longer needed
11129 to reorder ritem itself.
11130
11131 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
11132
11133 2002-04-07 Akim Demaille <akim@epita.fr>
11134
11135 Be sure never to walk through RITEMS, but use only data related to
11136 the rules themselves. RITEMS should be banished.
11137
11138 * src/output.c (output_token_translations): Rename as...
11139 (prepare_tokens): this.
11140 In addition to `translate', prepare the muscles `tname' and
11141 `toknum', which were handled by...
11142 (output_rule_data): this.
11143 Remove, and move the remainder of its outputs into...
11144 (prepare_rules): this new routines, which also merges content from
11145 (output_gram): this.
11146 (prepare_rules): Be sure never to walk through RITEMS.
11147 (output_stos): Rename as...
11148 (prepare_stos): this.
11149 (output): Always invoke prepare_states, after all, just don't use it
11150 in the output if you don't need it.
11151
11152 2002-04-07 Akim Demaille <akim@epita.fr>
11153
11154 * src/LR0.c (new_state): Display `nstates' as the name of the
11155 newly created state.
11156 Adjust to initialize first_state and last_state if needed.
11157 Be sure to distinguish the initial from the final state.
11158 (new_states): Create the itemset of the initial state, and use
11159 new_state.
11160 * src/closure.c (closure): Now that the initial state has its
11161 items properly set, there is no need for a special case when
11162 creating `ruleset'.
11163
11164 As a result, now the rule 0, reducing to $axiom, is visible in the
11165 outputs. Adjust the test suite.
11166
11167 * tests/conflicts.at (Solved SR Conflicts)
11168 (Unresolved SR Conflicts): Adjust.
11169 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
11170 * tests/conflicts.at (S/R in initial): New.
11171
11172 2002-04-07 Akim Demaille <akim@epita.fr>
11173
11174 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
11175 the RHS of the rules.
11176 * src/output.c (output_gram): Likewise.
11177
11178 2002-04-07 Akim Demaille <akim@epita.fr>
11179
11180 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
11181 bucket.
11182 Adjust all dependencies.
11183 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
11184 `number' of the buckets too.
11185 * src/gram.h: Include `symtab.h'.
11186 (associativity): Move to...
11187 * src/symtab.h: here.
11188 No longer include `gram.h'.
11189
11190 2002-04-07 Akim Demaille <akim@epita.fr>
11191
11192 * src/gram.h, src/gram.c (rules_rhs_length): New.
11193 (ritem_longest_rhs): Use it.
11194 * src/gram.h (rule_t): `number' is a new member.
11195 * src/reader.c (packgram): Set it.
11196 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
11197 the end of `rules', and count them out of `nrules'.
11198 (reduce_output, dump_grammar): Adjust.
11199 * src/print.c (print_grammar): It is no longer needed to check for
11200 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
11201 * tests/reduce.at (Reduced Automaton): New test.
11202
11203 2002-04-07 Akim Demaille <akim@epita.fr>
11204
11205 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
11206 lacking `+ 1' to nrules, Bison reported as useless a token if it
11207 was used solely to set the precedence of the last rule...
11208
11209 2002-04-07 Akim Demaille <akim@epita.fr>
11210
11211 * data/bison.c++, data/bison.simple: Don't output the current file
11212 name in #line, to avoid useless diffs between two identical
11213 outputs under different names.
11214
11215 2002-04-07 Akim Demaille <akim@epita.fr>
11216
11217 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
11218 Normalize loops to using `< nrules + 1', not `<= nrules'.
11219
11220 2002-04-07 Akim Demaille <akim@epita.fr>
11221
11222 * TODO: Update.
11223
11224 2002-04-07 Akim Demaille <akim@epita.fr>
11225
11226 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
11227 bucket.value as bucket.number.
11228
11229 2002-04-07 Akim Demaille <akim@epita.fr>
11230
11231 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
11232 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
11233 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
11234 RHS, instead of being an index in RITEMS.
11235
11236 2002-04-04 Paul Eggert <eggert@twinsun.com>
11237
11238 * doc/bison.texinfo: Update copyright date.
11239 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
11240 (Symbols): Warn about running Bison in one character set,
11241 but compiling and/or running in an incompatible one.
11242 Warn about character code 256, too.
11243
11244 2002-04-03 Paul Eggert <eggert@twinsun.com>
11245
11246 * src/bison.data (YYSTACK_ALLOC): Depend on whether
11247 YYERROR_VERBOSE is nonzero, not whether it is defined.
11248
11249 Merge changes from bison-1_29-branch.
11250
11251 2002-03-20 Paul Eggert <eggert@twinsun.com>
11252
11253 Merge fixes from Debian bison_1.34-1.diff.
11254
11255 * configure.in (AC_PREREQ): 2.53.
11256
11257 2002-03-20 Akim Demaille <akim@epita.fr>
11258
11259 * src/conflicts.c (log_resolution): Argument `resolution' is const.
11260
11261 2002-03-19 Paul Eggert <eggert@twinsun.com>
11262
11263 * src/bison.simple (YYCOPY): New macro.
11264 (YYSTACK_RELOCATE): Use it.
11265 Remove Type arg; no longer needed. All callers changed.
11266 (yymemcpy): Remove; no longer needed.
11267
11268 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
11269 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
11270
11271 2002-03-19 Akim Demaille <akim@epita.fr>
11272
11273 Test and fix the #line outputs.
11274
11275 * tests/atlocal.at (GCC): New.
11276 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
11277 (Prologue synch line, %union synch line, Postprologue synch line)
11278 (Action synch line, Epilogue synch line): New tests.
11279 * src/reader.c (parse_union_decl): Define the muscle stype_line.
11280 * data/bison.simple, data/bison.c++: Use it.
11281
11282 2002-03-19 Akim Demaille <akim@epita.fr>
11283
11284 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
11285 (Solved SR Conflicts, %expect not enough, %expect right)
11286 (%expect too much): Move to...
11287 * tests/conflicts.at: this new file.
11288
11289 2002-03-19 Akim Demaille <akim@epita.fr>
11290
11291 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11292 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
11293 that we can move to enums for instance.
11294 * src/output.c (token_definitions_output): Output a list of
11295 `token-name, token-number' instead of the #define.
11296 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
11297
11298 2002-03-14 Akim Demaille <akim@epita.fr>
11299
11300 Use Gettext 0.11.1.
11301
11302 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
11303
11304 * data/bison.c++: Make the user able to add members to the generated
11305 parser by subclassing.
11306
11307 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
11308
11309 * src/reader.c (read_additionnal_code): `c' should be an integer, not
11310 a character.
11311 Reported by Nicolas Tisserand and Nicolas Burrus.
11312
11313 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
11314
11315 * src/reader.c: Warn about lacking semi-colons, do not complain.
11316
11317 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
11318
11319 * data/bison.c++: Remove a debug line.
11320
11321 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
11322
11323 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
11324 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
11325 provide a default implementation.
11326
11327 2002-03-04 Akim Demaille <akim@epita.fr>
11328
11329 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
11330 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
11331 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
11332 * tests/semantic.at (Parsing Guards): Similarly.
11333 * src/reader.at (readgram): Complain if the last rule is not ended
11334 with a semi-colon.
11335
11336 2002-03-04 Akim Demaille <akim@epita.fr>
11337
11338 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
11339 * src/closure.c: here.
11340 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
11341 RTC.
11342 * src/warshall.h, src/warshall.c: Remove.
11343 * tests/sets.at (Broken Closure): Adjust.
11344
11345 2002-03-04 Akim Demaille <akim@epita.fr>
11346
11347 * src/output.c (output_skeleton): tempdir is const.
11348 bytes_read is unused.
11349
11350 2002-03-04 Akim Demaille <akim@epita.fr>
11351
11352 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11353 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
11354 Update.
11355 From Michael Hayes.
11356
11357 2002-03-04 Akim Demaille <akim@epita.fr>
11358
11359 * src/closure.c (closure): `r' is unused.
11360
11361 2002-03-04 Akim Demaille <akim@epita.fr>
11362
11363 * tests/sets.at (Broken Closure): Add the ending `;'.
11364 * src/reader.at (readgram): Complain if a rule is not ended with a
11365 semi-colon.
11366
11367 2002-03-04 Akim Demaille <akim@epita.fr>
11368
11369 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
11370 (count_sr_conflicts): Use bitset_count.
11371 * src/reduce.c (inaccessable_symbols): Ditto.
11372 (bits_size): Remove.
11373 * src/warshall.h, src/warshall.c: Convert to bitsetv.
11374
11375 2002-03-04 Akim Demaille <akim@epita.fr>
11376
11377 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
11378 * src/reduce.c: Remove the `bitset_zero's following the
11379 `bitset_create's, as now it is performed by the latter.
11380
11381 2002-03-04 Akim Demaille <akim@epita.fr>
11382
11383 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
11384 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
11385 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
11386 latest sources from Michael.
11387
11388 2002-03-04 Akim Demaille <akim@epita.fr>
11389
11390 * src/output.c (output): Don't free the grammar.
11391 * src/reader.c (grammar_free): New.
11392 * src/main.c (main): Call it and don't free symtab here.
11393
11394 2002-03-04 Akim Demaille <akim@epita.fr>
11395
11396 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
11397 before returning.
11398 Reported by Benoit Perrot.
11399
11400 2002-03-04 Akim Demaille <akim@epita.fr>
11401
11402 Use bitset operations when possible, not loops over bits.
11403
11404 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
11405 bitset_or.
11406 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
11407 * src/reduce.c (useless_nonterminals): Formatting changes.
11408 * src/warshall.c (TC): Use bitset_or.
11409
11410 2002-03-04 Akim Demaille <akim@epita.fr>
11411
11412 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
11413 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
11414 Ditto.
11415
11416 2002-03-04 Akim Demaille <akim@epita.fr>
11417
11418 * src/lalr.c (F): Now a bitset*.
11419 Adjust all dependencies.
11420
11421 2002-03-04 Akim Demaille <akim@epita.fr>
11422
11423 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
11424 Adjust all dependencies.
11425
11426 2002-03-04 Akim Demaille <akim@epita.fr>
11427
11428 * src/L0.c, src/LR0.h (nstates): Be size_t.
11429 Adjust comparisons (signed vs unsigned).
11430 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
11431 bitset*.
11432 Adjust all dependencies.
11433
11434 2002-03-04 Akim Demaille <akim@epita.fr>
11435
11436 * src/closure.c (firsts): Now, also a bitset.
11437 Adjust all dependencies.
11438 (varsetsize): Remove, now unused.
11439 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
11440
11441 2002-03-04 Akim Demaille <akim@epita.fr>
11442
11443 * src/print.c: Convert to use bitset.h, not hand coded iterations
11444 over ints.
11445
11446 2002-03-04 Akim Demaille <akim@epita.fr>
11447
11448 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
11449
11450 2002-03-04 Akim Demaille <akim@epita.fr>
11451
11452 * src/closure.c (ruleset): Be a bitset.
11453 (rulesetsize): Remove.
11454
11455 2002-03-04 Akim Demaille <akim@epita.fr>
11456
11457 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11458 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
11459 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
11460 * src/closure.c (fderives): Be an array of bitsets.
11461
11462 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
11463
11464 * data/bison.c++: Merge the two generated headers. Insert a copyright
11465 notice in each output file.
11466
11467 2002-02-28 Akim Demaille <akim@epita.fr>
11468
11469 * data/bison.c++: Copy the prologue of bison.simple to fetch
11470 useful M4 definitions, such as b4_header_guard.
11471
11472 2002-02-25 Akim Demaille <akim@epita.fr>
11473
11474 * src/getargs.c (version): Give the name of the authors, and use a
11475 translator friendly scheme for the bgr
11476 copyright notice.
11477
11478 2002-02-25 Akim Demaille <akim@epita.fr>
11479
11480 * src/output.c (header_output): Remove, now handled completely via
11481 M4.
11482
11483 2002-02-25 Akim Demaille <akim@epita.fr>
11484
11485 * m4/m4.m4: New, from CVS Autoconf.
11486 * configure.in: Invoke it.
11487 * src/output.c (output_skeleton): Use its result instead of the
11488 hard coded name.
11489
11490 2002-02-25 Akim Demaille <akim@epita.fr>
11491
11492 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
11493 Fileutils 4.1.5.
11494 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
11495 * src/output.c (output_skeleton): Use mkstemp to create a real
11496 temporary file.
11497 Move the filling of `skeleton' and its muscle to...
11498 (prepare): here.
11499 (output): Move the definition of the prologue muscle to...
11500 (prepare): here.
11501 * src/system.h (DEFAULT_TMPDIR): New.
11502
11503 2002-02-14 Paul Eggert <eggert@twinsun.com>
11504
11505 Remove the support for C++ namespace cleanliness; it was
11506 causing more problems than it was curing, since it didn't work
11507 properly on some nonstandard C++ compilers. This can wait
11508 for a proper C++ parser.
11509
11510 * NEWS: Document this.
11511 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
11512 of C++, as it's treated like C now.
11513 * src/bison.simple (YYSTD): Remove.
11514 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
11515 Treat C++ just like Standard C instead of trying to support
11516 namespace cleanliness.
11517
11518 2002-02-14 Akim Demaille <akim@epita.fr>
11519
11520 * tests/regression.at (else): Adjust to Andreas' change.
11521
11522 2002-02-14 Akim Demaille <akim@epita.fr>
11523
11524 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
11525
11526 2002-02-13 Andreas Schwab <schwab@suse.de>
11527
11528 * src/output.c (output_rule_data): Don't output NULL, it might
11529 not be defined yet.
11530
11531 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
11532
11533 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
11534 (Copyright notice): Update.
11535
11536 2002-02-11 Akim Demaille <akim@epita.fr>
11537
11538 * tests/regression.at (%nonassoc and eof): Don't include
11539 nonportable headers.
11540
11541 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
11542
11543 * data/bison.c++: Correct error recovery. Make the user able to
11544 initialize the starting location.
11545
11546 2002-02-07 Akim Demaille <akim@epita.fr>
11547
11548 * tests/input.at: New.
11549
11550 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
11551
11552 * data/bison.c++: Replace some direct m4 expansions by constants. Be
11553 more consistent when naming methods and variables. Put preprocessor
11554 directives around tables only needed for debugging.
11555
11556 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
11557
11558 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
11559 C++ parsers.
11560 (yy::b4_name::parse): Use print_.
11561
11562 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
11563
11564 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
11565
11566 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
11567
11568 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
11569 C++ parsers.
11570 (yy::b4_name::parse): Build verbose error messages, and use error_.
11571
11572 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
11573
11574 * data/bison.c++: Fix m4 quoting in comments.
11575
11576 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
11577
11578 * data/bison.c++: Adjust the parser code. Fix some muscles that were
11579 not expanded by m4.
11580
11581 2002-02-05 Akim Demaille <akim@epita.fr>
11582
11583 * data/bison.c++: Adjust to the M4 back end.
11584 More is certainly needed.
11585
11586 2002-02-05 Akim Demaille <akim@epita.fr>
11587
11588 Give a try to M4 as a back end.
11589
11590 * lib/readpipe.c: New, from wdiff.
11591 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
11592 BISON_HAIRY.
11593 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
11594 specific values. Now it is m4 that performs the lookup.
11595 * src/parse-skel.y: Remove.
11596 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
11597 * src/output.c (actions_output, guards_output)
11598 (token_definitions_output): No longer keeps track of the output
11599 line number, hence remove the second argument.
11600 (guards_output): Check against the guard member of a rule, not the
11601 action member.
11602 Adjust callers.
11603 (output_skeleton): Don't look for the skeleton location, let m4 do
11604 that.
11605 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
11606 file will be used.
11607 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
11608 (prepare): Given that for the time being changesyntax is not
11609 usable in M4, rename the muscles using `-' to `_'.
11610 Define `defines_flag', `output_parser_name' and `output_header_name'.
11611 * src/output.h (actions_output, guards_output)
11612 (token_definitions_output): Adjust prototypes.
11613 * src/scan-skel.l: Instead of scanning the skeletons, it now
11614 processes the output of m4: `__oline__' and `#output'.
11615 * data/bison.simple: Adjust to be used by M4(sugar).
11616 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
11617 to date.
11618 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
11619 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
11620 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
11621 shamelessly stolen from CVS Autoconf.
11622
11623 2002-02-05 Akim Demaille <akim@epita.fr>
11624
11625 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
11626 * configure.in: Check for the declarations of free and malloc.
11627 * src/muscle_tab.c: Adjust.
11628
11629 2002-02-05 Akim Demaille <akim@epita.fr>
11630
11631 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
11632 which have no values.
11633
11634 2002-02-05 Akim Demaille <akim@epita.fr>
11635
11636 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
11637 * data/: here.
11638
11639 2002-01-29 Paul Eggert <eggert@twinsun.com>
11640
11641 * src/bison.simple (YYSIZE_T): Do not define merely because
11642 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
11643 On some platforms, <alloca.h> does not declare YYSTD (size_t).
11644
11645 2002-01-27 Akim Demaille <akim@epita.fr>
11646
11647 Fix `%nonassoc and eof'.
11648
11649 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
11650 which were not properly copied! Replace
11651 memcpy (res->errs, src->errs, src->nerrs);
11652 with
11653 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
11654 !!!
11655 * tests/regression.at (%nonassoc and eof): Adjust to newest
11656 Autotest: `.' is not in the PATH.
11657
11658 2002-01-27 Akim Demaille <akim@epita.fr>
11659
11660 * tests/sets.at (AT_EXTRACT_SETS): New.
11661 (Nullable): Use it.
11662 (Firsts): New.
11663
11664 2002-01-26 Akim Demaille <akim@epita.fr>
11665
11666 * tests/actions.at, tests/calc.at, tests/headers.at,
11667 * tests/torture.at: Adjust to the newest Autotest which no longer
11668 forces `.' in the PATH.
11669
11670 2002-01-25 Akim Demaille <akim@epita.fr>
11671
11672 * tests/regression.at (%nonassoc and eof): New.
11673 Suggested by Robert Anisko.
11674
11675 2002-01-24 Akim Demaille <akim@epita.fr>
11676
11677 Bison dumps core when trying to complain about broken input files.
11678 Reported by Cris van Pelt.
11679
11680 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
11681 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
11682 into...
11683 (Invalid inputs): Strengthen: exercise parse_percent_token.
11684
11685 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
11686
11687 * src/Makefile.am: Add bison.c++.
11688 * src/bison.c++: New skeleton.
11689
11690 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
11691
11692 * po/it.po: New.
11693
11694 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
11695
11696 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
11697
11698 2002-01-20 Marc Autret <marc@gnu.org>
11699
11700 * src/files.c (compute_output_file_names): Fix
11701
11702 2002-01-20 Marc Autret <marc@gnu.org>
11703
11704 * tests/output.at: New test.
11705 * src/files.c (compute_base_names): Don't map extensions when
11706 the YACC flag is set, use defaults.
11707 Reported by Evgeny Stambulchik.
11708
11709 2002-01-20 Marc Autret <marc@gnu.org>
11710
11711 * src/system.h: Need to define __attribute__ away for non-GCC
11712 compilers as well (i.e., the vendor C compiler).
11713 Suggested by Albert Chin-A-Young.
11714
11715 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
11716
11717 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
11718 canonical definition.
11719 * src/system.h: Use the canonical definition for PARAMS (avoids
11720 a conflict with the macro from lib/hash.h).
11721
11722 2002-01-11 Akim Demaille <akim@epita.fr>
11723
11724 * configure.in: Use AC_FUNC_STRNLEN.
11725 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
11726
11727 2002-01-09 Akim Demaille <akim@epita.fr>
11728
11729 * src/files.c, src/files.h (output_infix): New.
11730 (tab_extension): Remove.
11731 (compute_base_names): Compute the former, drop the latter.
11732 * src/output.c (prepare): Insert the muscles `output-infix', and
11733 `output-suffix'.
11734 * src/parse-skel.y (string, string.1): New.
11735 (section.header): Use it.
11736 (section.yacc): Remove.
11737 (prefix): Remove too.
11738 * src/scan-skel.l: Adjust.
11739 * src/bison.simple, src/bison.hairy: Adjust.
11740
11741 2002-01-09 Akim Demaille <akim@epita.fr>
11742
11743 * configure.in (WERROR_CFLAGS): Compute it.
11744 * src/Makefile.am (CFLAGS): Pass it.
11745 * tests/atlocal.in (CFLAGS): Idem.
11746 * src/files.c: Fix a few warnings.
11747 (get_extension_index): Remove, unused.
11748
11749 2002-01-08 Akim Demaille <akim@epita.fr>
11750
11751 * src/getargs.c (AS_FILE_NAME): New.
11752 (getargs): Use it to convert DOSish file names.
11753 * src/files.c (base_name): Rename as full_base_name to avoid
11754 clashes with `base_name ()'.
11755 (filename_split): New.
11756 (compute_base_names): N-th rewrite, using filename_split.
11757
11758 2002-01-08 Akim Demaille <akim@epita.fr>
11759
11760 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
11761 New, stolen from the Fileutils 4.1.
11762 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
11763 * configure.in: Check for the presence of memrchr, and of its
11764 prototype.
11765
11766 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
11767
11768 * lib/hash.h (__P): Added definition for this macro.
11769 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
11770 BUILT_SOURCES, to ensure they are generated first.
11771 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
11772 %error-verbose to allow bootstrapping with bison 1.30x.
11773
11774 2002-01-06 Akim Demaille <akim@epita.fr>
11775
11776 * src/reader.c (parse_braces): Don't fetch the next char, the
11777 convention is to fetch on entry.
11778 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
11779 'switch' without a following semicolon.
11780 * tests/regression.at (braces parsing): New.
11781
11782 2002-01-06 Akim Demaille <akim@epita.fr>
11783
11784 Bison is dead wrong in its RR conflict reports.
11785
11786 * tests/torture.at (GNU Cim Grammar): New.
11787 * src/conflicts.c (count_rr_conflicts): Fix.
11788
11789 2002-01-06 Akim Demaille <akim@epita.fr>
11790
11791 Creating package.m4 from configure.ac causes too many problems.
11792
11793 * tests/Makefile.am (package.m4): Create it by hand,
11794 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
11795
11796 2002-01-06 Akim Demaille <akim@epita.fr>
11797
11798 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
11799 skeleton.h.
11800
11801 2002-01-04 Paul Eggert <eggert@twinsun.com>
11802
11803 * doc/bison.texinfo (Debugging):
11804 Remove YYSTDERR; it's no longer defined or used.
11805 Also, s/cstdio.h/cstdio/.
11806
11807 2002-01-03 Akim Demaille <akim@epita.fr>
11808
11809 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
11810
11811 2002-01-03 Akim Demaille <akim@epita.fr>
11812
11813 * src/parse-skel.y (process_skeleton): Don't bind the parser's
11814 tracing code to --trace, wait for a better --trace option, with
11815 args.
11816
11817 2002-01-03 Akim Demaille <akim@epita.fr>
11818
11819 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
11820 The ISO C++ standard is extremely clear about it: stderr is
11821 considered a macro, not a regular symbol (see table 94 `Header
11822 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
11823 Therefore std:: does not apply to it. It still does with fprintf.
11824 Also, s/cstdio.h/cstdio/.
11825
11826 2002-01-03 Akim Demaille <akim@epita.fr>
11827
11828 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
11829 for non system headers.
11830
11831 2002-01-02 Akim Demaille <akim@epita.fr>
11832
11833 Equip the skeleton chain with location tracking, runtime trace,
11834 pure parser and scanner.
11835
11836 * src/parse-skel.y: Request a pure parser, locations, and prefix
11837 renaming.
11838 (%union): Having several members with the same type does not help
11839 type mismatches, simplify.
11840 (YYPRINT, yyprint): New.
11841 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
11842 (skel_error): this.
11843 Handle locations.
11844 * src/scan-skel.l: Adjust to these changes.
11845 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
11846 (LOCATION_PRINT, skel_control_t): New.
11847
11848 2001-12-30 Akim Demaille <akim@epita.fr>
11849
11850 * src/parse-skel.y: Get rid of the shift/reduce conflict:
11851 replace `gb' with BLANKS.
11852 * src/scan-skel.l: Adjust.
11853
11854 2001-12-30 Akim Demaille <akim@epita.fr>
11855
11856 * src/system.h: We don't need nor want bcopy.
11857 Throw away MS-DOS crap: we don't need getpid.
11858 * configure.in: We don't need strndup. It was even causing
11859 problems: because Flex includes the headers *before* us,
11860 _GNU_SOURCE is not defined by config.h, and therefore strndup was
11861 not visible.
11862 * lib/xstrndup.c: New.
11863 * src/scan-skel.l: Use it.
11864 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
11865 * src/parse-skel.y: Use %directives instead of #defines.
11866
11867 2001-12-30 Akim Demaille <akim@epita.fr>
11868
11869 * src/skeleton.h: New.
11870 * src/output.c (output_parser, output_master_parser): Remove, dead
11871 code.
11872 * src/output.h (get_lines_number, actions_output, guards_output)
11873 (token_definitions_output): Prototype them.
11874 * src/parse-skel.y: Add the license notice.
11875 Include output.h and skeleton.h.
11876 (process_skeleton): Returns void, and takes a single parameter.
11877 * src/scan-skel.l: Add the license notice.
11878 Include skeleton.h.
11879 Don't use %option yylineno: it seems that then Flex imagines
11880 REJECT has been used, and therefore it won't reallocate its
11881 buffers (which makes no other sense to me than a bug). It results
11882 in warnings for `unused: yy_flex_realloc'.
11883
11884 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
11885
11886 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11887 (MUSCLE_INSERT_PREFIX): ...to there.
11888 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11889 (MUSCLE_INSERT_PREFIX): Move from here...
11890
11891 * src/bison.hairy: Add a section directive. Put braces around muscle
11892 names. This parser skeleton is still broken, but Bison should not
11893 choke on a bad muscle 'syntax'.
11894 * src/bison.simple: Add a section directive. Put braces around muscle
11895 names.
11896
11897 * src/files.h (strsuffix, stringappend): Add declarations.
11898 (tab_extension): Add declaration.
11899 (short_base_name): Add declaration.
11900
11901 * src/files.c (strsuffix, stringappend): No longer static. These
11902 functions are used in the skeleton parser.
11903 (tab_extension): New.
11904 (compute_base_names): Use the computations done in this function
11905 to guess if the generated parsers should have '.tab' in their
11906 names.
11907 (short_base_name): No longer static.
11908
11909 * src/output.c (output_skeleton): New.
11910 (output): Disable call to output_master_parser, and give a try to
11911 a new skeleton handling system.
11912 (guards_output, actions_output): No longer static.
11913 (token_definitions_output, get_lines_number): No longer static.
11914
11915 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
11916
11917 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
11918 parse-skel.y.
11919
11920 * src/parse-skel.y: New file.
11921 * src/scan-skel.l: New file.
11922
11923 2001-12-29 Akim Demaille <akim@epita.fr>
11924
11925 %name-prefix is broken.
11926
11927 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
11928 Adjust all dependencies.
11929 * tests/headers.at (export YYLTYPE): Strengthen this test: use
11930 %name-prefix.
11931
11932 Renaming yylval but not yylloc is not consistent. Now we do.
11933
11934 * src/bison.simple: Prefix yylloc if used.
11935 * doc/bison.texinfo (Decl Summary): Document that.
11936
11937 2001-12-29 Akim Demaille <akim@epita.fr>
11938
11939 * doc/bison.texinfo: Promote `%long-directive' over
11940 `%long_directive'.
11941 Remove all references to fixed-output-files, yacc is enough.
11942
11943 2001-12-29 Akim Demaille <akim@epita.fr>
11944
11945 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
11946 user prologue. These are defaults.
11947 * tests/actions.at (Mid-rule actions): Make sure the user can
11948 define YYDEBUG and YYERROR_VERBOSE.
11949
11950 2001-12-29 Akim Demaille <akim@epita.fr>
11951
11952 * src/output.c (header_output): Don't forget to export YYLTYPE and
11953 yylloc.
11954 * tests/headers.at (export YYLTYPE): New, make sure it does.
11955 * tests/regression.at (%union and --defines, Invalid CPP headers):
11956 Move to...
11957 * tests/headers.at: here.
11958
11959 2001-12-29 Akim Demaille <akim@epita.fr>
11960
11961 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
11962
11963 2001-12-29 Akim Demaille <akim@epita.fr>
11964
11965 * tests/actions.at (Mid-rule actions): Output on a single line
11966 instead of several.
11967
11968 2001-12-29 Akim Demaille <akim@epita.fr>
11969
11970 * doc/bison.texinfo: Formatting changes.
11971
11972 2001-12-29 Akim Demaille <akim@epita.fr>
11973
11974 Don't store the token defs in a muscle, just be ready to output it
11975 on command. Now possible via `symbols'. Fixes a memory leak.
11976
11977 * src/output.c (token_definitions_output): New.
11978 (output_parser, header_output): Use it.
11979 * src/reader.c (symbols_save): Remove.
11980
11981 2001-12-29 Akim Demaille <akim@epita.fr>
11982
11983 * src/bison.simple: Do not provide a default for YYSTYPE and
11984 YYLTYPE before the user's prologue. Otherwise it's hardly... a
11985 default.
11986
11987 2001-12-29 Akim Demaille <akim@epita.fr>
11988
11989 Mid-rule actions are simply... ignored!
11990
11991 * src/reader.c (readgram): Be sure to attach mid-rule actions to
11992 the empty-rule associated to the dummy symbol, not to the host
11993 rule.
11994 * tests/actions.at (Mid-rule actions): New.
11995
11996 2001-12-29 Akim Demaille <akim@epita.fr>
11997
11998 Memory leak.
11999
12000 * src/reader.c (reader): Free grammar.
12001
12002 2001-12-29 Akim Demaille <akim@epita.fr>
12003
12004 Memory leak.
12005
12006 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
12007 since it allocates it for each state, although only one is needed.
12008 (allocate_storage): Do it here.
12009
12010 2001-12-29 Akim Demaille <akim@epita.fr>
12011
12012 * src/options.h, src/options.c (create_long_option_table): Rename
12013 as...
12014 (long_option_table_new): this, with a clearer prototype.
12015 (percent_table): Remove, unused,
12016 * src/getargs.c (getargs): Adjust.
12017
12018 2001-12-29 Akim Demaille <akim@epita.fr>
12019
12020 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
12021 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
12022 as states.
12023
12024 2001-12-29 Akim Demaille <akim@epita.fr>
12025
12026 * src/lalr.c (build_relations): Rename `states' as `states1'.
12027 Sorry, I don't understand exactly what it is, no better name...
12028
12029 2001-12-29 Akim Demaille <akim@epita.fr>
12030
12031 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
12032 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
12033 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
12034 as rules.
12035
12036 2001-12-29 Akim Demaille <akim@epita.fr>
12037
12038 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
12039 ago.
12040
12041 2001-12-29 Akim Demaille <akim@epita.fr>
12042
12043 * src/reader.c, src/reader.h (user_toknums): Remove.
12044 Adjust all users to use symbols[i]->user_token_number.
12045
12046 2001-12-29 Akim Demaille <akim@epita.fr>
12047
12048 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
12049 Adjust all users to use symbols[i]->prec or ->assoc.
12050
12051 2001-12-29 Akim Demaille <akim@epita.fr>
12052
12053 * src/reader.c, src/reader.h (tags): Remove.
12054 Adjust all users to use symbols[i]->tag.
12055
12056 2001-12-29 Akim Demaille <akim@epita.fr>
12057
12058 * src/gram.h, src/gram.c (symbols): New, similar to state_table
12059 and rule_table.
12060 * src/reader.c (packsymbols): Fill this table.
12061 Drop sprec.
12062 * src/conflicts.c (resolve_sr_conflict): Adjust.
12063 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
12064 single table.
12065 Use symbols[i]->tag instead of tags[i].
12066
12067 2001-12-29 Akim Demaille <akim@epita.fr>
12068
12069 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
12070 In addition, put a comment in there, to replace...
12071 * tests/regression.at (%union and C comments): Remove.
12072
12073 2001-12-29 Akim Demaille <akim@epita.fr>
12074
12075 * tests/regression.at (Web2c Actions): Blindly move the actual
12076 output as expected output. The contents *seem* right to me, but I
12077 can't pretend reading perfectly parser tables... Nonetheless, all
12078 the other tests pass correctly, the table look OK, even though the
12079 presence of `$axiom' is to be noted: AFAICS it is useless (but
12080 harmless).
12081
12082 2001-12-29 Akim Demaille <akim@epita.fr>
12083
12084 * src/reader.c (readgram): Don't add the rule 0 if there were no
12085 rules read. In other words, add it _after_ having performed
12086 grammar sanity checks.
12087 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
12088
12089 2001-12-29 Akim Demaille <akim@epita.fr>
12090
12091 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
12092 visible, and some states have now a different number.
12093
12094 2001-12-29 Akim Demaille <akim@epita.fr>
12095
12096 * src/reader.c (readgram): Bind the initial rule's lineno to that
12097 of the first rule.
12098 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
12099 (Solved SR Conflicts): Adjust rule 0's line number.
12100
12101 2001-12-29 Akim Demaille <akim@epita.fr>
12102
12103 Fix the `GAWK Grammar' failure.
12104
12105 * src/LR0.c (final_state): Initialize to -1 so that we do compute
12106 the reductions of the first state which was mistakenly confused
12107 with the final state because precisely final_state was initialized
12108 to 0.
12109 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
12110 now noticed by Bison.
12111 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
12112 have a reduction on $default.
12113
12114 2001-12-29 Akim Demaille <akim@epita.fr>
12115
12116 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
12117 rule line numbers.
12118 * src/closure.c (print_closure): Likewise.
12119 * src/derives.c (print_derives): Likewise.
12120 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
12121 now.
12122
12123 2001-12-29 Akim Demaille <akim@epita.fr>
12124
12125 * src/lalr.c (lookaheads_print): New.
12126 (lalr): Call it when --trace-flag.
12127 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
12128 are dumped.
12129
12130 2001-12-29 Akim Demaille <akim@epita.fr>
12131
12132 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
12133 when walking through ritem, even via rule->rhs.
12134 * src/reduce.c (dump_grammar, useful_production, reduce_output)
12135 (useful_production, useless_nonterminals): Likewise.
12136 (reduce_grammar_tables): Likewise, plus update nritems.
12137 * src/nullable.c (set_nullable): Likewise.
12138 * src/lalr.c (build_relations): Likewise.
12139 * tests/sets.at (Nullable): Adjust.
12140 Fortunately, now, the $axiom is no longer nullable.
12141
12142 2001-12-29 Akim Demaille <akim@epita.fr>
12143
12144 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
12145 the 0-sentinel.
12146 * src/gram.c (ritem_longest_rhs): Likewise.
12147 * src/reduce.c (nonterminals_reduce): Likewise.
12148 * src/print_graph.c (print_graph): Likewise.
12149 * src/output.c (output_rule_data): Likewise.
12150 * src/nullable.c (set_nullable): Likewise.
12151
12152 2001-12-29 Akim Demaille <akim@epita.fr>
12153
12154 * src/output.c: Comment changes.
12155
12156 2001-12-27 Paul Eggert <eggert@twinsun.com>
12157
12158 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
12159 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
12160 Sparc, as they were causing more porting problems than the
12161 (minor) performance improvement was worth.
12162
12163 Also, catch up with 1.31's YYSTD.
12164
12165 2001-12-27 Akim Demaille <akim@epita.fr>
12166
12167 * src/output.c (output_gram): Rely on nritems, not the
12168 0-sentinel. See below.
12169 Use -1 as separator, not 0.
12170 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
12171 Rely on -1 as separator in yyrhs, instead of 0.
12172 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
12173 twice `Now at end of input', therefore there are two lines less to
12174 expect.
12175
12176 2001-12-27 Akim Demaille <akim@epita.fr>
12177
12178 * tests/regression.at (Unresolved SR Conflicts):
12179 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
12180 below.
12181
12182 2001-12-27 Akim Demaille <akim@epita.fr>
12183
12184 * src/LR0.c (new_state): Recognize the final state by the fact it
12185 is reached by eoftoken.
12186 (insert_start_shifting_state, insert_eof_shifting_state)
12187 (insert_accepting_state, augment_automaton): Remove, since now
12188 these states are automatically computed from the initial state.
12189 (generate_states): Adjust.
12190 * src/print.c: When reporting a rule number to the user, substract
12191 1, so that the axiom rule is rule 0, and the first user rule is 1.
12192 * src/reduce.c: Likewise.
12193 * src/print_graph.c (print_core): For the time being, just as for
12194 the report, depend upon --trace-flags to dump the full set of
12195 items.
12196 * src/reader.c (readgram): Once the grammar read, insert the rule
12197 0: `$axiom: START-SYMBOL $'.
12198 * tests/set.at: Adjust: rule 0 is now displayed, and since the
12199 number of the states has changed (the final state is no longer
12200 necessarily the last), catch up.
12201
12202 2001-12-27 Akim Demaille <akim@epita.fr>
12203
12204 Try to make the use of the eoftoken valid. Given that its value
12205 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
12206 is used instead of > 0 where appropriate, (ii), depend upon nritems
12207 instead of the 0-sentinel.
12208
12209 * src/gram.h, src/gram.c (nritems): New.
12210 Expected to be duplication of nitems, but for the time being...
12211 * src/reader.c (packgram): Assert nritems and nitems are equal.
12212 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
12213 * src/closure.c (print_closure, print_fderives): Likewise.
12214 * src/gram.c (ritem_print): Likewise.
12215 * src/print.c (print_core, print_grammar): Likewise.
12216 * src/print_graph.c: Likewise.
12217
12218 2001-12-27 Akim Demaille <akim@epita.fr>
12219
12220 * src/main.c (main): If there are complains after grammar
12221 reductions, then output the report anyway if requested, then die.
12222 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
12223 * src/reader.c (eoftoken): New.
12224 (parse_token_decl): If the token being defined has value `0', it
12225 is the eoftoken.
12226 (packsymbols): No longer hack `tags' to insert `$' by hand.
12227 Be sure to preserve the value of the eoftoken.
12228 (reader): Make sure eoftoken is defined.
12229 Initialize nsyms to 0: now eoftoken is created just like the others.
12230 * src/print.c (print_grammar): Don't special case the eof token.
12231 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
12232 lie anyway, albeit pleasant.
12233 * tests/calc.at: Exercise error messages with eoftoken.
12234 Change the grammar so that empty input is invalid.
12235 Adjust expectations.
12236 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
12237
12238 2001-12-27 Akim Demaille <akim@epita.fr>
12239
12240 * configure.in: Check the protos of strchr ans strspn.
12241 Replace strchr if needed.
12242 * src/system.h: Provide the protos of strchr, strspn and memchr if
12243 missing.
12244 * lib/strchr.c: New.
12245 * src/reader.c (symbols_save): Use strchr.
12246
12247 2001-12-27 Akim Demaille <akim@epita.fr>
12248
12249 * src/print.c, src/print_graph.c (escape): New.
12250 Use it to quote the TAGS outputs.
12251 * src/print_graph.c (print_state): Now errors are in red, and
12252 reductions in green.
12253 Prefer high to wide: output the state number on a line of its own.
12254
12255 2001-12-27 Akim Demaille <akim@epita.fr>
12256
12257 * src/state.h, src/state.c (reductions_new): New.
12258 * src/LR0.c (set_state_table): Let all the states have a
12259 `reductions', even if reduced to 0.
12260 (save_reductions): Adjust.
12261 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
12262 * src/print.c (print_reductions, print_actions): Adjust.
12263 * src/output.c (action_row): Adjust.
12264
12265 2001-12-27 Akim Demaille <akim@epita.fr>
12266
12267 * src/state.h, src/state.c (errs_new, errs_dup): New.
12268 * src/LR0.c (set_state_table): Let all the states have an errs,
12269 even if reduced to 0.
12270 * src/print.c (print_errs, print_reductions): Adjust.
12271 * src/output.c (output_actions, action_row): Adjust.
12272 * src/conflicts.c (resolve_sr_conflict): Adjust.
12273
12274 2001-12-27 Akim Demaille <akim@epita.fr>
12275
12276 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
12277
12278 2001-12-27 Akim Demaille <akim@epita.fr>
12279
12280 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
12281 * src/print.c: here.
12282 (lookaheadset, shiftset): New, used as additional storage by
12283 print_reductions.
12284 (print_results): Adjust.
12285 (print_shifts, print_gotos, print_errs): New, extracted from...
12286 (print_actions): here.
12287 * src/print_graph.c (print_actions): Remove dead code.
12288
12289 2001-12-27 Akim Demaille <akim@epita.fr>
12290
12291 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
12292 `$n' and `@n'.
12293
12294 2001-12-27 Akim Demaille <akim@epita.fr>
12295
12296 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
12297 (build_relations): Adjust.
12298
12299 2001-12-27 Akim Demaille <akim@epita.fr>
12300
12301 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
12302 duplication.
12303
12304 2001-12-27 Akim Demaille <akim@epita.fr>
12305
12306 * src/reader.c (packgram): Catch nitems overflows.
12307
12308 2001-12-27 Akim Demaille <akim@epita.fr>
12309
12310 * src/files.c, src/files.h (guard_obstack): Remove.
12311 * src/output.c (output): Adjust.
12312 * src/reader.c (parse_braces): New, factoring...
12313 (copy_action, copy_guard): these two which are renamed as...
12314 (parse_action, parse_guard): these.
12315 As a voluntary consequence, using braces around guards is now
12316 mandatory.
12317
12318 2001-12-27 Akim Demaille <akim@epita.fr>
12319
12320 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
12321 * src/reader.c (symbol_list): `guard' and `guard_line' are new
12322 members.
12323 (symbol_list_new): Adjust.
12324 (copy_action): action_line is the first line, not the last.
12325 (copy_guard): Just as for actions, store the `action' only, not
12326 the switch/case/break flesh.
12327 Don't parse the user action that might follow the guard, let...
12328 (readgram): do it, i.e., now, there can be an action after a
12329 guard.
12330 In other words the guard is just explicitly optional.
12331 (packgram): Adjust.
12332 * src/output.c (guards_output): New.
12333 (output_parser): Call it when needed.
12334 (output): Also free the guard and attrs obstacks.
12335 * src/files.c, src/files.h (obstack_save): Remove.
12336 (output_files): Remove.
12337 As a result, if one needs the former `.act' file, using an
12338 appropriate skeleton which requires actions and guards is now
12339 required.
12340 * src/main.c (main): Adjust.
12341 * tests/semantic.at: New.
12342 * tests/regression.at: Use `input.y' as input file name.
12343 Avoid 8+3 problems by requiring input.c when the test needs the
12344 parser.
12345
12346 2001-12-27 Akim Demaille <akim@epita.fr>
12347
12348 * src/reader.c (symbol_list_new): Be sure to initialize all the
12349 fields.
12350
12351 2001-12-27 Akim Demaille <akim@epita.fr>
12352
12353 All the hacks using a final pseudo state are now useless.
12354
12355 * src/LR0.c (set_state_table): state_table holds exactly nstates.
12356 * src/lalr.c (nLA): New.
12357 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
12358 instead of lookaheadsp from the pseudo state (nstate + 1).
12359
12360 2001-12-27 Akim Demaille <akim@epita.fr>
12361
12362 * src/output.c (action_row, token_actions): Use a state_t instead
12363 of a integer, and nlookaheads instead of the following state's
12364 lookaheadsp.
12365
12366 2001-12-27 Akim Demaille <akim@epita.fr>
12367
12368 * src/conflicts.c (log_resolution, flush_shift)
12369 (resolve_sr_conflict, set_conflicts, solve_conflicts)
12370 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
12371 (conflicts_print, print_reductions): Use a state_t instead of an
12372 integer when referring to a state.
12373 As much as possible, depend upon nlookaheads, instead of the
12374 `lookaheadsp' member of the following state (since lookaheads of
12375 successive states are successive, the difference between state n + 1
12376 and n served as the number of lookaheads for state n).
12377 * src/lalr.c (add_lookback_edge): Likewise.
12378 * src/print.c (print_core, print_actions, print_state)
12379 (print_results): Likewise.
12380 * src/print_graph.c (print_core, print_actions, print_state)
12381 (print_graph): Likewise.
12382 * src/conflicts.h: Adjust.
12383
12384 2001-12-27 Akim Demaille <akim@epita.fr>
12385
12386 * src/bison.hairy: Formatting/comment changes.
12387 ANSIfy.
12388 Remove `register' indications.
12389 Add plenty of `static'.
12390
12391 2001-12-27 Akim Demaille <akim@epita.fr>
12392
12393 * src/output.c (prepare): Drop the muscle `ntbase' which
12394 duplicates ntokens.
12395 * src/bison.simple: Formatting/comment changes.
12396 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
12397 is an undocumented synonym.
12398
12399 2001-12-22 Akim Demaille <akim@epita.fr>
12400
12401 * src/output.c (output_table_data): Change the prototype to use
12402 `int' for array ranges: some invocations do pass an int, not a
12403 short.
12404 Reported by Wayne Green.
12405
12406 2001-12-22 Akim Demaille <akim@epita.fr>
12407
12408 Some actions of web2c.y are improperly triggered.
12409 Reported by Mike Castle.
12410
12411 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
12412 * tests/regression.at (Web2c): Rename as...
12413 (Web2c Report): this.
12414 (Web2c Actions): New.
12415
12416 2001-12-22 Akim Demaille <akim@epita.fr>
12417
12418 Reductions in web2c.y are improperly reported.
12419 Reported by Mike Castle.
12420
12421 * src/conflicts.c (print_reductions): Fix.
12422 * tests/regression.at (Web2c): New.
12423
12424 2001-12-18 Akim Demaille <akim@epita.fr>
12425
12426 Some host fail on `assert (!"foo")', which expands to
12427 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
12428 Reported by Nelson Beebee.
12429
12430 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
12431 `#define it_succeeded 0' and `assert (it_succeeded)'.
12432
12433 2001-12-17 Marc Autret <autret_m@epita.fr>
12434
12435 * src/bison.simple: Don't hard code the skeleton line and filename.
12436 * src/output.c (output_parser): Rename 'line' as 'output_line'.
12437 New line counter 'skeleton_line' (skeleton-line muscle).
12438
12439 2001-12-17 Paul Eggert <eggert@twinsun.com>
12440
12441 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
12442 YYDEBUG must be defined to a nonzero value.
12443
12444 * src/bison.simple (yytname): Do not assume that the user defines
12445 YYDEBUG to a properly parenthesized expression.
12446
12447 2001-12-17 Akim Demaille <akim@epita.fr>
12448
12449 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
12450 nlookaheads is a new member.
12451 Adjust all users.
12452 * src/lalr.h (nlookaheads): Remove this orphan declaration.
12453 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
12454 state.
12455
12456 2001-12-17 Akim Demaille <akim@epita.fr>
12457
12458 * src/files.h, src/files.c (open_files, close_files): Remove.
12459 * src/main.c (main): Don't open/close files, nor invoke lex_free,
12460 let...
12461 * src/reader.c (reader): Do it.
12462
12463 2001-12-17 Akim Demaille <akim@epita.fr>
12464
12465 * src/conflicts.c (print_reductions): Formatting changes.
12466
12467 2001-12-17 Akim Demaille <akim@epita.fr>
12468
12469 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
12470 (flush_reduce): New.
12471 (resolve_sr_conflict): Adjust.
12472
12473 2001-12-17 Akim Demaille <akim@epita.fr>
12474
12475 * src/output.c (output_obstack): Be static and rename as...
12476 (format_obstack): this, to avoid any confusion with files.c's
12477 output_obstack.
12478 * src/reader.h (muscle_obstack): Move to...
12479 * src/output.h: here, since it's defined in output.c.
12480
12481 2001-12-17 Akim Demaille <akim@epita.fr>
12482
12483 * src/output.c (action_row, save_column, default_goto)
12484 (sort_actions, matching_state, pack_vector): Better variable
12485 locality.
12486
12487 2001-12-17 Akim Demaille <akim@epita.fr>
12488
12489 * src/output.c: Various formatting changes.
12490
12491 2001-12-17 Akim Demaille <akim@epita.fr>
12492
12493 * src/files.c (output_files): Free the output_obstack.
12494 * src/main.c (main): Call print and print_graph conditionally.
12495 * src/print.c (print): Work unconditionally.
12496 * src/print_graph.c (print_graph): Work unconditionally.
12497 * src/conflicts.c (log_resolution): Output only if verbose_flag.
12498
12499 2001-12-16 Marc Autret <autret_m@epita.fr>
12500
12501 * src/output.c (actions_output): Fix. When we use %no-lines,
12502 there is one less line per action.
12503
12504 2001-12-16 Marc Autret <autret_m@epita.fr>
12505
12506 * src/bison.simple: Remove a useless #line directive.
12507 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
12508 * src/output.c (get_lines_number): New.
12509 (output_parser): Adjust, now takes care about the lines of a
12510 output muscles.
12511 Fix line numbering.
12512 (actions_output): Computes the number of lines taken by actions.
12513 (output_master_parser): Insert new skeleton which is the name of
12514 the output parser file name.
12515
12516 2001-12-15 Marc Autret <autret_m@epita.fr>
12517
12518 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
12519
12520 2001-12-15 Marc Autret <autret_m@epita.fr>
12521
12522 * src/output.c (output_gram): Keep track of the hairy one.
12523
12524 2001-12-15 Akim Demaille <akim@epita.fr>
12525
12526 Make `make distcheck' work.
12527
12528 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
12529 system.h which uses libgettext.h.
12530
12531 2001-12-15 Akim Demaille <akim@epita.fr>
12532
12533 * src/nullable.c (set_nullable): Useless rules must be skipped,
12534 otherwise, since we range over their symbols, we might look at a
12535 nonterminal which no longer ``exists'', i.e., it is not counted in
12536 `nvars', hence we overflow our arrays.
12537
12538 2001-12-15 Akim Demaille <akim@epita.fr>
12539
12540 The header can also be produced directly, without any obstack!
12541 Yahoo!
12542
12543 * src/files.c, src/files.h (defines_obstack): Remove.
12544 (compute_header_macro): Global.
12545 (defines_obstack_save): Remove.
12546 * src/reader.c (parse_union_decl): No longer output to
12547 defines_obstack: its content can be found in the `stype' muscle
12548 anyway.
12549 (output_token_translations): Merge into...
12550 (symbols_output): this.
12551 Rename as...
12552 (symbols_save): this.
12553 (reader): Adjust.
12554 * src/output.c (header_output): New.
12555 (output): Call it.
12556
12557 2001-12-15 Akim Demaille <akim@epita.fr>
12558
12559 * src/reader.c (parse_union_decl): Instead of handling two obstack
12560 simultaneously, use one to define the `stype' muscle, and use the
12561 value of the latter to fill defines_obstack.
12562 (copy_comment): Remove.
12563 (copy_comment2): Work for a single obstack.
12564 Rename as...
12565 (copy_comment): this.
12566
12567 2001-12-15 Akim Demaille <akim@epita.fr>
12568
12569 * src/lex.c, src/lex.h (xgetc): No longer static.
12570 * src/reader.c (parse_union_decl): Revamp.
12571
12572 2001-12-15 Akim Demaille <akim@epita.fr>
12573
12574 Still making progress in separating Bison into (i) input, (ii)
12575 process, (iii) output: now we can directly output the parser file
12576 without using table_obstack at all.
12577
12578 * src/files.c, src/files.h (table_obstack): Bye bye.
12579 (parser_file_name): New.
12580 * src/files.c (compute_output_file_names): Compute it.
12581 * src/output.c (actions_output, output_parser)
12582 (output_master_parser): To a file instead of an obstack.
12583
12584 2001-12-15 Akim Demaille <akim@epita.fr>
12585
12586 Attach actions to rules, instead of pre-outputting them to
12587 actions_obstack.
12588
12589 * src/gram.h (rule_t): action and action_line are new members.
12590 * src/reader.c (symbol_list): Likewise.
12591 (copy_action): Save the actions within the rule.
12592 (packgram): Save them in rule_table.
12593 * src/output.c (actions_output): New.
12594 (output_parser): Use it on `%%actions'.
12595 (output_rule_data): Don't free rule_table.
12596 (output): Do it.
12597 (prepare): Don't save the `action' muscle.
12598 * src/bison.simple: s/%%action/%%actions/.
12599
12600 2001-12-15 Akim Demaille <akim@epita.fr>
12601
12602 * src/reader.c (copy_action): When --yacc, don't append a `;'
12603 to the user action: let it fail if lacking.
12604 Suggested by Arnold Robbins and Tom Tromey.
12605
12606 2001-12-14 Akim Demaille <akim@epita.fr>
12607
12608 * src/lex.c (literalchar): Simply return the char you decoded, non
12609 longer mess around with obstacks and int pointers.
12610 Adjust all callers.
12611
12612 2001-12-14 Akim Demaille <akim@epita.fr>
12613
12614 * src/lex.c (literalchar): Don't escape the special characters,
12615 just decode them, and keep them as char (before, eol was output as
12616 the 2 char string `\n' etc.).
12617 * src/output.c (output_rule_data): Use quotearg to output the
12618 token strings.
12619
12620 2001-12-13 Paul Eggert <eggert@twinsun.com>
12621
12622 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
12623 Do not infringe on the global user namespace when using C++.
12624 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
12625 All uses of `fprintf' and `stderr' changed.
12626
12627 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
12628
12629 2001-12-13 Akim Demaille <akim@epita.fr>
12630
12631 The computation of nullable is broken: it doesn't handle empty
12632 RHS's properly.
12633
12634 * tests/torture.at (GNU AWK Grammar): New.
12635 * tests/sets.at (Nullable): New.
12636 * src/nullable.c (set_nullable): Instead of blindly looping over
12637 `ritems', loop over the rules, and then over their rhs's.
12638
12639 Work around Autotest bugs.
12640
12641 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
12642 frame, because Autotest understand lines starting with a `+' as
12643 traces from the shell. Then, they are not processed properly.
12644 Admittedly an Autotest bug, but we don't have time to wait for
12645 Autotest to catch up.
12646 * tests/regression.at (Broken Closure): Adjust to the new table
12647 frames.
12648 Move to...
12649 * tests/sets.at: here.
12650
12651 2001-12-13 Akim Demaille <akim@epita.fr>
12652
12653 * src/closure.c (closure): Use nrules instead of playing tricks
12654 with BITS_PER_WORD.
12655
12656 2001-12-13 Akim Demaille <akim@epita.fr>
12657
12658 * src/print.c (print_actions): Output the handling of `$' as the
12659 traces do: shifting the token EOF. Before EOF was treated as a
12660 nonterminal.
12661 * tests/regression.at: Adjust some tests.
12662 * src/print_graph.c (print_core): Complete the set of items via
12663 closure. The next-to-final and final states are still unsatisfying,
12664 but that's to be addressed elsewhere.
12665 No longer output the rule numbers, but do output the state number.
12666 A single loop for the shifts + gotos is enough, but picked a
12667 distinct color for each.
12668 (print_graph): Initialize and finalize closure.
12669
12670 2001-12-13 Akim Demaille <akim@epita.fr>
12671
12672 * src/reader.c (readgram): Remove dead code, an strip useless
12673 braces.
12674 (get_type): Remove, unused.
12675
12676 2001-12-12 Akim Demaille <akim@epita.fr>
12677
12678 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
12679 on that of lib/error.c.
12680
12681 2001-12-12 Akim Demaille <akim@epita.fr>
12682
12683 Some hosts don't like `/' in includes.
12684
12685 * src/system.h: Include libgettext.h without qualifying the path.
12686 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
12687 $(top_srcdir).
12688
12689 2001-12-11 Marc Autret <autret_m@epita.fr>
12690
12691 * src/output.c (output_parser): Remove useless muscle.
12692
12693 2001-12-11 Marc Autret <autret_m@epita.fr>
12694
12695 * src/bison.simple: Remove #line just before %%epilogue. It
12696 is now handled in ...
12697 * src/reader.c (read_additionnal_code): Add the output of a
12698 #line for the epilogue.
12699
12700 2001-12-10 Marc Autret <autret_m@epita.fr>
12701
12702 * src/reader.c (copy_definition): Re-use CPP-outed code which
12703 replace precedent remove.
12704 * src/bison.simple: Remove #line before %%prologue because
12705 %%input-line is wrong at this time.
12706
12707 2001-12-10 Marc Autret <autret_m@epita.fr>
12708
12709 * src/reader.c (symbols_output): Clean up.
12710 * src/output.c (output_gram, output): Clean up.
12711
12712 2001-12-10 Akim Demaille <akim@epita.fr>
12713
12714 * src/lalr.c (initialize_lookaheads): New. Extracted from...
12715 * src/LR0.c (set_state_table): here.
12716 * src/lalr.c (lalr): Call it.
12717
12718 2001-12-10 Akim Demaille <akim@epita.fr>
12719
12720 * src/state.h (shifts): Remove the `number' member: shifts are
12721 attached to state, hence no longer need to be labelled with a
12722 state number.
12723
12724 2001-12-10 Akim Demaille <akim@epita.fr>
12725
12726 Now that states have a complete set of members, the linked list of
12727 shifts is useless: just fill directly the state's shifts member.
12728
12729 * src/state.h (shifts): Remove the `next' member.
12730 * src/LR0.c (first_state, last_state): Remove.
12731 Adjust the callers.
12732 (augment_automaton): Don't look for the shifts that must be added
12733 a shift on EOF: it is those of the state we looked for! But now,
12734 since shifts are attached, it is no longer needed to looking
12735 merely by its id: its number.
12736
12737 2001-12-10 Akim Demaille <akim@epita.fr>
12738
12739 * src/LR0.c (augment_automaton): Better variable locality.
12740 Remove an impossible branch: if there is a state corresponding to
12741 the start symbol being shifted, then there is shift for the start
12742 symbol from the initial state.
12743
12744 2001-12-10 Akim Demaille <akim@epita.fr>
12745
12746 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
12747 only when appropriate: when insert_start_shifting_state' is not
12748 invoked.
12749 * tests/regression.at (Rule Line Numbers): Adjust.
12750
12751 2001-12-10 Akim Demaille <akim@epita.fr>
12752
12753 * src/LR0.c (augment_automaton): Now that all states have shifts,
12754 merge the two cases addition shifts to the initial state.
12755
12756 2001-12-10 Akim Demaille <akim@epita.fr>
12757
12758 * src/lalr.c (set_state_table): Move to...
12759 * src/LR0.c: here.
12760 * src/lalr.c (lalr): Don't call it...
12761 * src/LR0.c (generate_states): do it.
12762 * src/LR0.h (first_state): Remove, only the table is used.
12763
12764 2001-12-10 Akim Demaille <akim@epita.fr>
12765
12766 * src/LR0.h (first_shift, first_reduction): Remove.
12767 * src/lalr.c: Don't use first_shift: find shifts through the
12768 states.
12769
12770 2001-12-10 Akim Demaille <akim@epita.fr>
12771
12772 * src/LR0.c: Attach shifts to states as soon as they are
12773 computed.
12774 * src/lalr.c (set_state_table): Instead of assigning shifts to
12775 state, just assert that the mapping was properly done.
12776
12777 2001-12-10 Akim Demaille <akim@epita.fr>
12778
12779 * src/LR0.c (insert_start_shift): Rename as...
12780 (insert_start_shifting_state): this.
12781 (insert_eof_shifting_state, insert_accepting_state): New.
12782 (augment_automaton): Adjust.
12783 Better locality of the variables.
12784 When looking if the start_symbol is shifted from the initial
12785 state, using `while (... symbol != start_symbol ...)' sounds
12786 better than `while (... symbol < start_symbol ...)': If fail
12787 to see how the order between symbols could be relevant!
12788
12789 2001-12-10 Akim Demaille <akim@epita.fr>
12790
12791 * src/getargs.h: Don't declare `spec_name_prefix' and
12792 `spec_file_prefix', declared by src/files.h.
12793 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
12794 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
12795 * src/output.c (prepare): Adjust.
12796 * src/reader.c (symbols_output): Likewise.
12797 * src/vmsgetargs.c: Vaguely adjust, but who cares?
12798
12799 2001-12-10 Akim Demaille <akim@epita.fr>
12800
12801 * src/muscle_tab.c (muscle_init): NULL is a better default than
12802 `"0"'.
12803
12804 2001-12-10 Akim Demaille <akim@epita.fr>
12805
12806 * src/reader.c (reader): Calling symbols_output once is enough.
12807
12808 2001-12-10 Akim Demaille <akim@epita.fr>
12809
12810 Now that states have a complete set of members, the linked list of
12811 reductions is useless: just fill directly the state's reductions
12812 member.
12813
12814 * src/state.h (struct reductions): Remove member `number' and
12815 `next'.
12816 * src/LR0.c (first_reduction, last_reduction): Remove.
12817 (save_reductions): Don't link the new reductions, store them in
12818 this_state.
12819 * src/lalr.c (set_state_table): No need to attach reductions to
12820 states, it's already done.
12821 * src/output.c (output_actions): No longer free the shifts, then
12822 the reductions, then the states: free all the states and their
12823 members.
12824
12825 2001-12-10 Akim Demaille <akim@epita.fr>
12826
12827 * src/options.c (OPTN, DRTV, BOTH): New.
12828 (option_table): Use them.
12829
12830 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
12831 the job of system.h.
12832 * src/options.c: Don't include stdio.h and xalloc.h for the same
12833 reasons.
12834
12835 2001-12-10 Akim Demaille <akim@epita.fr>
12836
12837 * src/output.c (output, prepare): Make sure the values of the
12838 muscles `action' and `prologue' are 0-terminated.
12839
12840 2001-12-10 Akim Demaille <akim@epita.fr>
12841
12842 Clean up GCC warnings.
12843
12844 * src/reader.c (copy_action): `buf' is not used.
12845 (parse_skel_decl): Be static.
12846 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
12847 * src/options.h (create_long_option_table): Have a real prototype.
12848 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
12849 (hash_delete_at): Return const void *.
12850 Adjust casts to preserve the const.
12851
12852 2001-12-10 Akim Demaille <akim@epita.fr>
12853
12854 * configure.in: Require 2.52g.
12855 M4 is not needed, but AUTOM4TE is.
12856 * m4/m4.m4: Remove.
12857 * tests/Makefile.am: Adjust.
12858
12859 2001-12-10 Akim Demaille <akim@epita.fr>
12860
12861 One structure for states is enough, even though theoretically
12862 there are LR(0) states and LALR(1) states.
12863
12864 * src/lalr.h (state_t): Remove.
12865 (state_table): Be state_t **, not state_t *.
12866 * src/state.h (core, CORE_ALLOC): Rename as...
12867 (state_t, STATE_ALLOC): this.
12868 Add the LALR(1) members: shifts, reductions, errs.
12869 * src/LR0.c (state_table): Rename as...
12870 (state_hash): this, to avoid name clashes with the global
12871 `state_table'.
12872 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
12873 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
12874
12875 2001-12-10 Akim Demaille <akim@epita.fr>
12876
12877 Bison dumps core on bash.y.
12878 Reported by Pascal Bart.
12879
12880 * src/warshall.c (bitmatrix_print): New.
12881 (TC): Use it.
12882 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
12883 j must be the outer loop.
12884 * tests/regression.at (Broken Closure): New.
12885
12886 2001-12-05 Akim Demaille <akim@epita.fr>
12887
12888 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
12889 its argument.
12890 Reported by Peter Hamorsky.
12891
12892 2001-12-05 Akim Demaille <akim@epita.fr>
12893
12894 * src/conflicts.c (err_table): Remove.
12895 (resolve_sr_conflict): Adjust.
12896 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
12897 Rename as...
12898 (state_t.reductions, state_t.shifts): this.
12899
12900 2001-12-05 Akim Demaille <akim@epita.fr>
12901
12902 * src/reduce.c (reduce_grammar_tables): No longer disable the
12903 removal of useless rules via CPP but via `if (0)', so that the
12904 compiler still check the code is valid.
12905 For instance, it should have noticed `rline' no longer exists: use
12906 the `line' member of rule_t.
12907 * src/gram.c (dummy, rline): Remove, unused.
12908
12909 2001-12-05 Akim Demaille <akim@epita.fr>
12910
12911 * src/output.c (pack_vector): Use assert, not berror.
12912 * src/main.c (berror): Remove, unused.
12913
12914 2001-12-05 Akim Demaille <akim@epita.fr>
12915
12916 New experimental feature: if --verbose --trace output all the
12917 items of a state, not only its kernel.
12918
12919 * src/print.c (print_core): If `trace_flag', then invoke closure
12920 before outputting the items of the state (print_core is no longer
12921 a correct name them).
12922 (print_results): Invoke new_closure/free_closure if needed.
12923
12924 2001-12-05 Akim Demaille <akim@epita.fr>
12925
12926 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
12927 * src/closure.c, src/closure.h (itemsetsize): Rename as...
12928 (nitemset): for consistency with the rest of the project.
12929
12930 2001-12-05 Akim Demaille <akim@epita.fr>
12931
12932 * src/closure.c (print_closure): Improve.
12933 (closure): Use it for printing input and output.
12934
12935 2001-12-05 Akim Demaille <akim@epita.fr>
12936
12937 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
12938 indexed by nonterminals.
12939
12940 2001-12-05 Akim Demaille <akim@epita.fr>
12941
12942 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
12943 what it was!).
12944 * src/warshall.h: Remove accidental duplication of the content.
12945
12946 2001-12-05 Akim Demaille <akim@epita.fr>
12947
12948 * src/closure.c (set_fderives): De-obfuscate.
12949
12950 2001-12-05 Akim Demaille <akim@epita.fr>
12951
12952 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
12953
12954 2001-12-05 Akim Demaille <akim@epita.fr>
12955
12956 * src/closure.c (set_firsts): De-obfuscate.
12957
12958 2001-12-05 Akim Demaille <akim@epita.fr>
12959
12960 * src/output.c (action_row): De-obfuscate
12961 using the good o' techniques: arrays not pointers, variable
12962 locality, BITISSET, RESETBIT etc.
12963
12964 2001-12-05 Akim Demaille <akim@epita.fr>
12965
12966 Pessimize the code to simplify it: from now on, all the states
12967 have a valid SHIFTS, which NSHIFTS is possibly 0.
12968
12969 * src/LR0.c (shifts_new): Be global and move to..
12970 * src/state.c, src/state.h: here.
12971 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
12972 * src/print_graph: Adjust.
12973
12974 2001-12-05 Akim Demaille <akim@epita.fr>
12975
12976 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
12977 * src/conflicts.c: Use it.
12978 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
12979 incorrectly ``simplified''.
12980
12981 2001-12-05 Akim Demaille <akim@epita.fr>
12982
12983 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
12984 using the good o' techniques: arrays not pointers, variable
12985 locality, BITISSET, RESETBIT etc.
12986
12987 2001-12-05 Akim Demaille <akim@epita.fr>
12988
12989 * src/state.h (SHIFT_SYMBOL): New.
12990 * src/conflicts.c: Use it to deobfuscate.
12991
12992 2001-12-05 Akim Demaille <akim@epita.fr>
12993
12994 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
12995 (print_reductions): De-obfuscate using the good o' techniques:
12996 arrays not pointers, variable locality, BITISSET.
12997
12998 2001-12-05 Akim Demaille <akim@epita.fr>
12999
13000 * src/conflicts.c (print_reductions): Arrays, not pointers.
13001 Use BITISSET.
13002
13003 2001-12-05 Akim Demaille <akim@epita.fr>
13004
13005 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13006
13007 2001-12-05 Akim Demaille <akim@epita.fr>
13008
13009 * src/conflicts.c (print_reductions): Improve variable locality.
13010
13011 2001-12-05 Akim Demaille <akim@epita.fr>
13012
13013 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13014
13015 2001-12-05 Akim Demaille <akim@epita.fr>
13016
13017 * src/conflicts.c (print_reductions): Improve variable locality.
13018
13019 2001-12-05 Akim Demaille <akim@epita.fr>
13020
13021 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
13022 * src/lalr.c: Use them.
13023
13024 2001-12-05 Akim Demaille <akim@epita.fr>
13025
13026 * src/LR0.c (augment_automaton): Formatting changes.
13027 Better variable locality.
13028
13029 2001-12-05 Akim Demaille <akim@epita.fr>
13030
13031 * src/lalr.c (matrix_print): New.
13032 (transpose): Use it.
13033 Use arrays instead of pointers.
13034
13035 2001-12-05 Akim Demaille <akim@epita.fr>
13036
13037 * src/lalr.c (maxrhs): Move to...
13038 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
13039 * src/lalr.c (build_relations): Adjust.
13040
13041 2001-12-05 Akim Demaille <akim@epita.fr>
13042
13043 * src/lalr.c (transpose): Free the memory allocated to the
13044 argument, as it is replaced by the results by the unique caller.
13045 (build_relations): Merely invoke transpose: it handles the memory
13046 deallocation.
13047 Improve variable locality.
13048 Avoid variables used as mere abbreviations.
13049 (compute_lookaheads): Use arrays instead of pointers.
13050
13051 2001-12-05 Akim Demaille <akim@epita.fr>
13052
13053 * src/lalr.c (initialize_F): Improve variable locality.
13054 Avoid variables used as mere abbreviations.
13055
13056 2001-12-05 Akim Demaille <akim@epita.fr>
13057
13058 * src/derives.c (print_derives): Display the ruleno.
13059 * src/lalr.c (initialize_F, transpose): Better variable locality
13060 to improve readability.
13061 Avoid variables used as mere abbreviations.
13062
13063 2001-12-05 Akim Demaille <akim@epita.fr>
13064
13065 * src/lalr.c (traverse): Use arrays instead of pointers.
13066
13067 2001-12-05 Akim Demaille <akim@epita.fr>
13068
13069 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
13070 the handling of squeue.
13071 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13072
13073 2001-12-05 Akim Demaille <akim@epita.fr>
13074
13075 Because useless nonterminals are now kept alive (instead of being
13076 `destroyed'), we now sometimes examine them, and store information
13077 related to them. Hence we need to know their number, and adjust
13078 memory allocations.
13079
13080 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
13081 static.
13082 * src/LR0.c (allocate_itemsets): The memory allocated to
13083 `symbol_count' was used for two different purpose: once to count
13084 the number of occurrences of each symbol, and later reassigned to
13085 `shift_symbol', containing the symbol that can be shifted from a
13086 given state.
13087 Deobfuscate, i.e., allocate, use and free `symbol_count' here
13088 only, and...
13089 (new_itemsets): Allocate `shift_symbol' here.
13090 (allocate_itemsets): symbol_count includes useless nonterminals.
13091 Make room for them.
13092 (free_storage): Use `free', not `XFREE', for pointers that cannot
13093 be null.
13094
13095 2001-12-05 Akim Demaille <akim@epita.fr>
13096
13097 * src/nullable.c (set_nullable): Deobfuscate the handling of
13098 ritem.
13099 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13100
13101 2001-12-05 Akim Demaille <akim@epita.fr>
13102
13103 * src/gram.c, src/gram.h (ritem_print): New.
13104 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
13105 (This useless function was defined only to work around VMS linkers
13106 that can't handle compilation units with variables only).
13107 * src/reduce.c (dump_grammar): Use it to trace the construction of
13108 ritem.
13109
13110 2001-12-04 Paul Eggert <eggert@twinsun.com>
13111
13112 * src/bison.simple (union yyalloc): Change member names
13113 to be the same as the stack names.
13114 (yyparse): yyptr is now union yyalloc *, not char *.
13115 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
13116 and may generate better code on some machines.
13117 (yystpcpy): Use prototype if __STDC__ is defined, not just
13118 if __cplusplus is defined.
13119
13120 2001-11-30 Akim Demaille <akim@epita.fr>
13121
13122 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
13123 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
13124 Gettext doesn't compile cleanly, and dies with -Werror.
13125 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
13126 Include WARNING_CFLAGS here.
13127 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
13128 before being defined.
13129
13130 2001-11-27 Paul Eggert <eggert@twinsun.com>
13131
13132 * lib/quotearg.h (quotearg_n, quotearg_n_style):
13133 First arg is int, not unsigned.
13134 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
13135 (SIZE_MAX, UINT_MAX): New macros.
13136 (quotearg_n_options): Abort if N is negative.
13137 Avoid overflow check on hosts where size_t is 64 bits and int
13138 is 32 bits, as overflow is impossible there.
13139 Fix off-by-one typo that caused unnecessary reallocation.
13140
13141 2001-11-29 Paul Eggert <eggert@twinsun.com>
13142
13143 Name space cleanup in generated parser.
13144
13145 * doc/bison.texinfo (Bison Parser): Discuss system headers
13146 and their effect on the user name space.
13147
13148 * src/bison.simple:
13149 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
13150 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
13151 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
13152
13153 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
13154 on user names when possible.
13155
13156 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
13157 Simplify test for whather <alloca.h> exists.
13158
13159 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
13160
13161 (<stdio.h>): Include if YYDEBUG.
13162
13163 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
13164 ! defined (yyoverflow) && ! defined (yymemcpy).
13165
13166 (yymemcpy, yyparse): Rename local variables as needed so that
13167 they all begin with 'yy'.
13168
13169 (yystrlen, yystpcpy): New functions.
13170
13171 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
13172 All uses changed.
13173
13174 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
13175 instead of relying on string.h functions. Use YYSTACK_ALLOC
13176 and YYSTACK_FREE instead of malloc and free.
13177
13178 2001-11-30 Akim Demaille <akim@epita.fr>
13179
13180 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
13181 before their first uses.
13182 (YYBISON, YYPURE): Move to the top of the output.
13183
13184 2001-11-30 Akim Demaille <akim@epita.fr>
13185
13186 * tests/reduce.at (Useless Nonterminals): Fix.
13187
13188 2001-11-30 Akim Demaille <akim@epita.fr>
13189
13190 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
13191 if body instead of `;' to pacify GCC's warnings.
13192
13193 2001-11-30 Akim Demaille <akim@epita.fr>
13194
13195 Instead of mapping the LHS of unused rules to -1, keep the LHS
13196 valid, but flag the rules as invalid.
13197
13198 * src/gram.h (rule_t): `useful' is a new member.
13199 * src/print.c (print_grammar): Adjust.
13200 * src/derives.c (set_derives): Likewise.
13201 * src/reader.c (packgram, reduce_output): Likewise.
13202 * src/reduce.c (reduce_grammar_tables): Likewise.
13203 * tests/reduce.at (Underivable Rules, Useless Rules): New.
13204
13205 2001-11-30 Akim Demaille <akim@epita.fr>
13206
13207 * src/reduce.c (reduce_output): Formatting changes.
13208 * src/print.c (print_results, print_grammar): Likewise.
13209 * tests/regression.at (Rule Line Numbers)
13210 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
13211
13212 2001-11-30 Akim Demaille <akim@epita.fr>
13213
13214 * src/reduce.c (nonterminals_reduce): Instead of throwing away
13215 useless nonterminals, move them at the end of the symbol arrays.
13216 (reduce_output): Adjust.
13217 * tests/reduce.at (Useless Nonterminals): Adjust.
13218
13219 2001-11-30 Akim Demaille <akim@epita.fr>
13220
13221 * src/reduce.c: Various comment/formatting changes.
13222 (nonterminals_reduce): New, extracted from...
13223 (reduce_grammar_tables): here.
13224 (reduce_grammar): Call nonterminals_reduce.
13225
13226 2001-11-29 Paul Eggert <eggert@twinsun.com>
13227
13228 * src/bison.simple (YYSTACK_REALLOC): Remove.
13229 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
13230 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
13231 New macros.
13232 (union yyalloc): New type.
13233 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
13234 an arbitrary restriction on hosts where size_t is wider than int.
13235
13236 (yyparse): Don't dump core if alloca or malloc fails; instead, report
13237 a parser stack overflow. Allocate just one block of memory for all
13238 three stacks, instead of allocating three blocks; this typically is
13239 faster and reduces fragmentation.
13240
13241 Do not limit the number of items in the stack to a value that fits
13242 in 'int', as this is an arbitrary limit on hosts with 64-bit
13243 size_t and 32-bit int.
13244
13245 2001-11-29 Marc Autret <autret_m@epita.fr>
13246
13247 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
13248 of defining YYERROR_VERBOSE.
13249 [AT_DATA]: $4 is now out of C declarations in the prologue.
13250
13251 2001-11-28 Marc Autret <autret_m@epita.fr>
13252
13253 * src/reader.c (parse_dquoted_param): New.
13254 (parse_skel_decl): Use it.
13255 * src/lex.h: Add its prototype.
13256 * src/lex.c (literalchar): Become not static.
13257
13258 2001-11-28 Marc Autret <autret_m@epita.fr>
13259
13260 * src/output.h: And put its extern declaration here.
13261 * src/output.c (error_verbose): Define here.
13262 (prepare): Echo name modification.
13263 * src/getargs.h: Clean its extern declaration.
13264 * src/getargs.c (error_verbose_flag): Remove.
13265 (getargs): Remove case 'e'.
13266 * src/options.c (option_table): 'error-verbose' is now seen as simple
13267 percent option.
13268 Include output.h.
13269
13270 * src/reader.c (read_declarations): Remove case tok_include.
13271 (parse_include_decl): Remove.
13272 * src/lex.h (token_t): Remove tok_include.
13273 * src/options.c (option_table): 'include' is now a simple command line
13274 option.
13275
13276 2001-11-28 Marc Autret <autret_m@epita.fr>
13277
13278 * src/bison.simple: Adjust muscle names.
13279 * src/muscle_tab.c (muscle_init): Also rename the muscles.
13280 * src/output.c (prepare): s/_/-/ for the muscles names.
13281 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
13282
13283 2001-11-28 Marc Autret <autret_m@epita.fr>
13284
13285 * src/bison.simple: Fix debug.
13286 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
13287
13288 2001-11-28 Akim Demaille <akim@epita.fr>
13289
13290 * src/LR0.c (shifts_new): New.
13291 (save_shifts, insert_start_shift, augment_automaton): Use it.
13292
13293 2001-11-28 Akim Demaille <akim@epita.fr>
13294
13295 * src/closure.c (closure): `b' and `ruleno' denote the same value:
13296 keep ruleno only.
13297
13298 2001-11-28 Akim Demaille <akim@epita.fr>
13299
13300 * src/closure.c (closure): Instead of looping over word in array
13301 then bits in words, loop over bits in array.
13302
13303 2001-11-28 Akim Demaille <akim@epita.fr>
13304
13305 * src/closure.c (closure): No longer optimize the special case
13306 where all the bits of `ruleset[r]' are set to 0, to make the code
13307 clearer.
13308
13309 2001-11-28 Akim Demaille <akim@epita.fr>
13310
13311 * src/closure.c (closure): `r' and `c' are new variables, used to
13312 de-obfuscate accesses to RULESET and CORE.
13313
13314 2001-11-28 Akim Demaille <akim@epita.fr>
13315
13316 * src/reduce.c (reduce_print): Use ngettext.
13317 (dump_grammar): Improve the trace accuracy.
13318
13319 2001-11-28 Akim Demaille <akim@epita.fr>
13320
13321 * src/reduce.c (dump_grammar): Don't translate trace messages.
13322
13323 2001-11-28 Akim Demaille <akim@epita.fr>
13324
13325 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
13326 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
13327 as all tags are free'ed afterwards.
13328 From Enrico Scholz.
13329
13330 2001-11-27 Paul Eggert <eggert@twinsun.com>
13331
13332 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
13333 use alloca when we didn't want to, and vice versa.
13334
13335 2001-11-27 Marc Autret <autret_m@epita.fr>
13336
13337 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
13338 initialization.
13339 * src/output.c (prepare): Remove its update.
13340
13341 2001-11-27 Marc Autret <autret_m@epita.fr>
13342
13343 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
13344 Use %error-verbose.
13345
13346 2001-11-27 Marc Autret <autret_m@epita.fr>
13347
13348 * src/bison.simple: Remove YYERROR_VERBOSE using.
13349 Use %%error_verbose.
13350 (yyparse): Likewise.
13351 * src/output.c (prepare): Give its final value.
13352 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
13353 * src/getargs.h: Add its extern declaration.
13354 * src/getargs.c (error_verbose_flag): New int.
13355 (getargs): Update to catch new case.
13356 * src/options.c (option_table): 'error-verbose' is a new option.
13357 (shortopts): Update.
13358
13359 2001-11-27 Akim Demaille <akim@epita.fr>
13360
13361 * src/system.h: Use intl/libgettext.h.
13362 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
13363
13364 2001-11-27 Akim Demaille <akim@epita.fr>
13365
13366 * tests/torture.at (Exploding the Stack Size with Malloc):
13367 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
13368
13369 2001-11-27 Akim Demaille <akim@epita.fr>
13370
13371 * src/files.c: Include error.h.
13372 Reported by Hans Aberg.
13373
13374 2001-11-26 Marc Autret <autret_m@epita.fr>
13375
13376 * src/reader.c (parse_include_decl): New, not yet implemented.
13377 (read_declarations): Add case tok_include.
13378 * src/getargs.h (include): Add its extern definition.
13379 * src/getargs.c (include): New const char *.
13380 (getargs): Add case '-I'.
13381 * src/options.c (option_table): Add include as command line and
13382 percent option.
13383 * src/lex.h (token_t): Add tok_include.
13384
13385 2001-11-26 Akim Demaille <akim@epita.fr>
13386
13387 * src/reader.c (readgram): Make sure rules for mid-rule actions
13388 have a lineno equal to that of their host rule.
13389 Reported by Hans Aberg.
13390 * tests/regression.at (Rule Line Numbers): New.
13391
13392 2001-11-26 Akim Demaille <akim@epita.fr>
13393
13394 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
13395 size_ts.
13396
13397 2001-11-26 Akim Demaille <akim@epita.fr>
13398
13399 * src/complain.c, src/complain.h (error): Remove, provided by
13400 lib/error.[ch].
13401
13402 2001-11-26 Akim Demaille <akim@epita.fr>
13403
13404 * src/reader.c (read_declarations): Don't abort on tok_illegal,
13405 issue an error message.
13406 * tests/regression.at (Invalid %directive): New.
13407 Reported by Hans Aberg.
13408
13409 2001-11-26 Akim Demaille <akim@epita.fr>
13410
13411 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
13412 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
13413
13414 2001-11-26 Akim Demaille <akim@epita.fr>
13415
13416 * src/conflicts.c (conflicts_print): Don't complain at all when
13417 there are no reduce/reduce conflicts, and as many shift/reduce
13418 conflicts as expected.
13419 * tests/regression.at (%expect right): Adjust.
13420
13421 2001-11-23 Akim Demaille <akim@epita.fr>
13422
13423 * lib/alloca.c: Update, from fileutils.
13424
13425 2001-11-23 Akim Demaille <akim@epita.fr>
13426
13427 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
13428
13429 2001-11-23 Akim Demaille <akim@epita.fr>
13430
13431 * src/system.h: Include alloca.h.
13432 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
13433
13434 2001-11-23 Akim Demaille <akim@epita.fr>
13435
13436 * src/print_graph.c (print_actions): Remove `rule', unused.
13437 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
13438 pacify GCC's signed < unsigned warnings.
13439 * src/closure.c (itemsetsize): Likewise.
13440 * src/reader.c (symbol_list_new): Static.
13441
13442 2001-11-23 Akim Demaille <akim@epita.fr>
13443
13444 Attaching lineno to buckets is stupid, since only one copy of each
13445 symbol is kept, only the line of the first occurrence is kept too.
13446
13447 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
13448 * src/reader.c (rline_allocated): Remove, unused.
13449 (symbol_list): Have a `line' member.
13450 (symbol_list_new): New.
13451 (readgram): Use it.
13452 * src/print.c (print_grammar): Output the rule line numbers.
13453 * tests/regression.at (Solved SR Conflicts)
13454 (Unresolved SR Conflicts): Adjust.
13455 Reported by Hans Aberg.
13456
13457 2001-11-22 Marc Autret <autret_m@epita.fr>
13458
13459 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
13460
13461 2001-11-22 Marc Autret <autret_m@epita.fr>
13462
13463 * src/muscle_tab.c (muscle_init): Remove initialization of
13464 skeleton muscle.
13465 * src/output.c (output_master_parser): Do it here.
13466
13467 2001-11-20 Akim Demaille <akim@epita.fr>
13468
13469 * po/sv.po: New.
13470 * configure.in (ALL_LINGUAS): Adjust.
13471 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
13472 longer contains strings to translate.
13473
13474 2001-11-19 Akim Demaille <akim@epita.fr>
13475
13476 * src/conflicts.c (conflicts_print): Add a missing \n.
13477
13478 2001-11-19 Akim Demaille <akim@epita.fr>
13479
13480 * src/nullable.c (nullable_print): New.
13481 (set_nullable): Call it when tracing.
13482 Better locality of variables.
13483
13484 2001-11-19 Akim Demaille <akim@epita.fr>
13485
13486 * src/print.c (print_actions): Better locality of variables.
13487
13488 2001-11-19 Akim Demaille <akim@epita.fr>
13489
13490 * src/derives.c (print_derives): Fix and enrich.
13491 * src/closure.c (print_fderives): Likewise.
13492
13493 2001-11-19 Akim Demaille <akim@epita.fr>
13494
13495 * src/closure.c (itemsetend): Remove, replaced with...
13496 (itemsetsize): new.
13497
13498 2001-11-19 Akim Demaille <akim@epita.fr>
13499
13500 * src/LR0.c (kernel_end): Remove, replaced with...
13501 (kernel_size): new.
13502
13503 2001-11-19 Akim Demaille <akim@epita.fr>
13504
13505 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
13506 to clarify.
13507
13508 2001-11-19 Akim Demaille <akim@epita.fr>
13509
13510 * src/closure.c (closure): Use arrays instead of pointers to clarify.
13511
13512 2001-11-19 Akim Demaille <akim@epita.fr>
13513
13514 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
13515 trace messages.
13516 * src/LR0.c: Likewise.
13517 (allocate_itemsets): Use arrays instead of pointers to clarify.
13518
13519 2001-11-19 Akim Demaille <akim@epita.fr>
13520
13521 * src/getargs.c (statistics_flag): Replace with...
13522 (trace_flag): New.
13523 (longopts): Accept --trace instead of --statistics.
13524 * src/getargs.h, src/options.c: Adjust.
13525 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
13526 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
13527
13528 2001-11-19 Akim Demaille <akim@epita.fr>
13529
13530 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
13531 pointers to clarify the code.
13532 (save_reductions, save_shifts): Factor common parts of alternatives.
13533
13534 2001-11-19 Akim Demaille <akim@epita.fr>
13535
13536 * src/LR0.c (new_state, get_state): Complete TRACE code.
13537 * src/closure.c: Include `reader.h' to get `tags', needed by the
13538 trace code.
13539 Rename the conditional DEBUG as TRACE.
13540 Output consistently TRACEs to stderr, not stdout.
13541 * src/derives.c: Likewise.
13542 * src/reduce.c: (inaccessable_symbols): Using if is better style
13543 than goto.
13544 Use `#if TRACE' instead of `#if 0' for tracing code.
13545
13546 2001-11-19 Akim Demaille <akim@epita.fr>
13547
13548 * src/system.h (LIST_FREE, shortcpy): New.
13549 * src/LR0.c: Use them.
13550 * src/output.c (free_itemsets, free_reductions, free_shifts):
13551 Remove, replaced by LIST_FREE.
13552
13553 2001-11-19 Akim Demaille <akim@epita.fr>
13554
13555 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
13556 (REDUCTIONS_ALLOC): New.
13557 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
13558 allocation.
13559
13560 2001-11-19 Akim Demaille <akim@epita.fr>
13561
13562 * src/LR0.c (new_state): Complete trace code.
13563 * src/nullable.c (set_nullable): Don't translate traces.
13564
13565 2001-11-19 Akim Demaille <akim@epita.fr>
13566
13567 * src/print_graph.c (print_core): Better locality of variables.
13568 * src/print.c (print_core): Likewise.
13569
13570 2001-11-19 Akim Demaille <akim@epita.fr>
13571
13572 * src/vcg.c: You do the output, so you are responsible of the
13573 handling of VCG syntax, in particular: use quotearg.
13574 * src/print_graph.c: Don't.
13575 (print_actions): Don't output the actions as part of the nodes,
13576 since that's the job of the edges.
13577 (print_state): Don't output by hand: fill the node description,
13578 and ask for its output.
13579
13580 2001-11-19 Akim Demaille <akim@epita.fr>
13581
13582 * src/bison.simple (yyparse): When verbosely reporting an error,
13583 no longer put additional quotes around token names.
13584 * tests/calc.at: Adjust.
13585
13586 2001-11-19 Akim Demaille <akim@epita.fr>
13587
13588 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
13589 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
13590 * src/output.c: Adjust.
13591
13592 2001-11-19 Akim Demaille <akim@epita.fr>
13593
13594 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
13595 (rule_t): this.
13596 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
13597
13598 2001-11-19 Akim Demaille <akim@epita.fr>
13599
13600 * src/gram.h (rule_t): New.
13601 (rule_table): New.
13602 (rrhs, rlhs): Remove, part of state_t.
13603 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
13604 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13605 * src/reader.c, src/reduce.c: Adjust.
13606
13607 2001-11-19 Akim Demaille <akim@epita.fr>
13608
13609 * src/reader.c (symbols_output): New, extracted from...
13610 (packsymbols): Here.
13611 (reader): Call it.
13612
13613 2001-11-19 Akim Demaille <akim@epita.fr>
13614
13615 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
13616 (maxrhs): this new function.
13617
13618 2001-11-19 Akim Demaille <akim@epita.fr>
13619
13620 * src/lalr.c (F): New macro to access the variable F.
13621 Adjust.
13622
13623 2001-11-19 Akim Demaille <akim@epita.fr>
13624
13625 * src/lalr.h (LA): New macro to access the variable LA.
13626 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13627 * src/lalr.c: Adjust.
13628
13629 2001-11-19 Akim Demaille <akim@epita.fr>
13630
13631 * src/lalr.c (initialize_LA): Only initialize LA. Let...
13632 (set_state_table): handle the `lookaheads' members.
13633
13634 2001-11-19 Akim Demaille <akim@epita.fr>
13635
13636 * src/lalr.h (lookaheads): Removed array, whose contents is now
13637 a member of...
13638 (state_t): this structure.
13639 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13640 Adjust.
13641
13642 2001-11-19 Akim Demaille <akim@epita.fr>
13643
13644 * src/lalr.h (consistent): Removed array, whose contents is now
13645 a member of...
13646 (state_t): this structure.
13647 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13648 Adjust.
13649
13650 2001-11-19 Akim Demaille <akim@epita.fr>
13651
13652 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
13653 contents are now members of...
13654 (state_t): this structure.
13655 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13656 Adjust.
13657
13658 2001-11-19 Akim Demaille <akim@epita.fr>
13659
13660 * src/lalr.h (state_t): New.
13661 (state_table): Be a state_t * instead of a core **.
13662 (accessing_symbol): Remove, part of state_t.
13663 * src/lalr.c: Adjust.
13664 (set_accessing_symbol): Merge into...
13665 (set_state_table): this.
13666 * src/print_graph.c, src/conflicts.c: Adjust.
13667
13668 2001-11-14 Akim Demaille <akim@epita.fr>
13669
13670 * tests/calc.at, tests/output.at, tests/regression.at,
13671 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
13672 now the tests are run in private dirs, therefore AC_CLEANUP and
13673 family can be simplified to 0-ary.
13674 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
13675 use abs. path to find config.h.
13676 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
13677 stderr, there can be way too much random noise.
13678 Instead pass -Werror to GCC and rely on the exit status.
13679 Reported by Wolfram Wagner.
13680
13681 2001-11-14 Akim Demaille <akim@epita.fr>
13682
13683 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
13684 defined only if yyoverflow is defined, to avoid `warning: unused
13685 variable `yyvs1''.
13686 Reported by The Test Suite.
13687
13688 2001-11-14 Akim Demaille <akim@epita.fr>
13689
13690 * src/print.c: Include reduce.h.
13691 Reported by Hans Aberg.
13692
13693 2001-11-14 Akim Demaille <akim@epita.fr>
13694
13695 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
13696 Revert a previous patch: these are really const.
13697 * src/conflicts.c (conflict_report): Additional useless pair of
13698 braces to pacify GCC's warnings for `if () if () {} else {}'.
13699 * src/lex.c (parse_percent_token): Replace equal_offset with
13700 arg_offset.
13701 arg is const.
13702 Be sure to strdup `arg' when used, since there is no reason for
13703 token_buffer not to change.
13704
13705 2001-11-14 Akim Demaille <akim@epita.fr>
13706
13707 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
13708 definition.
13709 * src/main.c (main): Use them.
13710 Suggested by Hans Aberg.
13711
13712 2001-11-12 Akim Demaille <akim@epita.fr>
13713
13714 * src/system.h (ngettext): Now that we use ngettext, be sure to
13715 provide a default definition when NLS are not used.
13716
13717 2001-11-12 Akim Demaille <akim@epita.fr>
13718
13719 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
13720 Use @kbd to denote user input.
13721 (Language and Grammar): ANSIfy the example.
13722 Adjust its layout for info/notinfo.
13723 (Location Tracking Calc): Output error messages to stderr.
13724 Output locations in a more GNUtically correct way.
13725 Fix a couple of Englishos.
13726 Adjust @group/@end group pairs.
13727
13728 2001-11-12 Akim Demaille <akim@epita.fr>
13729
13730 %expect was not functioning at all.
13731
13732 * src/conflicts.c (expected_conflicts): Set to -1.
13733 (conflict_report): Use ngettext.
13734 (conflicts_print): Check %expect and make its violation an error.
13735 * doc/bison.texinfo (Expect Decl): Adjust.
13736 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
13737 * tests/regression.at (%expect not enough, %expect right)
13738 (%expect too much): New.
13739
13740 2001-11-12 Akim Demaille <akim@epita.fr>
13741
13742 * tests/regression.at (Conflicts): Rename as...
13743 (Unresolved SR Conflicts): this.
13744 (Solved SR Conflicts): New.
13745
13746 2001-11-12 Akim Demaille <akim@epita.fr>
13747
13748 * src/reduce.c (print_results): Rename as...
13749 (reduce_output): This.
13750 Output to OUT, passed as argument, instead of output_obstack.
13751 (dump_grammar): Likewise.
13752 (reduce_free): New.
13753 Also free V1.
13754 (reduce_grammar): No longer call reduce_output, since...
13755 * src/print.c (print_results): do it.
13756 * src/main.c (main): Call reduce_free;
13757
13758 2001-11-12 Akim Demaille <akim@epita.fr>
13759
13760 * src/conflicts.c (print_reductions): Accept OUT as argument.
13761 Output to it, not to output_obstack.
13762 * src/print.c (print_actions): Adjust.
13763
13764 2001-11-12 Akim Demaille <akim@epita.fr>
13765
13766 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
13767 the result instead of using...
13768 (src_total, rrc_total, src_count, rrc_count): Remove.
13769 (any_conflicts): Remove.
13770 (print_conflicts): Split into...
13771 (conflicts_print, conflicts_output): New.
13772 * src/conflicts.h: Adjust.
13773 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
13774 * src/print.c (print_grammar): Issue `\n' between two rules.
13775 * tests/regression.at (Conflicts): New.
13776 Reported by Tom Lane.
13777
13778 2001-11-12 Akim Demaille <akim@epita.fr>
13779
13780 * tests/regression.at (Invalid input): Remove, duplicate with
13781 ``Invalid input: 1''.
13782
13783 2001-11-12 Akim Demaille <akim@epita.fr>
13784
13785 * tests/torture.at (AT_DATA_STACK_TORTURE)
13786 (Exploding the Stack Size with Alloca)
13787 (Exploding the Stack Size with Malloc): New.
13788
13789 2001-11-12 Akim Demaille <akim@epita.fr>
13790
13791 * src/bison.simple (YYSTACK_REALLOC): New.
13792 (yyparse) [!yyoverflow]: Use it and free the old stack.
13793 Reported by Per Allansson.
13794
13795 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
13796
13797 * src/bison.simple: Define type yystype instead of YYSTYPE, and
13798 define CPP macro, which substitute YYSTYPE by yystype.
13799 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
13800 with yyltype/YYLTYPE. This allows inclusion of the generated
13801 header within the parser if the compiler, such as GGC, accepts
13802 multiple equivalent #defines.
13803 From Akim.
13804
13805 2001-11-05 Akim Demaille <akim@epita.fr>
13806
13807 * src/reader.c (symbols_output): New, extracted from...
13808 (packsymbols): here.
13809 (reader): Adjust.
13810
13811 2001-11-05 Akim Demaille <akim@epita.fr>
13812
13813 * src/lex.c (parse_percent_token): s/quotearg/quote/.
13814
13815 2001-11-05 Akim Demaille <akim@epita.fr>
13816
13817 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
13818 pattern.
13819
13820 2001-11-05 Akim Demaille <akim@epita.fr>
13821
13822 * src/options.h (struct option_table_struct): set_flags is void*.
13823 * src/options.c (longopts): Support `--output' and `%output'.
13824 (usage): Adjust.
13825 * src/lex.h (tok_setopt): Remove, replaced with...
13826 (tok_intopt, tok_stropt): these new guys.
13827 * src/lex.c (getopt.h): Not needed.
13828 (token_buffer, unlexed_token_buffer): Not const.
13829 (percent_table): Promote `-' over `_' in directive names.
13830 Active `%name-prefix', `file-prefix', and `output'.
13831 (parse_percent_token): Accept possible arguments to directives.
13832 Promote `-' over `_' in directive names.
13833
13834 2001-11-04 Akim Demaille <akim@epita.fr>
13835
13836 * doc/bison.texinfo (Decl Summary): Split the list into
13837 `directives for grammars' and `directives for bison'.
13838 Sort'em.
13839 Add description of `%name-prefix', `file-prefix', and `output'.
13840 Promote `-' over `_' in directive names.
13841 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
13842 Simplify the description of `--name-prefix'.
13843 Promote `-' over `_' in directive names.
13844 Promote `--output' over `--output-file'.
13845 Fix the description of `--defines'.
13846 * tests/output.at: Exercise %file-prefix and %output.
13847
13848 2001-11-02 Akim Demaille <akim@epita.fr>
13849
13850 * doc/refcard.tex: Update.
13851
13852 2001-11-02 Akim Demaille <akim@epita.fr>
13853
13854 * src/symtab.h (SUNDEF): New.
13855 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
13856 stand for `uninitialized', instead of 0.
13857 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
13858 * src/lex.c (lex): Adjust.
13859
13860 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
13861 Number it 0.
13862 Let yylex return it instead of a plain 0.
13863 Reported by Dick Streefland.
13864
13865 2001-11-02 Akim Demaille <akim@epita.fr>
13866
13867 * tests/regression.at (Mixing %token styles): New test.
13868
13869 2001-11-02 Akim Demaille <akim@epita.fr>
13870
13871 * src/reader.c (parse_thong_decl): Formatting changes.
13872 (token_translations_init): New, extracted from...
13873 (packsymbols): Here.
13874 Adjust.
13875
13876 2001-11-01 Akim Demaille <akim@epita.fr>
13877
13878 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
13879 Check that `9foo.y' produces correct cpp guards.
13880 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
13881 guards.
13882 Reported by Wwp.
13883
13884 2001-11-01 Akim Demaille <akim@epita.fr>
13885
13886 * tests/regression.at (Invalid input: 2): New.
13887 * src/lex.c (unlexed_token_buffer): New.
13888 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
13889 too.
13890 Reported by Wwp.
13891
13892 2001-11-01 Akim Demaille <akim@epita.fr>
13893
13894 * tests/calc.at: Catch up with 1.30.
13895 * configure.in: Bump to 1.49a.
13896 Adjust to newer Autotest.
13897
13898 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
13899
13900 * src/conflicts.c: Move global variables rrc_total and src_total ...
13901 (print_conflicts): here.
13902 * src/output.c (output): Free global variable user_toknums.
13903 * src/lex.c (token_obstack): Become static.
13904
13905 2001-10-18 Akim Demaille <akim@epita.fr>
13906
13907 * tests/atlocal.in (GCC): Add.
13908 * tests/calc.at: s/m4_match/m4_bmatch/.
13909 s/m4_patsubst/m4_bpatsubst/.
13910 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
13911 * configure.in: AC_SUBST(GCC).
13912
13913 2001-10-14 Marc Autret <autret_m@epita.fr>
13914
13915 * src/options.c (create_long_option_table): Fix.
13916
13917 2001-10-10 Akim Demaille <akim@epita.fr>
13918
13919 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
13920
13921 2001-10-04 Akim Demaille <akim@epita.fr>
13922
13923 * src/reader.c (parse_union_decl): Push the caracters in
13924 union_obstack, not attrs_obstack.
13925
13926 2001-10-04 Akim Demaille <akim@epita.fr>
13927
13928 Merge in the branch 1.29.
13929
13930 * src/reader.c (packsymbols): Use a temporary obstack for
13931 `%%tokendef', since output_stack is already used elsewhere.
13932
13933 2001-10-02 Akim Demaille <akim@epita.fr>
13934
13935 Bump 1.29d.
13936
13937 2001-10-02 Akim Demaille <akim@epita.fr>
13938
13939 Version 1.29c.
13940
13941 2001-10-02 Akim Demaille <akim@epita.fr>
13942
13943 * tests/regression.at (Invalid CPP headers): New.
13944 From Alexander Belopolsky.
13945 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
13946
13947 2001-10-02 Akim Demaille <akim@epita.fr>
13948
13949 * tests/regression.at (Invalid input): New.
13950 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
13951 Reported by Shura.
13952
13953 2001-10-02 Akim Demaille <akim@epita.fr>
13954
13955 * tests/calc.at: Now that --debug works, the tests must be adjusted.
13956
13957 2001-10-02 Akim Demaille <akim@epita.fr>
13958
13959 * src/output.c (output_parser): Assert `skeleton'.
13960 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
13961 systems.
13962 From Shura.
13963
13964 2001-10-01 Marc Autret <autret_m@epita.fr>
13965
13966 * src/lex.h: Echo modifications.
13967 * src/lex.c (unlex): Parameter is now token_t.
13968 From Hans Aberg.
13969
13970 2001-10-01 Marc Autret <autret_m@epita.fr>
13971
13972 * src/main.c: Include lex.h.
13973 From Hans Aberg.
13974
13975 2001-09-29 Akim Demaille <akim@epita.fr>
13976
13977 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
13978
13979 2001-09-28 Akim Demaille <akim@epita.fr>
13980
13981 * tests/testsuite.at: Update to newer Autotest.
13982 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
13983
13984 2001-09-27 Akim Demaille <akim@epita.fr>
13985
13986 Position independent wrapper.
13987
13988 * tests/bison: Remove.
13989 * tests/bison.in: New.
13990 * configure.in: Adjust.
13991
13992 2001-09-27 Paul Eggert <eggert@twinsun.com>
13993
13994 Port quotearg fixes from tar 1.13.24.
13995
13996 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
13997 tm to be declared.
13998 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
13999 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
14000
14001 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
14002 * m4/mbrtowc.m4: New file.
14003 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
14004 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
14005
14006 2001-09-27 Akim Demaille <akim@epita.fr>
14007
14008 Bump to 1.29c.
14009
14010 2001-09-27 Akim Demaille <akim@epita.fr>
14011
14012 Version 1.29b.
14013
14014 2001-09-25 Akim Demaille <akim@epita.fr>
14015
14016 * src/system.h: Include `xalloc.h'.
14017 Remove it from the C files.
14018 * src/files.c (output_files): Free the obstacks.
14019 * src/lex.c (init_lex): Rename as...
14020 (lex_init): this.
14021 (lex_free): New.
14022 * src/main.c (main): Use it.
14023
14024 2001-09-24 Marc Autret <autret_m@epita.fr>
14025
14026 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
14027 to output informations in fout (FILE*).
14028 (open_graph, close_graph): Likewise.
14029 (output_graph, output_edge, output_node): Likewise.
14030 * src/vcg.h: Update function prototypes.
14031 * src/print_graph.c (print_graph): Open output graph file.
14032 (print_actions): Adjust.
14033 * src/files.h: Remove extern declaration.
14034 * src/files.c: Remove graph_obstack declaration.
14035 (open_files): Remove graph_obstack initialization.
14036 (output_files): Remove graph_obstack saving.
14037
14038 2001-09-24 Marc Autret <autret_m@epita.fr>
14039
14040 * src/files.c (compute_output_file_names): Fix.
14041
14042 2001-09-24 Marc Autret <autret_m@epita.fr>,
14043 Akim Demaille <akim@epita.fr>
14044
14045 * src/reader.c (reader): Remove call to free_symtab ().
14046 * src/main.c (main): Call it here.
14047 Include symtab.h.
14048 * src/conflicts.c (initialize_conflicts): Rename as...
14049 (solve_conflicts): this.
14050 * src/print.c (print_core, print_actions, print_state)
14051 (print_grammar): Dump to a file instead a `output_obstack'.
14052 (print_results): Dump `output_obstack', and then proceed with the
14053 FILE *.
14054 * src/files.c (compute_output_file_names, close_files): New.
14055 (output_files): Adjust.
14056 * src/main.c (main): Adjust.
14057
14058 2001-09-23 Marc Autret <autret_m@epita.fr>
14059
14060 * src/files.c (compute_header_macro): Computes header macro name
14061 from spec_defines_file when given.
14062
14063 2001-09-23 Marc Autret <autret_m@epita.fr>
14064
14065 * src/files.c (output_files): Add default extensions.
14066
14067 2001-09-22 Akim Demaille <akim@epita.fr>
14068
14069 * src/conflicts.c (finalize_conflicts): Rename as...
14070 (free_conflicts): this.
14071
14072 2001-09-22 Akim Demaille <akim@epita.fr>
14073
14074 * src/gram.c (gram_free): Rename back as...
14075 (dummy): this.
14076 (output_token_translations): Free `token_translations'.
14077 * src/symtab.c (free_symtab): Free the tag field.
14078
14079 2001-09-22 Akim Demaille <akim@epita.fr>
14080
14081 Remove `translations' as it is always set to true.
14082
14083 * src/gram.h: Adjust.
14084 * src/reader.c (packsymbols, parse_token_decl): Adjust
14085 * src/print.c (print_grammar): Adjust.
14086 * src/output.c (output_token_translations): Adjust.
14087 * src/lex.c (lex): Adjust.
14088 * src/gram.c: Be sure the set pointers to NULL.
14089 (dummy): Rename as...
14090 (gram_free): this.
14091
14092 2001-09-22 Akim Demaille <akim@epita.fr>
14093
14094 * configure.in: Invoke AM_LIB_DMALLOC.
14095 * src/system.h: Use dmalloc.
14096 * src/LR0.c: Be sure to have pointers initialized to NULL.
14097 (allocate_itemsets): Allocate kernel_items only if needed.
14098
14099 2001-09-22 Akim Demaille <akim@epita.fr>
14100
14101 * configure.in: Bump to 1.29b.
14102 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
14103 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
14104 need xmalloc.c in calc.y.
14105 From Pascal Bart.
14106
14107 2001-09-21 Akim Demaille <akim@epita.fr>
14108
14109 Version 1.29a.
14110 * Makefile.maint, config/config.guess, config/config.sub,
14111 * config/missing: Update from masters.
14112 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
14113 upon package.m4.
14114 * configure.in (ALL_LINGUAS): Add `tr'.
14115
14116 2001-09-21 Akim Demaille <akim@epita.fr>
14117
14118 * tests/Makefile.am (package.m4): Move to...
14119 ($(srcdir)/$(TESTSUITE)): here.
14120
14121 2001-09-20 Akim Demaille <akim@epita.fr>
14122
14123 * src/complain.c: No longer try to be standalone: use system.h.
14124 Don't assume __STDC__ is defined to 1. Just test if it is defined.
14125 * src/complain.h: Likewise.
14126 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
14127 Remove the unused variable `n'.
14128 From Albert Chin-A-Young.
14129
14130 2001-09-18 Marc Autret <autret_m@epita.fr>
14131
14132 * doc/bison.1: Update.
14133 * doc/bison.texinfo (Bison Options): Update --defines and --graph
14134 descriptions.
14135 (Option Cross Key): Update.
14136 Add --graph.
14137
14138 2001-09-18 Marc Autret <autret_m@epita.fr>
14139
14140 * tests/regression.at: New test (comment in %union).
14141
14142 2001-09-18 Marc Autret <autret_m@epita.fr>
14143
14144 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
14145 do that.
14146 Reported by Keith Browne.
14147
14148 2001-09-18 Marc Autret <autret_m@epita.fr>
14149
14150 * tests/output.at: Add tests for --defines and --graph.
14151
14152 2001-09-18 Marc Autret <autret_m@epita.fr>
14153
14154 * tests/output.at: Removes tests of %{header,src}_extension features.
14155
14156 2001-09-18 Akim Demaille <akim@epita.fr>
14157
14158 * tests/Makefile.am (package.m4): New.
14159 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
14160 (_AT_CHECK_CALC_ERROR): Likewise.
14161 Factor the `, ' part of verbose error messages.
14162
14163 2001-09-18 Marc Autret <autret_m@epita.fr>
14164
14165 * src/getargs.c (longopts): Declare --defines and --graph as options
14166 with optional arguments.
14167 * src/files.h: Add extern declarations.
14168 * src/files.c (spec_graph_file, spec_defines_file): New.
14169 (output_files): Update.
14170 Remove CPP-outed code.
14171
14172 2001-09-18 Marc Autret <autret_m@epita.fr>
14173
14174 Turn off %{source,header}_extension feature.
14175
14176 * src/files.c (compute_exts_from_gf): Update.
14177 (compute_exts_from_src): Update.
14178 (output_files): CPP-out useless code.
14179 * src/files.h: Remove {header,source}_extension extern declarations.
14180 * src/reader.c (parse_dquoted_param): CPP-out.
14181 (parse_header_extension_decl): Remove.
14182 (parse_source_extension_decl): Remove.
14183 (read_declarations): Remove cases tok_{hdrext,srcext}.
14184 * src/lex.c (percent_table): Remove {header,source}_extension entries.
14185 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
14186
14187 2001-09-10 Akim Demaille <akim@epita.fr>
14188
14189 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
14190 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
14191 (AT_CHECK_OUTPUT): this.
14192 Merely check ls' exit status, its output is useless.
14193
14194 2001-09-10 Akim Demaille <akim@epita.fr>
14195
14196 * tests/calc.at: Use m4_match.
14197 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
14198
14199 2001-09-10 Marc Autret <autret_m@epita.fr>,
14200 Akim Demaille <akim@epita.fr>
14201
14202 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
14203 enum color_e.
14204 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
14205 to `normal'.
14206 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
14207 * src/lex.h: Adjust prototype.
14208 (token_t): Add `tok_undef'.
14209 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
14210 (parse_percent_token): Now returns token_t.
14211 Add default statement in switch.
14212 (lex): Separate `c' as an input variable, from the token_t result
14213 part.
14214 (unlexed): Is a token_t.
14215
14216 2001-09-10 Akim Demaille <akim@epita.fr>
14217
14218 * configure.in: Bump to 1.29a.
14219
14220 2001-09-07 Akim Demaille <akim@epita.fr>
14221
14222 Version 1.29.
14223
14224 2001-08-30 Akim Demaille <akim@epita.fr>
14225
14226 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
14227 * m4/atconfig.m4: Remove.
14228 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
14229 * tests/bison: New.
14230 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
14231 m4_if, m4_patsubst, and m4_regexp.
14232 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
14233 `input' file instead of echo.
14234
14235 2001-08-29 Akim Demaille <akim@epita.fr>
14236
14237 Bump to 1.28e.
14238
14239 2001-08-29 Akim Demaille <akim@epita.fr>
14240
14241 Version 1.28d.
14242
14243 2001-08-29 Paul Eggert <eggert@twinsun.com>
14244
14245 * src/bison.simple (yyparse): Don't take the address of an
14246 item before the start of an array, as that doesn't conform to
14247 the C Standard.
14248
14249 2001-08-29 Robert Anisko <anisko_r@epita.fr>
14250
14251 * doc/bison.texinfo (Location Tracking Calc): New node.
14252
14253 2001-08-29 Paul Eggert <eggert@twinsun.com>
14254
14255 * src/output.c (output): Do not define const, as this now
14256 causes more problems than it cures.
14257
14258 2001-08-29 Akim Demaille <akim@epita.fr>
14259
14260 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
14261 the nodes.
14262 Be sure to tag the `detailmenu'.
14263
14264 2001-08-29 Akim Demaille <akim@epita.fr>
14265
14266 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
14267 download in a tmp dir.
14268
14269 2001-08-28 Marc Autret <autret_m@epita.fr>
14270
14271 * config/depcomp: New file.
14272
14273 2001-08-28 Marc Autret <autret_m@epita.fr>
14274
14275 * doc/bison.1 (mandoc): Adjust.
14276 From Juan Manuel Guerrero.
14277
14278 2001-08-28 Marc Autret <autret_m@epita.fr>
14279
14280 * src/print_graph.c (print_state): Fix.
14281
14282 2001-08-27 Marc Autret <autret_m@epita.fr>
14283
14284 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
14285 char * members.
14286 Echo modifications to the functions prototypes.
14287 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
14288
14289 2001-08-27 Marc Autret <autret_m@epita.fr>
14290
14291 * src/vcg.c: Include `xalloc.h'.
14292 (add_colorentry): New.
14293 (add_classname): New.
14294 (add_infoname): New.
14295 * src/vcg.h: Add new prototypes.
14296
14297 2001-08-27 Akim Demaille <akim@epita.fr>
14298
14299 * Makefile.maint: Sync. again with CVS Autoconf.
14300
14301 2001-08-27 Akim Demaille <akim@epita.fr>
14302
14303 * Makefile.maint: Formatting changes.
14304 (po-update, cvs-update, update): New targets.
14305 (AMTAR): Remove.
14306
14307 2001-08-27 Akim Demaille <akim@epita.fr>
14308
14309 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
14310 * Makefile.maint: Sync. with CVS Autoconf.
14311
14312 2001-08-27 Marc Autret <autret_m@epita.fr>
14313
14314 * src/vcg.h (struct infoname_s): New.
14315 (struct colorentry_s): New.
14316 (graph_s): New fields {vertical,horizontal}_order in structure.
14317 Add `infoname' field.
14318 Add `colorentry' field;
14319 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
14320 (G_HORIZONTAL_ORDER): New.
14321 (G_INFONAME): New.
14322 (G_COLORENTRY): New.
14323 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
14324 Add output of `infoname'.
14325 Add output of `colorentry'.
14326
14327 2001-08-27 Marc Autret <autret_m@epita.fr>
14328
14329 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
14330 This one shadowed a global parameter.
14331
14332 2001-08-24 Marc Autret <autret_m@epita.fr>
14333
14334 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
14335 instead of `unsigned'.
14336 (print_state): Do not call obstack_object_size () in obstack_grow ()
14337 to avoid macro variables shadowing.
14338
14339 2001-08-23 Marc Autret <autret_m@epita.fr>
14340
14341 * src/lex.c (percent_table): Typo: s/naem/name/.
14342 Add graph option.
14343 Normalize new options declarations.
14344
14345 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
14346
14347 * tests/suite.at: Exercise %header_extension and %source_extension.
14348
14349 2001-08-16 Marc Autret <autret_m@epita.fr>
14350
14351 * src/reader.c (parse_dquoted_param): New.
14352 (parse_header_extension_decl): Use it.
14353 (parse_source_extension_decl): Likewise.
14354
14355 2001-08-16 Marc Autret <autret_m@epita.fr>
14356
14357 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
14358 (get_xxxx_str): Use assert () instead of complain ().
14359 Remove return invokations in default cases.
14360 (get_decision_str): Modify default behaviour. Remove second argument.
14361 Echo modifications on calls.
14362 (output_graph): Fix.
14363
14364 2001-08-16 Marc Autret <autret_m@epita.fr>
14365
14366 * src/getargs.c (usage): Update with ``-g, --graph''.
14367
14368 2001-08-16 Marc Autret <autret_m@epita.fr>
14369
14370 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
14371 (Option Cross Key): Likewise.
14372 * doc/bison.1: Update.
14373
14374 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
14375
14376 * src/output.c (output_master_parser): Don't finish action_obstack.
14377 (output_parser): Don't care about the muscle action, here.
14378 (prepare): Copy the action_obstack in the action muscle.
14379 (output): Free action_obstack.
14380
14381 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
14382
14383 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
14384 will contain `%union' declaration.
14385 (parse_union_decl): Delete #line directive output.
14386 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
14387 informations about %union.
14388 (parse_union_decl): Copy the union_obstack in the muscle stype.
14389 * src/bison.simple: Add new #line directive.
14390 Add typdef %%stype YYSTYPE.
14391
14392 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
14393
14394 * src/bison.simple: Add new `#line' directive.
14395
14396 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
14397
14398 * src/bison.simple: New `#line' directive.
14399 * src/output.c (output_parser): Support new dynamic muscle input_line.
14400
14401 2001-09-22 Marc Autret <autret_m@epita.fr>
14402
14403 * src/output.c (output_master_parser): New.
14404 (output_parser): Be more re-entrant.
14405
14406 2001-09-21 Marc Autret <autret_m@epita.fr>
14407
14408 * src/reader.c (copy_definition, parse_union_decl): Update and use
14409 `linef' muscle.
14410 (copy_action): Likewise.
14411 Use obstack_1grow ().
14412 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
14413
14414 2001-09-21 Marc Autret <autret_m@epita.fr>
14415
14416 * src/options.c (option_table): Adjust.
14417 * src/lex.c (parse_percent_token): Fix.
14418
14419 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
14420
14421 * src/options.c (symtab.h): Include it, need by lex.h.
14422
14423 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
14424
14425 * src/lex.c (parse_percent_token): Change type of variable `tx', which
14426 is now an option_table_struct*.
14427 (option_strcmp): New function option_strcmp.
14428 (parse_percent_token): Call option_strcmp.
14429 * src/getargs.c (xalloc.h, options.h): Include it.
14430 (getargs): Call create_long_option_table.
14431 (getargs): Free longopts at the end of the function.
14432 (shortopts): Move in options.c.
14433 * src/options.c (create_long_option_table): New function. Convert
14434 information from option_table to option structure.
14435 * src/reader.c (options.h): Include it.
14436
14437 * src/Makefile.am: Adjust.
14438 * src/options.c (option_table): Create from longopts and percent_table.
14439 * src/getargs.c (longopts): Delete.
14440 * src/lex.c (struct percent_table_struct): Delete.
14441 (percent_table): Delete.
14442 (options.h): Include it.
14443 * src/options.c: Create.
14444 * src/options.h: Create.
14445 Declare enum opt_access_e.
14446 Define struct option_table_struct.
14447
14448 2001-09-20 Marc Autret <autret_m@epita.fr>
14449
14450 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
14451 sections of Bison.
14452
14453 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
14454
14455 * src/bison.simple: s/%%filename/%%skeleton.
14456 * src/muscle_tab.c (getargs.h): Include it.
14457 (muscle_init): Insert new muscle skeleton.
14458
14459 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
14460
14461 * src/output.c (output_parser): Delete unused variable actions_dumped.
14462
14463 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
14464
14465 * src/output.c (output): Delete call to reader_output_yylsp.
14466 * src/reader.c (reader): Likewise.
14467 * src/reader.h: Delete declaration of reader_output_yylsp.
14468
14469 2001-09-02 Marc Autret <autret_m@epita.fr>
14470
14471 * src/reader.c: Include muscle_tab.h.
14472 (parse_union_decl): Update.
14473 (parse_macro_decl): Rename parse_muscle_decl.
14474 Update to use renamed functions and variable.
14475 (read_declarations, copy_action, read_additionnal_code, : Updated
14476 with correct variables and functions names.
14477 (packsymbols, reader): Likewise.
14478
14479 * src/reader.h (muscle_obstack): Extern declaration update.
14480
14481 * src/output.c: Include muscle_tab.h
14482 In all functions using macro_insert, change by using muscle_insert ().
14483 (macro_obstack): Rename muscle_obstack.
14484 Echo modifications in the whole file.
14485 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
14486 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
14487 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
14488
14489 * src/muscle_tab.h: Update double inclusion macros.
14490 (macro_entry_s): Rename muscle_entry_s.
14491 Update prototypes.
14492
14493 * src/muscle_tab.c: Include muscle_tab.h.
14494 Rename macro_tabble to muscle_table.
14495 (mhash1, mhash2, mcmp): Use muscle_entry.
14496 (macro_init): Rename muscle_init. Update.
14497 (macro_insert): Rename muscle_insert. Update.
14498 (macro_find): Rename muscle_find. Update.
14499
14500 * src/main.c: Include muscle_tab.h.
14501 (main): Call muscle_init ().
14502 * src/Makefile.am (bison_SOURCES): Echo modifications.
14503
14504 2001-09-02 Marc Autret <autret_m@epita.fr>
14505
14506 Now the files macro_tab.[ch] are named muscle_tab.[ch].
14507
14508 * src/muscle_tab.c, src/muscle_tab.h: Add files.
14509
14510 2001-09-02 Marc Autret <autret_m@epita.fr>
14511
14512 * src/macrotab.c, src/macrotab.h: Remove.
14513
14514 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
14515
14516 * src/reader.c (copy_guard): Use muscle to specify the `#line'
14517 filename.
14518
14519 2001-09-01 Marc Autret <autret_m@epita.fr>
14520
14521 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
14522 to an explicit value to activate the feature. We do it here.
14523
14524 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
14525
14526 * src/output.c (prepare): Delete the `filename' muscule insertion.
14527 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
14528 (parse_union_decl): Likewise.
14529 * src/macrotab.c (macro_init): Initialize filename by infile.
14530
14531 2001-08-31 Marc Autret <autret_m@epita.fr>
14532
14533 * src/bison.simple (YYLSP_NEEDED): New definition.
14534 * src/output.c (prepare): Add macro insertion of `locations_flag'
14535
14536 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
14537
14538 * src/output.c (prepare): Delete insertion of previous muscles,
14539 and insert the `prefix' muscles.
14540 * src/macrotab.c (macro_init): Likewise.
14541 (macro_init): Initialization prefix directive by `yy'.
14542 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
14543 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
14544 yylval, yydebug, yyerror, yynerrs and yyparse.
14545 New directive `#define' to substitute yydebug, ... with option
14546 name_prefix.
14547
14548 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
14549
14550 * src/main.c (main): Standardize.
14551 * src/output.c (output_table_data, output_parser): Likewise.
14552 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
14553
14554 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
14555
14556 * src/reader.c (read_additionnal_code): Rename %%user_code to
14557 %%epilogue.
14558 * src/output.c (output): Rename %%declarations to %%prologue.
14559 * src/bison.simple: Echo modifications.
14560
14561 2001-08-31 Marc Autret <autret_m@epita.fr>
14562
14563 * src/reader.c (readgram): CleanUp.
14564 (output_token_defines): Likewise.
14565 (packsymbols): Likewise.
14566 (reader): Likewise.
14567 * src/output.c (output): CPP-out useless code.
14568
14569 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
14570
14571 * src/reader.c (reader): Delete obsolete call to function
14572 output_trailers and output_headers.
14573 * src/output.h: Remove obsolete functions prototypes of output_headers
14574 and output_trailers.
14575
14576 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
14577
14578 * src/main.c: Include macrotab.h.
14579 * src/macrotab.h (macro_entry_s): Constify fields.
14580 Adjust functions prototypes.
14581 * src/macrotab.c (macro_insert): Constify key and value.
14582 (macro_find): Constify key.
14583 (macro_insert): Include 'xalloc.h'
14584 (macro_insert): Use XMALLOC.
14585 (macro_find): Constify return value.
14586 * src/output.c (output_table_data): Rename table to table_data.
14587 (output_parser): Constify macro_key, macro_value.
14588
14589 2001-08-30 Marc Autret <autret_m@epita.fr>
14590
14591 * src/reader.c (parse_skel_decl): New.
14592 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
14593 * src/lex.h (token_t): New token `tok_skel'.
14594 * src/lex.c (percent_table): Add skeleton option entry.
14595 Standardize.
14596
14597 2001-08-29 Marc Autret <autret_m@epita.fr>
14598
14599 * src/bison.simple: Add %%user_code directive at the end.
14600 * src/reader.c (read_additionnal_code): New.
14601 (reader): Use it.
14602 * src/output.c (output_program): Remove.
14603 (output): Update.
14604
14605 2001-08-28 Marc Autret <autret_m@epita.fr>
14606
14607 * src/output.c (output_actions): Clean up.
14608 (output_gram): CPP-out useless code.
14609 * src/reader.c (reader): Clean up, CPP-out useless code.
14610
14611 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
14612
14613 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
14614 directive.
14615 * src/bison.simple: Add `%%definitions'.
14616
14617 2001-08-28 Marc Autret <autret_m@epita.fr>
14618
14619 * config/depcomp: New file.
14620
14621 2001-08-27 Paul Eggert <eggert@twinsun.com>
14622
14623 * src/bison.simple (yyparse): Don't take the address of an
14624 item before the start of an array, as that doesn't conform to
14625 the C Standard.
14626
14627 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
14628
14629 * src/output.c (output): Remove the initialization of the macro
14630 obstack. It was done too late here.
14631
14632 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
14633 completely wrong.
14634 (reader): Initialize the macro obstack here, since we need it to grow
14635 '%define' directives.
14636
14637 * src/reader.h: Declare the macro obstack as extern.
14638
14639 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
14640
14641 * src/output.c (output_parser): Fix. Store single '%' characters in
14642 the output obstack instead of throwing them away.
14643
14644 2001-08-27 Akim Demaille <akim@epita.fr>
14645
14646 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
14647
14648 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14649
14650 * lib/Makefile.am: Adjust.
14651
14652 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14653
14654 * src/bison.simple: Update and add '%%' directives.
14655
14656 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14657
14658 * src/reader.c (reader): Remove calls to 'output_headers' and
14659 'output_trailers'. Remove some C output.
14660 (readgram): Disable a piece of code that was writing a default
14661 definition for 'YYSTYPE'.
14662 (reader_output_yylsp): Remove.
14663 (packsymbols): Output token defintions to a macro.
14664 (copy_definition): Disable C output.
14665
14666 * src/reader.c (parse_macro_decl): New function used to parse macro
14667 declarations.
14668 (copy_string2): Put the body of copy_string into this new function.
14669 Add a parameter to let the caller choose whether he wants to copy the
14670 string delimiters or not.
14671 (copy_string): Be a simple call to copy_string2 with the last argument
14672 bound to true.
14673 (read_declarations): Add case for macro definition.
14674 (copy_identifier): New.
14675 (parse_macro_decl): Read macro identifiers using copy_identifier
14676 rather than lex.
14677
14678 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14679
14680 * src/output.c (prepare): Add prefixed names.
14681 (output_parser): Output semantic actions.
14682 (output_parser): Fix bug on '%%line' directives.
14683
14684 * src/output.c (output_headers): Remove. The C code printed by this
14685 function should now be in the skeletons.
14686 (output_trailers): Remove.
14687 (output): Disable call to 'reader_output_yylsp'.
14688 (output_rule_data): Do not output tables to the table obstack.
14689
14690 * src/output.c: Remove some C dedicated output.
14691 Improve the use of macro and output obstacks.
14692 (output_defines): Remove.
14693
14694 * src/output.c (output_token_translations): Associate 'translate'
14695 table with a macro. No output to the table obstack.
14696 (output_gram): Same for 'rhs' and 'prhs'.
14697 (output_stos): Same for 'stos'.
14698 (output_rule_data): Same for 'r1' and 'r2'.
14699 (token_actions): Same for 'defact'.
14700 (goto_actions): Same for 'defgoto'.
14701 (output_base): Same for 'pact' and 'pgoto'.
14702 (output_table): Same for 'table'.
14703 (output_check): Same for 'check'.
14704
14705 * src/output.c (output_table_data): New function.
14706 (output_short_table): Remove.
14707 (output_short_or_char_table): Remove.
14708
14709 * src/output.c (output_parser): Replace most of the skeleton copy code
14710 with something new. Skeletons are now processed character by character
14711 rather than line by line, and Bison looks for '%%' macros. This is the
14712 first step in making Bison's output process (a lot) more flexible.
14713 (output_parser): Use the macro table.
14714
14715 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14716
14717 * src/main.c (main): Initialize the macro table.
14718
14719 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14720
14721 * src/lex.c (percent_table): Add tok_define.
14722 * src/lex.h: Add tok_define.
14723
14724 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14725
14726 * src/macrotab.c: New file.
14727 * src/macrotab.h: New file.
14728 * src/Makefile.am: Update.
14729
14730 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
14731
14732 * lib/hash.c: New file.
14733 * lib/hash.h: New file.
14734 * lib/Makefile.am: Update.
14735
14736 2001-08-15 Akim Demaille <akim@epita.fr>
14737
14738 Version 1.28c.
14739
14740 2001-08-15 Marc Autret <autret_m@epita.fr>
14741
14742 * src/reader.c (readgram): Indent output macro YYSTYPE.
14743 (packsymbols): Likewise.
14744 (output_token_defines): Likewise.
14745 * src/files.c: Standardize.
14746 (compute_header_macro): New.
14747 (defines_obstack_save): New. Use compute_header_macro.
14748 (output_files): Update. Use defines_obstack_save.
14749
14750 2001-08-15 Akim Demaille <akim@epita.fr>
14751
14752 * doc/bison.texinfo (Table of Symbols): Document
14753 YYSTACK_USE_ALLOCA.
14754
14755 2001-08-15 Akim Demaille <akim@epita.fr>
14756
14757 * missing: Update from CVS Automake.
14758 * config/config.guess, config/config.sub, config/texinfo.tex:
14759 Update from gnu.org.
14760
14761 2001-08-15 Akim Demaille <akim@epita.fr>
14762
14763 * Makefile.maint: Sync with CVS Autoconf.
14764
14765 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
14766
14767 * doc/bison.texinfo: Include GNU Free Documentation License from
14768 `fdl.texi'.
14769 * doc/fdl.texi: Add to package.
14770
14771 2001-08-14 Marc Autret <autret_m@epita.fr>
14772
14773 Turn on %{source,header}_extension features.
14774
14775 * src/lex.c (percent_table): Un-CPP out header_extension and
14776 source_extension.
14777 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
14778 (compute_exts_from_src): Remove conditions. It restores priorities
14779 between options.
14780
14781 2001-08-14 Marc Autret <autret_m@epita.fr>
14782
14783 * src/files.c (compute_base_names): Add extensions computing when
14784 `--file-prefix' used.
14785 Standardize function calls.
14786
14787 2001-08-13 Marc Autret <autret_m@epita.fr>
14788
14789 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
14790 defining it (defined but null disables alloca).
14791
14792 2001-08-13 Marc Autret <autret_m@epita.fr>
14793
14794 * src/bison.simple (_yy_memcpy): CPP reformat.
14795
14796 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
14797
14798 * tests/atconfig.in (CPPFLAGS): Fix.
14799
14800 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
14801
14802 * doc/bison.texinfo: Include GNU General Public License from
14803 `gpl.texi'.
14804 * doc/gpl.texi: Add to package.
14805
14806 2001-08-10 Marc Autret <autret_m@epita.fr>
14807
14808 * src/print_graph.h: Fix.
14809 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
14810
14811 2001-08-10 Akim Demaille <akim@epita.fr>
14812
14813 * src/system.h: Provide default declarations for stpcpy, strndup,
14814 and strnlen.
14815
14816 2001-08-10 Robert Anisko <anisko_r@epita.fr>
14817
14818 * doc/bison.texinfo (Locations): Update @$ stuff.
14819
14820 2001-08-09 Robert Anisko <anisko_r@epita.fr>
14821
14822 * src/bison.simple (YYLLOC_DEFAULT): Update.
14823 (yyparse): Adjust.
14824
14825 2001-08-08 Marc Autret <autret_m@epita.fr>
14826
14827 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
14828 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
14829 Reported by Fabrice Bauzac.
14830
14831 2001-08-08 Marc Autret <autret_m@epita.fr>
14832
14833 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
14834 * src/vcg.c (output_node): Fix.
14835 * src/vcg.h: Cleanup.
14836 * src/print_graph.c: Add comments.
14837 (node_output_size): New global variable. Simplify the formatting of
14838 the VCG graph output.
14839 (print_actions): Unused code is now used. It notifies the final state
14840 and no action states in the VCG graph. It also give the reduce actions.
14841 The `shift and goto' edges are red and the `go to state' edges are
14842 blue.
14843 Get the current node name and node_obstack by argument.
14844 (node_obstack): New variable.
14845 (print_state): Manage node_obstack.
14846 (print_core): Use node_obstack given by argument.
14847 A node is not only computed here but in print_actions also.
14848 (print_graph): CPP out useless code instead of commenting it.
14849
14850 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
14851
14852 * tests/atconfig.in (CPPFLAGS): Fix.
14853
14854 2001-08-07 Akim Demaille <akim@epita.fr>
14855
14856 * src/print_graph.c (quote): New.
14857 (print_core): Use it.
14858
14859 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
14860
14861 * src/vcg.c (complain.h): Include it.
14862 Unepitaize `return' invocations.
14863 [NDEBUG] (main): Remove.
14864 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
14865 * src/files.c (open_files): Initialize graph_obstack.
14866 * src/print_graph.c (print_actions): CPP out useless code.
14867 (print_core): Don't output the last `\n' in labels.
14868 Use `quote'.
14869 * src/files.c (output_files): Output the VCG file.
14870 * src/main.c (main): Invoke print_graph ();
14871
14872 2001-08-06 Marc Autret <autret_m@epita.fr>
14873
14874 Automaton VCG graph output.
14875 Using option ``-g'' or long option ``--graph'', you can generate
14876 a gram_filename.vcg file containing a VCG description of the LALR (1)
14877 automaton of your grammar.
14878
14879 * src/main.c: Call to print_graph() function.
14880 * src/getargs.h: Update.
14881 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
14882 (graph_flag): New flag.
14883 (longopts): Update.
14884 (getargs): Add case `g'.
14885 * src/files.c (graph_obstack): New obstack struct.
14886 (open_files): Initialize new obstack.
14887 (output_files): Saves graph_obstack if required.
14888 * src/files.h (graph_obstack): New extern declaration.
14889 * src/Makefile.am: Add new source files.
14890
14891 2001-08-06 Marc Autret <autret_m@epita.fr>
14892
14893 * src/print_graph.c, src/print_graph.h (graph): New.
14894 * src/vcg.h: New file.
14895 * src/vcg.c: New file, VCG graph handling.
14896
14897 2001-08-06 Marc Autret <autret_m@epita.fr>
14898
14899 Add of %source_extension and %header_extension which specify
14900 the source or/and the header output file extension.
14901
14902 * src/files.c (compute_base_names): Remove initialisation of
14903 src_extension and header_extension.
14904 (compute_exts_from_gf): Update.
14905 (compute_exts_from_src): Update.
14906 (output_files): Update.
14907 * src/reader.c (parse_header_extension_decl): New.
14908 (parse_source_extension_decl): New.
14909 (read_declarations): New case statements for the new tokens.
14910 * src/lex.c (percent_table): Add entries for %source_extension
14911 and %header_extension.
14912 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
14913
14914 2001-08-06 Marc Autret <autret_m@epita.fr>
14915
14916 * configure.in: Bump to 1.28c.
14917 * doc/bison.texinfo: Texinfo thingies.
14918
14919 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
14920
14921 * tests/atconfig.in (CPPFLAGS): Add.
14922 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
14923
14924 2001-08-03 Akim Demaille <akim@epita.fr>
14925
14926 Version 1.28b.
14927
14928 2001-08-03 Akim Demaille <akim@epita.fr>
14929
14930 * tests/Makefile.am (check-local): Ship testsuite.
14931 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
14932 Include `string.h'.
14933
14934 2001-08-03 Akim Demaille <akim@epita.fr>
14935
14936 * configure.in: Try using -Wformat when compiling.
14937
14938 2001-08-03 Akim Demaille <akim@epita.fr>
14939
14940 * configure.in: Bump to 1.28b.
14941
14942 2001-08-03 Akim Demaille <akim@epita.fr>
14943
14944 * src/complain.c: Adjust strerror_r portability issues.
14945
14946 2001-08-03 Akim Demaille <akim@epita.fr>
14947
14948 Version 1.28a.
14949
14950 2001-08-03 Akim Demaille <akim@epita.fr>
14951
14952 * src/getargs.c, src/getarg.h (skeleton)): Constify.
14953 * src/lex.c (literalchar): Avoid name clashes on `buf'.
14954 * src/getargs.c: Include complain.h.
14955 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
14956 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
14957
14958 2001-08-03 Akim Demaille <akim@epita.fr>
14959
14960 * src/reader.c (readgram): Display hidden chars in error messages.
14961
14962 2001-08-03 Akim Demaille <akim@epita.fr>
14963
14964 Update to gettext 0.10.39.
14965
14966 2001-08-03 Akim Demaille <akim@epita.fr>
14967
14968 * lib/strspn.c: New.
14969
14970 2001-08-01 Marc Autret <autret_m@epita.fr>
14971
14972 * doc/bison.texinfo: Update.
14973 * doc/bison.1 (mandoc): Update.
14974 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
14975 * src/files.c: Support output files extensions computing.
14976 (src_extension): New static variable.
14977 (header_extension): New static variable.
14978 (tr): New function.
14979 (get_extension_index): New function, gets the index of an extension
14980 filename in a string.
14981 (compute_exts_from_gf): New function, computes extensions from the
14982 grammar file extension.
14983 (compute_exts_from_src): New functions, computes extensions from the
14984 C source file extension, file given by ``-o'' option.
14985 (compute_base_names): Update.
14986 (output_files): Update.
14987
14988 2001-08-01 Robert Anisko <anisko_r@epita.fr>
14989
14990 * doc/bison.texi: Document @$.
14991 (Locations): New section.
14992
14993 2001-07-18 Akim Demaille <akim@epita.fr>
14994
14995 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
14996 * config/prev-version.txt, config/move-if-change: New.
14997 * Makefile.am: Adjust.
14998
14999 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
15000
15001 * src/bison.simple (yyparse): Suppress warning `comparaison
15002 between signed and unsigned'.
15003
15004 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
15005
15006 * src/getargs.h (raw_flag): Remove.
15007 * src/getargs.c: Die on `-r'/`--raw'.
15008 * src/lex.c (parse_percent_token): Die on `%raw'.
15009 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
15010 * tests/calc.at: Suppress test with option `--raw'.
15011
15012 2001-07-14 Akim Demaille <akim@epita.fr>
15013
15014 * config/: New.
15015 * configure.in: Require Autoconf 2.50.
15016 Update to gettext 0.10.38.
15017
15018 2001-03-16 Akim Demaille <akim@epita.fr>
15019
15020 * doc/bison.texinfo: ANSIfy the examples.
15021
15022 2001-03-16 Akim Demaille <akim@epita.fr>
15023
15024 * getargs.c (skeleton): New variable.
15025 (longopts): --skeleton is a new option.
15026 (shortopts, getargs): -S is a new option.
15027 * getargs.h: Declare skeleton.
15028 * output.c (output_parser): Use it.
15029
15030 2001-03-16 Akim Demaille <akim@epita.fr>
15031
15032 * m4/strerror_r.m4: New.
15033 * m4/error.m4: Run AC_FUNC_STRERROR_R.
15034 * lib/error.h, lib/error.c: Update.
15035
15036 2001-03-16 Akim Demaille <akim@epita.fr>
15037
15038 * src/getargs.c (longopts): Clean up.
15039
15040 2001-02-21 Akim Demaille <akim@epita.fr>
15041
15042 * src/reader.c (gensym): `gensym_count' is your own.
15043 Use a static buf to create the symbol name, as token_buffer is no
15044 longer a buffer.
15045
15046 2001-02-08 Akim Demaille <akim@epita.fr>
15047
15048 * src/conflicts.c (conflict_report): Be sure not to append to res
15049 between two calls, which could happen if both first sprintf were
15050 skipped, but not the first cp += strlen.
15051
15052 2001-02-08 Akim Demaille <akim@epita.fr>
15053
15054 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
15055 New, from fileutils 4.0.37.
15056 * configure.in: Require Autoconf 2.49c. I took some time before
15057 making this decision. This is the only way out for portability
15058 issues in Bison, it would mean way too much duplicate effort to
15059 import in Bison features implemented in 2.49c since 2.13.
15060 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
15061
15062 2001-02-02 Akim Demaille <akim@epita.fr>
15063
15064 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
15065 * lib/xalloc.h, lib/xmalloc.c: Update.
15066
15067 2001-01-19 Akim Demaille <akim@epita.fr>
15068
15069 Get rid of the ad hoc handling of token_buffer in the scanner: use
15070 the obstacks.
15071
15072 * src/lex.c (token_obstack): New.
15073 (init_lex): Initialize it. No longer call...
15074 (grow_token_buffer): this. Remove it.
15075 Adjust all the places which used it to use the obstack.
15076
15077 2001-01-19 Akim Demaille <akim@epita.fr>
15078
15079 * src/lex.h: Rename all the tokens:
15080 s/\bENDFILE\b/tok_eof/g;
15081 s/\bIDENTIFIER\b/tok_identifier/g;
15082 etc.
15083 Let them be enums, not #define, to ease debugging.
15084 Adjust all the code.
15085
15086 2001-01-18 Akim Demaille <akim@epita.fr>
15087
15088 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
15089 * src/lex.c (maxtoken, grow_token_buffer): Static.
15090
15091 2001-01-18 Akim Demaille <akim@epita.fr>
15092
15093 Since we now use obstacks, more % directives can be enabled.
15094
15095 * src/lex.c (percent_table): Also accept `%yacc',
15096 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
15097 `%debug'.
15098 Handle the actions for `%semantic_parser' and `%pure_parser' here,
15099 instead of returning a token.
15100 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
15101 * src/reader.c (read_declarations): Adjust.
15102 * src/files.c (open_files): Don't call `compute_base_names', don't
15103 compute `attrsfile' since they depend upon data which might be
15104 *in* the input file now.
15105 (output_files): Do it here.
15106 * src/output.c (output_headers): Document the fact that this patch
15107 introduces a guaranteed SEGV for semantic parsers.
15108 * doc/bison.texinfo: Document them.
15109 * tests/suite.at: Exercise these %options.
15110
15111 2000-12-20 Akim Demaille <akim@epita.fr>
15112
15113 Also handle the output file (--verbose) with obstacks.
15114
15115 * files.c (foutput): Remove.
15116 (output_obstack): New.
15117 Adjust all dependencies.
15118 * src/conflicts.c: Return a string.
15119 * src/system.h (obstack_grow_string): Rename as...
15120 (obstack_sgrow): this. Be ready to work with non literals.
15121 (obstack_fgrow4): New.
15122
15123 2000-12-20 Akim Demaille <akim@epita.fr>
15124
15125 * src/files.c (open_files): Fix the computation of short_base_name
15126 in the case of `-o foo.tab.c'.
15127
15128 2000-12-20 Akim Demaille <akim@epita.fr>
15129
15130 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
15131 (copy_dollar): Now that everything uses obstacks, get rid of the
15132 FILE * parameters.
15133
15134 2000-12-20 Akim Demaille <akim@epita.fr>
15135
15136 * src/files.c (open_files): Actually the `.output' file is based
15137 on the short_base_name, not base_name.
15138 * tests/suite.at (Checking output file names): Adjust.
15139
15140 2000-12-20 Akim Demaille <akim@epita.fr>
15141
15142 * src/bison.s1: Remove, we now use directly...
15143 * src/bison.simple: this.
15144 * src/Makefile.am: Use pkgdata instead of data.
15145
15146 2000-12-20 Akim Demaille <akim@epita.fr>
15147
15148 * src/files.c (guard_obstack): New.
15149 (open_files): Initialize it.
15150 (output_files): Dump it...
15151 * src/files.h: Export it.
15152 * src/reader.c (copy_guard): Use it.
15153
15154 2000-12-19 Akim Demaille <akim@epita.fr>
15155
15156 * src/files.c (outfile, defsfile, actfile): Removed as global
15157 vars.
15158 (open_files): Don't compute them.
15159 (output_files): Adjust.
15160 (base_name, short_base_name): Be global.
15161 Adjust dependencies.
15162
15163 2000-12-19 Akim Demaille <akim@epita.fr>
15164
15165 * src/files.c (strsuffix): New.
15166 (stringappend): Be just like strcat but allocate.
15167 (base_names): Eve out from open_files.
15168 Try to simplify the rather hairy computation of base_name and
15169 short_base_name.
15170 (open_files): Use it.
15171 * tests/suite.at (Checking output file names): New test.
15172
15173 2000-12-19 Akim Demaille <akim@epita.fr>
15174
15175 * src/system.h (obstack_grow_literal_string): Rename as...
15176 (obstack_grow_string): this.
15177 * src/output.c (output_parser): Recognize `%% actions' instead of
15178 `$'.
15179 * src/bison.s1: s/$/%% actions/.
15180 * src/bison.hairy: Likewise.
15181
15182 2000-12-19 Akim Demaille <akim@epita.fr>
15183
15184 * src/output.c (output_parser): Compute the `#line' lines when
15185 there are.
15186 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
15187 Suggested by Hans Aberg.
15188
15189 2000-12-19 Akim Demaille <akim@epita.fr>
15190
15191 Let the handling of the skeleton files be local to the procedures
15192 that use it.
15193
15194 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
15195 longer static.
15196 (fparser, open_extra_files): Remove.
15197 (open_files, output_files): Don't take care of fparser.
15198 * src/files.h: Adjust.
15199 * src/output.c (output_parser): Open and close the file to the
15200 skeleton.
15201 * src/reader.c (read_declarations): When %semantic_parser, open
15202 fguard.
15203
15204 2000-12-19 Akim Demaille <akim@epita.fr>
15205
15206 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
15207 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
15208
15209 2000-12-19 Akim Demaille <akim@epita.fr>
15210
15211 * src/files.c (open_files): Yipee! We no longer need all the code
15212 looking for `/tmp' since we have no tmp file.
15213
15214 2000-12-19 Akim Demaille <akim@epita.fr>
15215
15216 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
15217 New macros.
15218 * src/files.c (open_files): Less dependency on MSDOS etc.
15219
15220 2000-12-14 Akim Demaille <akim@epita.fr>
15221
15222 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
15223 Provide a default definition.
15224 Use it when executing the default @ action.
15225 * src/reader.c (reader_output_yylsp): No longer include
15226 `timestamp' and `text' in the default YYLTYPE.
15227
15228 2000-12-12 Akim Demaille <akim@epita.fr>
15229
15230 * src/reader.c (copy_definition, parse_union_decl, copy_action)
15231 (copy_guard): Quote the file names.
15232 Reported by Laurent Mascherpa.
15233
15234 2000-12-12 Akim Demaille <akim@epita.fr>
15235
15236 * src/output.c (output_headers, output_program, output): Be sure
15237 to escape special characters when outputting filenames.
15238 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
15239 (output_headers): Don't depend on them, Use ACTSTR.
15240
15241 2000-11-17 Akim Demaille <akim@epita.fr>
15242
15243 * lib/obstack.h: Formatting changes.
15244 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
15245 prevents type checking.
15246 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
15247 cast the value to (void *): assigning a `foo *' to a `void *'
15248 variable is valid.
15249 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
15250 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
15251 append characters.
15252
15253 2000-11-17 Akim Demaille <akim@epita.fr>
15254
15255 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
15256 as...
15257 (suite.m4, regression.m4, calc.m4): these.
15258 * tests/atgeneral.m4: Update from CVS Autoconf.
15259
15260 2000-11-17 Akim Demaille <akim@epita.fr>
15261
15262 * tests/regression.m4 (%union and --defines): New test,
15263 demonstrating a current bug in the obstack implementation.
15264
15265 2000-11-17 Akim Demaille <akim@epita.fr>
15266
15267 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
15268 macros.
15269 Use them to declare the variables which are global or local to
15270 `yyparse'.
15271
15272 2000-11-17 Akim Demaille <akim@epita.fr>
15273
15274 * acconfig.h: Remove, no longer used.
15275
15276 2000-11-07 Akim Demaille <akim@epita.fr>
15277
15278 * src: s/Copyright (C)/Copyright/g.
15279
15280 2000-11-07 Akim Demaille <akim@epita.fr>
15281
15282 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
15283 defining.
15284 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
15285
15286 2000-11-07 Akim Demaille <akim@epita.fr>
15287
15288 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
15289 Merge in a single CPP if/else.
15290
15291 2000-11-07 Akim Demaille <akim@epita.fr>
15292
15293 * src/output.c (output): Remove useless variables.
15294 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
15295 argument `data' for consistency with the prototypes.
15296 Qualify it `const'.
15297 (obstack_copy, obstack_copy0): Rename the second argument as
15298 `address' for consistency. Qualify it `const'.
15299 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
15300 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
15301 `const' their input argument (`data' or `address').
15302 Adjust the corresponding macros to include `const' in casts.
15303
15304 2000-11-03 Akim Demaille <akim@epita.fr>
15305
15306 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
15307 s/PFILE1/BISON_HAIRY/.
15308 Adjust dependencies.
15309
15310 2000-11-03 Akim Demaille <akim@epita.fr>
15311
15312 For some reason, this was not applied.
15313
15314 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15315 `unlink': it's no longer used.
15316
15317 2000-11-03 Akim Demaille <akim@epita.fr>
15318
15319 * src/files.c (skeleton_find): New function, eved out of...
15320 (open_files, open_extra_files): here.
15321
15322 2000-11-03 Akim Demaille <akim@epita.fr>
15323
15324 Don't use `atexit'.
15325
15326 * src/files.c (obstack_save): New function.
15327 (done): Rename as...
15328 (output_files): this.
15329 Use `obstack_save'.
15330 * src/main.c (main): Don't use `atexit' to register `done', since
15331 it no longer has to remove tmp files, just call `output_files'
15332 when there are no errors.
15333
15334 2000-11-02 Akim Demaille <akim@epita.fr>
15335
15336 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15337 `unlink': it's no longer used.
15338 * src/files.h: Formatting changes.
15339
15340 2000-11-02 Akim Demaille <akim@epita.fr>
15341
15342 Remove the last uses of mktemp and unlink/delete.
15343
15344 * src/files.c (fdefines, ftable): Removed.
15345 (defines_ostack, table_obstack): New.
15346 Adjust dependencies of the former into uses of the latter.
15347 * src/output.c (output_short_or_char_table, output_short_table):
15348 Convert to using obstacks.
15349 * src/reader.c (copy_comment2): Accept one FILE * and two
15350 obstacks.
15351 (output_token_defines, reader_output_yylsp): Use obstacks.
15352 * src/system.h (obstack_fgrow3): New.
15353 * po/POTFILES.in: Adjust.
15354
15355 2000-11-01 Akim Demaille <akim@epita.fr>
15356
15357 Change each use of `fattrs' into a use of `attrs_obstack'.
15358
15359 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
15360 * src/files.c (fattrs): Remove.
15361 (attrs_obstack): New.
15362 Adjust all dependencies.
15363 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
15364
15365 2000-11-01 Akim Demaille <akim@epita.fr>
15366
15367 Introduce obstacks.
15368 Change each use of `faction' into a use of `action_obstack'.
15369
15370 * lib/obstack.h, lib/obstack.c: New files.
15371 * src/files.c (faction): Remove.
15372 (action_obstack): New.
15373 Adjust all dependencies.
15374
15375 2000-10-20 Akim Demaille <akim@epita.fr>
15376
15377 * lib/quote.h (PARAMS): New macro. Use it.
15378
15379 2000-10-16 Akim Demaille <akim@epita.fr>
15380
15381 * src/output.c (output_short_or_char_table): New function.
15382 (output_short_table, output_token_translations): Use it.
15383 (goto_actions): Use output_short_table.
15384
15385 2000-10-16 Akim Demaille <akim@epita.fr>
15386
15387 * src/symtab.c (bucket_new): New function.
15388 (getsym): Use it.
15389
15390 * src/output.c (output_short_table): New argument to display the
15391 comment associated with the table.
15392 Adjust dependencies.
15393 (output_gram): Use it.
15394 (output_rule_data): Nicer output layout for YYTNAME.
15395
15396 2000-10-16 Akim Demaille <akim@epita.fr>
15397
15398 * src/lex.c (read_typename): New function.
15399 (lex): Use it.
15400 * src/reader.c (copy_dollar): Likewise.
15401
15402 2000-10-16 Akim Demaille <akim@epita.fr>
15403
15404 * src/reader.c (copy_comment2): Expect the input stream to be on
15405 the `/' which is suspected to open a comment, instead of being
15406 called after `//' or `/*' was read.
15407 (copy_comment, copy_definition, parse_union_decl, copy_action)
15408 (copy_guard): Adjust.
15409
15410 2000-10-16 Akim Demaille <akim@epita.fr>
15411
15412 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
15413 `read_signed_integer'.
15414
15415 2000-10-16 Akim Demaille <akim@epita.fr>
15416
15417 * src/reader.c (copy_dollar): New function.
15418 (copy_guard, copy_action): Use it.
15419
15420 2000-10-16 Akim Demaille <akim@epita.fr>
15421
15422 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
15423 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
15424 New files, from Fileutils 4.0.27.
15425 * src/main.c (printable_version): Remove.
15426 * src/lex.c, src/reader.c: Use `quote'.
15427
15428 2000-10-04 Akim Demaille <akim@epita.fr>
15429
15430 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
15431
15432 2000-10-04 Akim Demaille <akim@epita.fr>
15433
15434 * doc/bison.texinfo: Various typos spotted by Neil Booth.
15435
15436 2000-10-04 Akim Demaille <akim@epita.fr>
15437
15438 When a literal string is used to define two different tokens,
15439 `bison -v' segfaults.
15440 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
15441
15442 * tests/regression.m4: New file.
15443 Include the core of the sample provided by Piotr Gackiewicz.
15444 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
15445 properly.
15446
15447 2000-10-04 Akim Demaille <akim@epita.fr>
15448
15449 * src/reader.c (parse_expect_decl): Keep `count' within the size
15450 of `buffer'.
15451 From Neil Booth.
15452
15453 2000-10-02 Paul Eggert <eggert@twinsun.com>
15454
15455 * bison.s1 (yyparse): Assign the default value
15456 unconditionally, to avoid a GCC warning and make the parser a
15457 tad smaller.
15458
15459 2000-10-02 Akim Demaille <akim@epita.fr>
15460
15461 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
15462 options.
15463
15464 2000-10-02 Akim Demaille <akim@epita.fr>
15465
15466 * src/derives.c, src/print.c, src/reduce.c: To ease the
15467 translation, move some `\n' out of the translated strings.
15468
15469 2000-10-02 Akim Demaille <akim@epita.fr>
15470
15471 The location tracking mechanism is precious for parse error
15472 messages. Nevertheless, it is enabled only when `@n' is used in
15473 the grammar, which is a different issue (you can use it in error
15474 message, but not in the grammar per se). Therefore, there should
15475 be another means to enable it.
15476
15477 * src/getargs.c (getargs): Support `--locations'.
15478 (usage): Report it.
15479 * src/getargs.h (locationsflag): Export it.
15480 * src/lex.c (percent_table): Support `%locations'.
15481 * src/reader.c (yylsp_needed): Remove this variable, now replaced
15482 with `locationsflag'.
15483 * doc/bison.texinfo: Document `--locations' and `%locations'.
15484 Sort the options.
15485 * tests/calc.m4: Test it.
15486
15487 For regularity of the names, replace each
15488 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
15489 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
15490 In addition replace each `flag' with `_flag'.
15491
15492 2000-10-02 Akim Demaille <akim@epita.fr>
15493
15494 Also test parse error messages, including with YYERROR_VERBOSE.
15495
15496 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
15497 associative).
15498 Use it to check the computations.
15499 Use it to check `nonassoc' is honored.
15500 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
15501 `--yyerror-verbose'.
15502 (_AT_CHECK_CALC): Adjust to this option.
15503 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
15504
15505 2000-10-02 Akim Demaille <akim@epita.fr>
15506
15507 Test also `--verbose', `--defines' and `--name-prefix'. Testing
15508 the latter demonstrates a flaw in the handling of non debugging
15509 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
15510 was used in order to simplify:
15511
15512 #if YYDEBUG
15513 if (yydebug)
15514 {
15515 ...
15516 }
15517 #endif
15518
15519 into
15520
15521 if (yydebug)
15522 {
15523 ...
15524 }
15525
15526 unfortunately this leads to a CPP conflict when
15527 `--name-prefix=foo' is used since it produces `#define yydebug
15528 foodebug'.
15529
15530 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
15531 (YYDPRINTF): New macro.
15532 Spread its use.
15533 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
15534 the bison options.
15535 Also test `--verbose', `--defines' and `--name-prefix'.
15536
15537 2000-10-02 Akim Demaille <akim@epita.fr>
15538
15539 Improve the readability of the produced parsers.
15540
15541 * src/bison.s1: Formatting changes.
15542 Improve the comment related to the `$' mark.
15543 (yydefault): Don't fall through to `yyresume': `goto' there.
15544 * src/output.c (output_parser): When the `$' is met, skip the end
15545 of its line.
15546 New variable, `number_of_dollar_signs', to check there's exactly
15547 one `$' in the parser skeleton.
15548
15549 2000-10-02 Akim Demaille <akim@epita.fr>
15550
15551 * lib/xstrdup.c: New file, from the fileutils.
15552 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
15553 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
15554 instead of strlen + xmalloc + strcpy.
15555 * src/symtab.c (copys): Remove, use xstrdup instead.
15556
15557 2000-10-02 Akim Demaille <akim@epita.fr>
15558
15559 * src/gram.h (associativity): New enum type which replaces the
15560 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
15561 `right_assoc', `left_assoc' and `non_assoc'.
15562 Adjust all dependencies.
15563 * src/reader.c: Formatting changes.
15564 (LTYPESTR): Don't define it, use it as a literal in
15565 `reader_output_yylsp'.
15566 * src/symtab.h (symbol_class): New enum type which replaces the
15567 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
15568 `sunknown', `stoken and `snterm'.
15569
15570 2000-10-02 Akim Demaille <akim@epita.fr>
15571
15572 * src/getargs.c (fixed_outfiles): Rename as...
15573 (yaccflag): for consistency and accuracy.
15574 Adjust dependencies.
15575
15576 2000-10-02 Akim Demaille <akim@epita.fr>
15577
15578 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
15579 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
15580 difficult and introduced a lot of core dump. It turns out that
15581 Bison used an implementation of `xmalloc' based on `calloc', and
15582 at various places it does depend upon the initialization to 0. I
15583 have not tried to isolate the pertinent places, and all the former
15584 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
15585 someone should address this issue.
15586
15587 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
15588 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
15589 files.
15590 Adjust dependencies.
15591 * src/warshall.h: New file.
15592 Propagate.
15593
15594 2000-10-02 Akim Demaille <akim@epita.fr>
15595
15596 Various anti-`extern in *.c' changes.
15597
15598 * src/system.h: Include `assert.h'.
15599
15600 2000-10-02 Akim Demaille <akim@epita.fr>
15601
15602 * src/state.h (nstates, final_state, first_state, first_shift)
15603 (first_reduction): Move their exportation from here...
15604 * src/LR0.h: to here.
15605 Adjust dependencies.
15606 * src/getargs.c (statisticsflag): New variable.
15607 Add support for `--statistics'.
15608 Adjust dependencies.
15609
15610 Remove a lot of now useless `extern' statements in most files.
15611
15612 2000-10-02 Akim Demaille <akim@epita.fr>
15613
15614 * src/LR0.h: New file.
15615 Propagate its use.
15616
15617 2000-10-02 Akim Demaille <akim@epita.fr>
15618
15619 * src/print.h: New file.
15620 Propagate its use.
15621 * src/print.c: Formatting and ordering changes.
15622 (verbose, terse): Replace with...
15623 (print_results): this new function.
15624 Adjust dependencies.
15625
15626 2000-10-02 Akim Demaille <akim@epita.fr>
15627
15628 * src/conflicts.c (conflict_report): New function.
15629 (conflict_log, verbose_conflict_log): Replace with...
15630 (print_conflicts): this function.
15631 Adjust dependencies.
15632 * src/conflicts.h: New file.
15633 Propagate its inclusion.
15634
15635 2000-10-02 Akim Demaille <akim@epita.fr>
15636
15637 * src/nullable.h: New file.
15638 Propagate its inclusion.
15639 * src/nullable.c: Formatting changes.
15640
15641 2000-10-02 Akim Demaille <akim@epita.fr>
15642
15643 * src/reduce.h: New file.
15644 Propagate its inclusion.
15645 * src/reduce.c: Topological sort and other formatting changes.
15646 (bool, TRUE, FALSE): Move their definition to...
15647 * src/system.h: here.
15648
15649 2000-10-02 Akim Demaille <akim@epita.fr>
15650
15651 * src/files.c: Formatting changes.
15652 (tryopen, tryclose, openfiles): Rename as...
15653 (xfopen, xfclose, open_files): this.
15654 (stringappend): static.
15655 * src/files.h: Complete the list of exported symbols.
15656 Propagate its use.
15657
15658 2000-10-02 Akim Demaille <akim@epita.fr>
15659
15660 * src/reader.h: New file.
15661 Propagate its use instead of tedious list of `extern' and
15662 prototypes.
15663 * src/reader.c: Formatting changes, topological sort,
15664 s/register//.
15665
15666 2000-10-02 Akim Demaille <akim@epita.fr>
15667
15668 * src/lex.h: Prototype `lex.c' exported functions.
15669 * src/reader.c: Adjust.
15670 * src/lex.c: Formatting changes.
15671 (safegetc): Rename as...
15672 (xgetc): this.
15673
15674 2000-10-02 Akim Demaille <akim@epita.fr>
15675
15676 * src/lalr.h: New file.
15677 Propagate its inclusion instead of prototypes and `extern'.
15678 * src/lalr.c: Formatting changes, topological sorting etc.
15679
15680 2000-10-02 Akim Demaille <akim@epita.fr>
15681
15682 * src/output.c (token_actions): Introduce a temporary array,
15683 YYDEFACT, that makes it possible for this function to use
15684 output_short_table.
15685
15686 2000-10-02 Akim Demaille <akim@epita.fr>
15687
15688 `user_toknums' is output as a `short[]' in `output.c', while it is
15689 defined as a `int[]' in `reader.c'. For consistency with the
15690 other output tables, `user_toknums' is now defined as a table of
15691 shorts.
15692
15693 * src/reader.c (user_toknums): Be a short table instead of an int
15694 table.
15695 Adjust dependencies.
15696
15697 Factor the short table outputs.
15698
15699 * src/output.c (output_short_table): New function.
15700 * src/output.c (output_gram, output_stos, output_rule_data)
15701 (output_base, output_table, output_check): Use it.
15702
15703 2000-10-02 Akim Demaille <akim@epita.fr>
15704
15705 * src/output.c (output): Topological sort of the functions, in
15706 order to get rid of the `static' prototypes.
15707 No longer use `register'.
15708 * src/output.h: New file.
15709 Propagate its inclusion in files explicitly prototyping functions
15710 from output.c.
15711
15712 2000-09-21 Akim Demaille <akim@epita.fr>
15713
15714 * src/atgeneral.m4: Update from Autoconf.
15715
15716 2000-09-21 Akim Demaille <akim@epita.fr>
15717
15718 * src/closure.h: New file.
15719 * src/closure.c: Formatting changes, topological sort over the
15720 functions, use of closure.h.
15721 (initialize_closure, finalize_closure): Rename as...
15722 (new_closure, free_closure): these. Adjust dependencies.
15723 * src/LR0.c: Formatting changes, topological sort, use of
15724 cloture.h.
15725 (initialize_states): Rename as...
15726 (new_states): this.
15727 * src/Makefile.am (noinst_HEADERS): Adjust.
15728
15729 2000-09-20 Akim Demaille <akim@epita.fr>
15730
15731 * src/acconfig.h: Don't protect config.h against multiple
15732 inclusion.
15733 Don't define PARAMS.
15734 * src/system.h: Define PARAMS.
15735 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
15736 purpose of config.h. system.h must not try to fix wrong
15737 definitions in config.h.
15738
15739 2000-09-20 Akim Demaille <akim@epita.fr>
15740
15741 * src/derives.h: New file.
15742 * src/main.c, src/derives.h: Use it.
15743 Formatting changes.
15744 * src/Makefile.am (noinst_HEADERS): Adjust.
15745
15746 2000-09-20 Akim Demaille <akim@epita.fr>
15747
15748 * tests/atgeneral.m4: Update from Autoconf.
15749 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
15750 (AT_CHECK_CALC): New macros.
15751 Use these macros to test bison with options `', `--raw',
15752 `--debug', `--yacc', `--yacc --debug'.
15753
15754 2000-09-19 Akim Demaille <akim@epita.fr>
15755
15756 * src/output.c: Formatting changes.
15757 * src/machine.h: Remove, leaving its contents in...
15758 * src/system.h: here.
15759 Include stdio.h.
15760 Adjust all dependencies on stdio.h and machine.h.
15761 * src/getargs.h: New file.
15762 Let all `extern' declarations about getargs.c be replaced with
15763 inclusion of `getargs.h'.
15764 * src/Makefile.am (noinst_HEADERS): Adjust.
15765
15766 * tests/calc.m4 (yyin): Be initialized in main, not on the global
15767 scope.
15768 (yyerror): Returns void, not int.
15769 * doc/bison.texinfo: Formatting changes.
15770
15771 2000-09-19 Akim Demaille <akim@epita.fr>
15772
15773 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
15774 portable.
15775
15776 2000-09-18 Akim Demaille <akim@epita.fr>
15777
15778 * configure.in: Append WARNING_CFLAGS to CFLAGS.
15779 * src/Makefile.am (INCLUDES): Don't.
15780 Be ready to fetch headers in lib/.
15781
15782 2000-09-18 Akim Demaille <akim@epita.fr>
15783
15784 * doc/bison.texinfo: Update the copyright.
15785 ANSIfy and GNUify the examples.
15786 Remove the old menu.
15787
15788 2000-09-18 Akim Demaille <akim@epita.fr>
15789
15790 First set of tests: use the `calc' example from the documentation.
15791
15792 * src/bison.s1 (yyparse): Condition the code using `yytname' which
15793 is defined only when YYDEBUG is.
15794 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
15795 * src/files.c (tryopen, tryclose): Formatting changes.
15796 Move to the top and be static.
15797 * src/reader.c (read_signed_integer): Likewise.
15798 * tests/calc.m4: New file.
15799 * Makefile.am, suite.m4: Adjust.
15800 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
15801
15802 2000-09-18 Akim Demaille <akim@epita.fr>
15803
15804 Add support for an Autotest test suite for Bison.
15805
15806 * m4/m4.m4, m4/atconfig.m4: New files.
15807 * m4/Makefile.am (EXTRA_DIST): Adjust.
15808 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
15809 files.
15810 * src/getargs.c: Display a more standard --version message.
15811 * src/reader.c (reader): Formatting changes.
15812 No longer depend upon VERSION_STRING.
15813 * configure.in: No longer use `dnl'.
15814 Set up the test suite and the new directory `tests/.
15815 (VERSION_STRING): Remove.
15816
15817 2000-04-14 Akim Demaille <akim@epita.fr>
15818
15819 * src/reader.c (copy_comment2): New function, same as former
15820 `copy_comment', but outputs into two FILE *.
15821 (copy_comment): Use it.
15822 (parse_union_decl): Use it.
15823 (get_type, parse_start_decl): Use the same `invalid' message.
15824 (parse_start_decl, parse_union_decl): Use the same `multiple'
15825 message.
15826 (parse_union_decl, copy_guard, copy_action): Use the same
15827 `unmatched' message.
15828 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
15829
15830 2000-03-31 Akim Demaille <akim@epita.fr>
15831
15832 * src/files.c (tryopen, tryclose): Move to the top.
15833 Be static.
15834
15835 2000-03-31 Akim Demaille <akim@epita.fr>
15836
15837 * src/main.c (main): Don't call `done', exit does it.
15838
15839 2000-03-31 Akim Demaille <akim@epita.fr>
15840
15841 * allocate.c: s/return (foo)/return foo/.
15842 * lalr.c: Likewise.
15843 * LR0.c: Likewise.
15844 * output.c: Likewise.
15845 * reader.c: Likewise.
15846 * symtab.c: Likewise.
15847 * vmsgetargs.c: Likewise.
15848
15849 2000-03-31 Akim Demaille <akim@epita.fr>
15850
15851 Clean up the error reporting functions.
15852
15853 * src/report.c: New file.
15854 * src/report.h: Likewise.
15855 * src/Makefile.am: Adjust.
15856 * m4/error.m4: New file.
15857 * m4/Makefile.am: Adjust.
15858 * configure.in (jm_PREREQ_ERROR): Call it.
15859 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
15860 Remove.
15861 (fatal, fatals): Remove. All callers use complain.c::fatal.
15862 (warn, warni, warns, warnss, warnss): Remove. All callers use
15863 complain.c::complain.
15864 (toomany): Remove, use fatal instead.
15865 * src/files.c (done): No argument, use complain_message_count.
15866 * src/main.c (main): Register `done' to `atexit'.
15867
15868 * src/getargs.c (usage): More `fputs', less `fprintf'.
15869
15870 2000-03-28 Akim Demaille <akim@epita.fr>
15871
15872 * lib/: New directory.
15873 * Makefile.am (SUBDIRS): Adjust.
15874 * configure.in: Adjust.
15875 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
15876 useless.
15877 * src/alloca.c: Moved to lib/.
15878 * src/getopt.c: Likewise.
15879 * src/getopt1.c: Likewise.
15880 * src/getopt.h: Likewise.
15881 * src/ansi2knr.c: Likewise.
15882 * src/ansi2knr.1: Likewise.
15883 * src/Makefile.am: Adjust.
15884 * lib/Makefile.am: New file.
15885
15886 2000-03-28 Akim Demaille <akim@epita.fr>
15887
15888 * src/getargs.c (usage): Refresh the help message.
15889
15890 2000-03-17 Akim Demaille <akim@epita.fr>
15891
15892 * src/getopt1.c: Updated from textutils 2.0e
15893 * src/getopt.c: Likewise.
15894 * src/getopt.h: Likewise.
15895
15896 2000-03-17 Akim Demaille <akim@epita.fr>
15897
15898 * src/Makefile.am (bison.simple): Fix the awk program: quote only
15899 the file name, not the whole `#line LINE FILE'.
15900
15901 2000-03-17 Akim Demaille <akim@epita.fr>
15902
15903 On syntax errors, report the token on which we choked.
15904
15905 * src/bison.s1 (yyparse): In the label yyerrlab, when
15906 YYERROR_VERBOSE, add yychar in msg.
15907
15908 2000-03-17 Akim Demaille <akim@epita.fr>
15909
15910 * src/reader.c (copy_at): New function.
15911 (copy_guard): Use it.
15912 (copy_action): Use it.
15913
15914 2000-03-17 Akim Demaille <akim@epita.fr>
15915
15916 Be kind to translators, save some useless translations.
15917
15918 * src/main.c (banner): New function.
15919 (fatal_banner): Use it.
15920 (warn_banner): Use it.
15921
15922 2000-03-17 Akim Demaille <akim@epita.fr>
15923
15924 * src/reader.c (copy_definition): Use copy_string and
15925 copy_comment. Removed now unused `match', `ended',
15926 `cplus_comment'.
15927 (copy_comment, copy_string): Moved, to be visible from
15928 copy_definition.
15929
15930 2000-03-17 Akim Demaille <akim@epita.fr>
15931
15932 * src/reader.c (copy_string): Declare `static inline'. No
15933 problems with inline, since it is checked by configure.
15934 (copy_comment): Likewise.
15935
15936 2000-03-17 Akim Demaille <akim@epita.fr>
15937
15938 * src/reader.c (packsymbols): Formatting changes.
15939
15940 2000-03-17 Akim Demaille <akim@epita.fr>
15941
15942 * src/reader.c (copy_comment): New function, factored out from:
15943 (copy_action): Use it. Removed now unused `match', `ended',
15944 `cplus_comment'.
15945 (copy_guard): Likewise.
15946
15947 2000-03-17 Akim Demaille <akim@epita.fr>
15948
15949 * src/reader.c (copy_string): New function, factored out from:
15950 (copy_action): Use it.
15951 (copy_guard): Likewise.
15952
15953 2000-03-17 Akim Demaille <akim@epita.fr>
15954
15955 Change the handling of @s so that they behave exactly like $s.
15956 There is now a pseudo variable @$ (readble and writable), location
15957 of the lhs of the rule (by default ranging from the location of
15958 the first symbol of the rhs, to the location of the last symbol,
15959 or, if the rhs is empty, YYLLOC).
15960
15961 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
15962 yyval.
15963 (yyparse): When providing a default semantic action, provide a
15964 default location action.
15965 (after the $): No longer change `*YYLSP', just stack YYLOC the
15966 same way you stack YYVAL.
15967 * src/reader.c (read_declarations): Use warns.
15968 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
15969 (copy_action, case '@'): Likewise.
15970 Use a standard error message, to save useless work from
15971 translators.
15972
15973 2000-03-17 Akim Demaille <akim@epita.fr>
15974
15975 * src/bison.s1: Formatting and cosmetics changes.
15976 * src/reader.c: Likewise.
15977 Update the Copyright notice.
15978
15979 2000-03-17 Akim Demaille <akim@epita.fr>
15980
15981 * src/bison.s1 (#line): All set to `#line' only, since the
15982 Makefile now handles them.
15983
15984 2000-03-16 Akim Demaille <akim@epita.fr>
15985
15986 * src/output.c (output_rule_data): Output the documentation of
15987 some of the tables.
15988 (Copyright notice): Update.
15989 Formatting changes.
15990
15991 2000-03-16 Akim Demaille <akim@epita.fr>
15992
15993 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
15994 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
15995 One `#if YYDEBUG' remains, since it uses variables which are
15996 defined only if `YYDEBUG != 0'.
15997
15998 2000-03-16 Akim Demaille <akim@epita.fr>
15999
16000 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
16001 and related variables so that the similarities are highlighted.
16002
16003 2000-03-16 Akim Demaille <akim@epita.fr>
16004
16005 * src/bison.s1: Properly indent CPP directives.
16006
16007 2000-03-16 Akim Demaille <akim@epita.fr>
16008
16009 * src/bison.s1: Properly indent the `alloca' CPP section.
16010
16011 2000-03-16 Akim Demaille <akim@epita.fr>
16012
16013 Do not hard code values of directories in `configure.in'.
16014 Update the `configure' tool chain.
16015
16016 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
16017 src/makefile.am.
16018 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
16019 (AC_OUTPUT): Add m4/Makefile.
16020 Bump to bison 1.28a, 1.29 has never been released.
16021 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
16022 handled via src/Makefile.am.
16023 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
16024 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
16025 autoheader.
16026 * Makefile.am (SUBDIRS): Add m4.
16027 (ACLOCAL_AM_FLAGS): New variable.
16028 (AUTOMAKE_OPTIONS): Add check-news.
16029 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
16030 the proper line number and file name.
16031 (DEFS): Propagate the location of bison library files and of the
16032 locale files.
16033 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
16034 builddir.
16035 * acinclude.m4: Remove, replaced by the directory m4.
16036 * m4/Makefile.am (EXTRA_DIST): New variable.
16037 * m4/gettext.m4: New file, from the fileutils.
16038 * m4/lcmessage.m4: Likewise
16039 * m4/progtest.m4: Likewise.
16040 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
16041
16042 2000-03-10 Akim Demaille <akim@epita.fr>
16043
16044 * src/closure.c:
16045 Formatting changes of various comments.
16046 Respect the GNU coding standards at various places.
16047 Don't use `_()' when no translation is needed.
16048
16049 1999-12-13 Jesse Thilo <jthilo@gnu.org>
16050
16051 * src/files.c:
16052 OS/2 honors TMPDIR environment variable.
16053
16054 1999-12-13 Jesse Thilo <jthilo@gnu.org>
16055
16056 * doc/bison.texinfo: Tweaked spelling and grammar.
16057 Updated ISBN.
16058 Removed reference to price of printed copy.
16059 Mention BISON_SIMPLE and BISON_HAIRY.
16060
16061 1999-12-13 Jesse Thilo <jthilo@gnu.org>
16062
16063 * configure.in, NEWS:
16064 Bison 1.29 released.
16065
16066 1999-10-27 Jesse Thilo <jthilo@gnu.org>
16067
16068 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
16069 Added reference card.
16070
16071 1999-07-26 Jesse Thilo <jthilo@gnu.org>
16072
16073 * po/ru.po: Added Russian translation.
16074
16075 1999-07-26 Jesse Thilo <jthilo@gnu.org>
16076
16077 * configure.in: Added Russian translation.
16078
16079 1999-07-06 Jesse Thilo <jthilo@gnu.org>
16080
16081 * configure.in, NEWS, README:
16082 Released version 1.28.
16083
16084 1999-06-14 Jesse Thilo <jthilo@gnu.org>
16085
16086 * src/system.h:
16087 Squashed redefinition warning on some systems.
16088
16089 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
16090 Have configure build version string instead of relying on ANSI string
16091 concatentation.
16092
16093 1999-06-14 Jesse Thilo <jthilo@gnu.org>
16094
16095 * po/POTFILES.in: Got rid of version.c.
16096
16097 1999-06-14 Jesse Thilo <jthilo@gnu.org>
16098
16099 * acconfig.h, configure.in:
16100 Have configure build version string instead of relying on ANSI string
16101 concatentation.
16102
16103 1999-06-08 Jesse Thilo <jthilo@gnu.org>
16104
16105 * doc/bison.1:
16106 Dropped mention of `+' for long-named options.
16107
16108 1999-05-30 Jesse Thilo <jthilo@gnu.org>
16109
16110 * src/files.c: Added <unistd.h> for unlink().
16111
16112 * src/Makefile.am, src/system.h:
16113 I18n fixes.
16114
16115 1999-05-30 Jesse Thilo <jthilo@gnu.org>
16116
16117 * README: Added a FAQ list.
16118
16119 * configure.in, acconfig.h:
16120 I18n fixes.
16121
16122 1999-05-30 Jesse Thilo <jthilo@gnu.org>
16123
16124 * doc/FAQ, doc/Makefile.am:
16125 Added a FAQ list.
16126
16127 1999-05-19 Jesse Thilo <jthilo@gnu.org>
16128
16129 * src/alloc.h, src/symtab.h, src/version.c:
16130 Protected inclusion of "config.h" with HAVE_CONFIG_H.
16131
16132 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16133
16134 * src/.cvsignore, src/Makefile.am:
16135 Reorganized: sources in `src', documentation in `doc'.
16136
16137 * src/lex.c (literalchar):
16138 fixed the code for escaping double quotes (thanks
16139 Jonathan Czisny.)
16140
16141 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16142
16143 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
16144 Adjusted paths to reflect directory reorganization.
16145
16146 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16147
16148 * doc/.cvsignore, doc/Makefile.am:
16149 Reorganized: sources in `src', documentation in `doc'.
16150
16151 1999-04-18 Jesse Thilo <jthilo@gnu.org>
16152
16153 * configure.in:
16154 Updated AC_INIT file to reflect directory reorganization.
16155
16156 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
16157 Reorganized: sources in `src', documentation in `doc'.
16158
16159 1999-04-13 Jesse Thilo <jthilo@gnu.org>
16160
16161 * src/allocate.c:
16162 Don't declare calloc() and realloc() if not necessary.
16163
16164 1999-04-13 Jesse Thilo <jthilo@gnu.org>
16165
16166 * configure.in, acconfig.h, acinclude.m4:
16167 Don't declare calloc() and realloc() if not necessary.
16168
16169 1999-03-23 Jesse Thilo <jthilo@gnu.org>
16170
16171 * po/.cvsignore: Added i18n support.
16172
16173 1999-03-23 Jesse Thilo <jthilo@gnu.org>
16174
16175 * acconfig.h, configure.in, Makefile.am:
16176 Added i18n support.
16177
16178 1999-03-22 Jesse Thilo <jthilo@gnu.org>
16179
16180 * src/bison.s1: Fixed #line numbers.
16181
16182 1999-03-15 Jesse Thilo <jthilo@gnu.org>
16183
16184 * po/es.po, po/fr.po, po/nl.po, po/de.po:
16185 Added PO files from Translation Project.
16186
16187 1999-03-03 Jesse Thilo <jthilo@gnu.org>
16188
16189 * Makefile.am:
16190 Added support for non-ANSI compilers (ansi2knr).
16191
16192 1999-02-16 Jesse Thilo <jthilo@gnu.org>
16193
16194 * configure.in: Bumped version number to 1.27.
16195
16196 * Makefile.am:
16197 Added `bison.simple' to list of files removed by `make distclean'.
16198
16199 1999-02-12 Jesse Thilo <jthilo@gnu.org>
16200
16201 * src/files.c, src/files.h:
16202 Defined locations of parser files in config.h instead of Makefile.
16203
16204 1999-02-12 Jesse Thilo <jthilo@gnu.org>
16205
16206 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
16207 Defined locations of parser files in config.h instead of Makefile.
16208
16209 1999-02-09 Jesse Thilo <jthilo@gnu.org>
16210
16211 * Makefile.am:
16212 Removed inappropriate use of $< macro.
16213
16214 1999-02-05 Jesse Thilo <jthilo@gnu.org>
16215
16216 * po/Makefile.in.in, po/POTFILES.in:
16217 Add `po' directory skeleton.
16218
16219 1999-01-27 Jesse Thilo <jthilo@gnu.org>
16220
16221 * README: Document help-bison list.
16222
16223 * configure.in: Add check for mkstemp().
16224
16225 1999-01-20 Jesse Thilo <jthilo@gnu.org>
16226
16227 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
16228 Hush a few compiler warnings.
16229
16230 * src/files.c:
16231 Add tryclose(), which verifies that fclose was successful.
16232 Hush a couple of compiler warnings.
16233
16234 1999-01-20 Jesse Thilo <jthilo@gnu.org>
16235
16236 * Makefile.am, OChangeLog:
16237 ChangeLog is now automatically generated. Include the old version as
16238 OChangeLog.
16239
16240 1999-01-14 Jesse Thilo <jthilo@gnu.org>
16241
16242 * 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:
16243 Update FSF address.
16244
16245 1999-01-14 Jesse Thilo <jthilo@gnu.org>
16246
16247 * doc/bison.texinfo: Fix formatting glitch.
16248
16249 * doc/bison.texinfo: Update FSF address.
16250
16251 1999-01-14 Jesse Thilo <jthilo@gnu.org>
16252
16253 * acconfig.h: Update FSF address.
16254
16255 1999-01-08 Jesse Thilo <jthilo@gnu.org>
16256
16257 * src/system.h:
16258 Don't define PACKAGE here, since config.h defines it.
16259
16260 1998-12-30 Jesse Thilo <jthilo@gnu.org>
16261
16262 * src/reader.c: Update copyright date.
16263
16264 * src/main.c:
16265 Ditch sprintf to statically-sized buffers in fatal/warn functions in
16266 favor of output directly to stderr (avoids buffer overruns).
16267
16268 * src/reader.c: Some checks for premature EOF.
16269
16270 * 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:
16271 Use prototypes if the compiler understands them.
16272
16273 * src/files.c: Honor TMPDIR on Unix hosts.
16274 Use prototypes if the compiler understands them.
16275
16276 * src/reader.c:
16277 Fix a couple of buffer overrun bugs.
16278 Use prototypes if the compiler understands them.
16279
16280 * src/system.h: Include unistd.h and ctype.h.
16281 Use #ifdef instead of #if for NLS symbols.
16282
16283 1998-12-30 Jesse Thilo <jthilo@gnu.org>
16284
16285 * doc/bison.texinfo:
16286 Delete comment "consider using @set for edition number, etc..." since
16287 we now are doing so.
16288
16289 1998-12-30 Jesse Thilo <jthilo@gnu.org>
16290
16291 * configure.in:
16292 Use prototypes if the compiler understands them.
16293
16294 * NEWS: Document 1.26 highlights.
16295
16296 * Makefile.am: Require Automake 1.3 or later.
16297
16298 * acconfig.h:
16299 Use prototypes if the compiler understands them.
16300
16301 1998-12-29 Jesse Thilo <jthilo@gnu.org>
16302
16303 * src/version.c:
16304 Use VERSION symbol from automake for version number.
16305
16306 1998-12-29 Jesse Thilo <jthilo@gnu.org>
16307
16308 * acconfig.h, configure.in, version.cin:
16309 Use VERSION symbol from automake for version number.
16310
16311 1998-11-28 Jesse Thilo <jthilo@gnu.org>
16312
16313 * Makefile.am:
16314 Distribute original version of simple parser (bison.s1), not built
16315 version (bison.simple).
16316
16317 1998-11-28 Jesse Thilo <jthilo@gnu.org>
16318
16319 * doc/bison.texinfo: Add info dir entry.
16320
16321 * doc/bison.texinfo:
16322 Let automake put version number into documentation.
16323
16324 1998-11-26 Jesse Thilo <jthilo@gnu.org>
16325
16326 * src/bison.cld, src/build.com, src/vmshlp.mar:
16327 Add non-RCS files from /gd/gnu/bison.
16328
16329 1998-11-26 Jesse Thilo <jthilo@gnu.org>
16330
16331 * doc/bison.1:
16332 Document the BISON_HAIRY and BISON_SIMPLE variables.
16333
16334 1998-11-25 Jesse Thilo <jthilo@gnu.org>
16335
16336 * src/version.c: Build version.c automatically.
16337
16338 * src/reader.c:
16339 Fix token numbering (used to start at 258, not 257).
16340
16341 * src/system.h: Include config.h.
16342
16343 * src/getargs.c: Update bug report address.
16344
16345 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
16346 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
16347
16348 1998-11-25 Jesse Thilo <jthilo@gnu.org>
16349
16350 * Makefile.am:
16351 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16352
16353 * configure.in, version.cin:
16354 Build version.c automatically.
16355
16356 * AUTHORS: Add AUTHORS file.
16357
16358 * README: Update bug report address.
16359
16360 * bison.simple:
16361 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16362
16363 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
16364 Add automake stuff.
16365
16366 1998-11-25 Jesse Thilo <jthilo@gnu.org>
16367
16368 * doc/bison.texinfo: Clean up some formatting.
16369
16370 1998-05-05 Richard Stallman <rms@gnu.org>
16371
16372 * doc/bison.texinfo:
16373 Explain better why to make a pure parser.
16374
16375 1998-01-05 Richard Stallman <rms@gnu.org>
16376
16377 * src/files.c (openfiles):
16378 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
16379 find a temporary directory, if possible. Do not unlink files while
16380 they are open.
16381
16382 1997-08-25 Richard Stallman <rms@gnu.org>
16383
16384 * src/reader.c (stack_offset;):
16385 Change some warni to warns.
16386
16387 * src/lex.c (literalchar): Use warns, not warni.
16388
16389 1997-06-28 Richard Stallman <rms@gnu.org>
16390
16391 * src/bison.s1: Add a Bison version comment.
16392
16393 * src/main.c (fatal, warn, berror):
16394 Use program_name.
16395
16396 1997-06-28 Richard Stallman <rms@gnu.org>
16397
16398 * Makefile.in (bison_version): New variable.
16399 (dist): Use that variable.
16400 (bison.s1): Substitute the Bison version into bison.simple.
16401
16402 * bison.simple: Add a Bison version comment.
16403
16404 1997-06-18 Richard Stallman <rms@gnu.org>
16405
16406 * src/main.c (fatal, warn, berror):
16407 Make error messages standard.
16408 (toomany): Improve error message text.
16409
16410 * 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:
16411 new.h renamed to alloc.h.
16412
16413 1997-06-18 Richard Stallman <rms@gnu.org>
16414
16415 * Makefile.in: new.h renamed to alloc.h.
16416
16417 1997-05-24 Richard Stallman <rms@gnu.org>
16418
16419 * src/lex.c (literalchar):
16420 Fix the code for escaping \, " and '.
16421
16422 (lex): Avoid trouble when there are many chars
16423 to discard in a char literal with just several chars in it.
16424
16425 1997-05-17 Richard Stallman <rms@gnu.org>
16426
16427 * src/bison.s1:
16428 Use malloc, if using alloca is troublesome.
16429 (YYSTACK_USE_ALLOCA): New flag macro.
16430 Define it for some systems and compilers.
16431 (YYSTACK_ALLOC): New macro.
16432 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16433 If it was malloc'd, free it.
16434
16435 1997-05-17 Richard Stallman <rms@gnu.org>
16436
16437 * bison.simple:
16438 Use malloc, if using alloca is troublesome.
16439 (YYSTACK_USE_ALLOCA): New flag macro.
16440 Define it for some systems and compilers.
16441 (YYSTACK_ALLOC): New macro.
16442 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16443 If it was malloc'd, free it.
16444
16445 1997-04-23 Richard Stallman <rms@gnu.org>
16446
16447 * src/bison.s1:
16448 (alloca) [__hpux]: Always define as __builtin_alloca.
16449
16450 1997-04-23 Richard Stallman <rms@gnu.org>
16451
16452 * bison.simple:
16453 (alloca) [__hpux]: Always define as __builtin_alloca.
16454
16455 1997-04-22 Richard Stallman <rms@gnu.org>
16456
16457 * src/bison.s1:
16458 [__hpux]: Include alloca.h (right for HPUX 10)
16459 instead of declaring alloca (right for HPUX 9).
16460
16461 * src/bison.s1 (__yy_memcpy):
16462 Declare arg `count' as unsigned int.
16463 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16464
16465 1997-04-22 Richard Stallman <rms@gnu.org>
16466
16467 * bison.simple:
16468 [__hpux]: Include alloca.h (right for HPUX 10)
16469 instead of declaring alloca (right for HPUX 9).
16470
16471 * bison.simple (__yy_memcpy):
16472 Declare arg `count' as unsigned int.
16473 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16474
16475 1997-01-03 Richard Stallman <rms@gnu.org>
16476
16477 * src/allocate.c: [__STDC__ or _MSC_VER]:
16478 Declare calloc and realloc to return void *.
16479
16480 1997-01-02 Richard Stallman <rms@gnu.org>
16481
16482 * src/system.h:
16483 [_MSC_VER]: Include stdlib.h and process.h.
16484 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
16485
16486 * src/main.c (main): Return FAILURE as a value.
16487 (printable_version): Declare arg as int, not char.
16488
16489 1997-01-02 Richard Stallman <rms@gnu.org>
16490
16491 * Makefile.in (dist):
16492 Explicitly check for symlinks, and copy them.
16493
16494 1996-12-19 Richard Stallman <rms@gnu.org>
16495
16496 * src/files.c:
16497 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
16498
16499 1996-12-18 Paul Eggert <eggert@gnu.org>
16500
16501 * src/bison.s1 (yyparse):
16502 If __GNUC__ and YYPARSE_PARAM are both defined,
16503 declare yyparse to have a void * argument.
16504
16505 1996-12-18 Paul Eggert <eggert@gnu.org>
16506
16507 * bison.simple (yyparse):
16508 If __GNUC__ and YYPARSE_PARAM are both defined,
16509 declare yyparse to have a void * argument.
16510
16511 1996-12-17 Richard Stallman <rms@gnu.org>
16512
16513 * src/reduce.c (nbits): Add some casts.
16514
16515 1996-08-12 Richard Stallman <rms@gnu.org>
16516
16517 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
16518
16519 1996-08-12 Richard Stallman <rms@gnu.org>
16520
16521 * bison.simple: Test _MSDOS as well as _MSDOS_.
16522
16523 1996-07-31 Richard Stallman <rms@gnu.org>
16524
16525 * src/bison.s1:
16526 [__sun && __i386]: Include alloca.h.
16527
16528 1996-07-31 Richard Stallman <rms@gnu.org>
16529
16530 * bison.simple:
16531 [__sun && __i386]: Include alloca.h.
16532
16533 1996-07-30 Richard Stallman <rms@gnu.org>
16534
16535 * src/bison.s1: Comment change.
16536
16537 * src/bison.s1: Test _MSDOS_, not MSDOS.
16538
16539 1996-07-30 Richard Stallman <rms@gnu.org>
16540
16541 * bison.simple: Comment change.
16542
16543 * bison.simple: Test _MSDOS_, not MSDOS.
16544
16545 1996-06-01 Richard Stallman <rms@gnu.org>
16546
16547 * 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:
16548 Insert `_' macro around many string constants.
16549
16550 * src/main.c:
16551 Insert `_' macro around many string constants.
16552
16553 (main): Call setlocale, bindtextdomain and textdomain.
16554
16555 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
16556 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
16557 [ENABLE_NLS]: Include libintl.h.
16558 [ENABLE_NLS] (gettext): Define.
16559 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
16560 (N_, PACKAGE, LOCALEDIR): New macros.
16561
16562 1996-06-01 Richard Stallman <rms@gnu.org>
16563
16564 * POTFILES.in: New file.
16565
16566 * Makefile.in (allocate.o):
16567 Define target explicitly.
16568
16569 * Makefile.in (CFLAGS): Set to @CFLAGS@.
16570 (LDFLAGS): Set to @LDFLAGS@.
16571 (configure): Run autoconf only if preceding `cd' succeeds.
16572 (bison.s1): Redirect output to temporary file then move the
16573 temporary to the target, rather than redirecting directly to bison.s1.
16574 (clean): Remove config.status and config.log.
16575 (distclean): Don't remove config.status here.
16576
16577 1996-05-12 Richard Stallman <rms@gnu.org>
16578
16579 * src/bison.s1:
16580 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16581
16582 1996-05-12 Richard Stallman <rms@gnu.org>
16583
16584 * bison.simple:
16585 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16586
16587 1996-05-11 Richard Stallman <rms@gnu.org>
16588
16589 * src/bison.s1 (__yy_memcpy):
16590 Really reorder the args, as was supposedly done on Feb 14 1995.
16591 (yyparse): Calls changed accordingly.
16592
16593 1996-05-11 Richard Stallman <rms@gnu.org>
16594
16595 * Makefile.in (dist): Don't use $(srcdir).
16596
16597 * bison.simple (__yy_memcpy):
16598 Really reorder the args, as was supposedly done on Feb 14 1995.
16599 (yyparse): Calls changed accordingly.
16600
16601 1996-01-27 Richard Stallman <rms@gnu.org>
16602
16603 * src/output.c (output_rule_data):
16604 Test YYERROR_VERBOSE in the conditional
16605 around the definition of ttyname.
16606
16607 1995-12-29 Richard Stallman <rms@gnu.org>
16608
16609 * src/bison.s1:
16610 Fix line numbers in #line commands.
16611
16612 1995-12-29 Richard Stallman <rms@gnu.org>
16613
16614 * bison.simple:
16615 Fix line numbers in #line commands.
16616
16617 1995-12-27 Richard Stallman <rms@gnu.org>
16618
16619 * src/bison.s1 (YYPARSE_PARAM_DECL):
16620 In C++, make it always null.
16621 (YYPARSE_PARAM_ARG): New macro.
16622 (yyparse): Use YYPARSE_PARAM_ARG.
16623
16624 1995-12-27 Richard Stallman <rms@gnu.org>
16625
16626 * bison.simple (YYPARSE_PARAM_DECL):
16627 In C++, make it always null.
16628 (YYPARSE_PARAM_ARG): New macro.
16629 (yyparse): Use YYPARSE_PARAM_ARG.
16630
16631 1995-11-29 Richard Stallman <rms@gnu.org>
16632
16633 * doc/bison.texinfo:
16634 Describe literal string tokens, %raw, %no_lines, %token_table.
16635
16636 1995-11-29 Daniel Hagerty <hag@gnu.org>
16637
16638 * doc/bison.texinfo: Fixed update date
16639
16640 1995-10-16 Richard Stallman <rms@gnu.org>
16641
16642 * src/version.c: Version 1.25.
16643
16644 1995-10-16 Richard Stallman <rms@gnu.org>
16645
16646 * NEWS: *** empty log message ***
16647
16648 1995-10-16 Richard Stallman <rms@gnu.org>
16649
16650 * doc/bison.1, doc/bison.rnh:
16651 Add new options.
16652
16653 1995-10-15 Richard Stallman <rms@gnu.org>
16654
16655 * src/vmsgetargs.c, src/getargs.c:
16656 Added -n, -k, and -raw switches.
16657 (noparserflag, toknumflag, rawtoknumflag): New variables.
16658
16659 * src/symtab.h (SALIAS):
16660 New #define for adding aliases to %token.
16661 (struct bucket): Added `alias' field.
16662
16663 * src/reduce.c (reduce_grammar):
16664 Revise error message.
16665 (print_notices): Remove final `.' from error message.
16666
16667 * src/reader.c (reader_output_yylsp):
16668 New function.
16669 (readgram): Use `#if 0' around code that accepted %command
16670 inside grammar rules: The documentation doesn't allow it,
16671 and it will fail since the %command processors scan for the next %.
16672 (parse_token_decl): Extended the %token
16673 declaration to allow a multi-character symbol as an alias.
16674 (parse_thong_decl): New function.
16675 (read_declarations): Added %thong declarations.
16676 (read_declarations): Handle NOOP to deal with allowing
16677 % declarations as another means to specify the flags.
16678 (readgram): Allow %prec prior to semantics embedded in a rule.
16679 (skip_to_char, read_declarations, copy_definition)
16680 (parse_token_decl, parse_start_decl, parse_type_decl)
16681 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
16682 (get_type_name, copy_guard, copy_action, readgram)
16683 (get_type, packsymbols): Revised most error messages.
16684 Changed `fatal' to `warnxxx' to avoid aborting for error.
16685 Revised and use multiple warnxxx functions to avoid using VARARGS1.
16686 (read_declarations): Improve the error message for
16687 an invalid character. Do not abort.
16688 (read_declarations, copy_guard, copy_action): Use
16689 printable_version to avoid unprintable characters in printed output.
16690 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
16691 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
16692 Allow the type of a non-terminal can be given
16693 more than once, as long as all specifications give the same type.
16694
16695 * src/output.c:
16696 (output_headers, output_trailers, output, output_gram)
16697 (output_rule_data): Implement noparserflag variable.
16698 Implement toknumflag variable.
16699 (output): Call reader_output_yylsp to output LTYPESTR.
16700
16701 * src/main.c (main):
16702 If reader sees an error, don't process the grammar.
16703 (fatals): Updated to not use VARARGS1.
16704 (printable_version, int_to_string, warn, warni, warns, warnss)
16705 (warnsss): New error reporting functions. Avoid abort for error.
16706
16707 * src/lex.h:
16708 Added THONG and NOOP for alias processing.
16709 Added SETOPT for the new code that allows setting options with %flags.
16710
16711 * src/lex.c:
16712 Include getopt.h. Add some extern decls.
16713 (safegetc): New function to deal with EOF gracefully.
16714 (literalchar); new function to deal with reading \ escapes.
16715 (lex): Use literalchar.
16716 (lex): Implemented "..." tokens.
16717 (literalchar, lex, parse_percent_token): Made tokenbuffer
16718 always contain the token. This includes growing the token
16719 buffer while reading an integer.
16720 (parse_percent_token): Replaced if-else statement with percent_table.
16721 (parse_percent_token): Added % declarations as another
16722 way to specify the flags -n, -l, and -r. Also added hooks for
16723 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
16724 major changes to files.c.
16725 (lex) Retain in the incoming stream a character following
16726 an incorrect '/'.
16727 (skip_white_space, lex): Revised most error messages
16728 and changed fatal to warn to avoid aborting.
16729 (percent_table): Added %thong declarations.
16730
16731 * src/gram.h: Comment changes.
16732
16733 * src/files.c (openfiles, open_extra_files, done):
16734 Add faction flag
16735 and actfile file. Handle noparserflag. Both for -n switch.
16736
16737 * src/conflicts.c (resolve_sr_conflict):
16738 Remove use of alloca.
16739
16740 1995-06-01 Jim Meyering <meyering@gnu.org>
16741
16742 * doc/bison.texinfo: *** empty log message ***
16743
16744 1995-05-06 Richard Stallman <rms@gnu.org>
16745
16746 * src/bison.s1: Comment change.
16747
16748 1995-05-06 Richard Stallman <rms@gnu.org>
16749
16750 * bison.simple: Comment change.
16751
16752 1995-05-03 Richard Stallman <rms@gnu.org>
16753
16754 * src/version.c: Version now 1.24.
16755
16756 * src/bison.s1: Change distribution terms.
16757
16758 * src/version.c: Version now 1.23.
16759
16760 1995-05-03 Richard Stallman <rms@gnu.org>
16761
16762 * doc/bison.texinfo:
16763 Rewrite "Conditions for Using Bison".
16764 Update version to 1.24.
16765
16766 1995-05-03 Richard Stallman <rms@gnu.org>
16767
16768 * bison.simple: Change distribution terms.
16769
16770 1995-02-23 Richard Stallman <rms@gnu.org>
16771
16772 * src/files.c: Test __VMS_POSIX as well as VMS.
16773
16774 1995-02-14 Jim Meyering <meyering@gnu.org>
16775
16776 * src/bison.s1 (__yy_memcpy):
16777 Renamed from __yy_bcopy to avoid
16778 confusion. Reverse FROM and TO arguments to be consistent with
16779 those of memcpy.
16780
16781 1995-02-14 Jim Meyering <meyering@gnu.org>
16782
16783 * bison.simple (__yy_memcpy):
16784 Renamed from __yy_bcopy to avoid
16785 confusion. Reverse FROM and TO arguments to be consistent with
16786 those of memcpy.
16787
16788 1994-11-10 David J. MacKenzie <djm@gnu.org>
16789
16790 * NEWS: reformat
16791
16792 * NEWS: New file.
16793
16794 * Makefile.in (DISTFILES): Include NEWS.
16795
16796 * Makefile.in (DISTFILES):
16797 Include install-sh, not install.sh.
16798
16799 * configure.in: Update to Autoconf v2 macro names.
16800
16801 1994-10-05 David J. MacKenzie <djm@gnu.org>
16802
16803 * Makefile.in: fix typo
16804
16805 * Makefile.in (prefix, exec_prefix):
16806 Let configure set them.
16807
16808 1994-09-28 David J. MacKenzie <djm@gnu.org>
16809
16810 * Makefile.in: Set datadir to $(prefix)/share.
16811
16812 1994-09-15 Richard Stallman <rms@gnu.org>
16813
16814 * src/bison.s1:
16815 Update copyright notice and GPL version.
16816
16817 1994-09-15 Richard Stallman <rms@gnu.org>
16818
16819 * bison.simple:
16820 Update copyright notice and GPL version.
16821
16822 1994-07-12 Richard Stallman <rms@gnu.org>
16823
16824 * src/reduce.c, src/reader.c:
16825 entered into RCS
16826
16827 1994-05-05 David J. MacKenzie <djm@gnu.org>
16828
16829 * Makefile.in: entered into RCS
16830
16831 1994-03-26 Richard Stallman <rms@gnu.org>
16832
16833 * src/bison.s1: entered into RCS
16834
16835 1994-03-26 Richard Stallman <rms@gnu.org>
16836
16837 * bison.simple: entered into RCS
16838
16839 1994-03-25 Richard Stallman <rms@gnu.org>
16840
16841 * src/main.c: entered into RCS
16842
16843 1994-03-24 Richard Stallman <rms@gnu.org>
16844
16845 * src/conflicts.c: entered into RCS
16846
16847 1994-01-02 Richard Stallman <rms@gnu.org>
16848
16849 * Makefile.in: *** empty log message ***
16850
16851 1993-11-21 Richard Stallman <rms@gnu.org>
16852
16853 * src/bison.s1: *** empty log message ***
16854
16855 1993-11-21 Richard Stallman <rms@gnu.org>
16856
16857 * doc/bison.texinfo: entered into RCS
16858
16859 * doc/bison.texinfo: *** empty log message ***
16860
16861 1993-11-21 Richard Stallman <rms@gnu.org>
16862
16863 * bison.simple: *** empty log message ***
16864
16865 1993-10-25 David J. MacKenzie <djm@gnu.org>
16866
16867 * doc/bison.texinfo: *** empty log message ***
16868
16869 1993-10-19 Richard Stallman <rms@gnu.org>
16870
16871 * src/bison.s1: *** empty log message ***
16872
16873 1993-10-19 Richard Stallman <rms@gnu.org>
16874
16875 * bison.simple: *** empty log message ***
16876
16877 1993-10-14 Richard Stallman <rms@gnu.org>
16878
16879 * src/bison.s1: *** empty log message ***
16880
16881 1993-10-14 Richard Stallman <rms@gnu.org>
16882
16883 * bison.simple: *** empty log message ***
16884
16885 1993-09-14 David J. MacKenzie <djm@gnu.org>
16886
16887 * doc/bison.texinfo: *** empty log message ***
16888
16889 1993-09-13 Noah Friedman <friedman@gnu.org>
16890
16891 * Makefile.in: *** empty log message ***
16892
16893 1993-09-10 Richard Stallman <rms@gnu.org>
16894
16895 * src/conflicts.c: *** empty log message ***
16896
16897 * src/system.h: entered into RCS
16898
16899 1993-09-10 Richard Stallman <rms@gnu.org>
16900
16901 * doc/bison.1: entered into RCS
16902
16903 1993-09-06 Noah Friedman <friedman@gnu.org>
16904
16905 * src/version.c: entered into RCS
16906
16907 1993-09-06 Noah Friedman <friedman@gnu.org>
16908
16909 * Makefile.in: *** empty log message ***
16910
16911 1993-07-30 David J. MacKenzie <djm@gnu.org>
16912
16913 * Makefile.in: *** empty log message ***
16914
16915 1993-07-24 Richard Stallman <rms@gnu.org>
16916
16917 * src/bison.s1: *** empty log message ***
16918
16919 1993-07-24 Richard Stallman <rms@gnu.org>
16920
16921 * bison.simple: *** empty log message ***
16922
16923 1993-07-08 David J. MacKenzie <djm@gnu.org>
16924
16925 * Makefile.in: *** empty log message ***
16926
16927 1993-07-04 Richard Stallman <rms@gnu.org>
16928
16929 * src/bison.s1: *** empty log message ***
16930
16931 1993-07-04 Richard Stallman <rms@gnu.org>
16932
16933 * bison.simple: *** empty log message ***
16934
16935 1993-06-26 David J. MacKenzie <djm@gnu.org>
16936
16937 * src/getargs.c: entered into RCS
16938
16939 1993-06-26 David J. MacKenzie <djm@gnu.org>
16940
16941 * doc/bison.texinfo: *** empty log message ***
16942
16943 * doc/bison.1: New file.
16944
16945 1993-06-25 Richard Stallman <rms@gnu.org>
16946
16947 * src/getargs.c: New file.
16948
16949 1993-06-16 Richard Stallman <rms@gnu.org>
16950
16951 * src/bison.s1: *** empty log message ***
16952
16953 1993-06-16 Richard Stallman <rms@gnu.org>
16954
16955 * bison.simple: *** empty log message ***
16956
16957 1993-06-03 Richard Stallman <rms@gnu.org>
16958
16959 * src/bison.s1: New file.
16960
16961 1993-06-03 Richard Stallman <rms@gnu.org>
16962
16963 * doc/bison.texinfo: *** empty log message ***
16964
16965 1993-06-03 Richard Stallman <rms@gnu.org>
16966
16967 * bison.simple: New file.
16968
16969 1993-05-19 Richard Stallman <rms@gnu.org>
16970
16971 * doc/bison.texinfo: New file.
16972
16973 1993-05-07 Noah Friedman <friedman@gnu.org>
16974
16975 * Makefile.in: *** empty log message ***
16976
16977 1993-04-28 Noah Friedman <friedman@gnu.org>
16978
16979 * src/reader.c: *** empty log message ***
16980
16981 1993-04-23 Noah Friedman <friedman@gnu.org>
16982
16983 * src/alloc.h: entered into RCS
16984
16985 1993-04-20 David J. MacKenzie <djm@gnu.org>
16986
16987 * src/version.c: *** empty log message ***
16988
16989 * src/files.c, src/allocate.c:
16990 entered into RCS
16991
16992 * src/reader.c: *** empty log message ***
16993
16994 * src/lex.c: entered into RCS
16995
16996 * src/conflicts.c: New file.
16997
16998 * src/symtab.c: entered into RCS
16999
17000 * src/alloc.h: New file.
17001
17002 * src/LR0.c: entered into RCS
17003
17004 1993-04-18 Noah Friedman <friedman@gnu.org>
17005
17006 * src/reader.c: New file.
17007
17008 * src/version.c: *** empty log message ***
17009
17010 1993-04-18 Noah Friedman <friedman@gnu.org>
17011
17012 * Makefile.in: *** empty log message ***
17013
17014 1993-04-17 Noah Friedman <friedman@gnu.org>
17015
17016 * Makefile.in: *** empty log message ***
17017
17018 1993-04-15 Richard Stallman <rms@gnu.org>
17019
17020 * src/main.c, src/files.c:
17021 New file.
17022
17023 1993-04-15 Noah Friedman <friedman@gnu.org>
17024
17025 * configure.in: entered into RCS
17026
17027 * configure.in: *** empty log message ***
17028
17029 * configure.in: New file.
17030
17031 1993-04-14 Richard Stallman <rms@gnu.org>
17032
17033 * Makefile.in: New file.
17034
17035 1993-04-13 Richard Stallman <rms@gnu.org>
17036
17037 * src/version.c: New file.
17038
17039 1993-03-25 Richard Stallman <rms@gnu.org>
17040
17041 * src/output.c: entered into RCS
17042
17043 1992-09-25 Richard Stallman <rms@gnu.org>
17044
17045 * configure.bat: entered into RCS
17046
17047 1992-06-22 Richard Stallman <rms@gnu.org>
17048
17049 * src/vmsgetargs.c: entered into RCS
17050
17051 1992-06-22 Richard Stallman <rms@gnu.org>
17052
17053 * doc/bison.rnh: entered into RCS
17054
17055 1992-04-20 David J. MacKenzie <djm@gnu.org>
17056
17057 * README: entered into RCS
17058
17059 1992-01-22 Richard Stallman <rms@gnu.org>
17060
17061 * src/machine.h: entered into RCS
17062
17063 1991-12-21 Richard Stallman <rms@gnu.org>
17064
17065 * src/lalr.c, src/closure.c:
17066 entered into RCS
17067
17068 1991-12-20 Richard Stallman <rms@gnu.org>
17069
17070 * src/state.h: entered into RCS
17071
17072 1991-12-18 Richard Stallman <rms@gnu.org>
17073
17074 * src/print.c, src/nullable.c, src/derives.c:
17075 entered into RCS
17076
17077 1991-11-03 David J. MacKenzie <djm@gnu.org>
17078
17079 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
17080 entered into RCS
17081
17082 1988-09-09 Richard Stallman <rms@gnu.org>
17083
17084 * src/bison.hairy: entered into RCS
17085
17086 1987-12-16 Richard Stallman <rms@gnu.org>
17087
17088 * REFERENCES: entered into RCS
17089
17090
17091 -----
17092
17093 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
17094 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
17095 Software Foundation, Inc.
17096
17097 Copying and distribution of this file, with or without
17098 modification, are permitted provided the copyright notice and this
17099 notice are preserved.
17100
17101 $Id$