]> git.saurik.com Git - bison.git/blob - ChangeLog
* src/scan-gram.l: Remove unused declaration of last_string_1 so the
[bison.git] / ChangeLog
1 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
4 build succeeds when configured with --enable-gcc-warnings.
5
6 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7
8 * src/parse-gram.y (char_name): New function.
9 (CHAR, STRING, string_content): For %printer, properly escape.
10 (ID): Prefer fputs to fprintf.
11 (id): Reindent to be consistent with other rules.
12 Properly quote char.
13
14 The Translation Project changed its way of publishing translations
15 to maintainers. I haven't received any responses to my request
16 for supporting the old way, or for documenting the new way. I
17 have modified 'bootstrap' to use screen scraping
18 (in this case, HTML scraping). This is unreliable and inelegant,
19 but I don't see any better way. Yuck.
20 * bootstrap (TP_URL, WGET_COMMAND): New vars.
21 (get_translations): New function, which uses HTML scraping to
22 deduce locations of latest translations.
23 Use this function to grab both bison and bison-runtime .po files.
24 Don't bother priming the pump for the runtime-po domain any more,
25 as it's now translated better than bison is.
26
27 2006-06-19 Akim Demaille <akim@epita.fr>
28
29 * src/scan-gram.l: No longer "parse" things after `%union' until
30 `{'. Rather, return a single "%union" token.
31 No longer make symbols: return strings, and leave the conversion
32 to symbols to the parser.
33 (SC_PRE_CODE, token_type): Remove.
34 * src/parse-gram.y (%union): New field `character'.
35 Sort tokens.
36 (CHAR): New token.
37 (ID, ID_COLON): Now that the scanner no longer makes them
38 identifiers, adjust all uses to invoke symbol_get.
39 (id_colon): New, wraps the conversion from string to symbol.
40 (%union): Accept a possible union_name.
41 (symbol): Now can be a char.
42 * data/c.m4 (b4_union_name): Leave a default value.
43 * data/glr.c, data/yacc.c: Use it.
44
45 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
46
47 For associating token numbers with token names for "yacc.c", don't use
48 #define statements unless `--yacc' is specified; always use enum
49 yytokentype. Most important discussions start at:
50 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
51 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
52 and
53 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
54 * NEWS (2.3+): Mention.
55 * data/c.m4 (b4_yacc_if): New.
56 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
57 token #define's.
58 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
59 on token name definitions.
60 * src/getargs.c (usage): Capitalize `Yacc' in English.
61 * src/output.c (prepare): Define b4_yacc_flag.
62 * tests/regression.at (Early token definitions): Test that tokens names
63 are defined before the pre-prologue not just before the post-prologue.
64 Remove this test case and copy to...
65 (Early token definitions with --yacc): ... this to test #define's.
66 (Early token definitions without --yacc): ... and this to test enums.
67
68 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
69
70 * NEWS: Reword the post-2.3 change to not be so optimistic about
71 removing the old "look-ahead" spelling.
72 Update previous look-ahead/lookahead change reports.
73 * REFERENCES: look-ahead -> lookahead (since that's
74 what he actually wrote).
75 * doc/refcard.tex: look ahead -> lookahead,
76 look-ahead -> lookahead
77
78 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
79
80 For consistency, use `lookahead' instead of `look-ahead' or
81 `look_ahead'. Discussed starting at
82 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
83 and then at
84 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
85 * NEWS: For the next release, note the change to `--report'.
86 * TODO, doc/bison.1: Update English.
87 * doc/bison.texinfo: Update English.
88 (Understanding Your Parser, Bison Options): Document as
89 `--report=lookahead' rather than `--report=look-ahead'.
90 * src/conflicts.c: Update English in comments.
91 (lookahead_set): Rename from look_ahead_set.
92 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
93 (resolve_sr_conflict): Rename local look_ahead_tokens to
94 lookahead_tokens, and update other uses.
95 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
96 count_rr_conflicts, conflicts_free): Update uses.
97 * src/getargs.c (report_args): Move "lookahead" before alternate
98 spellings.
99 (report_types): Update uses.
100 (usage): For `--report' usage description, state `lookahead' spelling
101 rather than `look-ahead'.
102 * src/getargs.h (report.report_lookahead_tokens): Rename from
103 report_look_ahead_tokens.
104 * src/lalr.c: Update English in comments.
105 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
106 (state_lookahead_tokens_count): Rename from
107 state_look_ahead_tokens_count.
108 Rename local n_look_ahead_tokens to n_lookahead_tokens.
109 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
110 Rename local n_look_ahead_tokens to n_lookahead_tokens.
111 Update other uses.
112 Update English in output.
113 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
114 * src/print.c: Update English in comments.
115 (lookahead_set): Rename from look_ahead_set.
116 (print_reduction): Rename argument lookahead_token from
117 look_ahead_token.
118 (print_core, state_default_rule, print_reductions, print_results):
119 Update uses.
120 * src/print_graph.c: Update English in comments.
121 (print_core): Update uses.
122 * src/state.c: Update English in comments.
123 (reductions_new): Update uses.
124 (state_rule_lookahead_tokens_print): Rename from
125 state_rule_look_ahead_tokens_print, and update other uses.
126 * src/state.h: Update English in comments.
127 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
128 (state_rule_lookahead_tokens_print): Rename from
129 state_rule_look_ahead_tokens_print.
130 * src/tables.c: Update English in comments.
131 (conflict_row, action_row): Update uses.
132 * tests/glr-regression.at
133 (Incorrect lookahead during deterministic GLR,
134 Incorrect lookahead during nondeterministic GLR): Rename
135 print_look_ahead to print_lookahead.
136 * tests/torture.at: Update English in comments.
137 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
138 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
139 (Many lookahead tokens): Update uses.
140 * data/glr.c: Update English in comments.
141 * lalr1.cc: Likewise.
142 * yacc.c: Likewise.
143 * src/conflicts.h: Likewise.
144 * src/lalr.h: Likewise.
145 * src/main.c: Likewise.
146 * src/output.c: Likewise.
147 * src/parse-gram.c: Likewise.
148 * src/tables.h: Likewise.
149 * tests/calc.at: Likewise.
150
151 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
152
153 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
154
155 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
156
157 * TODO: Add request from Nelson H. F. Beebe to be able to install
158 Bison without installing the yacc script.
159
160 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
161
162 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
163 and yytext if they're already #define'd.
164 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
165 * src/scan-code-c.c: ... here.
166 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
167 <config.h>.
168
169 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
170
171 Get Bison to build again when configured with --enable-gcc-warnings.
172 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
173 missing #include's.
174 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
175 loc argument as it shadows a global.
176 * src/scan-gram.l: Remove stray comma that prevents boundary_set
177 invocation.
178
179 * src/.cvsignore: Add scan-code.c.
180
181 2006-06-07 Akim Demaille <akim@epita.fr>
182
183 * src/scan-gram.l: Move the "add a trailing ; to actions" code
184 to...
185 * src/scan-code.l: here.
186 * tests/input.at (Torturing the Scanner): Fix another location
187 error.
188
189 2006-06-07 Akim Demaille <akim@epita.fr>
190
191 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
192
193 2006-06-06 Akim Demaille <akim@epita.fr>
194
195 Extract the parsing of user actions from the grammar scanner.
196 As a consequence, the relation between the grammar scanner and
197 parser is much simpler. We can also split "composite tokens" back
198 into simple tokens.
199 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
200 * src/scan-gram.l (add_column_width, adjust_location): Move to and
201 rename as...
202 * src/location.h, src/location.c (add_column_width)
203 (location_compute): these.
204 Fix the column count: the initial column is 0.
205 (location_print): Be robust to ending column being 0.
206 * src/location.h (boundary_set): New.
207 * src/main.c: Adjust to scanner_free being renamed as
208 gram_scanner_free.
209 * src/output.c: Include scan-code.h.
210 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
211 Use boundary_set.
212 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
213 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
214 which is now, again, a separate token.
215 Adjust all dependencies.
216 Whereever actions with $ and @ are used, use translate_code.
217 (action): Remove this nonterminal which is now useless.
218 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
219 (grammar_current_rule_action_append): Use translate_code.
220 (packgram): Bound check ruleno, itemno, and rule_length.
221 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
222 (last_string, last_braced_code_loc, max_left_semantic_context)
223 (scanner_initialize, scanner_free, scanner_last_string_free)
224 (gram_out, gram_lineno, YY_DECL_): Move to...
225 * src/scan-gram.h: this new file.
226 (YY_DECL): Rename as...
227 (GRAM_DECL): this.
228 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
229 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
230 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
231 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
232 Move these declarations, and...
233 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
234 these to...
235 * src/flex-scanner.h: this new file.
236 * src/scan-gram.l (rule_length, rule_length_overflow)
237 (increment_rule_length): Remove.
238 (last_braced_code_loc): Rename as...
239 (gram_last_braced_code_loc): this.
240 Adjust to the changes of the parser.
241 Move all the handling of $ and @ into...
242 * src/scan-code.l: here.
243 * src/scan-gram.l (handle_dollar, handle_at): Remove.
244 (handle_action_dollar, handle_action_at): Move to...
245 * src/scan-code.l: here.
246 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
247 scan-code.h, scan-code-c.c, scan-gram.h.
248 (EXTRA_bison_SOURCES): Add scan-code.l.
249 (BUILT_SOURCES): Add scan-code.c.
250 (yacc): Be robust to white spaces.
251
252 * tests/conflicts.at, tests/input.at, tests/reduce.at,
253 * tests/regression.at: Adjust the column numbers.
254 * tests/regression.at: Adjust the error message.
255
256 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
257
258 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
259 Use Akim's wording from
260 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
261
262 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
263
264 Between Bison releases, manually append `+' to the previous Bison
265 release number, and use that as a signal to automatically print the
266 ChangeLog's CVS Id keyword from --version. Discussed starting at
267 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
268 * ChangeLog: Add Id header.
269 * configure.ac (AC_INIT): Append `+' to `2.3'.
270 * src/.cvsignore: Add revision.c.
271 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
272 (BUILT_SOURCES): Add revision.c.
273 (revision.c): New target rule. This file defines a new global variable
274 named revision. It initializes it with either the Id from ChangeLog
275 or, if VERSION doesn't contain `+', with the empty string.
276 * src/getargs.c (version): Print the value of revision.
277 * src/revision.h: Extern revision.
278
279 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
280
281 * NEWS: Version 2.3.
282 * configure.ac (AC_INIT): Likewise.
283
284 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
285
286 * data/glr.c (YYRECOVERING): Define to be a function-like macro
287 with no arguments, not as an object-like macro. This is for
288 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
289 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
290 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
291 Document this.
292
293 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
294
295 * src/getargs.c (usage): Back out yesterday's modification of the
296 --help output so that we don't have to wait for translation before
297 releasing 2.3.
298
299 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
300
301 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
302 Problem reported by Akim Demaille.
303
304 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
305
306 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
307
308 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
309
310 * data/yacc.c (yy_reduce_print): Omit trailing white space in
311 generated source code. Problem reported by Frans Englich in
312 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
313
314 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
315
316 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
317 shell, not within 'make', so that 'make' by an ordinary builder
318 (using GNU make) does not worry about configuring gzip. This also
319 works around a bug reported independently by Keith Thompson and by
320 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
321 stderr rather than stdout, messing up the build logs.
322
323 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
324
325 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
326 to make sure that YYID will never be unused. This fixes a 'make
327 maintainer-check' failure caused by the recent changes to the 'Trivial
328 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
329 not used.
330 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
331
332 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
333
334 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
335 state before an empty RHS is always resolved here. Only the location
336 of that state is guaranteed to be resolved, and that's enough. This
337 fixes the remaining bug reported by Derek M. Jones in
338 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
339 * tests/glr-regression.at (Uninitialized location when reporting
340 ambiguity): Test the above case.
341 Also, the embedded comments in this test case claim it checks the case
342 of an empty RHS that has inherited the initial location. However, the
343 corresponding LHS was already resolved, so yyresolveLocations didn't
344 actually have reason to modify it. Fix this by forcing
345 nondeterministic operation at the beginning of the parse.
346
347 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
348
349 * data/c.m4 (b4_yy_symbol_print_generate):
350 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
351 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
352 of the bugs reported today by Derek M Jones in
353 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
354 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
355 defined to be a type name without parens or brackets.
356 (Location Type): Similarly for YYLTYPE.
357 * tests/regression.at (Trivial grammars): Put in a test for this
358 bug that will be caught by 'make maintainer-check' (though not,
359 alas, by 'make check' unless your compiler is picky).
360
361 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
362
363 * NEWS: Version 2.2.
364 * configure.ac (AC_INIT): Likewise.
365
366 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
367
368 * data/glr.c (yyreportTree): Make room in yystates for the state
369 preceding the RHS. This fixes the segmentation fault reported by Derek
370 M. Jones in
371 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
372 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
373 to the user. Reported for yyreportTree by Derek M. Jones later in the
374 same thread.
375 * THANKS: Add Derek M. Jones.
376 Update my email address.
377 Fix typo in Steve Murphy's name.
378
379 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
380
381 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
382 checking against YYLAST that caused the parser to miss a potential
383 alternative in its diagnostic.
384 Problem reported by Maria Jose Moron Fernandez in
385 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
386 * data/lalr1.cc (yysyntax_error_): Likewise.
387 * data/yacc.c (yysyntax_error): Likewise.
388 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
389 tokens, in case we run into an older C compiler.
390 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
391 Use them to check for the off-by-one error fixed above.
392
393 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
394 YYSIZE_T, not size_t.
395 * tests/regression.at (Trivial grammars): New test, to catch
396 the error fixed by the above patch.
397
398 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
399
400 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
401 scheme.
402 Reported by Steve Murphy.
403
404 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
405
406 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
407 * data/glr.cc: b4_location_flag is now b4_locations_flag.
408
409 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
410
411 Implement --trace=m4.
412 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
413 * src/output.c (output_skeleton): When set, pass -dV to m4.
414
415 Factor the handling of flags in m4.
416 * src/output.c (prepare): Rename the muscle names debug, defines,
417 error_verbose to debug_flag, defines_flag, error_verbose_flag.
418 * data/c.m4: Adjust.
419 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
420 Use b4_define_flag_if to define other b4_FLAG_if macros.
421 (b4_location_if): As a consequence, rename as...
422 (b4_locations_if): this, for consistency.
423 Adjust all the skeletons.
424
425 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
426
427 * etc/bench.pm: Shorten bench names.
428
429 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
430
431 * src/output.h, src/output.c (error_verbose): Move to...
432 * src/getargs.h, src/getargs.c: here.
433 Sort the flags.
434 Adjust dependencies.
435
436 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
437
438 * data/c.m4 (b4_copyright): Put the special exception for Bison
439 skeletons here, so we don't have to put it in each skeleton. All
440 uses changed. Suggested by Akim Demaille. Also, wrap the
441 copyright notice, in case it is longer than 80 columns. Replace
442 comma by newline after title.
443
444 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
445
446 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
447 incompatibility, not a bug. Mention that it wasn't fixed as of
448 flex 2.5.33.
449
450 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
451
452 * examples/extexi: Enforce the precedence of concatenation over
453 >>.
454 Reported by Tommy Nordgren.
455
456 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
457
458 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
459 with the member "token".
460 Reported by Martin Nylin.
461
462 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
463
464 * data/glr.c: Switch to Bison 2.2 special-exception language in
465 the copyright notice. Use more-regular format for titles and
466 copyright notices.
467 * data/glr.cc: Likewise.
468 * data/location.cc: Likewise.
469 * data/yacc.cc: Likewise.
470 * doc/bison.texinfo (Conditions): Document this.
471 * NEWS: likewise. Upgrade version to 2.2.
472
473 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
474
475 * data/glr.cc: Remove dead code.
476
477 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
478
479 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
480 that variable and the line breaks the bootstrap. Problem reported
481 by Juan M. Guerrero.
482
483 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
484
485 * doc/bison.texinfo (Multiple start-symbols): New.
486
487 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
488
489 * etc/README, etc/bench.pl: New.
490
491 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
492
493 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
494 rule.
495 Reported by Mickael Labau.
496 * tests/input.at (Torturing the Scanner): Test it.
497
498 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
499
500 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
501 Problem reported by Bob Rossi.
502
503 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
504
505 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
506 and didn't really work.
507 For the index, use @ifnotinfo, not @iftex.
508 Minor cleanups of spacing and terminology.
509
510 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
511
512 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
513 of AT_NAME_PREFIX when %name-prefix is not used.
514
515 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
516
517 Apply --prefix to C++ skeletons too: they change the namespace.
518 The test suite already exercize these cases.
519 * data/c++.m4 (b4_namespace): New.
520 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
521 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
522 * data/yacc.c, data/glr.c: Remove a useless `[]'.
523 * doc/bison.texinfo: Document it.
524 (Option Cross Key): Use @multitable in all formats. It looks
525 nicer, even in TeX outputs.
526 (Rules): Use the same code whatever the output type is.
527 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
528 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
529 * tests/calc.at: Use it, instead of hard coding `yy'.
530
531 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
532
533 * TODO: Remove dead items.
534
535 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
536
537 * doc/FAQ: Remove, merged into...
538 * doc/bison.texinfo (FAQ): this.
539 * doc/Makefile.am (EXTRA_DIST): Adjust.
540
541 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
542
543 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
544 even if empty.
545 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
546 * doc/bison.texinfo (Calc++ Scanner): Use it.
547
548 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
549
550 Fix two nits reported by twlevo, plus one more that I discovered.
551
552 * src/assoc.h (assoc_to_string): Give a name to the arg, as
553 this is the usual Bison style.
554 * src/location.h (location_print): Likewise.
555
556 * src/reader.h (token_name): Likewise.
557
558 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
559
560 Fix some nits reported by twlevo.
561 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
562 and "POSIX". Use more-modern syntax for URLs. Mention C++
563 and ask for Java. Don't hardwire OS version numbers. Add
564 copyright notice.
565 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
566 * src/conflicts.c (solved_conflicts_obstack): Now static.
567
568 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
569
570 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
571 page. Say "you can use it" not "you may use it" as on the web page;
572 we're describing capabilities not granting permission.
573
574 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
575
576 * data/glr.c (yyresolveLocations): Rename local variables to avoid
577 shadowing warnings. Use usual patter for iterating through RHS.
578 * tests/glr-regression.at
579 (Uninitialized location when reporting ambiguity):
580 Modify yylex so that it uses its argument, rather than trying
581 to rely on ARGSUSED (which doesn't work for gcc with warnings).
582 const char -> char const.
583
584 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
585 Don't use tabs inside commands; it messes up 'ps'.
586 Problem reported by twlevo.
587
588 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
589
590 * tests/glr-regression.at (Uninitialized location when reporting
591 ambiguity): New test case.
592 * data/glr.c (yyresolveLocations): New function, which uses
593 YYLLOC_DEFAULT.
594 (yyresolveValue): Invoke yyresolveLocations before reporting an
595 ambiguity.
596 * doc/bison.texinfo (Default Action for Locations): Note
597 YYLLOC_DEFAULT's usage for ambiguity locations.
598 (GLR Semantic Actions): Cross-reference those notes.
599
600 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
601
602 * tests/glr-regression.at (Leaked semantic values when reporting
603 ambiguity): Remove unnecessary union and type declarations.
604 (Leaked lookahead after nondeterministic parse syntax error): New test
605 case.
606 * data/glr.c (yyparse): Check for zero stacks remaining before
607 attempting to shift the lookahead so that you don't lose it.
608
609 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
610
611 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
612 * tests/glr-regression.at (Leaked semantic values when reporting
613 ambiguity): New test case.
614 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
615 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
616 now unnecessary yystackp parameter.
617 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
618 destructors can be called.
619
620 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
621 in existing testcases.
622
623 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
624
625 Don't leak semantic values for parent RHS when a user action cuts the
626 parser, and clean up related code a bit.
627 * tests/glr-regression.at (Leaked merged semantic value if user action
628 cuts parse): Rename to...
629 (Leaked semantic values if user action cuts parse): ... this. Add check
630 for leaked parent RHS values.
631 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
632 between an unresolved state (non-empty chain of semantic options) and
633 an incomplete one (signaled by an empty chain).
634 (yyresolveStates): Document the interface. Move all manipulation of a
635 successfully or unsuccessfully resolved yyGLRState to...
636 (yyresolveValue): ... here so that yyresolveValue always leaves a
637 yyGLRState with consistent data and thus is easier to understand.
638 Remove the yyvalp and yylocp parameters since they are always just
639 taken from the yys parameter. When reporting a discarded merged value
640 in debugging output, note that it is incompletely merged. Document the
641 interface.
642 (yyresolveAction): If resolving any of the RHS states fails, destroy
643 them all rather than leaking them. Thus, as long as user actions are
644 written to clean up the RHS correctly, yyresolveAction always cleans up
645 the RHS of a semantic option. Document the interface.
646
647 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
648
649 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
650 led to a segmentation fault in GNU Pascal. Problem reported
651 by Waldek Hebisch.
652
653 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
654
655 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
656 mid-rule action inside a nonterminal symbol in order to declare a
657 destructor for its semantic value.
658
659 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
660
661 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
662 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
663 __cplusplus && ! defined _STDLIB_H && !
664 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
665 defined free))]: Include <stdlib.h> rather than rolling our own
666 declarations of malloc and free, to avoid problems with
667 incompatible declarations (using 'throw') C++'s stdlib.h. This
668 should fix Debian bug 340012
669 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
670 reported by Guillaume Melquiond.
671
672 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
673
674 * NEWS: Clarify symbols versus types in unused-value warnings.
675
676 * configure.ac (AC_INIT): Bump version number.
677
678 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
679
680 * NEWS: Version 2.1a.
681 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
682 since C99 requires this.
683
684 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
685
686 * m4/c-working.m4: New file.
687 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
688
689 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
690
691 * Makefile.maint: Merge from coreutils.
692
693 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
694
695 More portability fixes for problems summarized by Nelson H. F. Beebe.
696
697 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
698 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
699 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
700 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
701 messes up because C++ code is compiled in 32-bit mode but linked
702 in 64-bit mode.
703
704 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
705
706 More portability fixes for problems summarized by Nelson H. F. Beebe.
707
708 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
709 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
710
711 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
712 nodist_PROGRAMS, since we don't need to actually compile the
713 example if we're just doing a plain 'make'. This avoids bothering
714 the installer unnecessarily about problems due to weird C++
715 compilers.
716
717 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
718
719 More portability fixes for problems summarized by Nelson H. F. Beebe.
720
721 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
722 than #include "...", and compile with -I'.'. The old method was
723 not portable, according to Posix and the C standard, and it does
724 not work with Sun C 5.7, where previous #line directives affect
725 the working directory used in later #include "..." directives.
726
727 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
728
729 Various DJGGP specific issues in /djgpp
730
731 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
732
733 More portability fixes for problems summarized by Nelson H. F. Beebe.
734
735 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
736 '#include <map>' works and that you can apply ++ to iterators.
737
738 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
739
740 Work around portability problems summarized by Nelson H. F. Beebe in
741 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
742
743 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
744 that '#include <string>' works.
745
746 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
747 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
748 "warning: sorry: semantics of inline function static data `const
749 unsigned char translate_table[262]' are wrong (you'll wind up with
750 multiple copies)".
751
752 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
753 or, xor to not_, and_, or_, and xor_, respectively. This works
754 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
755 random system header somewhere that includes the equivalent of
756 <iso646.h>.
757
758 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
759 -E" works; it apparently doesn't work with PathScale EKO Compiler
760 Suite Version 2.0.
761
762 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
763
764 During deterministic GLR operation, user actions should be able to
765 influence the parse by changing yychar. To make this easier to fix and
766 to make glr.c easier to evolve in general, don't maintain yytoken in
767 parallel with yychar; just compute yytoken when needed.
768 * tests/glr-regression.at (Incorrect lookahead during deterministic
769 GLR): Check that setting yychar in a user action has the intended
770 effect.
771 * data/glr.c (yyGLRStack): Remove yytokenp member.
772 (yyclearin): Don't set *yytokenp.
773 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
774 yychar rather than *yytokenp to determine the current lookahead.
775 Compute yytoken locally when needed.
776 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
777 point to.
778
779 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
780 after `--report' documentation.
781
782 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
783
784 * src/parse-gram.y (grammar_declaration): Location of printer
785 symbol is @1, not list->location. Bug reported by twlevo.
786 * tests/input.at (Incompatible Aliases): Adjust to above change.
787
788 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
789
790 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
791 all the test at once. This makes the output easier to read in the
792 normal case.
793
794 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
795 got from <http://bro-ids.org/download.html>. The bug is that
796 when two actions appeared in succession, the second one was
797 scanned before the first one was added to the grammar rule
798 as a midrule action. Bison then output the incorrect warning
799 "parse.y:905.17-906.36: warning: unused value: $3".
800 * src/parse-gram.y (BRACED_CODE, action): These are no longer
801 associated with a value.
802 (rhs): Don't invoke grammar_current_rule_action_append.
803 (action): Invoke it here instead.
804 * src/reader.c (grammar_midrule_action): Now extern.
805 (grammar_current_rule_action_append): Don't invoke
806 grammar_midrule_action; that is now the scanner's job.
807 * src/reader.h (last_string, last_braced_code_loc):
808 (grammar_midrule_action): New decls.
809 * src/scan-gram.l (last_string): Now extern, sigh.
810 (last_braced_code_loc): New extern variable.
811 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
812 rule already has an action.
813 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
814 * tests/input.at (AT_CHECK_UNUSED_VALUES):
815 Add some tests to check that the above changes fixed the bug.
816
817 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
818
819 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
820 All used changed. Check whether the symbol has a destructor,
821 not whether it is typed.
822 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
823 that the values are still reported as unused. All line numbers
824 adjusted.
825
826 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
827
828 Work around a bug in bro 0.8, which underparenthesizes its
829 definition of YYLLOC_DEFAULT.
830 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
831 their arguments.
832 * data/lalr1.cc: Likewise.
833 * data/yacc.cc: Likewise.
834
835 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
836
837 Work around a bug in Pike 7.0, and give the Pike folks a
838 better way to override the usual int widths.
839 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
840 user can override the types.
841 (short): #undef, to work around a bug in Pike 7.0.
842 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
843 (union yyalloc.yyss): Use yytype_int16 rather than short.
844 All uses changed.
845 (yysigned_char): Remove.
846 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
847 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
848 * tests/regression.at (Web2c Actions): Adjust to above changes.
849
850 * src/reader.c (check_and_convert_grammar): New function.
851 (reader): Close the input file even if something went wrong during
852 parsing. Minor file descriptor leak reported by twlevo.
853
854 * src/assoc.c (assoc_to_string): Use a default: abort (); case
855 to pacify gcc -Wswitch-default.
856 * src/scan-gram.l (adjust_location): Use a default: break; case
857 to pacify gcc -Wswitch-default.
858 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
859 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
860 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
861 Move these decls to scan-skel.l, since they don't need to be
862 visible elsewhere.
863 * src/scan-skel.l: Accept the above decls.
864 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
865 is used.
866
867 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
868
869 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
870 since we don't want to insist on a version number at the start
871 of the changelog every time.
872 * Makefile.maint: Sync from coreutils a bit better.
873 (sc_trailing_blank): Renamed from sc_trailing_space.
874 All uses changed.
875 (sc_no_if_have_config_h, sc_require_config_h):
876 (sc_prohibit_assert_without_use): New rules.
877 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
878 (sc_dd_max_sym_length): Fix leading spaces in rule.
879 (sc_system_h_headers): Prefix with @.
880 (sc_useless_cpp_parens, m4-check): Output line numbers.
881 (changelog-check): Allow version only in head.
882 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
883 satisfy new Makefile.maint rule.
884 * data/glr.c: Likewise.
885 * data/glr.cc: Likewise.
886 * data/lalr1.cc: Likewise.
887 * data/yacc.c: Likewise.
888 * lib/ebitsetv.c: Likewise.
889 * lib/lbitset.c: Likewise.
890 * lib/subpipe.c: Likewise.
891 * lib/timevar.c: Likewise.
892 * src/system.h: Likewise.
893 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
894 * djgpp/Makefile.maint: Add copyright notice.
895 * djgpp/README.in: Likewise.
896 * djgpp/config.bat: Likewise.
897 * djgpp/config.site: Likewise.
898 * djgpp/config_h.sed: Likewise.
899 * djgpp/djunpack.bat: Likewise.
900 * djgpp/config.sed: Fix copyright notice to match standard format.
901 * djgpp/subpipe.h: Likewise.
902 * lib/bitsetv-print.c: Likewise.
903 * lib/bitsetv.c: Likewise.
904 * lib/subpipe.h: Likewise.
905 * lib/timevar.c: Likewise.
906 * lib/timevar.h: Likewise.
907 * djgpp/subpipe.c: Use standard recipe for config.h.
908 * lib/abitset.c: Likewise.
909 * lib/bitset.c: Likewise.
910 * lib/bitset_stats.c: Likewise.
911 * lib/bitsetv-print.c: Likewise.
912 * lib/bitsetv.c: Likewise.
913 * lib/ebitsetv.c: Likewise.
914 * lib/get-errno.c: Likewise.
915 * lib/lbitset.c: Likewise.
916 * lib/subpipe.c: Likewise.
917 * lib/timevar.c: Likewise.
918 * lib/vbitset.c: Likewise.
919 * tests/local.at: Likewise.
920 * src/scan-gram.l: Don't include verify.h, since system.h does
921 that for us.
922 * .x-sc_require_config_h: New file.
923 * .x-sc_unmarked_diagnostics: New file.
924
925 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
926
927 Be a bit more systematic about using 'abort'.
928 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
929 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
930 Put 'default: abort ();' before some other case, to satisfy older
931 pedantic compilers.
932 * lib/bitset_stats.c (bitset_stats_init): Likewise.
933 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
934 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
935 * src/conflicts.c (resolve_sr_conflict): Likewise.
936 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
937 (get_decision_str, get_orientation_str, get_node_alignment_str):
938 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
939 (get_linestyle_str, get_arrowstyle_str): Likewise.
940 * src/conflicts.c (resolve_sr_conflict):
941 Use a default case rather than one for the one remaining enum
942 value, to catch invalid enum values as well.
943 * src/lalr.c (set_goto_map, map_goto):
944 Prefer "assert (FOO);" to "if (!FOO) abort ();".
945 * src/nullable.c (nullable_compute, token_definitions_output):
946 Likewise.
947 * src/reader.c (packgram, reader): Likewise.
948 * src/state.c (transitions_to, state_new, state_reduction_find):
949 Likewise.
950 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
951 (symbol_pack): Likewise.
952 * src/tables.c (conflict_row, pack_vector): Likewise.
953 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
954 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
955 * src/system.h: Don't include <assert.h>.
956 (assert): New macro.
957
958 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
959 (Destructor Decl, Parser Function, Pure Calling):
960 Describe rules for braces inside C code more carefully.
961
962 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
963
964 Fix some porting glitches found by Nelson H. F. Beebe.
965 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
966 compilers that don't understand that abort () does not return.
967 * src/state.c (transitions_to): Likewise.
968 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
969 that '#include <cstdlib>' works.
970 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
971 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
972 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
973 for the benefit of some pre-C99 compilers.
974
975 * bootstrap: Undo changes to gnulib files that autoreconf made.
976
977 Minor fixups to get 'make maintainer-check' to work.
978 * configure.ac: Don't use -Wnested-externs, as it's incompatible
979 with the new verify.h implementation.
980 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
981 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
982 * data/yacc.c (YYUSE): Likewise.
983 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
984 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
985 * src/parse-gram.y (declaration): Don't pass a string constant
986 to a function that expects char *, since GCC might complain
987 about the constant value.
988 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
989 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
990 before #defining them.
991 * tests/glr-regression.at
992 (Incorrectly initialized location for empty right-hand side in GLR):
993 In yyerror, use the msg arg.
994 (Corrupted semantic options if user action cuts parse):
995 (Incorrect lookahead during deterministic GLR):
996 (Incorrect lookahead during nondeterministic GLR):
997 Don't name a local var 'index'; it shadows string.h's 'index'.
998
999 2006-01-19 Akim Demaille <akim@epita.fr>
1000
1001 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
1002 location, not just parts of it.
1003
1004 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
1005
1006 * NEWS: Document the fact that multiple %unions are now allowed.
1007 * doc/bison.texinfo (Union Decl): Likewise.
1008 * TODO: This feature is now implemented, so remove it from
1009 the wishlist.
1010
1011 * Makefile.maint: Merge with coreutils Makefile.maint.
1012 (CVS_LIST): Use build-aux version if available.
1013 (VERSION_REGEXP): New macro.
1014 (syntax-check-rules): Add sc_no_if_have_config_h,
1015 sc_prohibit_assert_without_use, sc_require_config_h,
1016 sc_useless_cpp_parens.
1017 (sc_obsolete_symbols): Check for O_NDELAY.
1018 (sc_dd_max_sym_length): Track coreutils.
1019 (sc_unmarked_diagnostics): Look in all files, not just *.c.
1020 (sc_useless_cpp_parens): New rule.
1021 (news-date-check): Look for version or today's date.
1022 (changelog-check): Don't require version number near head.
1023 (copyright-check): Use current year instead of hardwiring 2005.
1024 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
1025 (announcement): Add --gpg-key-ID.
1026
1027 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
1028 with "file system".
1029
1030 Avoid undefined behavior that addressed just before the start of an
1031 array. Problem reported by twlevo.
1032 * src/reader.c (packgram): Prepend a new sentinel before ritem.
1033 * src/lalr.c (build_relations): Rely on new sentinel.
1034 * src/gram.c (gram_free): Adjust to new sentinel.
1035
1036 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
1037
1038 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
1039 yylookaheadNeeds. All uses updated.
1040 (yysplitStack): Rename local yynewLookaheadStatuses to
1041 yynewLookaheadNeeds.
1042 * data/glr-regression.at (Incorrect lookahead during nondeterministic
1043 GLR): In comments, change `lookahead status' to `lookahead need'.
1044
1045 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1046
1047 * data/glr.c (yysplitStack): A little stylistic rewrite.
1048
1049 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1050
1051 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
1052
1053 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
1054
1055 * doc/bison.texinfo: Fix some typos.
1056 (GLR Semantic Actions): New subsection discussing special
1057 considerations because GLR semantic actions might be deferred.
1058 (Actions): Mention look-ahead usage of yylval.
1059 (Actions and Locations): Mention look-ahead usage of yylloc.
1060 (Special Features for Use in Actions): Add YYEOF entry and mention it
1061 in the yychar entry.
1062 In the yychar entry, remove mention of the local yychar case (pure
1063 parser) since this is irrelevant information when writing semantic
1064 actions and since it's already discussed in `Bison Symbols' where
1065 yychar is otherwise described as an external variable.
1066 In the yychar entry, don't call it the `current' look-ahead since it
1067 isn't when semantic actions are deferred.
1068 In the yychar and yyclearin entries, add note about deferred semantic
1069 actions.
1070 Add yylloc and yylval entries discussing look-ahead usage.
1071 (Look-Ahead Tokens): When discussing yychar, don't call it the
1072 `current' look-ahead, and do mention yylval and yylloc.
1073 (Error Recovery): Cross-reference `Action Features' when mentioning
1074 yyclearin.
1075 (Bison Symbols): In the yychar entry, don't call it the `current'
1076 look-ahead.
1077 In the yylloc and yylval entries, mention look-ahead usage.
1078
1079 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
1080
1081 * tests/glr-regression.at: Update copyright year to 2006.
1082
1083 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1084
1085 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
1086 use during nondeterministic operation to track which stacks have
1087 actually needed the current lookahead.
1088 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
1089 Allocate, deallocate, resize, and otherwise shuffle space for
1090 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
1091 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
1092 appropriately during nondeterministic operation.
1093 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
1094 members to store the current lookahead to be used by the deferred
1095 user action.
1096 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
1097 from which the RHS is taken. Set the lookahead members of the new
1098 yySemanticOption according to the lookahead status for stack yyk.
1099 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
1100 yyaddDeferredAction.
1101 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
1102 members of yySemanticOption before invoking yyuserAction, and then set
1103 them back to their current values afterward.
1104 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
1105 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
1106 * tests/glr-regression.at: Remove `.' from the ends of recent test case
1107 titles for consistency.
1108 (Leaked merged semantic value if user action cuts parse): In order to
1109 suppress lint warnings, use arguments in merge function, and assign
1110 char value < 128 in main.
1111 (Incorrect lookahead during deterministic GLR): New test case.
1112 (Incorrect lookahead during nondeterministic GLR): New test case.
1113
1114 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1115
1116 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
1117 !yyvaluep as signal that no semantic value is available to print.
1118 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
1119 to print a semantic value.
1120
1121 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1122
1123 * tests/glr-regression.at: For consistency with my newer test cases,
1124 don't thank myself.
1125
1126 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
1127
1128 * data/glr.c (yyresolveValue): When merging semantic options, if at
1129 least one user action succeeds but a later one cuts the parse, then
1130 destroy the semantic value before returning rather than leaking it.
1131 (yyresolveStates): If a user action cuts the parse and thus
1132 yyresolveValue fails, ignore the (unset) semantic value rather than
1133 corrupting the yyGLRState, and empty the semantic options list since
1134 the user actions should have called all necessary destructors.
1135 Simplify code with YYCHK.
1136 * tests/glr-regression.at (Corrupted semantic options if user action
1137 cuts parse): New test case.
1138 (Undesirable destructors if user action cuts parse): New test case.
1139 Before applying any of this patch, this test case never actually failed
1140 for me... but only because the corrupted semantic options usually
1141 masked this bug.
1142 (Leaked merged semantic value if user action cuts parse): New test
1143 case.
1144
1145 2006-01-05 Akim Demaille <akim@epita.fr>
1146
1147 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
1148
1149 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
1150
1151 * data/c.m4 (b4_c_modern): New macro, with a new provision for
1152 _MSC_VER. Problem reported by Cenzato Marco.
1153 (b4_c_function_def): Use it.
1154 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
1155 b4_c_modern.
1156 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
1157 than rolling our own.
1158
1159 2006-01-04 Akim Demaille <akim@epita.fr>
1160
1161 Also warn about non-used mid-rule values.
1162 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
1163 member.
1164 (symbol_list_new): Adjust.
1165 * src/reader.c (symbol_typed_p): New.
1166 (grammar_rule_check): Use it.
1167 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
1168 Check its rule.
1169 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
1170 Use it.
1171 * tests/actions.at (Exotic Dollars): Adjust.
1172
1173 2006-01-04 Akim Demaille <akim@epita.fr>
1174
1175 * src/reader.c (grammar_midrule_action): If $$ is set in a
1176 mid-rule, move the `used' bit to its lhs.
1177 * tests/input.at (Unused values): New.
1178 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
1179
1180 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
1181
1182 * doc/bison.texinfo (Bison Options): Say more accurately what
1183 --yacc does.
1184 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
1185 about declarations in the grammar when in Yacc mode, as POSIX does
1186 not require a diagnostic when the grammar uses extensions.
1187
1188 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
1189
1190 Warn about dubious constructions like "%token T T".
1191 Reported by twlevo.
1192 * src/symtab.h (struct symbol.declared): New member.
1193 * src/symtab.c (symbol_new): Initialize it to false.
1194 (symbol_class_set): New arg DECLARING, specifying whether
1195 this is a declaration that we want to warn about, if there
1196 is more than one of them. All uses changed.
1197
1198 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
1199 Allow multiple %union directives, whose contents concatenate.
1200 * src/parse-gram.y (grammar_declaration): Likewise.
1201 Use muscle_code_grow, so that we don't need stype_line any more.
1202 All uses changed.
1203
1204 * src/muscle_tab.c (muscle_grow): Fix comment.
1205
1206 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
1207 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
1208 Update copyright year to 2006.
1209
1210 2006-01-03 Akim Demaille <akim@epita.fr>
1211
1212 Have glr.cc pass (some of) the calc.at tests.
1213 * data/glr.cc (b4_parse_param_orig): New.
1214 (b4_parse_param): Improve its definition, and bound it more
1215 clearly in the skeleton.
1216 (b4_epilogue): Append, instead of prepending, in order to keep
1217 #line consistency.
1218 Simplify the generation of auxiliary functions: locations and
1219 purity are mandated.
1220 (b4_global_tokens_and_yystype): Honor it.
1221 * data/location.cc (c++.m4): Don't include it.
1222 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
1223 and AT_SKEL_CC_IF.
1224 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
1225 AT_LALR1_CC_IF.
1226 Be sure to initialize the first position's filename.
1227 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
1228 mandated anyway.
1229 (AT_CHECK_CALC_GLR_CC): New.
1230 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
1231
1232 2006-01-02 Akim Demaille <akim@epita.fr>
1233
1234 * src/output.c (output_skeleton): Don't hard wire the inclusion of
1235 c.m4.
1236 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
1237 * data/glr.cc: Do not include stack.hh.
1238
1239 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
1240
1241 * data/glr.c: Reformat whitespace with tabs.
1242 (b4_lpure_formals): Remove this unused m4 macro.
1243 * tests/cxx-type.at: Reformat whitespace with tabs.
1244 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
1245 since it's a member. Rename type to isNterm for clarity.
1246
1247 2005-12-29 Akim <akim@sulaco.local>
1248
1249 Let glr.cc catch up with symbol_value_print.
1250 * data/glr.cc (b4_yysymprint_generate): Replace by...
1251 (b4_yy_symbol_print_generate): this.
1252 (yy_symbol_print, yy_symbol_value_print): Declare them.
1253
1254 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
1255
1256 * src/location.h (boundary): Note that a line or column equal
1257 to INT_MAX indicates an overflow.
1258 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
1259 (rule_length_overflow, increment_rule_length, add_column_width):
1260 New functions.
1261 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
1262 (<SC_BRACED_CODE>"}"):
1263 Use increment_rule_length rather than incrementing it by hand.
1264 (adjust_location, handle_syncline): Diagnose overflow.
1265 (handle_action_dollar, handle_action_at):
1266 Fix bug with monstrosities like $-2147483648.
1267 Remove now-unnecessary checks.
1268 (scan_integer): Verify assumptions and remove now-unnecessary checks.
1269 (convert_ucn_to_byte): Verify assumptions.
1270 (handle_syncline): New arg LOC. All callers changed.
1271 Don't store through a value derived from char const * pointer.
1272
1273 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
1274 GCC warnings.
1275
1276 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
1277
1278 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
1279 Remove unnecessary forward static decls.
1280
1281 2005-12-27 Akim Demaille <akim@epita.fr>
1282
1283 * src/reader.c (grammar_current_rule_check): Also check that $$
1284 is used.
1285 Take the rule to check as argument, hence rename as...
1286 (grammar_rule_check): this.
1287 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
1288 Rename as...
1289 (grammar_rule_begin, grammar_rule_end): these, for consistency.
1290 (grammar_midrule_action, grammar_symbol_append): Now static.
1291 * tests/torture.at (input): Don't rely on the default action
1292 being always performed.
1293 * tests/calc.at: "Set" $$ even when the action is "cut" with
1294 YYERROR or other.
1295 * tests/actions.at (Exotic Dollars): Instead of using unused
1296 values, check that the warning is issued.
1297
1298 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
1299
1300 * NEWS: Improve wording for unused-value warnings.
1301
1302 2005-12-22 Akim Demaille <akim@epita.fr>
1303
1304 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
1305 (b4_yysymprint_generate): Rename as...
1306 (b4_yy_symbol_print_generate): this.
1307 Generate yy_symbol_print instead of yysymprint.
1308 Generate also yy_symbol_value_print, and use it.
1309
1310 2005-12-22 Akim Demaille <akim@epita.fr>
1311
1312 * NEWS: Warn about unused values.
1313 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
1314 a `used' member.
1315 (symbol_list_n_get, symbol_list_n_used_set): New.
1316 (symbol_list_n_type_name_get): Use symbol_list_n_get.
1317 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
1318 * src/reader.c (grammar_current_rule_check): Check that values are
1319 used.
1320 * src/symtab.c (symbol_print): Accept 0.
1321 * tests/existing.at: Remove the type information.
1322 Empty the actions.
1323 Remove useless actions (beware of mid-rule actions: perl -000
1324 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
1325 * tests/actions.at (Exotic Dollars): Use unused values.
1326 * tests/calc.at: Likewise.
1327 * tests/glr-regression.at (No users destructors if stack 0 deleted):
1328 Likewise.
1329
1330 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
1331 rule_useful_p.
1332
1333 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
1334
1335 Undo 2005-12-01 tentative license wording change. The wording is
1336 still being reviewed by the lawyers, and we don't want to wait for
1337 them before publishing a test release. For now, revert to the
1338 previous wording.
1339 * NEWS: Undo 2005-12-01 change.
1340 * data/glr.c: Revert to previous license wording.
1341 * data/glr.cc: Likewise.
1342 * data/lalr1.cc: Likewise.
1343 * data/location.cc: Likewise.
1344 * data/yacc.c: Likewise.
1345
1346 * NEWS: Reword %destructor vs YYABORT etc.
1347 * data/glr.c: Use American spacing, for consistency.
1348 * data/glr.cc: Likewise.
1349 * data/lalr1.cc: Likewise.
1350 * data/yacc.c: Likewise.
1351 * data/yacc.c: Reformat comments slightly.
1352 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
1353 for consistency. Fix some spelling errors and reword recently-included
1354 text slightly.
1355 * tests/cxx-type.at: Cast results of malloc, for C++.
1356
1357 2005-12-21 Joel E. Denny <address@hidden>
1358
1359 * tests/cxx-type.at: Construct a tree, count the parents of shared
1360 nodes, and free each node once and only once. Previously, the memory
1361 for semantic values was leaked instead.
1362
1363 2005-12-21 Joel E. Denny <address@hidden>
1364
1365 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
1366 (yylval, yylloc): If pure, #define to yystackp->yyval and
1367 yystackp->yyloc similar to yychar and yynerrs.
1368 (yyparse): If pure, remove local yylval and yylloc. Add local
1369 yystackp to accommodate pure definitions of yylval and yylloc.
1370 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
1371 yylvalp and yyllocp to &yylval and &yylloc.
1372 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
1373 namespace. Previously, nerrs and char were missing, but lval and lloc
1374 weren't necessary.
1375 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
1376 yylvalp and yyllocp parameters since, if pure, these are now always
1377 accessible through yystackp. If not pure, they are still accessible
1378 globally.
1379 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
1380 `if (YYID (N))' to pacify lint.
1381
1382 2005-12-21 Akim Demaille <akim@epita.fr>
1383
1384 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
1385 destroy the RHS symbols of a rule.
1386 * data/yacc.c (yylen): Initialize to 0.
1387 Keep its value to the number of items to possibly shift.
1388 In particular, a regular successful parse that ends on YYFINAL by
1389 a (internal) YYACCEPT must not have yylen != 0.
1390 (yyerrorlab, yyreturn): Pop the RHS.
1391 Reorder a bit to emphasize the `shifting' bits of code.
1392 (YYPOPSTACK): Now accept a number of items to pop.
1393 * data/lalr1.cc: Likewise.
1394 * data/glr.c: Formatting changes.
1395 Use goto instead of fall through.
1396 * doc/bison.texinfo (Destructor Decl): Complete.
1397
1398 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1399
1400 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
1401 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
1402 * djgpp/config.bat: Replace every occurence of the file name
1403 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
1404 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
1405 * djgpp/config.sed: Replace every occurence of the file name
1406 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
1407 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
1408 * djgpp/djunpack.bat: DJGPP specific file.
1409 * djgpp/fnchange.lst: DJGPP specific file.
1410 * djgpp/README.in: Add new information about how to unpack the bison
1411 source on MSDOS and other systems which have 8.3 file name restrictions
1412 using djunpack.bat and fnchange.lst.
1413
1414 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
1415
1416 * bootstrap (build_cvs_prefix): Remove; unused.
1417 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
1418 when getting gnulib.
1419
1420 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
1421
1422 * data/glr.c: Reorder typedef declarations for structs to match order
1423 of struct declarations.
1424 Rename yystack everywhere to yystackp except in yyparse where it's not
1425 a pointer.
1426 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
1427 consistency.
1428 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
1429 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
1430 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
1431 lint.
1432
1433 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
1434
1435 * tests/sets.at (Accept): Fix typos in regular expression used to
1436 sed out the final state number.
1437
1438 Work around portability problem on Solaris 10: flex-generated
1439 files include <stdio.h> before <config.h>, which messes up
1440 because the latter defines __EXTENSIONS__. Address the problem
1441 by creating two new little files that include <config.h> first,
1442 then include the flex-generated files. Rewrite everyone else
1443 to include <config.h> first, as well.
1444 * lib/timevar.c: Always include "config.h".
1445 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
1446 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
1447 (EXTRA_bison_SOURCES): New macro.
1448 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
1449 * src/system.h: Don't include config.h.
1450 * src/LR0.c: Include <config.h> first.
1451 * src/assoc.c: Likewise.
1452 * src/closure.c: Likewise.
1453 * src/complain.c: Likewise.
1454 * src/conflicts.c: Likewise.
1455 * src/derives.c: Likewise.
1456 * src/files.c: Likewise.
1457 * src/getargs.c: Likewise.
1458 * src/gram.c: Likewise.
1459 * src/lalr.c: Likewise.
1460 * src/location.c: Likewise.
1461 * src/main.c: Likewise.
1462 * src/muscle_tab.c: Likewise.
1463 * src/nullable.c: Likewise.
1464 * src/output.c: Likewise.
1465 * src/parse-gram.y: Likewise.
1466 * src/print.c: Likewise.
1467 * src/print_graph.c: Likewise.
1468 * src/reader.c: Likewise.
1469 * src/reduce.c: Likewise.
1470 * src/relation.c: Likewise.
1471 * src/state.c: Likewise.
1472 * src/symlist.c: Likewise.
1473 * src/symtab.c: Likewise.
1474 * src/tables.c: Likewise.
1475 * src/uniqstr.c: Likewise.
1476 * src/vcg.c: Likewise.
1477
1478 * src/parse-gram.y: Fix minor problems uncovered by lint.
1479 (current_lhs, current_lhs_location): Now static.
1480 (current_assoc): Remove unused variable.
1481
1482 Cleanups so that Bison-generated parsers have less lint.
1483 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
1484 Prepend /*ARGSUSED*/, for lint's sake.
1485 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
1486 definition if 'lint' is defined.
1487 (YYID): New macro (or function, if lint).
1488 All uses of /*CONSTCOND*/0 replaced by YYID(0).
1489 * data/yacc.c: Likewise.
1490 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
1491 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
1492 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
1493 is C++ only.
1494 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
1495 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
1496 Use YYID(0) rather than 0, for lint.
1497 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
1498 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
1499
1500 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
1501
1502 * tests/glr-regression.at
1503 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
1504 Close memory leak reported by twlevo.
1505
1506 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
1507
1508 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
1509 all stacks.
1510 (yyparse): Iterate another stack in order to call user destructors.
1511 * tests/glr-regression.at (No users destructors if stack 0 deleted):
1512 New test case.
1513 (Duplicated user destructor for lookahead): This test now is expected
1514 to succeed.
1515
1516 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
1517
1518 * NEWS: Document the following change.
1519 * data/yacc.c: Say "parser skeleton" rather than "file", since
1520 it's no longer just a file.
1521 * data/glr.c: Grant a special exception for C GLR parsers, that
1522 reads like the already-existing exception for C LALR(1) parsers.
1523 * data/glr.cc: Likewise.
1524 * data/lalr1.cc: Likewise.
1525 * data/location.cc: Likewise.
1526 * data/yacc.c: Reword the "written by" statement to clarify that
1527 it was the parser skeleton, not the entire output file.
1528 * data/glr.c: Written by Paul Hilfinger.
1529 * data/glr.cc: Written by Akim Demaille.
1530 * data/lalr1.cc: Likewise.
1531
1532 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
1533
1534 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
1535 Fix typos in previous change that broke 'make check'.
1536 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
1537 supported in C.
1538 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
1539 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
1540 We can revert this once things settle down.
1541
1542 * src/conflicts.c (conflicts_print): Don't print file name twice
1543 when %expect fails because there were no conflicts.
1544 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
1545 change.
1546 * tests/conflicts.at (%expect not enough, %expect too much):
1547 (%expect with reduce conflicts): Adjust to new behavior.
1548
1549 2005-11-18 Akim Demaille <akim@epita.fr>
1550
1551 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
1552 errors.
1553 * NEWS: Document this.
1554 * doc/bison.texinfo (Expect Decl): Likewise.
1555
1556 2005-11-16 Akim Demaille <akim@epita.fr>
1557
1558 Generalize the display of semantic values and locations in traces.
1559 * data/glr.c (yy_reduce_print): Fix indices (again).
1560 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
1561 literal integers.
1562 * data/lalr1.cc (yyreduce_print): Rename as...
1563 (yy_reduce_print): this.
1564 Display values and locations.
1565 * data/yacc.c (yy_reduce_print): Likewise.
1566 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
1567 (yysymprint): Move higher to be visible from yy_reduce_print).
1568 (yyparse): Adjust.
1569 * tests/calc.at: Adjust the expected length of the traces.
1570
1571 2005-11-14 Akim Demaille <akim@epita.fr>
1572
1573 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
1574 from 1 to N, while values and location start at 0.
1575 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
1576
1577 2005-11-14 Akim Demaille <akim@epita.fr>
1578
1579 * data/glr.c (yy_reduce_print): Fix the $ number.
1580
1581 2005-11-14 Akim Demaille <akim@epita.fr>
1582
1583 "Use" parse parameters.
1584 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
1585 * data/glr.c, data/glr.cc: Use them.
1586 * data/glr.c (YYUSE): Have a C++ definition that supports
1587 non-pointer types.
1588
1589 2005-11-14 Akim Demaille <akim@epita.fr>
1590
1591 * data/glr.c (yyexpandGLRStack): Declare only if defined.
1592
1593 2005-11-14 Akim Demaille <akim@epita.fr>
1594
1595 * data/glr.cc: New.
1596 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
1597
1598 2005-11-12 Akim Demaille <akim@epita.fr>
1599
1600 Let position and location be PODs.
1601 * data/location.cc (position::initialize, location::initialize): New.
1602 (position::position, location::location): Define only if
1603 b4_location_constructors is defined.
1604 * data/lalr1.cc (b4_location_constructors): Define it for backward
1605 compatibility.
1606 * doc/bison.texinfo (Initial Action Decl): Use initialize.
1607
1608 2005-11-12 Akim Demaille <akim@epita.fr>
1609
1610 * data/lalr1.cc: Move the body of the ctor and dtor into the
1611 parser file (instead of the header).
1612 Wrap the implementations in a "namespace yy".
1613
1614 2005-11-12 Akim Demaille <akim@epita.fr>
1615
1616 Have glr.c include its header file when created.
1617 * data/glr.c (b4_shared_declarations): New.
1618 Output them verbatim in the parser if !%defines, otherwise
1619 output then in the header file, and include it instead.
1620
1621 2005-11-11 Akim Demaille <akim@epita.fr>
1622
1623 * data/glr.c: Comment changes.
1624
1625 2005-11-11 Akim Demaille <akim@epita.fr>
1626
1627 When yydebug, report semantic and location values for reductions.
1628 * data/glr.c (yy_reduce_print): Report the semantic values and the
1629 locations.
1630 (YY_REDUCE_PRINT): Adjust.
1631 (yyglrReduce): Use them.
1632 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
1633 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
1634 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
1635 traces.
1636
1637 2005-11-10 Akim Demaille <akim@epita.fr>
1638
1639 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
1640 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
1641 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
1642
1643 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
1644
1645 * m4/cxx.m4, examples/Makefile.am: Don't build
1646 examples/calc++ if no C++ compiler is available. (trivial change)
1647
1648 2005-11-09 Akim Demaille <akim@epita.fr>
1649
1650 * src/scan-skel.l: Use a couple of asserts.
1651
1652 2005-11-03 Akim Demaille <akim@epita.fr>
1653
1654 In some (weird) cases, the final state number is incorrect.
1655 Reported by Alexandre Duret-Lutz.
1656 * src/LR0.c (state_list_append): Remove the computation of
1657 final_state.
1658 (save_reductions): Do it here.
1659 (get_state): Alpha conversion.
1660 (generate_states): Use a for loop.
1661 * src/gram.h (item_number_is_rule_number)
1662 (item_number_is_symbol_number): New.
1663 * src/state.c: Use assert.
1664 * src/system.h: Include assert.h.
1665 * tests/sets.at (Accept): New.
1666
1667 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1668
1669 * data/glr.c (yyfill): Adjust comment.
1670 (yyresolveAction): Initialize default location properly
1671 for empty right-hand sides.
1672 (yydoAction): Ditto.
1673 Add comment explaining apparently dead code.
1674 * tests/glr-regression.at
1675 (Incorrectly initialized location for empty right-hand side in GLR):
1676 New test.
1677
1678 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
1679
1680 * bootstrap (cleanup_gnulib): New function. Use it to clean up
1681 gnulib when interrupted. This fixes some race conditions and
1682 works around some portability problems (one noted by Paul
1683 Hilfinger).
1684
1685 2005-10-22 Akim <akim@epita.fr>
1686
1687 * Makefile.cfg: Adjust to config -> build-aux.
1688 Reported by twledo.
1689
1690 2005-10-21 Akim Demaille <akim@epita.fr>
1691
1692 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
1693 the %parse-params.
1694 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
1695 * data/yacc.c (b4_Pure_if): Rename as...
1696 (b4_yacc_pure_if): this.
1697 (YY_SYMBOL_PRINT, yyparse): Adjust.
1698 * doc/bison.texinfo: Formatting changes.
1699
1700 2005-10-21 Akim Demaille <akim@epita.fr>
1701
1702 Finish the transition config -> build-aux.
1703 * configure.ac, Makefile.am: Use build-aux.
1704 * config/prev-version, config/announce-gen, config/Makefile.am:
1705 Move to...
1706 * build-aux/prev-version, build-aux/announce-gen,
1707 * build-aux/Makefile.am: here.
1708
1709 2005-10-14 Akim Demaille <akim@epita.fr>
1710
1711 * examples/calc++/test: Use set -x only when VERBOSE.
1712
1713 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
1714
1715 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
1716 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
1717
1718 2005-10-13 Akim Demaille <akim@epita.fr>
1719
1720 * src/scan-skel.l: Output the base name parts of the parser and
1721 header file names.
1722 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
1723 additional checks.
1724 Use this to exercise C++ outputs in subdirs.
1725 Reported by Oleg Smolsky.
1726
1727 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
1728
1729 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
1730 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
1731 Problem reported by John P. Hartmann.
1732 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
1733 already defined it.
1734
1735 2005-10-12 Akim Demaille <akim@epita.fr>
1736
1737 * src/parse-gram.y (version_check): Exit 63 to please missing
1738 (stands for "version mismatch).
1739 * tests/input.at, doc/bison.texinfo: Adjust.
1740
1741 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
1742
1743 Work around portability problems with Visual Age C compiler
1744 (xlc and xlC_r) reported by John P. Hartmann.
1745 * data/location.cc (initial_column, initial_line): Remove.
1746 All uses replaced by 0 and 1.
1747 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
1748 that xlc complains about.
1749 * src/scan-skel.l (skel_wrap): Likewise.
1750 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
1751 as __STDC__.
1752 * data/yacc.c (YYMODERN_C): New macro, which also looks at
1753 __STDC_VERSION__. Use it everywhere instead of looking at
1754 __STDC__ and __cplusplus.
1755
1756 2005-10-10 Akim Demaille <akim@epita.fr>
1757
1758 * examples/calc++/test: Be quiet unless VERBOSE.
1759
1760 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
1761
1762 * data/c.m4 (yydestruct, yysymprint):
1763 Use YYUSE instead of casting to void.
1764 * data/glr.c (YYUSE): New macro.
1765 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
1766 Use it instead of rolling our own.
1767 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
1768 (YYCHK1):
1769 Use /*CONSTCOND*/ to suppress lint warnings.
1770 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
1771 (YY_STACK_PRINT): Use 'false' not '0'.
1772 (YYUSE): New macro.
1773 (yysymprint_, yydestruct_): Use it instead of rolling our own.
1774 * data/yacc.c (YYUSE): New macro.
1775 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
1776 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
1777 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
1778
1779
1780 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
1781 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
1782
1783 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
1784
1785 Undo the parts of the unlocked-I/O change that substituted
1786 putc or puts for printf. This might hurt performance a bit,
1787 but some people prefer the printf style.
1788 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
1789 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
1790 All uses replaced by YYFPRINTF and YYDPRINTF.
1791 * data/yacc.c: Likewise.
1792 * lib/bitset.c (bitset_print): Likewise.
1793 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
1794 putc and puts.
1795 * lib/lbitset.c (debug_lbitset): Likewise.
1796 * src/closure.c (print_firsts, print_fderives): Likewise.
1797 * src/gram.c (grammar_dump): Likewise.
1798 * src/lalr.c (look_ahead_tokens_print): Likewise.
1799 * src/output.c (escaped_output): Likewise.
1800 (user_actions_output): Break apart two printfs.
1801 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
1802 * src/reduce.c (reduce_print): Likewise.
1803 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
1804 * src/system.h: Include unlocked-io.h rathe than stdio.h.
1805
1806 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
1807 Use assignments rather than casts-to-void to suppress
1808 unused-variable warnings. This pacifies 'lint'.
1809 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
1810 unused-variable warnings.
1811
1812 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1813
1814 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
1815
1816 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
1817
1818 Use unlocked I/O for a minor performance improvement on hosts like
1819 GNU/Linux and Solaris that support unlocked I/O. The basic idea
1820 is to use the gnlib unlocked-io module, and to prefer putc and
1821 puts to printf when either will work (since the latter doesn't
1822 come in an unlocked flavor).
1823 * bootstrap (gnulib_modules): Add unlocked-io.
1824 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
1825 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
1826 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
1827 and similarly for puts and putc and printf.
1828 * data/yacc.c: Likewise.
1829 * lib/bitset.c (bitset_print): Likewise.
1830 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
1831 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
1832 to printf.
1833 * lib/lbitset.c (debug_lbitset): Likewise.
1834 * src/closure.c (print_firsts, print_fderives): Likewise.
1835 * src/gram.c (grammar_dump): Likewise.
1836 * src/lalr.c (look_ahead_tokens_print): Likewise.
1837 * src/output.c (escaped_output): Likewise.
1838 (user_actions_output): Coalesce two printfs.
1839 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
1840 * src/reduce.c (reduce_print): Likewise.
1841 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
1842 * src/system.h: Include unlocked-io.h rather than stdio.h.
1843
1844 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
1845 this confuses xgettext.
1846
1847 2005-10-02 Akim Demaille <akim@epita.fr>
1848
1849 * bootstrap (gnulib_modules): Add strverscmp.
1850 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
1851 * m4/.cvsignore: Add strverscmp.m4.
1852 * src/parse-gram.y (%require): New token, new rule.
1853 (version_check): New.
1854 * src/scan-gram.l (%require): Adjust.
1855 * tests/input.at (AT_REQUIRE): New.
1856 Use it.
1857 * doc/bison.texinfo (Require Decl): New.
1858 (Calc++ Parser): Use %require.
1859
1860 2005-10-02 Akim Demaille <akim@epita.fr>
1861
1862 * data/location.cc: New.
1863
1864 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
1865 Akim Demaille <akim@epita.fr>
1866
1867 Make sure -odir/foo.cc creates dir/location.hh etc.
1868 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
1869 (spec_file_prefix, spec_verbose_file, spec_graph_file)
1870 (spec_defines_file): Now const.
1871 (dir_prefix): New.
1872 (short_base_name): Remove.
1873 * src/files.c: Adjust.
1874 (dirname.h): Include.
1875 (base_name): Don't prototype it.
1876 (finput): Remove, duplicates gram_in.
1877 (full_base_name, short_base_name): Replace by...
1878 (all_but_ext, all_but_tab_ext): these.
1879 (compute_base_names): Rename as...
1880 (compute_file_name_parts): this.
1881 Update to compute the new variables, including dir_prefix.
1882 Adjust dependencies.
1883 * src/output.c (prepare): Output them.
1884 * src/reader.c: Adjust to use gram_in, not finput.
1885 * src/scan-skel.l (@dir_prefix@): New.
1886
1887 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1888
1889 * lib/subpipe.c: New function end_of_output_subpipe() added
1890 to allow support for non-posix systems. This is a no-op function
1891 for posix systems.
1892
1893 * lib/subpipe.h: New function end_of_output_subpipe() added
1894 to allow support for non-posix systems. This is a no-op function
1895 for posix systems.
1896
1897 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
1898 handle the lack of pipe/fork functionality on non-posix systems.
1899
1900 * djgpp/Makefile.maint: DJGPP specific file.
1901
1902 * djgpp/README.in: DJGPP specific file.
1903
1904 * djgpp/config.bat: DJGPP specific configuration file.
1905
1906 * djgpp/config.sed: DJGPP specific configuration file.
1907
1908 * djgpp/config.site: DJGPP specific configuration file.
1909
1910 * djgpp/config_h.sed: DJGPP specific configuration file.
1911
1912 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
1913
1914 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
1915
1916 2005-10-02 Akim Demaille <akim@epita.fr>
1917
1918 * data/location.cc: New, extract from...
1919 * data/lalr1.cc: here.
1920 (location.hh): Include it after the user prologue, in case the
1921 filename type is defined by the user.
1922 Forward declation location and position before the pre-prologue.
1923 (yyresult_): Rename as...
1924 (yyresult): this, it's a local variable, not an attribute.
1925 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
1926
1927 2005-10-01 Akim Demaille <akim@epita.fr>
1928
1929 * examples/extexi: Restore the #line generation.
1930
1931 2005-09-30 Akim Demaille <akim@epita.fr>,
1932 Alexandre Duret-Lutz <adl@gnu.org>
1933
1934 Move the token type and YYSTYPE in the parser class.
1935 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
1936 (parser::token): New, from the moved free definition of tokens.
1937 (parser::semantic_value): Now a full definition instead of an
1938 indirection to YYSTYPE.
1939 (b4_post_prologue): No longer included in the header file, but
1940 in the implementation file.
1941 * doc/bison.texi (C+ Language Interface): Update.
1942 * src/parse-gram.y: Support unary %define.
1943 * tests/actions.at: Define global_tokens_and_yystype for backward
1944 compatibility until we update the tests.
1945 * tests/calc.at: Idem.
1946 (first_line, first_column, last_line, last_column): Define for lalr1.cc
1947 to simplify the code.
1948
1949 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
1950
1951 Port to SunOS 4.1.4, which lacks strtoul and strerror.
1952 Ah, the good old days! Problem reported by Peter Klein.
1953 * bootstrap (gnulib_modules): Add strerror, strtoul.
1954 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
1955 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
1956
1957 2005-09-29 Akim Demaille <akim@epita.fr>
1958
1959 * data/c.m4 (b4_error_verbose_if): New.
1960 * data/lalr1.cc: Use it.
1961 (YYERROR_VERBOSE_IF): Remove.
1962 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
1963 parser members, replaced by...
1964 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
1965 local variables.
1966 (yysyntax_error_): Takes the state number as argument.
1967 (yyreduce_print_): Use the argument yyrule, not the former
1968 attribute yyn_.
1969
1970 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
1971
1972 * bootstrap (gnulib_modules): Add verify.
1973 * lib/.cvsignore: Add verify.h.
1974 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
1975 * src/system.h (verify): Remove.
1976 Include verify.h instead.
1977 * src/tables.c (tables_generate): Use new API for 'verify'.
1978
1979 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
1980
1981 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
1982 local variables whose names begin with 'yy'.
1983 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
1984 Trivial changes from Joel E. Denny.
1985
1986 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
1987 it itself.
1988 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
1989 don't use alloca any more.
1990
1991 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
1992 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
1993 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
1994 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
1995 to match yacc.c, to test more hosts.
1996
1997 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
1998
1999 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
2000 doesn't affect behavior.
2001 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
2002 Solaris, AIX, MSC.
2003 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
2004 This works a bit better with glibc, if user code has already included
2005 stdlib.h.
2006 * doc/bison.texinfo (Bison Parser): Document that users can't
2007 arbitrarily use malloc and free for other purposes. Document
2008 that <alloca.h> and <malloc.h> might be included.
2009 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
2010 user must declare alloca.
2011
2012 * HACKING (release): Forwarn the Translation Project about
2013 stable releses.
2014
2015 2005-09-20 Akim Demaille <akim@epita.fr>
2016
2017 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
2018
2019 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
2020
2021 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
2022 (YYSTACK_ALLOC_MAXIMUM): Use it.
2023 (yysyntax_error): New function.
2024 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
2025 multiple syntax errors are reported, and alloca is being used.
2026 Instead, reallocate buffers twice as big each time, so that
2027 we waste at most half the allocated memory. Start with a small
2028 (128-byte) buffer that will suffice in most cases anyway.
2029 Use yysyntax_error to do most of the work.
2030
2031 * doc/bison.texinfo (Error Reporting, Table of Symbols):
2032 yynerrs is the number of errors reported, not the number of
2033 errors encountered.
2034
2035 * tests/glr-regression.at (Duplicated user destructor for lookahead):
2036 Mark it as expected to fail.
2037 Cast result of malloc; problem reported by twlevo@xs4all.nl.
2038 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
2039 Don't start user-code symbols with "yy", to avoid name space problems.
2040
2041 2005-09-19 Akim Demaille <akim@epita.fr>
2042
2043 Remove the traits, failed experiment.
2044 It never proved useful, and anyway because of the current
2045 definition, it was not possible to have several specialization of
2046 this traits, making it useless.
2047 * data/lalr1.cc (yy:traits): Remove.
2048 Inline its definitions in the parser class.
2049
2050 2005-09-19 Akim Demaille <akim@epita.fr>
2051
2052 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
2053 least Mac OSX with a /usr/local install of gettext.
2054
2055 2005-09-19 Akim Demaille <akim@epita.fr>
2056
2057 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
2058 and yytoken for similarity with the other skeletons.
2059
2060 2005-09-19 Akim Demaille <akim@epita.fr>
2061
2062 * NEWS, configure.ac: update version number to 2.1a.
2063
2064 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
2065
2066 * NEWS: Version 2.1.
2067
2068 * NEWS: Remove notice of yytname change, since it was never in an
2069 official release.
2070 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
2071 diagnostic.
2072 * src/output.c (prepare): Likewise.
2073 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
2074 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
2075 is not defined. This is an awful hack, but it's enough for now.
2076 All callers changed.
2077 * tests/glr-regression-at (make_value): Args are const pointers now,
2078 to avoid GCC warning.
2079 (Duplicated user destructor for lookahead): New test. Currently
2080 skipped. It fails on my host but I'm not sure it'll always fail.
2081
2082 2005-09-16 Akim Demaille <akim@epita.fr>
2083
2084 * src/symtab.h (struct symbol): Declare the printer and destructor
2085 as const, to avoid accidental calls to free.
2086 (symbol_destructor_set, symbol_printer_set): Adjust.
2087 * src/symtab.c: Adjust.
2088
2089 2005-09-16 Akim Demaille <akim@epita.fr>
2090
2091 * data/c.m4 (b4_token_enums): New.
2092 (b4_token_defines): Rename as...
2093 (b4_token_enums_defines): this.
2094 (b4_token_defines): New, output only the #defines.
2095 * data/yacc.c, data/glr.c: Adjust.
2096 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
2097 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
2098 as default values.
2099
2100 2005-09-16 Akim Demaille <akim@epita.fr>
2101
2102 * data/lalr1.cc (yylex_): Remove, inline its code.
2103 (yyreport_syntax_error_): Remove, replaced by...
2104 (yysyntax_error_): this which returns a string and leaves to the
2105 caller the call to the users' error function.
2106 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
2107 Move from members of the parser object...
2108 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
2109 to local variables of the parse function.
2110
2111 2005-09-16 Akim Demaille <akim@epita.fr>
2112
2113 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
2114 since it's in Bison's name space.
2115
2116 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
2117
2118 * data/glr.c (yyresolveValue): Add default case to pacify
2119 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
2120
2121 * NEWS: Document when yyparse started to return 2.
2122 * doc/bison.texinfo (Parser Function): Document when yyparse
2123 returns 2.
2124
2125 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
2126 (b4_filename_type): Renamed back from b4_file_name_type. All uses
2127 changed.
2128 (class position): file_name -> filename (reverting). All uses changed.
2129
2130 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
2131
2132 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
2133 do anything if $@ exists. This reverts part of the 2005-07-07
2134 patch.
2135
2136 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
2137
2138 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
2139 contains obsolete information and isn't worth distributing as a
2140 separate file anyway.
2141 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
2142 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
2143 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
2144 (yyparse): Abort if user code uses longjmp to throw an unexpected
2145 value.
2146
2147 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
2148
2149 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
2150 Suggested by twlevo@xs4all.nl.
2151
2152 * data/glr.c (YYCHK1): Do not assume YYE is in range.
2153 This avoids a diagnostic from gcc -Wswitch-enum.
2154 Problem reported by twlevo@xs4all.nl.
2155
2156 * doc/bison.texinfo: Don't use "filename", as per GNU coding
2157 standards. Use "file name" or "file" or "name", depending on
2158 the context.
2159 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
2160 not to hack/foo.tab.c.
2161 (Calc++ Top Level): 2nd arg of main is not const.
2162 * data/glr.c: b4_filename -> b4_file_name.
2163 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
2164 All uses changed.
2165 (class position): filename -> file_name. All uses changed.
2166 * data/yacc.c: b4_filename -> b4_file_name.
2167 * lib/bitset.h: filename -> file_name in local vars.
2168 * lib/bitset_stats.c: Likewise.
2169 * src/files.c: Likewise.
2170 * src/scan-skel.l ("@output ".*\n): Likewise.
2171 * src/files.c (file_name_split): Renamed from filename_split.
2172 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
2173
2174 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
2175
2176 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
2177 to accommodate latest gnulib.
2178
2179 * tests/glr-regression.at (Duplicate representation of merged trees):
2180 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
2181
2182 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
2183 needed.
2184
2185 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
2186
2187 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
2188 All uses changed. Invoke user destructor after an error during a
2189 split parse (trivial change from Joel E. Denny).
2190
2191 * tests/glr-regression.at
2192 (User destructor after an error during a split parse): New test case.
2193 Problem reported by Joel E. Denny in:
2194 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
2195
2196 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
2197
2198 * README-cvs: Give URLs for recommended tools.
2199 Mention Gzip version problem, and bootstrapping issues.
2200 Remove troubleshooting section, as it's somewhat obsolete.
2201
2202 * bootstrap (no_cache): New var, to accommodate different wget
2203 variants. Use it instead of '-C off'. Problem reported by
2204 twlevo@xs4all.nl.
2205
2206 * data/glr.c (yydestroyStackItem): New function.
2207 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
2208 debugging information. Problem reported by Joel E. Denny.
2209
2210 2005-08-25 Akim Demaille <akim@epita.fr>
2211
2212 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
2213
2214 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
2215
2216 * data/glr.c (yyrecoverSyntaxError, yyreturn):
2217 Don't invoke destructor on unresolved entries.
2218 * tests/glr-regression.at
2219 (User destructor for unresolved GLR semantic value): New test case.
2220 Problem reported by Joel E. Denny in:
2221 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
2222
2223 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
2224
2225 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
2226 Add strnlen.c.
2227 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
2228 lib-prefix.m4, po.m4.
2229
2230 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
2231 in yydestruct diagnostic, since it might not be an error.
2232 Problem reported by Joel Denny near end of
2233 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
2234 * data/lalr1.cc (yyerturn): Likewise.
2235 * data/yacc.c (yyreturn): Likewise.
2236 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
2237
2238 * src/files.c: Remove obsolete FIXME comment.
2239
2240 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
2241 with the other templates, and to fix bogus run-on messages such
2242 as the one reported at the end of
2243 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
2244 All callers changed to avoid the newline.
2245 (yyprocessOneStack): Output two lines rather than one, to accommodate
2246 the above change. This changes the debug output format slightly.
2247
2248 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
2249 reported by Joel E. Denny in
2250 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
2251 (trivial change).
2252 * tests/glr-regression.at (Duplicate representation of merged trees):
2253 New test, from Joel E. Denny in:
2254 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
2255 * THANKS: Add Joel E. Denny.
2256
2257 * configure.ac (AC_INIT): Bump to 2.0c.
2258
2259 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
2260
2261 * NEWS: Version 2.0b.
2262
2263 * Makefile.am (SUBDIRS): Put examples before tests, so that
2264 "make check" doesn't finish with "All 1 tests passed".
2265
2266 * tests/regression.at (Token definitions): Don't rely on
2267 AT_PARSER_CHECK for data that contains backslashes. It currently
2268 uses 'echo', and 'echo' isn't portable if its argument contains
2269 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
2270 that the byte '\0xff' is not printable in the C locale; it is,
2271 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
2272 not printable, so use '\0x81' to test.
2273
2274 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
2275 version of GCC, since the macro is used with non-GCC compilers.
2276
2277 Fix core dump reported by Pablo De Napoli in
2278 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
2279 * tests/regression.at (Invalid inputs with {}): New test.
2280 * src/parse-gram.y (token_name): Translate type before using
2281 it as an index.
2282
2283 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
2284 the user's name space. All uses changed to __attribute__
2285 ((__unused__)).
2286 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
2287 Add __attribute__ ((__noreturn__)).
2288
2289 * etc/clcommit: Remove. We weren't using it, and it failed
2290 "make maintainer-distcheck".
2291 * Makefile.maint: Merge from coreutils.
2292 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
2293 (syntax-check-rules): Change list of rules as described below.
2294 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
2295 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
2296 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
2297 (sc_trailing_space): New rules.
2298 (sc_xalloc_h_in_src): Remove.
2299 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
2300 (sc_space_tab, sc_error_exit_success, sc_changelog):
2301 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
2302 (makefile-check, po-check, author_mark_check):
2303 (makefile_path_separator_check, copyright-check):
2304 Use grep -n, to make it easier to find violations.
2305 Use CVS_LIST and CVS_LIST_EXCEPT.
2306 (header_regexp, h_re): Remove.
2307 (dd_c): New macro.
2308 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
2309 (my-distcheck): Use more-modern GCC flags.
2310 (signatures, %.asc): Remove.
2311 (rel-files, announcement): Remove signatures.
2312 Restore old updating code, even though we don't use it, so
2313 that we're the same as coreutils.
2314 (alpha, beta, major): Depend on news-date-check.
2315 Make the upload commands.
2316
2317 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
2318 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
2319 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
2320 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
2321 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
2322 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
2323 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
2324 * tests/sets.at: Likewise.
2325
2326 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
2327 we comment out the Autoconf version number.
2328 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
2329 it's error-prone and "make maintainer-distcheck" rejects it.
2330
2331 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
2332 Indent calls to "error" to pacify "make maintainer-distcheck",
2333 when the calls are not intended to be translated.
2334 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
2335
2336 * src/Makefile.am (DEFS): Use +=, to pacify
2337 "make maintainer-distcheck".
2338 (bison_SOURCES): Add scan-skel.h.
2339 (sc_tight_scope): New rule, from coreutils.
2340
2341 * src/files.c (src_extension, header_extension):
2342 Now static, not extern.
2343 * src/getargs.c (short_options): Likewise.
2344 * src/muscle_tab.c (muscle_table): Likewise.
2345 * src/parse-gram.y (current_class, current_type, current_prec):
2346 Likewise.
2347 * src/reader.c (grammar_end, previous_rule_end): Likewise.
2348 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
2349 * src/main.c (main): Cast bindtextdomain and textdomain calls to
2350 void, to avoid warning when NLS is disabled.
2351 * src/output.c: Include scan-skel.h.
2352 (scan_skel): Remove decl, since scan-skel.h does this.
2353 (output_skeleton):
2354 Indent calls to "error" to pacify "make maintainer-distcheck".
2355 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
2356 * src/reader.h (gram_end, gram_lineno): New decls to pacify
2357 "make maintainer-distcheck".
2358 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
2359 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
2360 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
2361 (skel_lex_destroy, scan_skel): Move these decls to...
2362 * src/scan-skel.h: New file.
2363 * src/uniqstr.c (uniqstr_assert):
2364 Indent calls to "error" to pacify "make maintainer-distcheck".
2365
2366 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
2367 not @VAR@.
2368
2369 * tests/torture.at: Revamp to avoid misuse of atoi that
2370 "make maintainer-distcheck" complained about.
2371
2372 * examples/extexi (message): Don't print a message more than once,
2373 and omit line-number decoration that makes Emacs compile think
2374 that informative messages are worth worrying about.
2375
2376 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
2377
2378 * configure.ac: Update version number.
2379
2380 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
2381 accidentally.
2382 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
2383 autogenerated by the maintainer.
2384 * examples/calc++/.cvsignore: Add *.yy.
2385
2386 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
2387 * lib/bitset_stats.c (bitset_stats_init): Likewise.
2388 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2389
2390 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
2391
2392 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
2393 from maintainer-distcheck about casting the argument of 'free'.
2394
2395 * NEWS: Mention recent yytname changes.
2396 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
2397
2398 * bootstrap: For translations that have not yet been upgraded to
2399 the new runtime-po domain, prime the pump by extracting the
2400 relevant strings from the obsolete translations. This code can be
2401 removed once the bison-runtime domain has been translated by each
2402 team.
2403
2404 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
2405 now that token names are already quoted.
2406
2407 Fix problem reported by Anthony Heading.
2408 * data/glr.c (YYTOKEN_TABLE): New macro.
2409 (yytname): Define if YYTOKEN_TABLE.
2410 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
2411 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
2412 (YYERROR_VERBOSE): Define the same way the other skeletons do.
2413 * src/output.c (prepare_symbols): Output token_table_flag.
2414
2415 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
2416
2417 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
2418 again if the first call fails.
2419
2420 * data/glr.c (yytnamerr): New function.
2421 (yyreportSyntaxError): Use it to dequote most string literals.
2422 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
2423 with other skeletons. All uses changed.
2424 (yytnameerr_): New function.
2425 (yyreport_syntax_error): Use it to dequote most string literals.
2426 * data/yacc.c (yytnamerr): New function.
2427 (yyerrlab): Use it to decode most string literals.
2428 * doc/bison.texinfo (Decl Summary, Calling Convention):
2429 Clarify quoting convention of yytname.
2430 * src/output.c (prepare_symbols): Quote all names. This undoes
2431 the 2005-04-17 change, which is now accomplished (mostly) via
2432 changes in the parsers as described above.
2433 * tests/regression.at (Token definitions, Web2c Actions):
2434 Undo most 2005-04-17 change here, too.
2435
2436 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
2437
2438 Fix more problems reported by twlevo@xs4all.nl.
2439 * tests/cxx-type.at: Don't pipe output of ./types through sed to
2440 remove trailing spaces. This loses the exit status of ./types,
2441 and isn't needed since ./types shouldn't be emitting trailing
2442 spaces.
2443 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
2444 as the stack isn't valid in that case.
2445
2446 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
2447 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
2448 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
2449 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
2450 is used.
2451 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
2452 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
2453 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
2454 Likewise.
2455
2456 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
2457 overly-picky compilers that reject 'char *foo = "bar";'.
2458
2459 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
2460 to FILE * parameter, not to stderr. This fixes a typo introduced
2461 in the 2005-07-12 change.
2462
2463 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
2464 warnings from GCC 4.
2465
2466 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
2467 (yyglrShiftDefer, yysplitStack):
2468 Remove unused parameters b4_pure_formals. All uses changed.
2469 (yyglrShift): Remove unused parameters b4_user_formals.
2470 All uses changed.
2471 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
2472
2473 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
2474
2475 Destructor cleanups and regularization among the three skeletons.
2476 * NEWS: Document the behavior changes.
2477 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
2478 stack before failing, as the cleanup code will do it for us now.
2479 * data/lalr1.cc (yyerrlab): Likewise.
2480 * data/glr.c (yyparse): Pop everything off the stack before
2481 freeing it, so that destructors get called properly.
2482 * data/lalr1.cc (yyreturn): Likewise.
2483 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
2484 This is more consistent.
2485 * doc/bison.texinfo (Destructor Decl): Mention more reasons
2486 why destructors might be called. 1.875 -> 2.1.
2487 (Destructor Decl, Decl Summary, Table of Symbols):
2488 Some English-language cleanups for %destructor.
2489 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
2490 Add output line for destructor of start symbol.
2491 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
2492 because of that same extra output line.
2493
2494 * NEWS: Document minor wording changes in diagnostics of
2495 Bison-generated parsers.
2496 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
2497 Remove unused formals. All uses changed.
2498 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
2499 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
2500 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
2501 Rename yyoverflowab to yyexhaustedlab.
2502 When memory exhaustion occurs during syntax-error reporting,
2503 report it separately rather than in a single diagnostic; this
2504 eases translation.
2505 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
2506 (Memory Exhausted): Renamed from Parser Stack Overflow.
2507 Revamp wording slightly to prefer "memory exhaustion".
2508 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
2509
2510 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
2511
2512 Add i18n support to the GLR skeleton. Partially fix the C++
2513 skeleton; a C++ expert needs to finish this. Remove debugging
2514 msgids; there's little point to having them translated, since they
2515 can be understood only by someone who can read the
2516 (English-language) source code.
2517
2518 Generate runtime-po/bison-runtime.pot automatically, so that we
2519 don't have to worry about garbage getting in that file. We'll
2520 make sure after the next official release that old msgids don't
2521 get lost. See
2522 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
2523
2524 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
2525 Now auto-generated.
2526 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
2527 Fix typos in explanations of the runtime file.
2528 * bootstrap: Change gettext keyword from YYI18N to YY_.
2529 Use standard Makefile.in.in in runtime-po, since we'll arrange
2530 for backward-compatible bison-runtime.po files in a different way.
2531 * data/glr.c (YY_): New macro, from yacc.c.
2532 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
2533 Translate messages intended for users.
2534 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
2535 the wording in the other skeletons. We don't know that the memory
2536 is virtual.
2537 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
2538 Use same method that yacc.c uses.
2539 Don't translate debugging messages.
2540 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
2541 it doesn't work (yet), and requires C++ expertise to fix.
2542 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
2543 Move defn to a more logical place, to be consistent with other
2544 skeletons.
2545 Don't translate debugging messages.
2546 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
2547 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
2548 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
2549 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
2550
2551 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
2552 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
2553 void, not int.
2554 * tests/glr-regression.at (Badly Collapsed GLR States):
2555 Likewise.
2556 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
2557 yylex should return 0 at EOF rather than aborting.
2558
2559 Improve tests for stack overflow in GLR parser.
2560 Problem reported by twlevo@xs4all.nl.
2561 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
2562 All uses removed.
2563 (yyStackOverflow): Just longjmp, but with value 2 so that caller
2564 can handle the problem.
2565 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
2566 (yyparse): New local variable yyresult to record the result.
2567 Use result of setjmp to set it, rather than storing itinto
2568 struct.
2569 (yyDone): Remove label.
2570 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
2571 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
2572 if YYABORT is used).
2573 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
2574 yyparse status; put status > 1 into diagnostic.
2575 Check that status==2 works.
2576 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
2577 Use exit status 3 for failure to open (which shouldn't happen).
2578
2579 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
2580
2581 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
2582 1 on syntax error; just let yyparse do its thing.
2583 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
2584 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
2585 (Exploding the Stack Size with Alloca):
2586 (Exploding the Stack Size with Malloc):
2587 Expect exit status 2, not 1, since the parser is supposed to blow
2588 its stack. Problem reported by twlevo@xs4all.nl.
2589
2590 * data/glr.c (yyparse): Don't assume that the initial calls
2591 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
2592 Print a stack-overflow message and fail instead.
2593 Initialize the line-number information before creating the stack,
2594 so that the stack-overflow message can report line zero safely.
2595
2596 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
2597
2598 Fix problems reported by twlevo@xs4all.nl.
2599 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
2600 (yyuserMerge): Provide a default case if b4_mergers is empty.
2601 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
2602 * tests/glr-regression.at
2603 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
2604 Add casts to pacify C++ compilers.
2605 * tests/glr-regression.at (Improper merging of GLR delayed action
2606 sets): Declare yylex before using it.
2607 * tests/Makefile.am (maintainer-check-g++): Fix a stray
2608 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
2609 test for valgrind; valgrind is independent of g++.
2610 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
2611 for compatibility with POSIX 1003.1-2001 (if running coreutils).
2612 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
2613 Use a destructor, so that we can expand the stack. Change
2614 YYSTYPE to char * so that we can free it. Cast result of malloc.
2615
2616 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
2617
2618 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
2619 a valgrind failure. Problem reported by twlevo@xs4all.nl.
2620
2621 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
2622
2623 * PACKAGING: New file, suggested by Bruno Haible and taken from
2624 similar wording in gettext's PACKAGING file.
2625 * NEWS: Mention PACKAGING.
2626 * Makefile.am (EXTRA_DIST): Add PACKAGING.
2627
2628 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
2629
2630 * NEWS: Document recent i18n improvements.
2631 * bootstrap: Get runtime translations into runtime-po.
2632 Create runtime-po files automatically, if possible.
2633 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
2634 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
2635 does not infringe on the user's name space.
2636 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
2637 * doc/bison.texinfo (Internationalization): Revamp the English
2638 and Texinfo syntax a bit, to try to make it clearer.
2639 (Bison Options, Option Cross Key): Mention --print-localedir.
2640 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
2641 YYENABLE_NLS. Quote a bit more.
2642 * runtime-po/.cvsignore: New file.
2643 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
2644 * runtime-po/Rules-quot: Remove; now created by bootstrap.
2645 * runtime-po/quot.sed: Likewise.
2646 * runtime-po/boldquot.sed: Likewise.
2647 * runtime-po/en@quot.header: Likewise.
2648 * runtime-po/en@boldquot.header: Likewise.
2649 * runtime-po/insert-header.sin: Likewise.
2650 * runtime-po/remove-potcdate.sin: Likewise.
2651 * runtime-po/Makevars: Likewise.
2652 * runtime-po/LINGUAS: Likewise.
2653 * runtime-po/de.po: Likewise; we will rely on the translation project
2654 to maintain this, so "bootstrap" should get it.
2655 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
2656 its value.
2657 * src/main.c (main): Bind the bison-runtime domain, too.
2658
2659 2005-07-12 Bruno Haible <bruno@clisp.org>
2660
2661 * data/yacc.c: Include <libintl.h> when NLS is enabled.
2662 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
2663 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
2664 * runtime-po: New directory.
2665 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
2666 $(DOMAIN).pot-update rule, so that old messages are never dropped.
2667 * runtime-po/Rules-quot: New file, copied from po/.
2668 * runtime-po/quot.sed: Likewise.
2669 * runtime-po/boldquot.sed: Likewise.
2670 * runtime-po/en@quot.header: Likewise.
2671 * runtime-po/en@boldquot.header: Likewise.
2672 * runtime-po/insert-header.sin: Likewise.
2673 * runtime-po/remove-potcdate.sin: Likewise.
2674 * runtime-po/Makevars: New file.
2675 * runtime-po/POTFILES.in: New file.
2676 * runtime-po/LINGUAS: New file.
2677 * runtime-po/bison-runtime.pot: New file.
2678 * runtime-po/de.po: New file.
2679 * m4/bison.m4: New file.
2680 * Makefile.am (SUBDIRS): Add runtime-po.
2681 (aclocaldir, aclocal_DATA): New variables.
2682 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
2683 Define aclocaldir.
2684 * src/getargs.c (usage): Document --print-localedir option.
2685 (PRINT_LOCALEDIR_OPTION): New enum item.
2686 (long_options): Add --print-localedir option.
2687 (getargs): Handle --print-localedir option.
2688 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
2689 (Internationalization): New section.
2690
2691 2005-07-12 Akim Demaille <akim@epita.fr>
2692
2693 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
2694 for consistency with the rest of the code.
2695 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
2696 Add separators.
2697
2698 2005-07-12 Akim Demaille <akim@epita.fr>
2699
2700 * src/parse-gram.y: Use %printer instead of YYPRINT.
2701
2702 2005-07-12 Akim Demaille <akim@epita.fr>
2703
2704 * src/symtab.h, src/symtab.c (symbol_print): New.
2705 * src/symlist.h, src/symlist.c (symbol_list_print): New.
2706 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
2707
2708 2005-07-12 Akim Demaille <akim@epita.fr>
2709
2710 * data/glr.c (b4_syncline): Fix (swap) the definitions of
2711 b4_at_dollar and b4_dollar_dollar.
2712
2713 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
2714
2715 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
2716 and Pennello's paper.
2717
2718 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
2719
2720 * data/yacc.c (yyparse): Undo previous patch. Instead,
2721 set yylsp[0] and yyvsp[0] only if the initial action
2722 sets yylloc and yylval, respectively.
2723
2724 * data/yacc.c (yyparse): In the initial action, set
2725 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
2726 This avoids the use of undefined variables if the initial
2727 action does not set yylloc and/or yylval.
2728
2729 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
2730
2731 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
2732 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
2733 Remove from CVS. These files are automatically generated.
2734 * examples/extexi: Clarify that this file is now part of Bison,
2735 not GNU M4, and that it works with any POSIX-compatible Awk.
2736 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
2737 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
2738 so that we also get calc++-parser.yy. Geneate it.
2739 Use $(AWK), not gawk, since any conforming Awk will do.
2740 Put comment before action, since older 'make' can't handle comment
2741 in action.
2742 $(BUILT_SOURCES): List all built sources, not just some of them.
2743 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
2744 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
2745 $($(calc_sources_generated)): Remove unnecessary test for existence
2746 of target. (This had a shell syntax error anyway; a stray "x".)
2747 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
2748 calc++-parser.yy.
2749 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
2750
2751 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
2752 implied by the other modules.
2753
2754 2005-07-06 Akim Demaille <akim@epita.fr>
2755
2756 Bind examples/calc++ to the package.
2757 * examples/calc++/Makefile: Remove, replaced by...
2758 * examples/calc++/Makefile.am: ... this new file.
2759 * examples/calc++/test: Remove input.
2760 * examples/calc++/compile: Remove.
2761 * examples/Makefile.am: New.
2762 * configure.ac, Makefile.am: Adjust.
2763 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
2764
2765 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
2766
2767 * data/glr.c (yyFail): Drastically simplify; since the format argument
2768 never had any % directives, we can simply pass it to yyerror.
2769 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
2770 be modified later, as that is the usual style in glr.c.
2771 Problems reported by Paul Hilfinger.
2772
2773 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
2774 and size overflow errors.
2775 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
2776 in case the user prolog sets feature-test macros like _GNU_SOURCE.
2777 (YYSIZEMAX): New macro.
2778 (yystpcpy): New function, taken from yacc.c.
2779 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
2780 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
2781 so that we don't have to maintain their signatures.
2782 (yyFail): Check for buffer overflow, by using vsnprintf rather
2783 than vsprintf. Allocate a bigger buffer if possible.
2784 Report an error if buffer allocation fails.
2785 (yyStackOverflow): New function.
2786 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
2787 the initialization was successful. It might fail if storage was
2788 exhausted.
2789 (yyexpandGLRStack): Add more checks for storage allocation failure.
2790 Use yyStackOverflow to report failures.
2791 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
2792 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
2793 Don't assume stack number fits in int.
2794 (yysplitStack): Check for storage allocation failure.
2795 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
2796 can print diagnostics on storage allocation failure. All callers
2797 changed.
2798 (yyresolveValue): Use yybool for boolean.
2799 (yyreportSyntaxError): Check for size-calculation overflow.
2800 This code is taken from yacc.c.
2801 (yyparse): Check for storage allocation errors when allocating
2802 the initial stack.
2803
2804 2005-07-05 Akim Demaille <akim@epita.fr>
2805
2806 Extract calc++ from the documentation.
2807 * doc/bison.texinfo (Calc++): Add the extraction marks.
2808 * examples/extexi: New, from the aborted GNU Programming 2E.
2809 Separate the different paragraph of a file with empty lines.
2810 * examples/Makefile: Use it to extract the whole calc++ example.
2811
2812 2005-06-24 Akim Demaille <akim@epita.fr>
2813
2814 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
2815 class typedefs.
2816
2817 2005-06-22 Akim Demaille <akim@epita.fr>
2818
2819 * doc/bison.texinfo (C++ Language Interface): First stab.
2820 (C++ Parsers): Remove.
2821
2822 2005-06-22 Akim Demaille <akim@epita.fr>
2823
2824 * data/lalr1.cc (yylex_): Honor %lex-param.
2825
2826 2005-06-22 Akim Demaille <akim@epita.fr>
2827
2828 Start a set of simple examples.
2829 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
2830 * examples/calc++/calc++-driver.hh,
2831 * examples/calc++/calc++-parser.yy,
2832 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
2833 * examples/calc++/compile, examples/calc++/test: New.
2834
2835 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
2836
2837 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
2838 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
2839 which stems from the 2005-05-27 patch.
2840
2841 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2842
2843 * data/glr.c: Modify treatment of unused parameters to permit use
2844 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
2845
2846 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
2847
2848 Fix infringement on user name space reported by Janos Zoltan Szabo.
2849 * data/yacc.c (yyparse): strlen -> yystrlen.
2850
2851 2005-05-30 Akim Demaille <akim@epita.fr>
2852
2853 * data/lalr1.cc (_): New.
2854 Translate the various messages.
2855
2856 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
2857
2858 Fix infringement on user name space reported by Bruno Haible.
2859 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
2860 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
2861 the user's name space.
2862 (alloca): Include <stdlib.h> to get it, if it's not built in.
2863 (YYMALLOC, YYFREE): Define only if needed.
2864 (malloc, free): Declare, but only if needed, as this infringes on
2865 the user name space.
2866
2867 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
2868
2869 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
2870 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
2871 with %d format.
2872 * lib/ebitset.c (min, max): Undef before defining.
2873 * lib/vbitset.c (min, max): Likewise.
2874 * lib/subpipe.c (create_subpipe): Save local variables in case
2875 vfork clobbers them.
2876
2877 2005-05-24 Bruno Haible <bruno@clisp.org>
2878
2879 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
2880 error message syntax used by gcc-4.0.
2881
2882 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
2883
2884 * README: Mention m4 1.4.3. Remove obsolete advice about
2885 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
2886
2887 * bootstrap: Remove workaround for problem I encountered with
2888 gettext 0.14.1; it seems to be fixed now.
2889
2890 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
2891
2892 * NEWS: Version 2.0a.
2893
2894 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
2895 the previous change.
2896
2897 Various maintainer cleanups.
2898 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
2899 conftest*, for benefit of CVS commands run at the same time as
2900 "configure". Add build-aux, since "bootstrap" now creates it and
2901 its subfiles.
2902 * Makefile.cfg (move_if_change): Remove.
2903 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
2904 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
2905 (po_repo, do-po-update, po-update, wget_files, get-targets):
2906 (config.guess-url_prefix, config.sub-url_prefix):
2907 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
2908 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
2909 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
2910 Remove.
2911 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
2912 this is now the recommended name.
2913 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
2914 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
2915 ylwrap. These files now go into build-aux.
2916 * config/move-if-change: Remove.
2917 * config/prev-version.txt: Bump from 1.75 to 2.0.
2918
2919 * bootstrap: Add stdio-safer, unistd-safer modules.
2920 Remove m4/glibc2.m4 (introduced by latest gnulib, but
2921 we don't need it).
2922 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
2923 fopen-safer.c, stdio-safer.h, unistd-safer.h.
2924 * lib/subpipe.c: Include "unistd-safer.h".
2925 (create_subpipe): Make sure all the newly-created
2926 file descriptors are > 2, so that diagnostics don't
2927 get sent down them (which might cause Bison to hang, in theory).
2928 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
2929 * src/files.c (xfopen): Use fopen_safer, not fopen.
2930
2931 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
2932 yesterday's yacc.c fix.
2933
2934 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
2935
2936 * data/glr.c, data/lalr1.cc: Update copyright date.
2937
2938 Fix a destructor bug reported by Wolfgang Spraul in
2939 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
2940 * data/yacc.c (yyabortlab): Don't call destructor, and
2941 don't set yychar to EMPTY.
2942 (yyoverflowlab): Don't call destructor.
2943 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
2944 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
2945 since we no longer output the message "discarding lookahead token
2946 end of input ()".
2947
2948 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
2949
2950 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
2951 fix a small glitch in debugging output.
2952 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
2953 after YY_SYMBOL_PRINT where needed.
2954
2955 (struct yyGLRState): Add some comments.
2956 (struct yySemanticOption): Add some comments.
2957 (union yyGLRStackItem): Add comment.
2958
2959 (yymergeOptionSets): Correct this to properly perform the union,
2960 avoiding infinite reported by Michael Rosien.
2961 Update comment.
2962
2963 * tests/glr-regression.at: Add test for GLR merging error reported
2964 by M. Rosien.
2965
2966 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
2967
2968 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
2969 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
2970 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
2971 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
2972 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
2973 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
2974 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
2975 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
2976 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
2977 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
2978 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
2979 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
2980 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
2981 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
2982 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
2983 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
2984 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
2985 src/derives.h, src/files.c, src/files.h, src/getargs.c,
2986 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
2987 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
2988 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
2989 src/output.h, src/parse-gram.c, src/parse-gram.h,
2990 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
2991 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
2992 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
2993 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
2994 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
2995 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
2996 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
2997 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
2998 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
2999 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
3000 tests/reduce.at, tests/regression.at, tests/sets.at,
3001 tests/synclines.at, tests/testsuite.at, tests/torture.at:
3002 Update FSF postal mail address.
3003
3004 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
3005
3006 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
3007 Problem reported by Ralf Menzel.
3008
3009 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
3010
3011 * tests/actions.at: Test that stack overflow invokes destructors.
3012 From Marcus Holland-Moritz.
3013 * data/yacc.c (yyerrlab): Move the code that destroys the stack
3014 from here....
3015 (yyreturn): to here. That way, destructors are called properly
3016 even if the stack overflows, or the user calls YYACCEPT or
3017 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
3018 (yyoverflowlab): Destroy the lookahead.
3019
3020 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
3021
3022 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
3023
3024 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
3025
3026 * NEWS: Bison-generated C parsers no longer quote literal strings
3027 associated with tokens.
3028 * src/output.c (prepare_symbols): Don't escape strings,
3029 since users don't want to see C escapes.
3030 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
3031 in diagnostics.
3032 * tests/input.at (Torturing the Scanner): Likewise.
3033 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
3034
3035 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
3036
3037 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
3038 the data size is known to be too small and we can't increase it.
3039 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
3040
3041 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
3042
3043 * src/parse-gram.y: Include quotearg.h.
3044 (string_as_id): Quote $1 before using it as a key, since the
3045 lexer no longer quotes it for us.
3046 (string_content): Don't strip quotes, since lexer no longer
3047 quotes it for us.
3048 * src/scan-gram.l: Include quotearg.h.
3049 ("\""): Omit quote.
3050 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
3051 a key, since the rest of the lexer doesn't quote it.
3052 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
3053 * tests/regression.at (Token definitions): Check for backslashes
3054 in token strings.
3055
3056 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
3057 (YYSIZE_T): Define to unsigned long int when using an older compiler.
3058 (yyparse): Revamp code to generate long syntax error message, to
3059 make it easier to translate, and to avoid problems with arithmetic
3060 overflow. Change "virtual memory" to "memory" in diagnostic, since
3061 we don't know whether the memory is virtual.
3062
3063 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
3064
3065 * NEWS: Bison-generated C parsers now use the _ macro to
3066 translate strings.
3067 * data/yacc.c (_) [!defined _]: New macro.
3068 All English strings wrapped inside this macro.
3069 * doc/bison.texinfo (Bison Parser): Document _.
3070 * po/POTFILES.in: Include src/parse-gram.c, since it now
3071 includes translateable strings that parse-gram.y doesn't.
3072
3073 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
3074
3075 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
3076 reverting the 2004-10-11 change to this function.
3077 (symbol_check_alias_consistency): Don't call symbol_type_set
3078 if the type name is already correct.
3079 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
3080
3081 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
3082
3083 * tests/regression.at (Token definitions): Don't use a token named
3084 c, as that generates a "#define c ..." that runs afoul of buggy
3085 stdlib.h that uses the identifier c as a member of struct
3086 drand48_data. Problem reported by Horst Wente.
3087
3088 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
3089
3090 * bootstrap: Change translation URL from
3091 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
3092 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
3093 redirection glitches. Problem reported by twlevo@xs4all.nl.
3094
3095 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
3096
3097 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
3098 after operands; POSIX says this isn't portable for the c99 command.
3099
3100 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
3101
3102 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
3103 immediately if a data overrun has occurred; this may help us track
3104 down what may be a spurious failure on MacOS.
3105
3106 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
3107
3108 Respond to problems reported by twlevo@xs4all.nl.
3109
3110 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
3111
3112 * src/vcg.h: Comment fix.
3113 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
3114 (G_CMAX): Change to -1 instead of INT_MAX.
3115
3116 * data/yacc.c (yyparse): Omit spaces before #line.
3117
3118 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
3119
3120 * src/tables.c (state_number_to_vector_number): Put it inside an
3121 "#if 0", since it's not currently used. Problem reported by
3122 Roland McGrath.
3123
3124 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
3125
3126 * src/output.c (escaped_output): Renamed from
3127 escaped_file_name_output, since we now use it for symbol tags as
3128 well. All uses changed.
3129 (symbol_destructors_output, symbol_printers_output):
3130 Escape symbol tags too.
3131 Problem reported by Matyas Forstner in
3132 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
3133
3134 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
3135 not needed.
3136 * src/output.c (user_actions_output, token_definitions_output,
3137 symbol_destructors_output, symbol_printers_output): Likewise.
3138 * src/reader.c (prologue_augment): Likewise.
3139 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
3140
3141 * src/vcg.c (output_edge): Don't quote linestyle arg.
3142 Problem reported by twlevo@xs4all.nl.
3143
3144 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
3145
3146 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
3147 example, reported by Derek M Jones. Also, make the example even
3148 more outrageous, to better illustrate how bad the problem is.
3149
3150 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
3151
3152 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
3153 putsym. Typo reported by Sebastian Piping.
3154
3155 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
3156
3157 * doc/bison.texinfo (Language and Grammar): some -> same
3158 (Epilogue): int he -> in the
3159 Typos reported by Sebastian Piping via Justin Pence.
3160
3161 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
3162
3163 * tests/glr-regression.at (Improper handling of embedded actions
3164 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
3165 embedded actions and $-N in GLR parsers", work around an Autoconf bug
3166 with dollar signs in test names.
3167 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
3168 for a similar reason.
3169
3170 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
3171
3172 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
3173 wants to redefine G_VIEW.
3174
3175 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
3176
3177 * src/vcg.c (get_view_str): Remove case for normal_view.
3178 Problem reported by twlevo@xs4all.nl.
3179
3180 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
3181
3182 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
3183 Problem reported by twlevo@xs4all.nl.
3184
3185 * doc/bison.texinfo: Change @dircategory from "GNU programming
3186 tools" to "Software development". Requested by Richard Stallman
3187 via Karl Berry.
3188
3189 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
3190
3191 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
3192 Problem reported by twlevo@xs4all.nl.
3193
3194 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
3195
3196 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
3197 keyword; it's not needed with modern compilers, and it doesn't
3198 affect correctness with older compilers. Suggested by
3199 twlevo@xs4all.nl.
3200
3201 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
3202
3203 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
3204 gcc -Wswitch-default.
3205 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
3206 * data/yacc.c (yyparse): Likewise.
3207
3208 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
3209
3210 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
3211 already. Let config.h define any nonstandard values.
3212
3213 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
3214
3215 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
3216 for the benefit of slower hosts. Problem reported by
3217 Nelson H. F. Beebe.
3218
3219 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
3220
3221 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
3222 being defined and not used.
3223 * data/lalr1.cc (yyparse): Likewise.
3224 Use "if (false)" rather than "if (0)".
3225
3226 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
3227
3228 * TODO: Mention that we should allow NUL bytes in tokens.
3229
3230 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
3231
3232 * src/scan-skel.l (<<EOF>>): Don't close standard output.
3233 Problem reported by Hans Aberg.
3234
3235 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
3236
3237 * src/getargs.c (version): Happy new year; update overall
3238 program copyright date from 2004 to 2005.
3239
3240 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
3241 Problem reported by Hans Aberg.
3242 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
3243 (Output file names.): Add a test for the case when standard output
3244 is closed.
3245
3246 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
3247
3248 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
3249 to fix an oversight in the Bison 2.0 manual.
3250
3251 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
3252
3253 * NEWS: Version 2.0. Reformat the existing news items since
3254 1.875, so that related items are grouped together.
3255 * configure.ac (AC_INIT): Bump version to 2.0.
3256 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
3257
3258 * tests/torture.at (Exploding the Stack Size with Alloca): Set
3259 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
3260 otherwise, we're not testing alloca. Unfortunately there's no
3261 simple way to consult HAVE_ALLOCA here.
3262
3263 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
3264 for yymsg, too.
3265
3266 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
3267 hand. This avoids a warning about comparing int to size_t when
3268 GCC warnings are enabled.
3269
3270 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
3271
3272 * NEWS: Bison-generated parsers no longer default to using the
3273 alloca function (when available) to extend the parser stack, due
3274 to widespread problems in unchecked stack-overflow detection.
3275 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
3276 responsibility to set it to a positive value. This lets the user
3277 specify a value that is not a preprocessor constant.
3278 * data/yacc.c (YYMAXDEPTH): Likewise.
3279 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
3280 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
3281 to be a compile-time constant. However, explain the constraints on it.
3282 Also, explain the constraints on YYINITDEPTH.
3283 (Table of Symbols): Explain that alloca is no longer the default.
3284 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
3285 to 1.
3286
3287 * doc/bison.texinfo (Location Default Action): Mention that n must
3288 be zero when k is zero. Suggested by Frank Heckenbach.
3289
3290 2004-12-22 Akim Demaille <akim@epita.fr>
3291
3292 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
3293 (parser::state_type, parser::semantic_type, parser::location_type):
3294 Private, not public.
3295 (parser::parse): Return ints, not bool.
3296 Returning a bool introduces a problem: 0 corresponds to false, and
3297 it seems weird to return false on success. Returning true changes
3298 the conventions for yyparse.
3299 Alternatively we could return void and send an exception.
3300 There is no clear consensus (yet?).
3301 (state_stack, semantic_stack, location_stack): Rename as...
3302 (state_stack_type, semantic_stack_type, location_stack_type): these.
3303 Private, not public.
3304 * tests/c++.at: New.
3305 * tests/testsuite.at, tests/Makefile.am: Adjust.
3306
3307 2004-12-21 Akim Demaille <akim@epita.fr>
3308
3309 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
3310
3311 2004-12-21 Akim Demaille <akim@epita.fr>
3312
3313 Don't impose std::string for filenames.
3314
3315 * data/lalr1.cc (b4_filename_type): New.
3316 (position::filename): Use it.
3317 (parser.hh): Move the inclusion of stack.hh and location.hh below
3318 the user code, so that needed headers for the filename type can be
3319 included first.
3320 Forward declare them before the user code.
3321 * tests/Makefile.am (check-local, installcheck-local): Pass
3322 TESTSUITEFLAGS to the TESTSUITE.
3323
3324 2004-12-20 Akim Demaille <akim@epita.fr>
3325
3326 Use more STL like names: my_class instead of MyClass.
3327
3328 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
3329 (SemanticStack, SemanticType, StateStack, StateType)
3330 (TokenNumberType, Stack, Slice, Traits, Parser::location)
3331 (Parser::value): Rename as...
3332 (location_stack, location_type, rhs_number_type, semantic_stack)
3333 (semantic_type, state_stack, state_type, token_number_type, stack)
3334 (slice, traits, parser::yylloc, parser::yylval): these.
3335
3336 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
3337
3338 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
3339
3340 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
3341 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
3342
3343 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
3344
3345 Remove uses of 'short int' and 'unsigned short int'. This raises
3346 some arbitrary limits. It uses more memory but nowadays that's
3347 not much of an issue.
3348
3349 This change does not affect the generated parsers; that's a different
3350 task, as some users will want to conserve memory there.
3351
3352 Ideally we should use size_t to represent all object counts, and
3353 something like ptrdiff_t to represent signed differences of object
3354 counts; but that will require more code-cleanup than I have the
3355 time to do right now.
3356
3357 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
3358 Use size_t, not int or short int, to count objects.
3359 * src/closure.c (nritemset, closure): Likewise.
3360 * src/closure.h (nritemset, closure): Likewise.
3361 * src/nullable.c (nullable_compute): Likewise.
3362 * src/print.c (print_core): Likewise.
3363 * src/print_graph.c (print_core): Likewise.
3364 * src/state.c (state_compare, state_hash): Likewise.
3365 * src/state.h (struct state): Likewise.
3366 * src/tables.c (default_goto, goto_actions): Likewise.
3367
3368 * src/gram.h (rule_number, rule): Use int, not short int.
3369 * src/output.c (prepare_rules): Likewise.
3370 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
3371 errs, reductions): Likewise.
3372 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
3373 Likewise.
3374 * src/tables.c (vector_number, tally, action_number,
3375 ACTION_NUMBER_MINIMUM): Likewise.
3376 * src/output.c (muscle_insert_short_int_table): Remove.
3377
3378 2004-12-17 Akim Demaille <akim@epita.fr>
3379
3380 * data/lalr1.cc: Extensive Doxygenation.
3381 (error_): Rename as...
3382 (error): this, since it is visible to the user.
3383 Adjust callers.
3384 (Parser::message): Now an automatic variable from...
3385 (Parser::yyreport_syntax_error_): here.
3386 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
3387 Parser::error.
3388 * tests/input.at: Escape $.
3389
3390 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
3391
3392 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
3393 Parenthesize rhs to avoid obscure problems with mistakes like
3394 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
3395 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
3396 b4_rhs_location): Likewise.
3397 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
3398 b4_rhs_location): Likewise.
3399
3400 2004-12-16 Akim Demaille <akim@epita.fr>
3401
3402 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
3403 yacc.c: be sure to stay within yycheck_.
3404 * tests/actions.at: Re-enable C++ tests.
3405
3406 2004-12-16 Akim Demaille <akim@epita.fr>
3407
3408 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
3409 real.
3410
3411 2004-12-16 Akim Demaille <akim@epita.fr>
3412
3413 Use #define to handle the %name-prefix.
3414
3415 * data/glr.c, data/yacc.c: Comment changes.
3416 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
3417 so that one can refer to yylex in the parser file, and have it
3418 renamed, as is the case with other skeletons.
3419
3420 2004-12-16 Akim Demaille <akim@epita.fr>
3421
3422 Move lalr1.cc internals into yy*.
3423
3424 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
3425 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
3426 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
3427 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
3428 (empty_, final_, terror_, errcode_, ntokens_)
3429 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
3430 (looka_, ilooka_, error_range_, nerrs_):
3431 Rename as...
3432 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
3433 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
3434 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
3435 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
3436 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
3437 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
3438 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
3439 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
3440 these.
3441
3442 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
3443
3444 Fix some problems reported by twlevo at xs4all.
3445 * src/symtab.c (symbol_new): Report an error if the input grammar
3446 contains too many symbols. This is better than calling abort() later.
3447 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
3448 (struct node, struct graph):
3449 Rename member expand to stretch. All uses changed.
3450 (struct graph): Remove member layoutalgorithm. All uses removed.
3451 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
3452 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
3453 All uses changed.
3454 (N_STRETCH): Rename from N_EXPAND. All uses changed.
3455
3456 2004-12-15 Akim Demaille <akim@epita.fr>
3457
3458 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
3459 Add more Doxygen comments.
3460 (symprint_, stack_print_, reduce_print_, destruct_, pop)
3461 (report_syntax_error_, translate_): Rename as...
3462 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
3463 (yypop_, yyreport_syntax_error_, yytranslate_): this.
3464
3465 2004-12-15 Akim Demaille <akim@epita.fr>
3466
3467 * data/lalr1.cc (lex_): Rename as...
3468 (yylex_): this.
3469 Move the trace here.
3470 Take the %name-prefix into account.
3471 Reported by Alexandre Duret-Lutz.
3472
3473 2004-12-15 Akim Demaille <akim@epita.fr>
3474
3475 Simplify the C++ parser constructor.
3476
3477 * data/lalr1.cc (debug_): Rename as...
3478 (yydebug_): so that the parser's internals are always in the yy*
3479 pseudo namespace.
3480 Adjust uses.
3481 (b4_parse_param_decl): Remove the leading comma as it is now only
3482 called as unique argument list.
3483 (Parser::Parser): Remove the constructor accepting a location and
3484 an initial debugging level.
3485 Remove from the other ctor the argument for the debugging level.
3486 (debug_level_type, debug_level, set_debug_level): New.
3487
3488 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
3489 constructor calls.
3490
3491 2004-12-15 Akim Demaille <akim@epita.fr>
3492
3493 Remove b4_root related material: failure experiment
3494 (which goal was to allow to derive from a class).
3495
3496 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
3497 definitions and uses.
3498
3499 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
3500
3501 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
3502 not 2, since it's not portable to subtract 1 from the start of an
3503 array. The new item 0 is never set or used. All uses changed.
3504
3505 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
3506 the default definition of YYLLOC_DEFAULT. Problem reported
3507 by Frank Heckenbach.
3508
3509 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
3510
3511 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
3512 the normal case and one for the error case. Just use the
3513 first one uniformly. Problem reported by Frank Heckenbach.
3514 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
3515 use exactly the same macro in both places.
3516 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
3517 so that the normal-case YYRHSLOC works for the error case too.
3518 All uses changed.
3519 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
3520 (YYLLOC_DEFAULT): Use the same macro as glr.c.
3521 * doc/bison.texinfo (Location Default Action): Don't claim that
3522 we have an array of locations. Use the same macro for both glr
3523 and lalr parsers. Mention YYRHSLOC. Mention what happens when
3524 the index is 0.
3525
3526 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
3527
3528 * HACKING: Update email addresses to send announcements to.
3529
3530 * configure.ac (AC_INIT): Bump version to 1.875f.
3531
3532 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
3533
3534 * NEWS: Version 1.875e.
3535 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
3536
3537 * src/scan-skel.l: Include "complain.h", for "fatal".
3538
3539 * src/relation.h (relation_print, relation_digraph):
3540 Relation sizes are of type relation_node, not size_t (this is
3541 merely a doc fix, since the two types are equivalent).
3542 (relation_transpose): Relation sizes are of type relation_node,
3543 not int.
3544 * src/relation.c: Likewise.
3545 (top, infinity): Now of type relation_node, not int.
3546 (traverse, relation_transpose): Use relation_node, not int.
3547
3548 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
3549 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
3550 (yyparse): Remove unused local introduced in 2004-10-25 patch.
3551
3552 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
3553 specifying whether the test should be skipped. Use it tp
3554 specify that the [%defines %skeleton "lalr1.cc"] tests currently
3555 fail on some hosts, and should be skipped.
3556
3557 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
3558
3559 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
3560 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
3561 unless otherwise specified below.
3562
3563 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
3564 to allocate kernel_base, kernel_items, kernel_size, since
3565 they needn't be initialized to 0.
3566 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
3567 * src/closure.c (new_closure): Likewise, for itemset.
3568 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
3569 * src/lalr.c (set_goto_map): Likewise, for temp_map.
3570 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
3571 (build_relations): Likewise for edge, states1, includes.
3572 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
3573 * src/reader.c (packgram): Likewise, for ritem, rules.
3574 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
3575 * src/relation.c (relation_digraph): Likewise for VERTICES.
3576 (relation_transpose): Likewise for new_R, end_R.
3577 * src/symtab.c (symbols_token_translations_init): Likewise for
3578 token_translations.
3579 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
3580 (token_actions): Likewise for yydefact, actrow, conflrow,
3581 conflict_list.
3582 (save_column): Likewise for froms[symno], tos[symno].
3583 (goto_actions): Likewise for state_count.
3584 (pack_table): Likewise for base, pos, check.
3585 (tables_generate): Likewise for width.
3586
3587 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
3588 for initial core. Just have a separate core, so we needn't worry
3589 about whether kernel_size and kernel_base are initialized.
3590
3591 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
3592 kernel_size, kernel_items): Remove unnecessary initialization.
3593 * src/conflicts.c (conflicts): Likewise.
3594 * src/derives.c (derives): Likewise.
3595 * src/muscle_tablc (muscle_insert): Likewise.
3596 * src/relation.c (relation_digraph): Likewise.
3597 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
3598 conflrow, conflict_table, conflict_list, table, check):
3599 Likewise.
3600
3601 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
3602 This is because all callers pass unsigned int.
3603 * src/closure.h (new_closure): Likewise.
3604
3605 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
3606 (build_relations): Initialize includes[i] in all cases.
3607 * src/reader.c (packgram): Always initialize rules[ruleno].prec
3608 and rules[ruleno].precsym. Initialize members in order.
3609 * src/relation.c (relation_transpose): Always initialize new_R[i]
3610 and end_R[i].
3611 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
3612
3613 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
3614 conflict_list[0] was always 0, but now it isn't initialized.
3615
3616 * src/table.c (table_grow): When conflict_table grew, the grown
3617 area wasn't cleared. Fix this.
3618
3619 * lib/.cvsignore: Add strdup.c, strdup.h.
3620 * m4/.cvsignore: Add strdup.m4.
3621
3622 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
3623
3624 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
3625 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
3626 GOTO_NUMBER_MAXIMUM, since we occasionally compute
3627 ngotos + 1 without checking for overflow.
3628 (build_relations): Use END_NODE, not -1, to denote end of edges.
3629 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
3630 build_relations): Use goto_number, not int, for goto numbers.
3631 * src/tables.c (save_column, default_goto): Likewise.
3632
3633 2004-11-23 Akim Demaille <akim@epita.fr>
3634
3635 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
3636 of #defining from yystype.
3637 Don't typedef yystype, C++ does not need it.
3638 This lets it possible to forward declare it as union.
3639
3640 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
3641
3642 * bootstrap (gnulib_modules): Add extensions.
3643 Problem reported by Jim Meyering.
3644
3645 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
3646
3647 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
3648 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
3649 src/system.h, src/tables.c: XFREE -> free, to accommodate
3650 recent change to gnulib xalloc.h.
3651 Problem reported by Jim Meyering.
3652
3653 2004-11-17 Akim Demaille <akim@epita.fr>
3654
3655 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
3656
3657 2004-10-28 Akim Demaille <akim@epita.fr>,
3658 Alexandre Duret-Lutz <adl@gnu.org>
3659
3660 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
3661 changes.
3662 (YYCDEBUG): Adjust.
3663 Use it instead of cdebug_.
3664 (Parser::debug_stream, Parser::set_debug_stream): New.
3665 (Parser::symprint_): Define cdebug_ for temporary backward
3666 compatibility.
3667 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
3668 debug_stream ().
3669
3670 2004-11-17 Akim Demaille <akim@epita.fr>
3671
3672 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
3673 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
3674 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
3675 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
3676
3677 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
3678
3679 * data/glr.c (yyloc_default): Remove; not used.
3680 Problem reported by Frank Heckenbach.
3681
3682 2004-10-25 Akim Demaille <akim@epita.fr>
3683
3684 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
3685 Introduce another definition to address simple location arrays.
3686 (yyGLRStack): New member: yyerror_range.
3687 (yyrecoverSyntaxError, yyparse): Update it.
3688 (yyrecoverSyntaxError): Use it when shifting the error token to
3689 have an accurate range, equivalent to the one computed by both
3690 yacc.c and lalr1.cc.
3691 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
3692 that column numbers start at column 0, as per GNU Coding
3693 Standards, the others tests, and the doc.
3694 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
3695 Adjust to the above change (first column is 0).
3696 And adjust the location of the "<error>", now covering the whole
3697 line.
3698
3699 2004-10-22 Akim Demaille <akim@epita.fr>
3700 and Paul Eggert <eggert@cs.ucla.edu>
3701
3702 Remove some arbitrary limits on goto numbers and relations.
3703 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
3704 initial values, since they're never used.
3705 (set_goto_map): ngotos is now unsigned, so test for overflow
3706 by seeing whether it wraps around to zero.
3707 * src/lalr.h (goto_number): Now size_t, not short int.
3708 (GOTO_NUMBER_MAXIMUM): Remove.
3709 * src/relation.c (relation_print, traverse, relation_transpose):
3710 Check for END_NODE rather than looking at sign.
3711 * src/relation.h (END_NODE): New macro.
3712 (relation_node): Now size_t, not short int.
3713
3714 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
3715
3716 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
3717 keyword, not an identifier. Problem reported by Baron Schwartz in
3718 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
3719
3720 2004-10-11 Akim Demaille <akim@epita.fr>
3721
3722 * src/symtab.c (symbol_check_alias_consistency): Also check
3723 type names, destructors, and printers.
3724 Reported by Alexandre Duret-Lutz.
3725 Recode the handling of associativity and precedence in terms
3726 of symbol_precedence_set.
3727 Accept no redeclaration at all, not even equal to the previous
3728 value.
3729 (redeclaration): New.
3730 Use it to factor redeclaration complaints.
3731 (symbol_make_alias): Don't set the type of the alias, let
3732 symbol_check_alias_consistency do it as for other features.
3733 * src/symtab.h (symbol): Add new member prec_location, and
3734 type_location.
3735 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
3736 * tests/input.at (Incompatible Aliases): New.
3737
3738 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
3739
3740 .cvsignore fixes to accommodate gnulib changes,
3741 and the practice of naming build directories "_build".
3742 * .cvsignore: Add "_*". Sort.
3743 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
3744 * m4/.cvsignore: Add "*_gl.m4".
3745
3746 2004-10-06 Akim Demaille <akim@epita.fr>
3747
3748 * src/parse-gram.y (add_param): Fix the truncation of trailing
3749 spaces.
3750
3751 2004-10-05 Akim Demaille <akim@epita.fr>
3752
3753 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
3754 whether the reducion was empty or not. This leaves room to
3755 improve the use of YYLLOC_DEFAULT in such a case.
3756 lalr1.cc is still experimental, so changing this is acceptable.
3757 And finally, there are probably not many users who changed the
3758 handling of locations in GLR, so changing is admissible too.
3759
3760 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
3761 empty reduction, set @$ to an empty location ending the previously
3762 stacked symbol.
3763 Adjust uses to make sure the code is triggered on empty
3764 reductions.
3765 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
3766 expected output: empty reductions have empty locations.
3767
3768 2004-09-29 Akim Demaille <akim@epita.fr>
3769
3770 * data/lalr1.cc: Move towards a more standard C++ coding style
3771 for templates: Class < T > -> Class<T>.
3772
3773 2004-09-29 Akim Demaille <akim@epita.fr>
3774
3775 * data/lalr1.cc: Reinstall the former ctor, for sake of
3776 compatibility, but warn it will be removed.
3777 Move towards a more standard C++ coding style (i.e., type *var ->
3778 type* var).
3779
3780 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
3781
3782 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
3783 since it's less likely to work if NULs are involved in the future.
3784
3785 2004-09-27 Akim Demaille <akim@epita.fr>
3786
3787 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
3788
3789 2004-09-27 Akim Demaille <akim@epita.fr>
3790
3791 * data/lalr1.cc (b4_parse_param_decl_1): New.
3792 (b4_parse_param_decl): Use it to have different names between attribute
3793 and argument names.
3794 (b4_cc_constructor_call): Likewise.
3795
3796 2004-09-24 Akim Demaille <akim@epita.fr>
3797
3798 * src/parse-gram.y (add_param): Strip the leading and trailing
3799 blanks from a formal argument declaration.
3800 (YY_LOCATION_PRINT): New.
3801
3802 2004-09-24 Akim Demaille <akim@epita.fr>
3803
3804 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
3805 after the location.
3806
3807 2004-09-24 Akim Demaille <akim@epita.fr>
3808
3809 * doc/bison.texinfo (Table of Symbols): Sort.
3810
3811 2004-09-21 Akim Demaille <akim@epita.fr>
3812
3813 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
3814 the useless parentheses.
3815 Suggested by Paul Eggert.
3816
3817 2004-09-20 Akim Demaille <akim@epita.fr>
3818
3819 Let the initial-action act on the look-ahead, and use it for the
3820 "initial push" (corresponding to an hypothetical beginning-of-file).
3821 And let lalr1.cc honor %initial-action.
3822
3823 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
3824 example.
3825 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
3826 (Parser::Parser): Remove the ctor that used to initialize it.
3827 (Parser::parse): Like in the other skeletons, issue the "starting
3828 parse" message before any action.
3829 Honor %initial-action.
3830 Initialize the stacks with the lookahead.
3831 * data/yacc.c: Let $$ and @$ in %initial-action designate the
3832 look-ahead.
3833 Push them in the stacks.
3834 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
3835
3836 2004-09-20 Akim Demaille <akim@epita.fr>
3837
3838 * doc/bison.texinfo (Initial Action Decl): New.
3839
3840 2004-09-20 Akim Demaille <akim@epita.fr>
3841
3842 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
3843 clearer criterion to define it.
3844 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
3845 When reducing on an empty RHS, use the latest stacked location as
3846 location.
3847 yylloc is not always available.
3848 * data/glr.c: Likewise.
3849 Also, honor initial-actions.
3850
3851 2004-09-20 Akim Demaille <akim@epita.fr>
3852
3853 * data/yacc.c (YY_LOCATION_PRINT): New.
3854 Define when we know YYLTYPE's structure, i.e., when the default
3855 YYLLOC_DEFAULT is used.
3856 * data/c.m4 (b4_yysymprint_generate): Use it.
3857 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
3858 value of the result.
3859 (error_start_): Replace with...
3860 (error_range_): this location array.
3861 This allows to replace code relying on the implementation of
3862 locations by portable code.
3863 * data/yacc.c (yylerrsp): Replace with...
3864 (yyerror_range): this.
3865 Every time a token is popped, update yyerror_range[0], to have an
3866 accurate location for the error token.
3867 * data/glr.c (YY_LOCATION_PRINT): New.
3868 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
3869 deference a pointer.
3870 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
3871 report the location in %printers.
3872
3873 * src/scan-skel.l: Instead of abort, report error messages to ease
3874 understanding skeleton scanning failures.
3875
3876 2004-09-16 Akim Demaille <akim@epita.fr>
3877
3878 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
3879 (iterator, const_iterator): these, to be more in the C++ spirit.
3880 Also, return reverse iterators so that when displaying the stack
3881 we display its bottom first.
3882 (Parser::stack_print_, Parser::reduce_print_): Match the messages
3883 from yacc.c.
3884 We should probably use vector here though.
3885
3886 2004-09-16 Akim Demaille <akim@epita.fr>
3887
3888 Have more complete shift traces.
3889
3890 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
3891 to report Shifts instead of ad hoc YYDPRINTF invocations,
3892 including for the error token.
3893 * data/lalr1.cc (symprint_): Output the location.
3894 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
3895 output the location within the %printer.
3896 Activate GLR tests, at least to make sure they compile properly.
3897 They still don't pass though.
3898 * tests/calc.at: Adjust expect verbose output, since now "Entering
3899 state..." is on a different line than the "Shifting" message.
3900
3901 2004-09-08 Akim Demaille <akim@epita.fr>
3902
3903 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
3904 Bison directive from the Bison file to the invocation of this
3905 macro, so that these directives are passed to
3906 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
3907 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
3908 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
3909 the extra Bison directives instead of the whole series.
3910 Change the grammar so that there are recoverable errors, and
3911 unrecoverable errors. Now we can have the parser give up before
3912 consuming the whole input. As a result we now can observe that
3913 the lookahead is freed when needed.
3914 Change the parser source to parse argv[1] instead of a hard coded
3915 string.
3916 Simplify yylex, and give a value and location to EOF.
3917 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
3918 passed directives already coded in the file.
3919 Add some tests to check the location of "error".
3920 For some tests, the C++ parser is correct, and not yacc.c.
3921 For other tests, they provide different, but unsatisfying, values,
3922 so keep the C++ value so that at least one parser is "correct"
3923 according to the test suite.
3924 (Actions after errors): Remove, this is subsumed by the
3925 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
3926
3927 2004-09-06 Akim Demaille <akim@epita.fr>
3928
3929 * data/lalr1.cc: Adjust the indentation of the labels.
3930 (Parser::pop): New.
3931 Use it.
3932
3933 2004-09-06 Akim Demaille <akim@epita.fr>
3934
3935 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
3936 argument, an informative message.
3937 Call YY_SYMBOL_PRINT.
3938 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
3939 * data/lalr1.cc (destruct_): Likewise.
3940 In addition, no longer depend on b4_yysymprint_generate and
3941 b4_yydestruct_generate to generate these functions, do it "by
3942 hand".
3943
3944 2004-09-03 Akim Demaille <akim@epita.fr>
3945
3946 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
3947 invoked, yydestruct the lookahead.
3948 * tests/calc.at (Calculator $1): Update the expected lengths of
3949 traces: there is an added line for the discarded lookahead.
3950 * doc/bison.texinfo (Destructor Decl): Some rewording.
3951 Define "discarded" symbols.
3952
3953 2004-09-02 Akim Demaille <akim@epita.fr>
3954
3955 * data/lalr1.cc (translate_, destruct_): No reason to be static.
3956
3957 2004-09-02 Akim Demaille <akim@epita.fr>
3958
3959 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
3960 (YYDSYMPRINTF): Rename as...
3961 (YY_SYMBOL_PRINT): this.
3962 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
3963 two.
3964 Use it instead of direct symprint_ calls.
3965 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
3966 one.
3967
3968 2004-09-02 Akim Demaille <akim@epita.fr>
3969
3970 * data/lalr1.cc (b4_yysymprint_generate): New.
3971 (symprint_): New member function, defined when YYDEBUG.
3972 Use it consistently instead of token/nterm debugging output by
3973 hand.
3974 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
3975 %printer calls to use cdebug_ when using lalr1.cc.
3976
3977 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
3978
3979 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
3980 with #ifdef YYDEBUG.
3981
3982 2004-08-26 Akim Demaille <akim@epita.fr>
3983
3984 * doc/bison.texinfo (Implementing Loops): Rename as...
3985 (Implementing Gotos/Loops): this.
3986
3987 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
3988
3989 Adjust to latest gnulib.
3990 * bootstrap (gnulib_modules): Add xalloc-die.
3991 Set LC_ALL=C so that file names sort consistently.
3992 Prefer the gnulib copies of gettext.m4, glibc21.m4,
3993 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
3994 uintmax_t.m4, ulonglong.m4.
3995 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
3996 po.m4 since we are now using _gl.m4 instead.
3997
3998 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
3999
4000 * src/scan-action.l: Remove. Scanning of semantic actions is
4001 handled in scan-gram.l.
4002
4003 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
4004
4005 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
4006
4007 * src/location.h (struct): The file member is a uniqstr.
4008 (equal_boundaries): Use UNIQSTR_EQ for comparison.
4009
4010 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
4011
4012 Fix bug with non-%union parsers that have printers or destructors,
4013 which led to a Bison core dump. Reported by Peter Fales in
4014 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
4015
4016 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
4017 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
4018 not to our own type.
4019 * src/output.c (symbol_destructors_output, symbol_printers_output):
4020 Don't assume %union.
4021 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
4022 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
4023 UNION-FLAG. All callers changed.
4024 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
4025 Use type char, not unsigned int, when declaring an array of char;
4026 this lets us remove a cast.
4027 (Printers and Destructors): Add non-%union test cases.
4028
4029 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4030
4031 * doc/bison.texinfo: Minor editorial changes, mostly to the new
4032 GLR writeups. E.g., avoid frenchspacing and the future tense,
4033 change "lookahead" to "look-ahead", and change "wrt" to "with
4034 respect to".
4035
4036 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4037
4038 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
4039 New sections, split off from the GLR Parsers section. Put the new
4040 Simple GLR Parser near the start of the GLR section, for clarity.
4041 Rewrite connective text.
4042
4043 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
4044
4045 * doc/bison.texinfo (Simple GLR Parsers): New section.
4046
4047 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
4048
4049 * NEWS, TODO, doc/bison.texinfo:
4050 Use "look-ahead" instead of "lookahead", to be consistent.
4051 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
4052 while we're fixing "look-ahead".
4053 * src/conflicts.c (shift_set): Renamed from shiftset.
4054 (look_ahead_set): Renamed from lookaheadset.
4055 * src/print.c: Likewise.
4056 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
4057 name for "lookahead".
4058 (report_types, usage): Likewise.
4059 * src/getargs.h (report_look_ahead_tokens): Renamed from
4060 report_lookaheads.
4061 * src/lalr.c (compute_look_ahead_tokens): Renamed from
4062 compute_lookaheads.
4063 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
4064 (look_ahead_tokens_print): Renamed from lookaheads_print.
4065 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
4066 state_rule_lookaheads_print.
4067 * src/state.h: Likewise.
4068 (reductions.look_ahead_tokens): Renamed from lookaheads.
4069 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
4070 AT_DATA_LOOKAHEADS_GRAMMAR.
4071
4072 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
4073
4074 * README: Update location of patched M4 distribution.
4075
4076 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
4077
4078 Don't assume the C++ compiler takes the same arguments as the C compiler
4079 (trivial change).
4080 * configure.ac (O0CXXFLAGS): New var.
4081 * tests/atlocal.in (CXXFLAGS): Use it.
4082
4083 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
4084
4085 Fix some "make check" problems with C++ reported by
4086 Albert Chin-A-Young for Tru64 C++ in this thread:
4087 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
4088
4089 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
4090 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4091 Output to a .cc file for C++, not to a .c file.
4092 * tests/calc.at (AT_CHECK_CALC): Likewise.
4093 * tests/regression.at (AT_CHECK_DANCER): Likewise.
4094 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
4095
4096 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
4097
4098 * tests/calc.at, tests/actions.at: Workaround for SGI
4099 C++ compiler. (trivial change)
4100
4101 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
4102
4103 Spent a few hours checking out which prerequisite versions the
4104 current sources actually require. I went all the way back to
4105 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
4106 a seemingly endless set of combinations of versions more recent
4107 than that. The bottom line is that the current sources require
4108 fairly recent versions of the build tools, and it'll be some work
4109 to change this.
4110 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
4111 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
4112 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
4113 Add comments explaining why those particular versions are
4114 currently needed.
4115
4116 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
4117 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
4118 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
4119
4120 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
4121 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
4122
4123 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
4124
4125 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
4126 0.11.5. Suggested by Bruno Haible.
4127 * bootstrap: Remove gettext version checking.
4128
4129 * doc/bison.texinfo (Decl Summary): Also mention that %union
4130 can depend on prerequisite types. Problem reported by Tim
4131 Van Holder.
4132
4133 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
4134
4135 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
4136 * README-alpha: Don't tell people not to package this.
4137
4138 * bootstrap: Don't assume $(...) works; use `...` instead.
4139 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
4140 gettext better.
4141
4142 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
4143 put into the -d output file, and mention what to do if YYSTYPE is
4144 defined as a macro.
4145
4146 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
4147
4148 Undo change made earlier today: it caused autopoint to not bring
4149 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
4150 autopoint's.
4151
4152 * bootstrap: Check that gettext version matches what's in
4153 configure.ac. Warn users to ignore robots.txt ERROR 404.
4154 * bootstrap: Undo today's earlier change (logged below).
4155 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
4156
4157 The gettext version checking is causing more trouble than it's
4158 curing; remove it. Problem reported by Paul Hilfinger.
4159
4160 * bootstrap: Issue a warning that one can expect a message
4161 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
4162 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
4163
4164 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
4165
4166 Ensure that the C++ compiler used for testing actually works on a
4167 simple test program; if not, skip the C++-related tests. Problem
4168 reported by Vin Shelton in:
4169 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
4170
4171 * m4/cxx.m4: New file.
4172 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
4173 * tests/atlocal.in (BISON_CXX_WORKS): Add.
4174 * tests/local.at (AT_COMPILE_CXX): Use it.
4175
4176 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
4177
4178 * data/glr.c (yylloc): Output this macro even if locations are not
4179 being generated, as the GLR parser needs it even in that case.
4180 Problem reported by Troy A. Johnson
4181 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
4182
4183 * configure.ac (AC_INIT): Update to 1.875e.
4184
4185 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
4186
4187 * NEWS: Version 1.875d.
4188 * configure.ac (AC_INIT): Likewise.
4189 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
4190
4191 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
4192 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
4193 lalr1.cc runs afoul of the first, and the last two are no longer
4194 supported by GCC 3.4.0.
4195 * README: Mention GNU m4 1.4 or later; mention m4 patches.
4196 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
4197
4198 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
4199
4200 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
4201 unsigned int, for compatibility with latest gnulib hash module.
4202 * src/state.c (state_hash, state_hasher): Likewise.
4203 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
4204 * src/uniqstr.c (hash_uniqstr): Likewise.
4205
4206 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
4207
4208 * NEWS: Unescaped newlines are no longer allowed in char & strings.
4209
4210 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
4211 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
4212 character and string literals.
4213 (unexpected_end): New function.
4214 (unexpected_eof): Use it.
4215 (unexpected_newline): New function.
4216 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
4217 actions.
4218
4219 * NEWS: Document %expect-rr.
4220
4221 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
4222 Fix typo by replacing $1 with $option.
4223 Remove more 'intl'-related files.
4224 Don't DEFUN AM_INTL_SUBDIR twice.
4225
4226 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
4227 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
4228 strtoul.c.
4229 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
4230 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
4231 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
4232 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
4233 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
4234 * src/.cvsignore: Add *.output.
4235
4236 * src/parse-gram.y: Put copyright notice inside %{ %} so it
4237 gets copied to the output file.
4238
4239 2004-04-28 Paul Eggert <eggert@twinsun.com>
4240
4241 Get files from the gnulib and po repositories, instead of relying
4242 on them being in our CVS. Upgrade to latest versions of gnulib
4243 and Automake.
4244
4245 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
4246 * bootstrap: Bootstrap from gnulib and po repositories.
4247 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
4248 * README-cvs: Document these changes. Remove version numbers from
4249 mentions of build tools, since they change so often. Mention Flex.
4250
4251 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
4252 (gl_USE_SYSTEM_EXTENSIONS): Add.
4253 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
4254 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
4255 does this for us.
4256 (AC_ISC_POSIX): Remove; we no longer support this
4257 ancient OS, as it gets in the way of latest Autoconf & gnulib.
4258 (AC_HEADER_STDC): Remove: we now assume C89 or better.
4259 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
4260 Do not check for C89 headers, except for locale.h which is used
4261 by the Yacc library and must port to K&R hosts.
4262 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
4263 Do not check for C89 functions, except for setlocale which is
4264 used by the Yacc library.
4265 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
4266 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
4267 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
4268 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
4269 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
4270 AM_GNU_GETTEXT): Remove; now done by:
4271 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
4272 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
4273 for us.
4274
4275 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
4276 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
4277 Define to empty, as gnulib.mk will do the rest for us.
4278 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
4279 for us.
4280 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
4281 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
4282
4283 * src/files.c: Include gnulib's xstrndup.h.
4284
4285 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
4286 (REALLOC): Use xnrealloc, for likewise.
4287 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
4288 (strnlen, memrchr): Remove decls; functions no longer used.
4289 Include <stpcpy.h>.
4290
4291 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
4292 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
4293 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
4294 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
4295 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
4296 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
4297 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
4298 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
4299 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
4300 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
4301 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
4302 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
4303 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
4304 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
4305 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
4306 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
4307 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
4308 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
4309 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
4310 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
4311 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
4312 Remove, as these files are now generated automatically
4313 by bootstrap or automake.
4314
4315 * po/ChangeLog: Remove: all but one entry was a duplicate
4316 of this file, and I moved that 2000-11-02 entry here.
4317
4318 * config/.cvsignore: Add Makefile, depcomp, install-sh.
4319 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
4320 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
4321 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
4322 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
4323 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
4324 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
4325 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
4326 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
4327 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
4328 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
4329 xstrndup.h.
4330 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
4331 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
4332 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
4333 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
4334 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
4335 * src/.cvsignore: Remove *_.c.
4336
4337
4338 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
4339 support it. (The latest stable gzip doesn't.)
4340
4341 2004-04-27 Paul Eggert <eggert@twinsun.com>
4342
4343 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
4344 case, as stos_ is now used by destructors due to the 2004-02-09
4345 change.
4346
4347 Remove more K&R C support.
4348 * lib/libiberty.y (PARAMS): Remove. All uses removed.
4349 * lib/subpipe.c (errno): Remove decl.
4350 Include <stdlib.h> unconditionally.
4351 (EXIT_FAILURE): Remove macro.
4352 * src/complain.c (vfprintf, strerror): Remove.
4353 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
4354 unconditionally.
4355 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
4356 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
4357 (strchr, strspn, memchr): Remove decls.
4358 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
4359 unconditionally. Do not declare perror.
4360 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
4361 unconditionally.
4362
4363 * src/complain.c (_): Remove useless defn, as system.h defines this.
4364
4365 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
4366 with latest obstack.h.
4367 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
4368 to procedure types, as obstack.h now does that for us.
4369 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
4370
4371 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
4372 so that this include file can stand alone.
4373 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
4374 does this now. Include subpipe.h first after config.h, to
4375 test whether it can stand alone.
4376
4377 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
4378 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
4379 unused declaration.
4380
4381 * tests/synclines.at (%union synch line): Put a dummy member in
4382 the union, because empty unions aren't allowed in C. Caught
4383 by GCC 3.4.0.
4384
4385 2004-04-13 Jim Meyering <jim@meyering.net>
4386
4387 * src/conflicts.c (conflicts_print): Correct format string typo:
4388 use `%%' to produce literal `%'. (trivial change)
4389
4390 2004-03-30 Paul Eggert <eggert@twinsun.com>
4391
4392 * src/getargs.c (version): Update copyright year to 2004.
4393
4394 * data/c.m4 (b4_int_type): Use 'short int' rather than
4395 'short', and similarly for 'long', 'unsigned', etc.
4396 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
4397 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
4398 yy_yypstack, yydumpstack): Likewise.
4399 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
4400 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
4401 Likewise.
4402 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
4403 yy_stack_print, yyparse): Likewise.
4404 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
4405 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
4406 * lib/bitset.c (bitset_print): Likewise.
4407 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
4408 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
4409 * lib/bitsetv.c (bitsetv_dump): Likewise.
4410 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
4411 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
4412 Likewise.
4413 * src/LR0.c (allocate_itemsets): Likewise.
4414 * src/gram.h (rule_number, rule): Likewise.
4415 * src/lalr.h (goto_number): Likewise.
4416 * src/nullable.c (nullable_compute): Likewise.
4417 * src/output.c (prepare_rules): Likewise.
4418 * src/relation.c (relation_print, relation_digraph): Likewise.
4419 * src/relation.h (relation_node): Likewise.
4420 * src/state.h (state_number, transitions, errs, reductions,
4421 struct state): Likewise.
4422 * src/symtab.h (symbol_number, struct symbol): Likewise.
4423 * src/tables.c (vector_number, tally, action_number,
4424 default_goto, goto_actions): Likewise.
4425 * tests/existing.at (GNU Cim Grammar): Likewise.
4426 * tests/regression.at (Web2c Actions): Likewise.
4427
4428 * src/output.c (muscle_insert_short_int_table): Renamed from
4429 muscle_insert_short_table. All uses changed.
4430
4431 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4432
4433 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
4434 (declaration): Replace expected_conflicts with expected_sr_conflicts.
4435 Add %expect-rr rule.
4436
4437 * src/scan-gram.l: Recognize %expect-rr.
4438
4439 * src/conflicts.h (expected_sr_conflicts): Rename from
4440 expected_conflicts.
4441 (expected_rr_conflicts): Declare.
4442
4443 * src/conflicts.c (expected_sr_conflicts): Rename from
4444 expected_conflicts.
4445 (expected_rr_conflicts): Define.
4446 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
4447 for GLR parsers.
4448 Use expected_sr_conflicts in place of expected_conflicts.
4449 Warn if expected_rr_conflicts used in non-GLR parser.
4450
4451 * doc/bison.texinfo: Add documentation for %expect-rr.
4452
4453 2004-03-08 Paul Eggert <eggert@gnu.org>
4454
4455 Add support for hex token numbers. Suggested by Odd Arild Olsen in
4456 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
4457
4458 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
4459 in lalr1.cc.
4460 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
4461 * src/scan-gram.l (scan_integer): New function.
4462 ({int}): Use it.
4463 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
4464 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
4465 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
4466 Say "long int", not "long", for uniformity with GNU style.
4467
4468 2004-02-25 Paul Eggert <eggert@twinsun.com>
4469
4470 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
4471 compilers. This fixes a problem with Intel's C++ compiler being
4472 chatty, reported by Guido Trentalancia in
4473 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
4474
4475 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
4476
4477 Support %destructor and merge error locations in lalr1.cc.
4478
4479 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
4480 (Parser::stos_): Define unconditionally.
4481 (Parser::destruct_): New method. Generate its body with
4482 b4_yydestruct_generate.
4483 (Parser::error_start_): New attribute.
4484 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
4485 token which are discarded.
4486 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
4487 error_start_ when erroneous token are discarded.
4488 (Parser::parse) <yyerrlab1>: Compute the location of the error
4489 token so that it covers all the discarded tokens.
4490 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
4491 it can be called with `%skeleton "lalr1.cc"', and do that.
4492
4493 2004-02-02 Paul Eggert <eggert@twinsun.com>
4494
4495 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
4496 $(top_srcdir)/lib and ../lib. This fixes a bug reported
4497 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
4498 There's no need to mention top_builddir since Automake does that
4499 for us.
4500 (INCLUDES): Remove, as Automake says it's obsolescent.
4501 Contents migrated into AM_CPPFLAGS as described above.
4502 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
4503
4504 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4505
4506 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
4507 (yyreportSyntaxError): Handle case where lookahead token is
4508 YYEMPTY.
4509
4510 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4511
4512 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
4513 resulting parsers are compilable with C++.
4514
4515 2003-12-23 Paul Eggert <eggert@twinsun.com>
4516
4517 * config/depcomp, config/install-sh: Sync with Automake 1.8.
4518 * src/output.c (output_skeleton): Rename local var.
4519 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
4520 Bison tokens, as this runs afoul of the 2003-10-07 change that
4521 disallowed NUL bytes in character constants or string literals.
4522
4523 * tests/local.at: Require Autoconf 2.59's Autotest.
4524 * tests/testsuite.at: Don't include local.at, since we now assume
4525 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
4526 including it.
4527 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
4528 multiple inclusion warnings.
4529
4530 2003-12-02 Akim Demaille <akim@epita.fr>
4531
4532 * doc/bison.texinfo (How Can I Reset the Parser): More about start
4533 conditions.
4534 From Bruno Haible.
4535
4536 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
4537
4538 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
4539
4540 2003-10-07 Paul Eggert <eggert@twinsun.com>
4541
4542 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
4543 if testsuite doesn't exist.
4544
4545 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
4546 literals, unfortunately.
4547 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
4548 Complain about NUL bytes in character constants or string literals.
4549
4550 2003-10-05 Paul Eggert <eggert@twinsun.com>
4551
4552 * NEWS: Don't document %no-default-prec, as it's still
4553 too experimental.
4554 * doc/bison.texinfo: Document %no-default-prec only if
4555 the defaultprec flag is set. Normally it's not.
4556
4557 2003-10-04 Paul Eggert <eggert@twinsun.com>
4558
4559 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
4560 non-modifiable lvalue, instead of a modifiable one.
4561 * doc/bison.texinfo (Actions): Document that $$ can
4562 be assigned to. Do not claim that $$ and $N are
4563 array element references: user code should not rely on this.
4564
4565 2003-10-01 Paul Eggert <eggert@twinsun.com>
4566
4567 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
4568 (grammar_declaration): Use it.
4569 * src/scan-gram.l: New token %no-default-prec.
4570 * tests/conflicts.at: Revamp tests to use %no-default-prec.
4571 * NEWS, doc/bison.texinfo: Document the above.
4572
4573 2003-10-01 Akim Demaille <akim@epita.fr>
4574
4575 VCG no longer supports long_straight_phase.
4576
4577 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
4578 * src/print_graph.c (print_graph): Adjust.
4579
4580 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
4581 and Paul Eggert <eggert@twinsun.com>
4582
4583 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
4584 Table of Symbols): Document %default-prec.
4585 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
4586 (grammar_declaration): Set default_prec on %default-prec.
4587 * src/scan-gram.l (%default-prec): New token.
4588 * src/reader.h (default_prec): New flag.
4589 * src/reader.c: Likewise.
4590 (packgram): Handle it.
4591 * tests/conflicts.at (%default-prec without %prec,
4592 %default-prec with %prec, %default-prec 1): New tests.
4593
4594 2003-09-30 Paul Eggert <eggert@twinsun.com>
4595
4596 * tests/testsuite.at: Include local.at, not input.at, fixing
4597 a typo in the 2003-08-25 patch.
4598
4599 2003-08-27 Akim Demaille <akim@epita.fr>
4600
4601 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
4602 GCC warnings.
4603
4604 2003-08-26 Akim Demaille <akim@epita.fr>
4605
4606 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
4607 "<\#" to avoid magic from Gnus when posting parts of this script.
4608
4609 2003-08-26 Akim Demaille <akim@epita.fr>
4610
4611 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
4612 (Parser::parse): here.
4613 Adjust: nerrs and errstatus is now replaced by...
4614 (Parser::nerrs_, Parser::errstatus_): New.
4615
4616 2003-08-25 Akim Demaille <akim@epita.fr>
4617
4618 * config/announce-gen, Makefile.cfg: New.
4619 * Makefile.am: Adjust.
4620 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
4621 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
4622
4623 2003-08-25 Akim Demaille <akim@epita.fr>
4624
4625 When reducing initial empty rules, Bison parser read an initial
4626 location that is not defined. This results in garbage, and that
4627 affects Bison's own parser. Therefore we need (i) to extend Bison
4628 to support a means to initialize this location, and (ii) to use
4629 this CVS Bison to fix CVS Bison's parser.
4630
4631 * src/reader.h, reader.c (epilogue_augment): Remove, replace
4632 with...
4633 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
4634 * src/parse-gram.y: Adjust.
4635 (%initial-action): New.
4636 (%error-verbose): Since we require CVS Bison, there is no reason
4637 not to use it.
4638 * src/scan-gram.l: Adjust.
4639 * src/Makefile.am (YACC): New, to make sure we use our own parser.
4640 * data/yacc.c (yyparse): Use b4_initial_action.
4641
4642 2003-08-25 Akim Demaille <akim@epita.fr>
4643
4644 * doc/bison.texinfo: Don't promote stdout for error messages.
4645
4646 2003-08-25 Akim Demaille <akim@epita.fr>
4647
4648 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
4649 From Alexandre Duret-Lutz.
4650
4651 2003-08-25 Akim Demaille <akim@epita.fr>
4652
4653 Version 1.875c.
4654
4655 2003-08-25 Akim Demaille <akim@epita.fr>
4656
4657 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
4658 Use them.
4659
4660 2003-08-25 Akim Demaille <akim@epita.fr>
4661
4662 * data/lalr1.cc (Parser::reduce_print_): New.
4663 Use it.
4664
4665 2003-08-25 Akim Demaille <akim@epita.fr>
4666
4667 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
4668 error recovery loops. This patch is based on
4669 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
4670 Also, augment the similarity between lalr1.cc and yacc.c.
4671 Note: the locations of error recovery rules are not correct yet.
4672
4673 * data/lalr1.cc: Comment changes to augment the similarity between
4674 lalr1.cc and yacc.c.
4675 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
4676 (yyerrlab1): Remove, but where it used to be (now the bottom part of
4677 yyerrlab), when hitting EOF, pop the whole stack here instead of
4678 merely falling thru the default error handling mechanism.
4679 (yyerrorlab): New label, with the old contents of YYERROR,
4680 plus the following change: pop the stack of rhs corresponding
4681 to the production that invoked YYERROR. That is how Yacc
4682 behaves (required by POSIX).
4683 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
4684 fail.
4685
4686 2003-08-25 Akim Demaille <akim@epita.fr>
4687
4688 Tune local.at so that people can "autom4te -l autotest calc.at -o
4689 calc" for instance, to extract a sub test suite.
4690
4691 * tests/testsuite.at: Move the initialization, Autotest version
4692 requirement, and AT_TESTED invocation into...
4693 * tests/local.at: here.
4694 * tests/testsuite.at: Include it for compatibility with Autoconf
4695 2.57.
4696 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
4697 be ignore.
4698
4699 2003-08-04 Paul Eggert <eggert@twinsun.com>
4700
4701 Rework code slightly to avoid gcc -Wtraditional warnings.
4702 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
4703 The returned value is now stored in *YY0. All callers changed.
4704 * src/output.c (merge_output): Adjust to the above change.
4705
4706 2003-07-26 Paul Eggert <eggert@twinsun.com>
4707
4708 * data/glr.c (YYASSERT): New macro.
4709 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
4710 yyresolveStates, yyprocessOneStack):
4711 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
4712 Derived from a suggestion by Frank Heckenbach.
4713
4714 2003-07-25 Paul Eggert <eggert@twinsun.com>
4715
4716 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
4717 for portability to K&R C (after ansi2knr, presumably). See
4718 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
4719 by Frank Heckenbach, though I have omitted the structure-initialization
4720 part of his glr-knr.diff patch since I recall that the Portable
4721 C Compiler didn't require that change.
4722
4723 Let the user specify how to allocate and free memory.
4724 Derived from a suggestion by Frank Heckenbach in
4725 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
4726 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
4727 All uses of free, malloc, realloc changed to use these macros,
4728 and unnecessary casts removed.
4729 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
4730
4731 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
4732
4733 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
4734 use s.empty() rather than s == "" to test for empty string; see
4735 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
4736 (trivial change)
4737
4738 2003-06-25 Akim Demaille <akim@epita.fr>
4739
4740 * config/depcomp, config/install-sh: Update from masters.
4741
4742 2003-06-20 Paul Eggert <eggert@twinsun.com>
4743
4744 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
4745 and return properly parenthesized result.
4746 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
4747 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
4748 Remove unnecessary parentheses from uses.
4749 * doc/bison.texinfo (Location Default Action): Describe the
4750 conventions for parentheses.
4751
4752 2003-06-19 Paul Eggert <eggert@twinsun.com>
4753
4754 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
4755 yyreportTree): Do not assume that size_t is the same width as int,
4756 when printing sizes. Print sizes using an unsigned format.
4757 Problem reported by Frank Heckenbach in
4758 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4759
4760 Port to Forte Developer 7 C compiler.
4761 * data/glr.c (struct YYLTYPE): If locations are not being used,
4762 declare a single dummy member, as empty structs do not conform
4763 to the C standard.
4764 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
4765 the Forte Developer 7 C compiler complains that end-of-loop
4766 code is not reached.
4767
4768 2003-06-17 Paul Eggert <eggert@twinsun.com>
4769
4770 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
4771 avoid warnings from picky compilers about redefinition of PARAMS.
4772
4773 2003-06-17 Paul Eggert <eggert@twinsun.com>
4774
4775 Version 1.875b.
4776
4777 * NEWS: Document 1.875b.
4778
4779 * lib/bbitset.h: Do not include config.h; that's the includer's job.
4780 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
4781 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
4782 Don't use 'index' in comments, as it's a builtin fn on some hosts.
4783 * lib/bitset_stats.c: Include gettext.h unconditionally, as
4784 per recent gettext manual's suggestion.
4785 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
4786 Use prototypes, not old-style definitions.
4787 * lib/lbitset.c (lbitset_unused_clear): Likewise.
4788 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
4789 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
4790 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
4791 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
4792 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
4793 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
4794 vbitset_or_and_cmp, vbitset_copy): Likewise.
4795
4796 * lib/libiberty.h: Do not include config.h; that's the includer's job.
4797 Do not include <stdlib.h>.
4798 (PARAMS): Define unconditionally for C89.
4799 (ATTRIBUTE_NORETURN): Remove.
4800 (ATTRIBUTE_UNUSED): Define unconditionally.
4801
4802 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
4803 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
4804 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
4805 * lib/vbitset.c, lib/vbitset.h: New files.
4806 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
4807 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
4808 from libbitset.
4809
4810 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
4811 `How Can I Reset @code{yyparse}', since texinfo does not allow
4812 arbitrary @ in node names.
4813
4814 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
4815 shouldn't be needed according to the gettext 0.12.1 documentation
4816 but which seem to be needed anyway: codeset.m4 glibc21.m4
4817 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
4818 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
4819 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
4820
4821 * lib/.cvsignore: Add stdbool.h.
4822 * m4/.cvsignore: Add nls.m4, po.m4.
4823
4824 Upgrade to CVS gnulib.
4825 * stdbool_.h: File renamed from stdbool.h.in.
4826 * configure.ac (AM_STDBOOL_H): Invoke this instead of
4827 AC_HEADER_STDBOOL.
4828 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
4829 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
4830 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
4831 (MOSTLYCLEANFILES): New var.
4832 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
4833 (stdbool.h): New rule.
4834 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
4835 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
4836 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
4837 m4/quote.m4: Upgrade to today's gnulib.
4838
4839 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
4840 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
4841 the tests right now.
4842 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
4843 yyerror are declared before use; C99 requires this.
4844
4845 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4846
4847 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
4848 first.
4849 (yyrecoverSyntaxError): Correct the logic for setting and testing
4850 yyerrState.
4851 Correct comment on handling EOF.
4852 Allow states with only a default reduction, rather than failing
4853 (I can't quite reconstruct why these were not allowed before).
4854
4855 Fixes to avoid problem that $-N rules in GLR parsers can cause
4856 buffer overruns, corrupting state.
4857
4858 * src/output.c (prepare_rules): Output max_left_semantic_context
4859 definition.
4860 * src/reader.h (max_left_semantic_context): New variable declaration.
4861 * src/scan-gram.l (max_left_semantic_context): Define.
4862 (handle_action_dollar): Update max_left_semantic_context.
4863 * data/glr.c (YYMAXLEFT): New definition.
4864 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
4865 (yyresolveAction): Ditto.
4866
4867 Fixes to problems with location handling in GLR parsers reported by
4868 Frank Heckenbach (2003/06/05).
4869
4870 * data/glr.c (YYLTYPE): Make trivial if locations not used.
4871 (YYRHSLOC): Add parentheses, and define only if locations used.
4872 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
4873 locations not used.
4874 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
4875 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
4876
4877 * tests/cxx-type.at: Exercise location information; update tests
4878 to differentiate output with and without locations.
4879 Remove forward declarations of yylex and yyerror---caused errors
4880 because default YYLTYPE not yet defined.
4881 Change semantic actions to compute strings, rather than printing
4882 them directly (to test proper passing of semantics values). Change
4883 output to prefix notation and update test data and expected results.
4884 (yylex): Track locations.
4885 (stmtMerge): Return value rather than printing, and include arguments
4886 in value.
4887
4888 2003-06-03 Paul Eggert <eggert@twinsun.com>
4889
4890 Avoid warnings generated by GCC 2.95.4 when Bison is
4891 configured with --enable-gcc-warnings.
4892 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
4893 yy::]b4_parser_class_name[::translate_,
4894 yy::Stack::operator[] (unsigned),
4895 yy::Stack::operator[] (unsigned) const,
4896 yy::Slice::operator[] (unsigned),
4897 yy::Slice::operator[] (unsigned) const):
4898 Rename local vars to avoid warnings.
4899 * tests/glr-regression.at (Improper handling of embedded actions
4900 and $-N in GLR parsers): Remove unused local variable from yylex.
4901 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
4902 (void) as arg when not pure, since we now assume C89 when building
4903 Bison. Pacify GCC by using parameter.
4904
4905 2003-06-02 Paul Eggert <eggert@twinsun.com>
4906
4907 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
4908 yy::Location::lines, yy::Location::columns): Rename arguments
4909 to avoid shadowing; this removes a warning generated by GCC 3.3.
4910
4911 2003-06-01 Paul Eggert <eggert@twinsun.com>
4912
4913 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
4914 to g++, as GCC 3.3 complains if you do it.
4915 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
4916 everything that WARNING_CFLAGS has, except omit warnings
4917 not suitable for C++.
4918 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
4919 * tests/atlocal.in (CXXFLAGS): New var.
4920 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
4921
4922 Fix a GLR parser bug I reported in February; see
4923 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
4924 The problem was that GLR parsers did not conform to the C standard,
4925 because actions like { $1 = $2 + $3; } expanded to expressions
4926 that invoked YYFILL in separate subexpressions, and YYFILL assigned
4927 to a local variable. The C standard says that expressions
4928 like (var = f ()) + (var = f ()) have undefined behavior.
4929 Another problem was that GCC sometimes issues warnings that
4930 yyfill and its parameters are unused.
4931
4932 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
4933 as possibly unused.
4934 (yyfill): New function.
4935 (YYFILL): Use it.
4936 (yyuserAction): Change type of yynormal to bool, so that it matches
4937 the new yyfill signature. Mark it as possibly unused.
4938
4939
4940 Follow up on a bug I reported in February, where a Bison-generated
4941 parser can loop. Provide a test case and a fix for yacc.c. I
4942 don't have a fix for lalr1.cc or for glr.c, unfortunately.
4943 The original bug report is in:
4944 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
4945
4946 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
4947 macro's size was becoming unwieldy.
4948 (yyerrlab): Do not discard an empty lookahead symbol, as this
4949 might destroy garbage.
4950 (yyerrorlab): New label, with the old contents of YYERROR,
4951 plus the following change: pop the stack of rhs corresponding
4952 to the production that invoked YYERROR. That is how Yacc
4953 behaves, and POSIX requires this behavior.
4954 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
4955 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
4956 Define 'alarm' to do nothing if unistd.h is not available.
4957 Add a new rule "exp: '-' error;" to test the above change to
4958 data/yacc.c. Use 'alarm' to abort any test taking longer than
4959 10 seconds, as it's probably looping.
4960 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
4961 Also, the new yacc.c generates two fewer diagnostics for an
4962 existing test.
4963
4964 2003-05-24 Paul Eggert <eggert@twinsun.com>
4965
4966 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
4967 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
4968 This fixes a problem reported by John Bowman when the Compaq/HP
4969 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
4970 -ansi -Wall -gall).
4971 * data/yacc.c (union yyalloc): Likewise.
4972 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
4973
4974 Switch from 'int' to 'bool' where that makes sense.
4975
4976 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
4977 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
4978 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
4979 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
4980 Return or accept bool, not int. All callers changed.
4981 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
4982 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
4983 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
4984 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
4985 bitset_or_and_cmp_): Likewise.
4986 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
4987 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
4988 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
4989 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
4990 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
4991 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
4992 bitset_stats_or_and_cmp): Likewise.
4993 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
4994 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
4995 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
4996 ebitset_xor_cmp): Likewise.
4997 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
4998 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
4999 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
5000 lbitset_xor_cmp): Likewise.
5001 * lib/bbitset.h: Include <stdbool.h>.
5002 (struct bitset_vtable): The following members now return bool, not
5003 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
5004 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
5005 or_and_cmp).
5006 * src/conflicts.c (count_rr_conflicts): Likewise.
5007 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
5008 All uses changed.
5009 * lib/ebitset.c (ebitset_obstack_init): Likewise.
5010 * lib/lbitset.c (lbitset_obstack_init): Likewise.
5011 * src/getargs.c (debug_flag, defines_flag, locations_flag,
5012 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5013 graph_flag): Likewise.
5014 * src/getargs.h (debug_flag, defines_flag, locations_flag,
5015 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
5016 graph_flag): Likewise.
5017 * src/output.c (error_verbose): Likewise.
5018 * src/output.h (error_verbose): Likewise.
5019 * src/reader.c (start_flag, typed): Likewise.
5020 * src/reader.h (typed): Likewise.
5021 * src/getargs.c (LOCATIONS_OPTION): New constant.
5022 (long_options, getargs): Use it.
5023 * src/lalr.c (build_relations): Use bool, not int.
5024 * src/nullable.c (nullable_compute): Likewise.
5025 * src/print.c (print_reductions): Likewise.
5026 * src/tables.c (action_row, pack_vector): Likewise.
5027 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
5028 * src/output.c (prepare): Use it.
5029 * src/output.c (token_definitions_output,
5030 symbol_destructors_output, symbol_destructors_output): Use string,
5031 not boolean integer, to keep track of whether to output separator.
5032 * src/print_graph.c (print_core): Likewise.
5033 * src/state.c (state_rule_lookaheads_print): Likewise.
5034
5035 * config/install-sh: Sync from automake 1.7.5.
5036
5037 2003-05-14 Paul Eggert <eggert@twinsun.com>
5038
5039 * src/parse-gram.y (rules_or_grammar_declaration): Require a
5040 semicolon after a grammar declaration, in the interest of possible
5041 future changes to the Bison input language.
5042 Do not allow a stray semicolon at the start of the grammar.
5043 (rhses.1): Allow one or more semicolons after any rule, including
5044 just before "|" as required by POSIX.
5045 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
5046 grammar.
5047
5048 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
5049
5050 %parse-param support for lalr1.cc.
5051
5052 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
5053 b4_cc_constructor_calls, b4_cc_constructor_call,
5054 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
5055 definitions.
5056 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
5057 parse-param arguments.
5058 (yy::b4_parser_class_name): Declare instance variables to
5059 hold parse-param arguments.
5060 * tests/calc.at: s/value/semantic_value/ because value clashes
5061 with a member of yy::b4_parser_class_name. Adjust C++ code
5062 to handle %parse-param. Enable %parse-param test in C++.
5063
5064 2003-05-12 Paul Eggert <eggert@twinsun.com>
5065
5066 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
5067 English a bit. Fix fclose typo. Change "const char" to "char
5068 const", and use ANSI C rather than K&R for "main". Suggest
5069 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
5070 and suggest yy_switch_to_buffer.
5071
5072 2003-05-05 Paul Eggert <eggert@twinsun.com>
5073
5074 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
5075 C89. This avoids a diagnostic on compilers that define __STDC__
5076 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
5077 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5078
5079 2003-05-03 Paul Eggert <eggert@twinsun.com>
5080
5081 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
5082 Do not overrun array bounds.
5083 This should fix a bug reported today by Olatunji Oluwabukunmi in
5084 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
5085
5086 2003-04-29 Akim Demaille <akim@epita.fr>
5087
5088 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
5089 * src/getargs.c, src/getargs.h: here, as bool, not int.
5090 (nondeterministic_parser): New.
5091 * src/parse-gram.y, src/scan-gram.l: Support
5092 %nondeterministic-parser.
5093 * src/output.c (prepare): Use nondeterministic_parser instead
5094 of glr_parser where appropriate.
5095 * src/tables.c (conflict_row, action_row, save_row)
5096 (token_actions, token_actions, pack_vector): Ditto.
5097
5098 2003-04-29 Akim Demaille <akim@epita.fr>
5099
5100 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
5101
5102 2003-04-29 Akim Demaille <akim@epita.fr>
5103
5104 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
5105 with %pure-parser and %locations to exercise the patch from Yakov
5106 Markovitch below.
5107
5108 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
5109
5110 * data/yacc.c: (b4_lex_param): Corrected for the case where
5111 %lex-param is provided and %pure-parser isn't.
5112
5113 2003-04-27 Paul Eggert <eggert@twinsun.com>
5114
5115 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
5116 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
5117 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
5118 if it is not defined.
5119 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
5120
5121 2003-04-26 Paul Eggert <eggert@twinsun.com>
5122
5123 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
5124 Declare to be of type suitable for the ninf value itself, not of
5125 type suitable for the corresponding table, since the latter might
5126 be unsigned but the ninf value might be negative. This fixes a
5127 bug reported by Alexandre Duret-Lutz in
5128 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
5129
5130 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
5131 invokes it. We shouldn't invoke it twice because it will attempt
5132 to put error.o in the archive twice. This fixes a glitch reported
5133 by Martin Mokrejs in
5134 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
5135
5136 2003-04-21 Paul Eggert <eggert@twinsun.com>
5137
5138 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
5139 to gnulib.
5140
5141 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
5142
5143 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
5144 Fix obvious typo that results in uncompilable GLR parsers
5145 when both %pure-parser and %locations are used. (trivial change)
5146
5147 2003-04-17 Paul Eggert <eggert@twinsun.com>
5148
5149 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
5150 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
5151 Do not insert the expected token via unput, as this runs afoul
5152 of a POSIX-compatibility bug in flex 2.5.31.
5153 All uses changed to BEGIN the parent state,
5154 since we no longer insert the expected token via unput.
5155 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
5156 that is no longer emitted after the above change.
5157
5158 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
5159 the first one. This change is from Paul Hilfinger, and it fixes
5160 regression reported by Werner Lemberg in
5161 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5162
5163 (resolve_sr_conflict): Don't invoke state_errs_set
5164 unless one or more tokens have been explicitly made errors.
5165 Otherwise, the above change causes Bison to abort.
5166
5167 * tests/existing.at (GNU pic Grammar): New test case, taken from
5168 Lemberg's email.
5169
5170 2003-03-31 Akim Demaille <akim@epita.fr>
5171
5172 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
5173
5174 2003-03-31 Akim Demaille <akim@epita.fr>
5175
5176 * src/output.c (prepare_symbols): Avoid trailing spaces in the
5177 output.
5178
5179 2003-03-31 Akim Demaille <akim@epita.fr>
5180
5181 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
5182 From Paul Hilfinger.
5183
5184 2003-03-29 Akim Demaille <akim@epita.fr>
5185
5186 * m4/error.m4: Do not put under dynamic conditions some code which
5187 expansion is under static control.
5188
5189 2003-03-29 Akim Demaille <akim@epita.fr>
5190
5191 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
5192
5193 2003-03-29 Akim Demaille <akim@epita.fr>
5194
5195 * doc/bison.texinfo (Strings are Destroyed): New.
5196
5197 2003-03-13 Paul Eggert <eggert@twinsun.com>
5198
5199 * .cvsignore: Add configure.lineno.
5200 * src/.cvsignore: Add yacc.
5201 * tests/.cvsignore: Add testsuite.log.
5202 * doc/fdl.texi: Sync with latest FSF version.
5203
5204 2003-03-12 Paul Eggert <eggert@twinsun.com>
5205
5206 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
5207 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
5208 cursor, instead of leaving it undefined. This fixes a bug
5209 reported by Tim Van Holder in
5210 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
5211 * tests/input.at (Torturing the Scanner): Test the scanner on
5212 an empty input file, which was Tim Van Holder's test case.
5213
5214 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
5215 <sys/resource.h> can be included, include sys/time.h and
5216 sys/times.h first, if available. This works around the SunOS
5217 4.1.4 porting bug reported by Bruce Becker in
5218 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
5219
5220 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
5221 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
5222 AC_HEADER_SYS_WAIT.
5223
5224 Merge changes from gnulib. This was prompted because the CVS
5225 snapshot didn't build on Solaris 7 due to strnlen problems.
5226
5227 These changes need to be merged back into gnulib:
5228 * lib/hash.c: Include <stdbool.h> unconditionally.
5229 * m4/onceonly.m4 (m4_quote): New macro.
5230 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
5231 Quote AC_FOREACH variable-expansions properly.
5232 The 2003-01-03 obstack.h change also needs merging.
5233 {end of changes requiring merging}
5234
5235 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
5236 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
5237 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
5238 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
5239 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
5240 New files, imported from gnulib.
5241 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
5242 above.
5243
5244 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
5245 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
5246 gnulib sources.
5247
5248 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
5249 Add.
5250 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
5251 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
5252 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
5253 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
5254 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
5255 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
5256 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
5257 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
5258 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
5259 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
5260 (jm_PREREQ_ARGMATCH): Remove.
5261 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
5262 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
5263
5264 * src/system.h: Include <stdbool.h> unconditionally.
5265
5266 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
5267 assuming at least C89 in the bitset code for some time now.
5268
5269 2003-03-03 Akim Demaille <akim@epita.fr>
5270
5271 * ro.po: New.
5272
5273 2003-03-02 Akim Demaille <akim@epita.fr>
5274
5275 * doc/bison.texinfo (Table of Symbols): Reactivate the
5276 documentation for %lex-param, and %parse-param.
5277
5278 2003-03-02 Akim Demaille <akim@epita.fr>
5279
5280 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
5281 generate verbose error messages.
5282 Use the number of tokens as an upper bound in yytname, as it
5283 cannot be a non terminal.
5284
5285 2003-03-02 Akim Demaille <akim@epita.fr>
5286
5287 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
5288 message.
5289
5290 2003-03-02 Akim Demaille <akim@epita.fr>
5291
5292 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
5293 Use them to exercise yycheck overrun.
5294 Based on Andrew Suffield's grammar.
5295
5296 2003-03-02 Akim Demaille <akim@epita.fr>
5297
5298 Create tests/local.at for Bison generic testing macros.
5299
5300 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
5301 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
5302 This new file.
5303 * tests/calc.at (AT_CHECK_CALC): Adjust.
5304 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
5305 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
5306 * tests/local.at: here.
5307 (AT_COMPILE_CXX): Tags the tests using it as c++.
5308 Ignore the test if CXX is not functional.
5309
5310 2003-03-01 Paul Eggert <eggert@twinsun.com>
5311
5312 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
5313 not loc->end, since loc->end might contain garbage and this leads
5314 to undefined behavior on some platforms.
5315 (id_loc, token_start): Use (IF_LINTed) initial values that do not
5316 depend on *loc, so that the reader doesn't give the the false
5317 impression that *loc is initialized.
5318 (<INITIAL>"%%"): Do not bother setting code_start, since its value
5319 does not survive the return.
5320
5321 2003-03-01 Akim Demaille <akim@epita.fr>
5322
5323 * src/scan-gram.l (code_start): Always initialize it when entering
5324 into yylex, as SC_EPILOGUE is activated *before* the corresponding
5325 yylex invocation. An alternative would be making it static, but
5326 then it starts with the second %%'s beginning, instead of its end.
5327
5328 2003-02-28 Paul Eggert <eggert@twinsun.com>
5329
5330 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
5331 around a UnixWare 7.1.1 porting bug reported by John Hughes in
5332 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
5333
5334 2003-02-26 Paul Eggert <eggert@twinsun.com>
5335
5336 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
5337 Remove Sequent/Pyramid discussion (nobody uses them any more).
5338 Merge VMS and MS-DOS discussion; these ports may well be dead
5339 but let's keep mentioning them for now. Put <> around email
5340 addresses. Add copyright notice.
5341
5342 2003-02-24 Paul Eggert <eggert@twinsun.com>
5343
5344 * data/glr.c (yy_reduce_print): yylineno -> yylno,
5345 to avoid collision with flex use of yylineno.
5346 Problem reported by Bruce Lilly in
5347 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
5348 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
5349 * data/yacc.c (yy_reduce_print): Likewise.
5350
5351 * config/depcomp: Sync with Automake 1.7.3.
5352
5353 2003-02-21 Akim Demaille <akim@epita.fr>
5354
5355 * data/lalr1.cc: Use temporary variables instead of casts to
5356 change integer types.
5357 Suggested by Paul Eggert.
5358
5359 2003-02-21 Akim Demaille <akim@epita.fr>
5360
5361 * doc/bison.texinfo: Use "location" consistently to refer to @n,
5362 to avoid confusions with lalr1.cc's notion of Position.
5363 Suggested by Paul Eggert.
5364
5365 2003-02-20 Akim Demaille <akim@epita.fr>
5366
5367 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
5368 before initial_columns.
5369 (location.hh): Use consistent variable names when defining the
5370 operator<<.
5371 Use "last" so that we subtract from Positions, not from unsigned.
5372
5373 2003-02-20 Akim Demaille <akim@epita.fr>
5374
5375 * data/lalr1.cc (position.hh): New subfile, including the extended
5376 and Doxygen'ed documentation of class Position.
5377 (location.hh): Use it.
5378 Document a` la Doxygen.
5379 With the help of Benoit Perrot.
5380
5381 2003-02-20 Akim Demaille <akim@epita.fr>
5382
5383 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
5384 AT_YACC_IF.
5385 Redefine AT_YYERROR_SEES_LOC_IF using it.
5386 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
5387 not defined.
5388 Don't use the location in yy::Parser::error_ and
5389 yy::Parser::print_ when not %locations.
5390 Activate more lalr1.cc tests.
5391
5392 2003-02-19 Akim Demaille <akim@epita.fr>
5393
5394 * data/lalr1.cc: When displaying a line number, be sure to make it
5395 an int.
5396
5397 2003-02-19 Akim Demaille <akim@epita.fr>
5398
5399 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
5400 Remove, useless.
5401 (YYABORT, YYACCEPT, YYERROR): New.
5402 * tests/calc.at: Renable the lalr1.cc test.
5403
5404 2003-02-19 Akim Demaille <akim@epita.fr>
5405
5406 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
5407 error recovery, mixing with/without pops and discarding of the
5408 lookahead.
5409 Exercise YYERROR.
5410 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
5411
5412 2003-02-17 Paul Eggert <eggert@twinsun.com>
5413
5414 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
5415 * tests/testsuite.at (AT_COMPILE): Use them.
5416 This fixes the testsuite problem reported by Robert Lentz in
5417 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
5418
5419 2003-02-12 Paul Eggert <eggert@twinsun.com>
5420
5421 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
5422 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
5423 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
5424 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
5425 Check for malloc failure, for consistency with yacc.c.
5426 (yytname_size): Remove, for consistency with yacc.c.
5427
5428 The bug still remains in data/lalr1.cc, as I didn't have time
5429 to fix it there.
5430
5431 2003-02-06 Akim Demaille <akim@epita.fr>
5432
5433 * configure.ac (GXX): Rename as...
5434 (CXX): this, to keep the original Autoconf semantics.
5435 Require 2.57.
5436 * data/lalr1.cc: Fix b4_copyright invocations.
5437 If YYDEBUG is not defined, don't depend upon name_ being defined.
5438 (location.hh): Include string and iostream.
5439 (Position::filename): New member.
5440 (Position::Position ()): New.
5441 (operator<< (Position)): New.
5442 (operator- (Position, int)): New.
5443 (Location::first, Location::last): Rename as...
5444 (Location::begin, Location::end): these, to mock the conventional
5445 iterator names.
5446 (operator<< (Location)): New.
5447 * tests/atlocal.in (CXX): New.
5448 * tests/testsuite.at (AT_COMPILE_CXX): New.
5449 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
5450 locations in a more synthetic way.
5451 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
5452 lalr1.cc is used.
5453 Adjust the C locations to match those from Emacs: first column is
5454 column 0.
5455 Change all the expected results.
5456 Conform to the GCS: simplify the locations when applicable.
5457 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
5458 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
5459 these CPP macros with the m4 macros new defined by...
5460 (AT_CHECK_PUSHDEFS): this, i.e.:
5461 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
5462 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
5463 New macros.
5464 (AT_CHECK_POPDEFS): Undefine them.
5465 (AT_CHECK_CALC_LALR1_CC): New.
5466 Use it for the first lalr1.cc test.
5467
5468 2003-02-04 Akim Demaille <akim@epita.fr>
5469
5470 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
5471 Location as is defined.
5472
5473 2003-02-04 Akim Demaille <akim@epita.fr>
5474
5475 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
5476 name_ being defined.
5477
5478 2003-02-03 Paul Eggert <eggert@twinsun.com>
5479
5480 * src/gram.h (start_symbol): Remove unused decl.
5481
5482 Use more-consistent naming conventions for local vars.
5483
5484 * src/derives.c (derives_compute): Change type of local var from
5485 int to rule_number.
5486 * src/gram.c (grammar_rules_partial_print): Likewise.
5487 * src/print.c (print_core): Likewise.
5488 * src/reduce.c (reduce_grammar_tables): Likewise.
5489
5490 * src/gram.c (grammar_dump): Change name of item_number *
5491 local var from r to rp.
5492 * src/nullable.c (nullable_compute): Likewise.
5493
5494 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
5495
5496 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
5497 for symbol or symbol_number var.
5498 * src/reader.c (grammar_start_symbol_set): Likewise.
5499 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
5500 Likewise.
5501 * src/state.c (transitions_to): Likewise.
5502 * src/state.h: Likewise.
5503 * src/tables.c (symbol_number_to_vector_number): Likewise.
5504
5505 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
5506 char * var.
5507
5508 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
5509 var.
5510
5511 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
5512 var.
5513
5514 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
5515 Use str, not s, for char * var. Use ch, not c, for character var.
5516 Use size for size var.
5517
5518 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
5519 char * var.
5520 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
5521 uniqstr var.
5522 * src/uniqstr.h: Likewise.
5523
5524 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
5525 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
5526 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
5527 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
5528 param to have same name as that of enum, so that we don't use
5529 "s" to stand for a non-state.
5530
5531 2003-02-02 Akim Demaille <akim@epita.fr>
5532
5533 * src/scan-skel.l: Scan more than one inert character per yylex
5534 invocation.
5535
5536 2003-02-01 Paul Eggert <eggert@twinsun.com>
5537
5538 Version 1.875a.
5539
5540 * po/LINGUAS: Add ms.
5541
5542 2003-01-30 Akim Demaille <akim@epita.fr>
5543
5544 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
5545
5546 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5547
5548 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
5549 of $1.
5550
5551 Changes in response to error report by S. Eken: GLR mode does not
5552 handle negative $ indices or $ indices in embedded rules correctly.
5553 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
5554
5555 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
5556 (b4_rhs_location): Ditto.
5557 (yyfill): New function to copy from stack tree into array
5558 incrementally.
5559 (yyuserAction): Modify to allow incremental move of semantic values
5560 to rhs array when in GLR mode.
5561 Define YYFILL to use in user-defined actions to fill semantic array
5562 as needed.
5563 Remove dummy use of yystack, as there is now a guaranteed use.
5564 (yydoAction): Modify to allow incremental move of semantic values
5565 to rhs array when in GLR mode.
5566 (yyresolveAction): Ditto.
5567 (yyglrShiftDefer): Update comment.
5568 (yyresolveStates): Use X == NULL for pointers, not !X.
5569 (yyglrReduce): Ditto.
5570 (yydoAction): Ditto
5571
5572 * tests/glr-regr1.at: Rename to ...
5573 * tests/glr-regression.at: Add new regression test for the problems
5574 described above (adapted from S. Eken).
5575 Update copyright notice.
5576 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
5577 * tests/Makefile.am: Ditto.
5578
5579 2003-01-28 Paul Eggert <eggert@twinsun.com>
5580
5581 * data/lalr1.cc: Do not use @output_header_name@ unless
5582 b4_defines_flag is set. This fixes two bugs reported by
5583 Tim Van Holder in
5584 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
5585 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
5586
5587 2003-01-21 Paul Eggert <eggert@twinsun.com>
5588
5589 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
5590 we don't need to worry about yyerrlab1 being reported as an
5591 "unused label" by non-GCC C compilers. The downside is that if
5592 locations are used then a couple of statements are duplicated each
5593 time YYERROR is invoked, but the upside is that the warnings
5594 should vanish.
5595 (yyerrlab1): Move code to YERROR.
5596 (yyerrlab2): Remove. Change uses back to yyerrlab1.
5597 This reverts some of the 2002-12-27 change.
5598
5599 2003-01-17 Paul Eggert <eggert@twinsun.com>
5600
5601 * src/output.c (symbol_printers_output): Fix typo that led
5602 to core dump. Problem reported by Antonio Rus in
5603 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
5604
5605 2003-01-13 Akim Demaille <akim@epita.fr>,
5606 Quoc Peyrot <chojin@lrde.epita.fr>,
5607 Robert Anisko <anisko_r@lrde.epita.fr>
5608
5609 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
5610 when the stacks contain one element, as the loop would otherwise
5611 free the last state, and then use the top state (the one we just
5612 popped). This means that the initial elements will not be freed
5613 explicitly, as is the case in yacc.c; it is not a problem, as
5614 these elements have fake values.
5615
5616 2003-01-11 Paul Eggert <eggert@twinsun.com>
5617
5618 * NEWS: %expect-violations are now just warnings, reverting
5619 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
5620 bootstrapping problem reported by Matthias Klose; see
5621 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
5622 * src/conflicts.c (conflicts_print): Likewise.
5623 * tests/conflicts.at (%expect not enough, %expect too much,
5624 %expect with reduce conflicts): Likewise.
5625 * doc/bison.texinfo (Expect Decl): Document this. Also mention
5626 that the warning is enabled if the number of conflicts changes
5627 (not necessarily increases).
5628
5629 * src/getargs.c (version): Update copyright year.
5630
5631 2003-01-09 Akim Demaille <akim@epita.fr>
5632
5633 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
5634
5635 2003-01-08 Paul Eggert <eggert@twinsun.com>
5636
5637 * Makefile.maint (WGETFLAGS):
5638 New macro, containing "-C off" to disable proxy caches.
5639 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
5640 (rel-check): Use $(WGET) instead of wget.
5641
5642 2003-01-06 Paul Eggert <eggert@twinsun.com>
5643
5644 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
5645 the GLR paper of Scott, Johnstone and Hussain.
5646
5647 2003-01-04 Paul Eggert <eggert@twinsun.com>
5648
5649 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
5650 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
5651 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
5652 (EXTRA_LIBRARIES): New var, for liby.a.
5653 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
5654 (EXTRA_SCRIPTS): New var, for yacc.
5655
5656 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
5657 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
5658 Problem reported by Nelson H. F. Beebe.
5659
5660 2003-01-03 Paul Eggert <eggert@twinsun.com>
5661
5662 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
5663 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
5664 when compiling Bison 1.875's `bitset bset = obstack_alloc
5665 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
5666
5667 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
5668 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
5669 grow to a huge size with typical invocation.
5670
5671 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
5672 Use the pattern recommended by Autoconf 2.57, except also protect
5673 against double-definition.
5674 * src/system.h: Likewise.
5675 Portability issues reported by Nelson H. F. Beebe.
5676
5677 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
5678 All uses changed. Provide a definition in both C and C++.
5679 (yytrue, yyfalse): Define even if defined (__cplusplus).
5680
5681 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
5682 Reported by Nelson H. F. Beebe.
5683
5684 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
5685
5686 2003-01-02 Paul Eggert <eggert@twinsun.com>
5687
5688 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
5689 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
5690 Bug reported by Nelson H. F. Beebe.
5691
5692 2003-01-01 Paul Eggert <eggert@twinsun.com>
5693
5694 * Version 1.875.
5695
5696 2002-12-30 Paul Eggert <eggert@twinsun.com>
5697
5698 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
5699 Moved here from...
5700 (<INITIAL>","): Here. This causes stray "," to be treated
5701 more uniformly.
5702
5703 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
5704 last brace in braced code when not in Yacc mode, for compatibility
5705 with Bison 1.35. This resurrects the 2001-12-15 patch to
5706 src/reader.c.
5707
5708 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
5709 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
5710
5711 2002-12-28 Paul Eggert <eggert@twinsun.com>
5712
5713 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
5714 that of SYM's type. This fixes Debian bug 168069, reported by
5715 Thomas Olsson.
5716
5717 2002-12-28 Paul Eggert <eggert@twinsun.com>
5718
5719 Version 1.75f.
5720
5721 Switch back to the Yacc style of conflict reports, undoing some
5722 of the 2002-07-30 change.
5723 * doc/bison.texinfo (Understanding): Use Yacc style for
5724 conflict reports. Also, use new way of locating rules.
5725 * src/conflicts.c (conflict_report):
5726 Renamed from conflict_report_yacc, removing the old
5727 'conflict_report'. Translate the entire conflict report at once,
5728 so that we don't assume that "," has the same interpretation in
5729 all languages.
5730 (conflicts_output): Use Yacc-style conflict report for each state,
5731 instead of our more-complicated style.
5732 (conflicts_print): Use Yacc-style conflict report, except print
5733 the input file name when not emulating Yacc.
5734 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
5735 Conflicted Reduction, %expect not enough, %expect too much,
5736 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
5737 * tests/existing.at (GNU Cim Grammar): Likewise.
5738 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
5739
5740 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
5741 fatal): Don't invoke fflush; it's not needed and it might even be
5742 harmful for stdout, as stdout might not be open.
5743 * src/reduce.c (reduce_print): Likewise.
5744
5745 2002-12-27 Paul Eggert <eggert@twinsun.com>
5746
5747 Fix a bug where error locations were not being recorded correctly.
5748 This problem was originally reported by Paul Hilfinger in
5749 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
5750
5751 * data/yacc.c (yyparse): New local var yylerrsp, to record the
5752 top of the location stack's error locations.
5753 (yyerrlab): Set it. When discarding a token, push its location
5754 onto yylerrsp so that we don't lose track of the error's end.
5755 (yyerrlab1): Now is only the target of YYERROR, so that we can
5756 properly record the location of the action that failed. For GCC
5757 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
5758 GCC warning about yyerrlab1 being unused if YYERROR is unused.
5759 (yyerrlab2): New label, which yyerrlab now falls through to.
5760 Compute the error's location by applying YYLLOC_DEFAULT to
5761 the locations of all the symbols that went into the error.
5762 * doc/bison.texinfo (Location Default Action): Mention that
5763 YYLLOC_DEFAULT is also invoked for syntax errors.
5764 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
5765 Error locations include the locations of all the tokens that were
5766 discarded, not just the last token.
5767
5768 2002-12-26 Paul Eggert <eggert@twinsun.com>
5769
5770 * src/files.c: Include quote.h.
5771 (compute_output_file_names): Warn if we detect conflicting
5772 outputs to the same file. This should catch the misunderstanding
5773 exemplified by Debian Bug 165349, reported by Bruce Stephens..
5774
5775 * src/conflicts.c (conflicts_print): If the user specifies
5776 "%expect N", report an error if there are any reduce/reduce
5777 conflicts. This is what the manual says should happen.
5778 This fixes Debian bug 130890, reported by Anthony DeRobertis.
5779 * tests/conflicts.at (%expect with reduce conflicts): New test.
5780
5781 Don't use m4_include on relative file names, as it doesn't work as
5782 desired if there happens to be a file with that name under ".".
5783
5784 * m4sugar/version.m4: Remove; it was included but it wasn't used.
5785 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
5786 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
5787 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
5788 * src/output.c (output_skeleton): Use full path names when
5789 specifying a file to include; don't rely on include path, as
5790 it's unreliable when the working file contains a file with
5791 that name.
5792
5793 2002-12-25 Paul Eggert <eggert@twinsun.com>
5794
5795 Remove obsolete references to bison.simple and bison.hairy.
5796 Problem mentioned by Aubin Mahe in
5797 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
5798 * data/glr.c: Comment fix.
5799 * doc/bison.1: Remove references. Also, mention "yacc".
5800
5801 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
5802 with -g option.
5803
5804 * src/parse-gram.y (declaration): Use enum "report_states" rather
5805 than its numeric value 1.
5806
5807 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
5808 opening a new one. This fixes Debian bug 165349, reported by
5809 Bruce Stephens.
5810
5811 2002-12-24 Paul Eggert <eggert@twinsun.com>
5812
5813 Version 1.75e.
5814
5815 * Makefile.maint (cvs-update): Don't assume that the shell
5816 supports $(...), as Solaris sh doesn't.
5817
5818 * src/parse-gram.y (lloc_default): Remove test for empty
5819 nonterminals at the end, since it didn't change the result.
5820
5821 2002-12-24 Paul Eggert <eggert@twinsun.com>
5822
5823 If the user does not define YYSTYPE as a macro, Bison now declares it
5824 using typedef instead of defining it as a macro. POSIX requires this.
5825 For consistency, YYLTYPE is also declared instead of defined.
5826
5827 %union directives can now have a tag before the `{', e.g., the
5828 directive `%union foo {...}' now generates the C code
5829 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
5830 The default union tag is `YYSTYPE', for compatibility with Solaris 9
5831 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
5832 instead of `yyltype'.
5833
5834 `yystype' and `yyltype' are now obsolescent macros instead of being
5835 typedefs or tags; they are no longer documented and will be
5836 withdrawn in a future release.
5837
5838 * data/glr.c (b4_location_type): Remove.
5839 (YYSTYPE): Renamed from yystype.
5840 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
5841 (struct YYLTYPE): Renamed from struct yyltype.
5842 (YYLTYPE): Renamed from yyltype.
5843 (yyltype, yystype): New (and obsolescent) macros,
5844 for backward compatibility.
5845 * data/yacc.c: Likewise.
5846
5847 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
5848 does not specify a union tag. This is for compatibility with
5849 Solaris 9 yacc.
5850
5851 * src/parse-gram.y (add_param): 2nd arg is now char * not char
5852 const *, since it is now modified by stripping surrounding { }.
5853 (current_braced_code): Remove.
5854 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
5855 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
5856 trailing " {...}". Now of type <chars>.
5857 (grammar_declaration): Adjust to bundled tokens.
5858 (code_content): Remove; stripping is now done by add_param.
5859 (print_token_value): Print contents of bundled tokens.
5860 (token_name): New function.
5861
5862 * src/reader.h (braced_code, current_braced_code): Remove.
5863 (token_name): New decl.
5864
5865 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
5866 token_type, not braced_code code_kind. All uses changed.
5867 (SC_PRE_CODE): New state, for scanning after a keyword that
5868 has (or usually has) an immediately-following braced code.
5869 (token_type): New local var, to keep track of which token type
5870 to return when scanning braced code.
5871 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
5872 <INITIAL>"%parse-param", <INITIAL>"%printer",
5873 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
5874 instead of returning a token type immediately.
5875 (<INITIAL>"{"): Set token type.
5876 (<SC_BRACED_CODE>"}"): Use it.
5877 (handle_action_dollar, handle_action_at): Now returns bool
5878 indicating success. Fail if ! current_rule; this prevents a core dump.
5879 (handle_symbol_code_dollar, handle_symbol_code_at):
5880 Remove; merge body into caller.
5881 (handle_dollar, handle_at): Complain in invalid contexts.
5882
5883 * NEWS, doc/bison.texinfo: Document the above.
5884 * NEWS: Fix years and program names in copyright notice.
5885
5886 2002-12-17 Paul Eggert <eggert@twinsun.com>
5887
5888 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
5889 Reporting, Table of Symbols): Omit mentions of %lex-param and
5890 %parse-param from the documentation for now.
5891
5892 2002-12-15 Paul Eggert <eggert@twinsun.com>
5893
5894 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
5895 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
5896 lookahead symbol, and which sets yychar in parser actions) and it
5897 disagreed with the Bison documentation. Bug
5898 reported by Andrew Walrond.
5899
5900 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
5901 as the caller now does that.
5902 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
5903 (YYEMPTY): Parenthesize right hand side, since others use it.
5904 (yyparse): Don't assume that our generated code is the only code
5905 that sets yychar.
5906
5907 2002-12-13 Paul Eggert <eggert@twinsun.com>
5908
5909 Version 1.75d.
5910
5911 POSIX requires a "yacc" command.
5912 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
5913 (MOSTLYCLEANFILES): Add yacc.
5914 (yacc): New rule.
5915 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
5916 as an alias for bison y.
5917
5918 * po/LINGUAS: Add da.
5919
5920 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
5921 problem with latest <getopt.h>.
5922 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
5923
5924 * doc/fdl.texi: Upgrade to 1.2.
5925 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
5926 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
5927 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
5928 gnulib.
5929 * config/install-sh: Sync with autotools.
5930
5931 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
5932 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
5933 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
5934 locations are requested.
5935 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
5936 locations are requested.
5937
5938 2002-12-12 Paul Eggert <eggert@twinsun.com>
5939
5940 Remove unportable casts and storage allocation tricks.
5941 While we're at it, remove almost all casts, since they
5942 usually aren't needed and are a sign of trouble.
5943
5944 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
5945
5946 * src/derives.c (derives_compute): Do not subtract NTOKENS from
5947 the pointer DSET returned by malloc; this isn't portable.
5948 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
5949 Similarly for DERIVES.
5950 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
5951 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
5952 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
5953
5954 * src/derives.c (derives_compute): Do not bother invoking
5955 int_of_rule_number, since rule numbers are integers.
5956
5957 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
5958 rather than XMALLOC (char, N).
5959
5960 * src/files.c (filename_split): Rewrite to avoid cast.
5961
5962 * src/gram.h (symbol_number_as_item_number,
5963 item_number_as_symbol_number, rule_number_as_item_number,
5964 item_number_as_rule_number):
5965 Now inline functions rather than macros, to avoid casts.
5966 * src/state.h (state_number_as_int): Likewise.
5967 * src/tables.c (state_number_to_vector_number,
5968 symbol_number_to_vector_number): Likewise.
5969
5970 * src/gram.h (int_of_rule_number): Remove; no longer used.
5971
5972 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
5973 since the resulting storage is always stored into.
5974
5975 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
5976 where it's needed.
5977
5978 * src/muscle_tab.c (muscle_m4_output):
5979 Now inline. Return bool, not int.
5980 * src/state.c (state_compare): Likewise.
5981 * src/symtab.c (symbol_check_defined,
5982 symbol_check_alias_consistency, symbol_pack, symbol_translation,
5983 hash_compare_symbol, hash_symbol):
5984 Likewise.
5985 * src/uniqstr.c (uniqstr_print): Likewise.
5986 * src/muscle_tab.c (muscle_m4_output_processor):
5987 New function, to avoid casts.
5988 * src/state.c (state_comparator, stage_hasher): Likewise.
5989 * src/symtab.c (symbol_check_defined_processor,
5990 symbol_check_alias_consistency_processor, symbol_pack_processor,
5991 symbol_translation_processor, hash_symbol_comparator,
5992 hash_symbol_hasher): Likewise.
5993 * src/uniqstr.c (uniqstr_print_processor): Likewise.
5994 * src/muscle_tab.c (muscles_m4_output):
5995 Use new functions instead of casting old functions unportably.
5996 * src/state.c (state_hash_new): Likewise.
5997 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
5998 symbols_token_translations_init):
5999 Likewise.
6000 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
6001
6002 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
6003 var instead of casting to long, to avoid casts.
6004 (prepare_states): Use MALLOC rather than alloca, so that we don't
6005 have to worry about alloca.
6006 * src/state.c (state_hash_lookup): Likewise.
6007
6008 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
6009 local var instead of casting to unsigned char, to avoid casts.
6010
6011 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
6012 STATE_ALLOC): Remove.
6013 (transitions_new, errs_new, reductions_new, state_new): Use malloc
6014 rather than calloc, and use offsetof to avoid allocating slightly
6015 too much storage.
6016 (state_new): Initialize all members.
6017
6018 * src/state.c (state_hash): Use unsigned accumulator, not signed.
6019
6020 * src/symtab.c (symbol_free): Remove; unused.
6021 (symbol_get): Remove cast in lhs of assignment.
6022 (symbols_do): Now static. Accept generic arguments, not
6023 hashing-related ones.
6024
6025 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
6026 (symbol_processor): Remove.
6027 (symbols_do): Remove decl; now static.
6028
6029 * src/system.h (alloca): Remove; decl no longer needed.
6030 (<stddef.h>): Include, for offsetof.
6031 (<inttypes.>, <stdint.h>): Include if available.
6032 (uintptr_t): New type, if system lacks it.
6033 (CALLOC, MALLOC, REALLOC): New macros.
6034 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
6035 new macros.
6036
6037 * src/tables.c (table_size): Now int, to pacify GCC.
6038 (table_grow, table_ninf_remap): Use signed table size.
6039 (save_row): Don't bother initializing locals when not needed.
6040 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
6041 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
6042
6043 * src/vcg.h: Correct misspellings.
6044
6045 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
6046
6047
6048 * src/getargs.c (getargs): Don't assume EOF == -1.
6049
6050 2002-12-09 Paul Eggert <eggert@twinsun.com>
6051
6052 Change identifier spellings to avoid collisions with names
6053 that are reserved by POSIX.
6054
6055 Don't use names ending in _t, since POSIX reserves them.
6056 For consistency, remove _e and _s endings -- they're weren't
6057 needed to remove ambiguity. All uses changed.
6058 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
6059 turn was just renamed from struniq_t.
6060 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
6061 which in turn was just renamed from struniq_processor_t.
6062 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
6063 in turn was renamed from hash_compare_struniq_t.
6064 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
6065 (state_list): Renamed from state_list_t.
6066 * src/assoc.h (assoc): Renamed from assoc_t.
6067 * src/conflicts.c (enum conflict_resolution): Renamed from
6068 enum conflict_resolution_e.
6069 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
6070 (rule_list): Renamed from rule_list_t.
6071 * src/getargs.h (enum trace): Renamed from enum trace_e.
6072 (enum report): Renamed from enum report_e.
6073 * src/gram.h (item_number): Renamed from item_number_t.
6074 (rule_number): Renamed from rule_number_t.
6075 (struct rule_s): Remove the "rule_s" part; not used.
6076 (rule): Renamed from rule_t.
6077 (rule_filter): Renamed from rule_filter_t.
6078 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
6079 (goto_list): Renamed from goto_list_t.
6080 * src/lalr.h (goto_number): Renamed from goto_number_t.
6081 * src/location.h (location): Renamed from location_t.
6082 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
6083 and moved here from:
6084 * src/muscle_tab.h (muscle_entry_t): here.
6085 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
6086 (rule_list): Renamed from rule_list_t.
6087 * src/print_graph.c (static_graph): Renamed from graph.
6088 * src/reader.h (braced_code): Renamed from braced_code_t.
6089 Remove brace_code_e tag.
6090 * src/relation.h (relation_node): Renamed from relation_node_t.
6091 (relation_nodes): Renamed from relation_nodes_t.
6092 (relation): Renamed from relation_t.
6093 * src/state.h (state_number): Renamed from state_number_t.
6094 (struct state): Renamed from struct state_s.
6095 (state): Renamed from state_t.
6096 (transitions): Renamed from transitions_t. Unused (and
6097 misspelled) transtion_s tag removed.
6098 (errs): Renamed from errs_t. Unused errs_s tag removed.
6099 (reductions): Renamed from reductions_t. Unused tag
6100 reductions_s removed.
6101 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
6102 (struct symbol_list): Renamed from struct symbol_list_s.
6103 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
6104 (struct symbol): Renamed from struct symbol_s.
6105 (symbol): Renamed from symbol_t.
6106 * src/tables.c (vector_number): Renamed from vector_number_t.
6107 (action_number): Renamed from action_t.
6108 * src/tables.h (base_number): Renamed from base_t.
6109 * src/vcg.h (enum color): Renamed from enum color_e.
6110 (enum textmode): Renamed from enum textmode_e.
6111 (enum shape): Renamed from enum shape_e.
6112 (struct colorentry): Renamed from struct colorentry_s.
6113 (struct classname): Renamed from struct classname_s.
6114 (struct infoname): Renamed from struct infoname_s.
6115 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
6116 (enum decision): Renamed from enum decision_e.
6117 (enum orientation): Renamed from enum orientation_e.
6118 (enum alignment): Renamed from enum alignment_e.
6119 (enum arrow_mode): Renamed from enum arrow_mode_e.
6120 (enum crossing_type): Renamed from enum crossing_type_e.
6121 (enum view): Renamed from enum view_e.
6122 (struct node): Renamed from struct node_s.
6123 (node): Renamed from node_t.
6124 (enum linestyle): Renamed from enum linestyle_e.
6125 (enum arrowstyle): Renamed from enum arrowstyle_e.
6126 (struct edge): Renamed from struct edge.
6127 (edge): Renamed from edge_t.
6128 (struct graph): Renamed from struct graph_s.
6129 (graph): Renamed from graph_t.
6130 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
6131 Rename value_t -> value.
6132 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
6133 value_t_as_yystype -> value_as_yystype.
6134
6135 Don't include <errno.h> in the mainstream code, since it
6136 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
6137 * lib/get-errno.c, lib/get-errno.h: New files.
6138 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
6139 get-errno.c.
6140 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
6141 * src/output.c (output_skeleton): Likewise.
6142 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
6143 instead of errno.
6144 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
6145 Likewise.
6146 (handle_action_dollar, handle_action_at): Likewise.
6147 * src/system.h: Do not include <errno.h>.
6148 (TAB_EXT): Renamed from EXT_TAB.
6149 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
6150
6151 Avoid str[a-z]*, since <string.h> reserves that name space.
6152 Change all instances of "struniq" in names to "uniqstr", and
6153 likewise for "STRUNIQ" and "UNIQSTR".
6154 * src/uniqstr.c: Renamed from src/struniq.c.
6155 * src/uniqstr.h: Renamed from src/struniq.h.
6156 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
6157 * src/files.c (strsuffix): Remove; unused.
6158 (concat2): Renamed from stringappend. Now static.
6159 * src/files.h (strsuffix, stringappend): Remove; unused.
6160 * src/parse-gram.y (<chars>): Renamed from <string>.
6161 (<uniqstr>): Renamed from <struniq>.
6162 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
6163 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
6164 (struct graph_s.expand): Renamed from struct graph_s.stretch.
6165 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
6166 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
6167 (N_EXPAND): Renamed from N_STRETCH.
6168
6169 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
6170 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
6171 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
6172 Remove; unused.
6173 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
6174 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
6175 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
6176 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
6177 (BASE_MAXIMUM): Renamed from BASE_MAX.
6178 (BASE_MINIMUM): Renamed from BASE_MIN.
6179 (ACTION_MAX): Remove; unused.
6180 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
6181 Unnecessary casts removed from above defines.
6182
6183
6184 Fix misspelling in names.
6185 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
6186 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
6187 G_NODE_ALIGNEMENT.
6188
6189
6190 * lib/timevar.c (timevar_report): Renamed from time_report,
6191 for consistency with other names.
6192 * lib/timevar.h (timevar_report): New decl.
6193 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
6194
6195
6196 Sort include-file uses.
6197
6198 Reorder all include files under src to be in the order "system.h".
6199 then the ../lib include files in angle brackets (alphabetized),
6200 then the . include files in double-quotes (alphabetized). Fix
6201 dependency breakages encountered in this process, as follows:
6202 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
6203 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
6204 * src/state.h: Include "symtab.h".
6205
6206 2002-12-08 Paul Eggert <eggert@twinsun.com>
6207
6208 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
6209 since this causes problems when __file__ contains character
6210 sequences like "@" that are treated specially by src/scan-skel.l.
6211 Instead, just use the file's basename. This fixes the bug
6212 reported by Martin Mokrejs in
6213 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
6214
6215 2002-12-06 Paul Eggert <eggert@twinsun.com>
6216
6217 Add support for rules that do not have trailing semicolons, as
6218 POSIX requires. Improve the quality of locations in Bison
6219 diagnostics.
6220
6221 * src/location.c: Include <quotearg.h>.
6222 (empty_location): Now const.
6223 (location_print): New function. Follow the recommendation of the
6224 GNU Coding Standards for locations that span file boundaries.
6225 * src/location.h: Do not include <quotearg.h>; no longer needed.
6226 (boundary): New type.
6227 (location_t): Use it. This allows locations to span file boundaries.
6228 All member uses changed: file -> start.file or end.file (as needed),
6229 first_line -> start.line, first_column -> start.column,
6230 last_line -> end.line, last_column -> end.column.
6231 (equal_boundaries): New function.
6232 (LOCATION_RESET, LOCATION_STEP): Remove.
6233 (LOCATION_PRINT): Remove. All callers changed to use location_print.
6234 (empty_location): Now const.
6235 (location_print): New decl.
6236 * src/parse-gram.y (lloc_default): New function, which handles
6237 empty locations more accurately.
6238 (YYLLOC_DEFAULT): Use it.
6239 (%token COLON): Remove.
6240 (%token ID_COLON): New token.
6241 (rules): Use it.
6242 (declarations, rules): Remove trailing semicolon.
6243 (declaration, rules_or_grammar_declaration):
6244 Allow empty (";") declaration.
6245 (symbol_def): Remove empty actions; no longer needed.
6246 (rules_or_grammar_declaration): Remove trailing semicolon.
6247 (semi_colon.opt): Remove.
6248 * src/reader.h: Include location.h.
6249 (scanner_cursor): New decl.
6250 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
6251 rolling our own.
6252 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
6253 of *loc.
6254 (STEP): Remove. No longer needed, now that adjust_location does
6255 the work. All uses removed.
6256 (scanner_cursor): New var.
6257 (adjust_location): Renamed from extend_location. It now sets
6258 *loc and adjusts the scanner cursor. All uses changed.
6259 Don't bother testing for CR.
6260 (handle_syncline): Remove location arg; now updates scanner cursor.
6261 All callers changed.
6262 (unexpected_end_of_file): Now accepts start boundary of token or
6263 comment, not location. All callers changed. Update scanner cursor,
6264 not the location.
6265 (SC_AFTER_IDENTIFIER): New state.
6266 (context_state): Renamed from c_context. All uses changed.
6267 (id_loc, code_start, token_start): New local vars.
6268 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
6269 processing of Yacc white space and equivalents here.
6270 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
6271 instead of returning ID immediately, since we need to search for
6272 a subsequent colon.
6273 (<INITIAL>"'", "\""): Save token_start.
6274 (<INITIAL>"%{", "{", "%%"): Save code_start.
6275 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
6276 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
6277 BEGIN context_state at end, not INITIAL.
6278 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
6279 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
6280 Return correct token start.
6281 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
6282 the start of a character, string or multiline comment is found.
6283 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
6284 Reduction): Adjust reported locations to match the more-precise
6285 results now expected.
6286 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
6287 * tests/reduce.at (Useless Rules, Reduced Automaton,
6288 Underivable Rules): Likewise.
6289 * tests/regression.at (Invalid inputs): No longer `expecting ";"
6290 or "|"' now that so many other tokens are allowed by the new grammar.
6291
6292 * src/complain.h (current_file): Remove duplicate decl;
6293 current_file is now owned by files.h.
6294 * src/complain.c, src/scan-gram.l: Include files.h.
6295
6296 2002-12-06 Paul Eggert <eggert@twinsun.com>
6297
6298 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
6299 promotes to int; it might be unsigned int.
6300 * data/yacc.c (yy_reduce_print): Likewise.
6301
6302 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
6303 be #defined in the prologue, not in the Bison declarations.
6304 This fixes Debian Bug 102878, reported by Shaul Karl.
6305
6306 2002-12-02 Paul Eggert <eggert@twinsun.com>
6307
6308 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
6309 * lib/strtoul.c: New file, from gnulib.
6310 This fixes a porting bug reported by Peter Klein in
6311 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
6312
6313 2002-11-30 Paul Eggert <eggert@twinsun.com>
6314
6315 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
6316 and put only a forward declaration in the prologue. This is for
6317 consistency with the other scanner helper functions.
6318
6319 Type clashes now generate warnings, not errors, since it
6320 appears that POSIX may allow some grammars with type clashes.
6321 * src/reader.c (grammar_current_rule_check): Warn about
6322 type clashes instead of complaining.
6323 * tests/input.at (Type Clashes): Expect warnings, not complaints.
6324
6325 Add Yacc library, since POSIX requires it.
6326 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
6327 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
6328 * lib/main.c, lib/yyerror.c: New files.
6329
6330 gram_error can be static; it need not be extern.
6331 * src/reader.h (gram_error): Remove decl.
6332 * src/parse-gram.y (gram_error): Now static. Add static decl.
6333 (print_token_value): Omit parameter names from forward decl,
6334 for consistency.
6335
6336 2002-11-29 Paul Eggert <eggert@twinsun.com>
6337
6338 * doc/bison.texinfo: Emphasize that yylex and yyerror must
6339 be declared before being used. E.g., one should typically
6340 declare them in the prologue. Use GNU coding style in examples.
6341 Put "const" consistently after the type it modifies. Mention
6342 that C99 supports "inline". Mention that yyerror traditionally
6343 returns "int".
6344
6345 %parse-param and %lex-param now take just one argument, the
6346 declaration; the argument name is deduced from the declaration.
6347
6348 * doc/bison.texinfo (Parser Function, Pure Calling, Error
6349 Reporting, Table of Symbols): Document this.
6350 * src/parse-gram.y (add_param): New function.
6351 (COMMA): Remove.
6352 (declaration): Implement new rule for %parse-param and %lex-param.
6353 * src/scan-gram.l: "," now elicits a warning, rather than being
6354 a token; this is more compatible with byacc.
6355 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
6356
6357 2002-11-27 Paul Eggert <eggert@twinsun.com>
6358
6359 Rename identifiers to avoid real and potential collisions.
6360
6361 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
6362 to avoid collision with lex macro described by Bruce Lilly in
6363 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
6364 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
6365 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
6366 * src/parse-gram.y (print_token_value): Renamed from yyprint.
6367 All uses changed.
6368 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
6369 The name "yycontrol" violates the name space rules, and this stuff
6370 wasn't being used anyway.
6371 (input): Remove action; this stuff wasn't being used.
6372 (gram_error): Rename local variable yylloc -> loc.
6373 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
6374 (YY_DECL): Don't use "yy" at start of local variables.
6375 All uses changed, e.g., yylloc -> loc.
6376 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
6377 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
6378 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
6379 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
6380
6381 * src/parse-gram.y (gram_error): loc is now const *.
6382 * src/reader.h (gram_error): Likewise.
6383
6384 2002-11-24 Paul Eggert <eggert@twinsun.com>
6385
6386 Version 1.75c.
6387
6388 * tests/actions.at (Actions after errors): Use an output format
6389 more similar to that of the Printers and Destructors test.
6390 Test the position of the ';' token too.
6391 (Printers and Destructors): Likewise.
6392 (Printers and Destructors: %glr-parser): Remove for now, to avoid
6393 unnecessarily alarming people when the test fails.
6394
6395 * data/yacc.c (yyerrlab1): Move this label down, so that the
6396 parser does not discard the lookahead token if the user code
6397 invokes YYERROR. This change is required for POSIX conformance.
6398
6399 * lib/error.c: Sync with gnulib.
6400
6401 2002-11-22 Paul Eggert <eggert@twinsun.com>
6402
6403 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
6404 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
6405 * lib/xmalloc.c: Likewise.
6406
6407 2002-11-20 Paul Eggert <eggert@twinsun.com>
6408
6409 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
6410
6411 2002-11-20 Paul Eggert <eggert@twinsun.com>
6412
6413 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
6414 should use `if (! x) abort ();' rather than `assert (x);', and
6415 anyway it's one less thing to worry about configuring.
6416
6417 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
6418 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
6419 and replace all instances of assert with abort.
6420 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
6421 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
6422
6423 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
6424 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
6425 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
6426 hash_find_entry, hash_rehash, hash_insert): Likewise.
6427 * src/conflicts.c (resolve_sr_conflict): Likewise.
6428 * src/lalr.c (set_goto_map, map_goto): Likewise.
6429 * src/nullable.c (nullable_compute): Likewise.
6430 * src/output.c (prepare_rules, token_definitions_output): Likewise.
6431 * src/reader.c (packgram, reader): Likewise.
6432 * src/state.c (state_new, state_free, state_transitions_set,
6433 state_reduction_find): Likewise.
6434 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
6435 symbol_pack): Likewise.
6436 * src/tables.c (conflict_row, pack_vector): Likewise.
6437 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
6438 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
6439 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
6440 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
6441
6442 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
6443 (ARGMATCH_CONSTRAINT): New macro.
6444 (ARGMATCH_ASSERT): Use it.
6445
6446 * src/system.h (verify): New macro.
6447 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
6448 rather than assert.
6449 * src/tables.c (tables_generate): Likewise.
6450
6451 * src/struniq.c (struniq_assert): Now returns void, and aborts
6452 if the assertion is false.
6453 (struniq_assert_p): Remove.
6454 * src/struniq.h: Likewise.
6455
6456 2002-11-18 Paul Eggert <eggert@twinsun.com>
6457
6458 * data/glr.c (yygetLRActions): Replace `yyindex' with
6459 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
6460 This fixes the regression with Sun ONE Studio 7 cc that I reported in
6461 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
6462
6463 2002-11-18 Akim Demaille <akim@epita.fr>
6464
6465 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
6466 space.
6467 From Tim Van Holder.
6468
6469 2002-11-17 Paul Eggert <eggert@twinsun.com>
6470
6471 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
6472 to "SyntaxError" for consistency with my 2002-11-15 change.
6473
6474 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
6475 not define to {}, since this breaks the common use of `YYDPRINTF
6476 ((...));' if a single statement is desired (e.g. before `else').
6477 Work around GCC warnings by surrounding corresponding calls with
6478 {} if needed.
6479 (yyhasResolvedValue): Remove unused function.
6480 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
6481 loop body.
6482 (yyreportSyntaxError): Renamed from yyreportParseError.
6483 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
6484 All uses changed.
6485 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
6486 extern when possible. Remove unused initializations.
6487
6488 2002-11-16 Akim Demaille <akim@epita.fr>
6489
6490 Augment the similarity between GLR and LALR traces.
6491
6492 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
6493 (YY_REDUCE_PRINT): New.
6494 (yyparse): Use them.
6495 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
6496 YYDPRINT here.
6497 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
6498 state reached after the reduction/recovery, since...
6499 (yyparse, yyprocessOneStack): Report the state we are entering in.
6500
6501 2002-11-16 Akim Demaille <akim@epita.fr>
6502
6503 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
6504 Add support for --trace=skeleton.
6505 * src/scan-skel.l: %option debug.
6506 Scan strings of non-@ or \n instead of character by character.
6507 (scan_skel): Handle trace_skeleton.
6508 (QPUTS): New.
6509 (@output_parser_name@, @output_header_name@): ``Restore'' their
6510 support (used to be M4 macros).
6511 * data/yacc.c: Quote larger chunks, a la glr.c.
6512 * data/lalr1.cc: Likewise.
6513 The header guards are no longer available, so use some other
6514 string than `YYLSP_NEEDED'.
6515
6516 2002-11-16 Akim Demaille <akim@epita.fr>
6517
6518 Make the ``Printers and Destructors'' test more verbose, taking
6519 `yacc.c''s behavior as (possibly wrong) reference.
6520
6521 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
6522 instead of fprint on stdout.
6523 Set and report the last_line of the symbols.
6524 Consistently display values and locations.
6525
6526 2002-11-16 Paul Eggert <eggert@twinsun.com>
6527
6528 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
6529
6530 2002-11-15 Paul Eggert <eggert@twinsun.com>
6531
6532 * tests/actions.at (Actions after errors): New test case.
6533
6534 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
6535 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
6536 tests/action.at, tests/calc.at, tests/conflicts.at,
6537 tests/cxx-type.at, tests/regression.at:
6538 "parse error" -> "syntax error" for POSIX compatibility.
6539 "parsing stack overflow..." -> "parser stack overflow" so
6540 that code matches Bison documentation.
6541
6542 2002-11-15 Akim Demaille <akim@epita.fr>
6543
6544 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
6545 take two BRACED_CODE, not two string_content.
6546 Free the scanner's obstack when we are done.
6547 (code_content): New.
6548 * tests/calc.at: Adjust.
6549 * doc/bison.texinfo: Adjust.
6550 Also, make sure to include the `,' for these declarations.
6551
6552 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
6553
6554 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
6555 definition; avoids potential autoreconf problems.
6556
6557 2002-11-15 Akim Demaille <akim@epita.fr>
6558
6559 Always check the value returned by yyparse.
6560
6561 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
6562 returned by yyparse.
6563 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
6564 Adjust calls.
6565 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
6566 returned by yyparse.
6567
6568 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6569
6570 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
6571 on input.at test.
6572
6573 2002-11-14 Paul Eggert <eggert@twinsun.com>
6574
6575 * src/output.c (output_skeleton): Call xfopen instead of
6576 duplicating xfopen's body.
6577
6578 Fix bugs reported by Nelson H. F. Beebe in
6579 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
6580
6581 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
6582 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
6583 Group compiler. Instead, use "$CC -E bar.c". Include the .h
6584 file twice in the grammar, as an extra check.
6585
6586 * tests/input.at (Torturing the Scanner): Surround the
6587 backslash-newline tests with "#if 0", to make it less likely that
6588 we'll run into compiler bugs. Bring back solitary \ inside
6589 comment, but add a closing comment to work around HP C bug. Don't
6590 test backslash-newline in C character constant.
6591
6592 2002-11-14 Akim Demaille <akim@epita.fr>
6593
6594 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
6595 status of the compiler.
6596 Calling `exit 1' is no longer needed.
6597 Reported by Nelson H. F. Beebe.
6598
6599 2002-11-14 Akim Demaille <akim@epita.fr>
6600
6601 * tests/atlocal.in (CPPFLAGS): We have config.h.
6602 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
6603 New.
6604 * tests/actions.at, tests/calc.at, tests/conflicts.at,
6605 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
6606 * tests/regression.at, tests/torture.at: Use them for all the
6607 grammars that are to be compiled.
6608 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
6609 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
6610 * doc/bison.texinfo (GLR Parsers): Document `inline'.
6611
6612 2002-11-14 Akim Demaille <akim@epita.fr>
6613
6614 * doc/bison.texinfo: Various formatting changes (alignments in
6615 samples, additional @group/@end group, GCS in samples.
6616 Use @deffn instead of simple @table to define the directives,
6617 macros, variables etc.
6618
6619 2002-11-13 Paul Eggert <eggert@twinsun.com>
6620
6621 Fix some bugs reported by Albert Chin-A-Young in
6622 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
6623
6624 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
6625 -o c"; the HP C compiler chatters during compilation.
6626 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
6627 * tests/headers.at (export YYLTYPE): Likewise.
6628
6629 * tests/input.at (Torturing the Scanner): Remove lines containing
6630 solitary backslashes, as they tickle a bug in the HP C compiler.
6631
6632 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
6633 comments, since they're not portable. Use GNU coding style.
6634
6635 2002-11-13 Akim Demaille <akim@epita.fr>
6636
6637 * data/yacc.c: Leave bigger chunks of quoted text.
6638 (YYDSYMPRINTF): New.
6639 Use it to report symbol activities.
6640 * data/glr.c (YYDSYMPRINTF): New.
6641 Use it.
6642
6643 2002-11-12 Paul Eggert <eggert@twinsun.com>
6644
6645 Version 1.75b.
6646
6647 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
6648 (yyglrReduce): Return yyok, not 0.
6649 This should avoid the enumerated-type warnings reported
6650 by Nelson H. F. Beebe in
6651 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
6652
6653 * lib/bbitset.h (BITSET_INLINE): Remove.
6654 * lib/bitset.h [! BITSET_INLINE]: Remove.
6655 (bitset_set, bitset_reset, bitset_test): Rename local vars
6656 to avoid shadowing warnings by GCC.
6657
6658 * data/glr.c (inline): Remove #define. It's the user's
6659 responsibility to #define it away, just like 'const'.
6660 This fixes one of the bugs reported by Nelson H. F. Beebe in
6661 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
6662
6663 * Makefile.maint (po-check): Scan .l and .y files instead of the
6664 .c and the .h files that they generate. This fixes the bug
6665 reported by Tim Van Holder in:
6666 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
6667 Look for N_ as well as for _. Try to avoid matching #define for
6668 N_ and _.
6669 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
6670 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
6671 * src/scan-gram.l: Revamp regular expressions so that " and '
6672 do not confuse xgettext.
6673
6674 * src/struniq.h (struniq_new): Do not declare the return type
6675 to be 'const'; this violates the C standard.
6676 * src/struniq.c (struniq_new): Likewise.
6677
6678 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
6679
6680 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
6681 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
6682 linker.
6683
6684 2002-11-12 Akim Demaille <akim@epita.fr>
6685
6686 * Makefile.maint: Sync with Autoconf:
6687 (local_updates): New.
6688
6689 2002-11-12 Akim Demaille <akim@epita.fr>
6690
6691 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
6692
6693 2002-11-12 Akim Demaille <akim@epita.fr>
6694
6695 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
6696 locations.
6697
6698 2002-11-12 Akim Demaille <akim@epita.fr>
6699
6700 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
6701 not yyvalue.
6702
6703 2002-11-12 Akim Demaille <akim@epita.fr>
6704
6705 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
6706 Use it to test the GLR parser.
6707
6708 2002-11-12 Akim Demaille <akim@epita.fr>
6709
6710 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
6711 defines it.
6712 * data/glr.c (yystos): New.
6713 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
6714 (YYDSYMPRINT): New.
6715 (yyval): Don't define it, it is handled via M4.
6716 (yyrecoverParseError): Free verbosely the discarded symbols.
6717 * data/yacc.c (yysymprint): Remove, rather...
6718 (b4_yysymprint_generate): invoke.
6719 * data/c.m4 (b4_yysymprint_generate): New.
6720 Accept pointers as arguments, as opposed to the version from
6721 yacc.c.
6722 (b4_yydestruct_generate): Likewise.
6723 * tests/cations.at (Printers and Destructors): Use Bison directives
6724 instead of CPP macros.
6725 Don't rely on internal details.
6726
6727 2002-11-12 Akim Demaille <akim@epita.fr>
6728
6729 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
6730 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
6731 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
6732 it against YYEMPTY and so forth), work on yytoken (i.e., set
6733 it to YYEMPTY etc.).
6734 (yydestruct): Replace with a b4_yydestruct_generate invocation.
6735 (b4_symbol_actions): Remove.
6736 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
6737 for 0, end-of-input.
6738
6739 2002-11-12 Akim Demaille <akim@epita.fr>
6740
6741 * doc/bison.texinfo (Destructor Decl): New.
6742
6743 2002-11-12 Akim Demaille <akim@epita.fr>
6744
6745 * src/tables.c (tables_generate): Use free for pointers that
6746 cannot be NULL, not XFREE.
6747 (pack_vector): Use assert, not fatal, for bound violations.
6748 * src/state.c (state_new): Likewise.
6749 * src/reader.c (reader): Likewise.
6750 * src/lalr.c (set_goto_map): Likewise.
6751 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
6752 the file name.
6753
6754 2002-11-12 Akim Demaille <akim@epita.fr>
6755
6756 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
6757 Restore.
6758 * src/scan-gram.l (last_string): Is global to the file, not to
6759 yylex.
6760 * src/parse-gram.y (input): Don't append the epilogue here,
6761 (epilogue.opt): do it here, and free the scanner's obstack.
6762 * src/reader.c (epilogue_set): Rename as...
6763 (epilogue_augment): this.
6764 * data/c.m4 (b4_epilogue): Defaults to empty.
6765
6766 2002-11-12 Akim Demaille <akim@epita.fr>
6767
6768 * src/getargs.c (long_options): Remove duplicates.
6769 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
6770 Remove.
6771 * doc/bison.rnh: Remove.
6772 * doc/bison.texinfo (VMS Invocation): Remove.
6773
6774 2002-11-12 Akim Demaille <akim@epita.fr>
6775
6776 * src/struniq.h, src/struniq.c (struniq_t): Is const.
6777 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
6778
6779 Use struniq for symbols.
6780
6781 * src/symtab.h (symbol_t): The tag member is a struniq.
6782 (symbol_type_set): Adjust.
6783 * src/symtab.c (symbol_new): Takes a struniq.
6784 (symbol_free): Don't free the tag member.
6785 (hash_compare_symbol_t, hash_symbol_t): Rename as...
6786 (hash_compare_symbol, hash_symbol): these.
6787 Use the fact that tags as struniqs.
6788 (symbol_get): Use struniq_new.
6789 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
6790 Returns a strniq.
6791 * src/reader.h (merger_list, grammar_currentmerge_set): The name
6792 and type members are struniqs.
6793 * src/reader.c (get_merge_function)
6794 (grammar_current_rule_merge_set): Adjust.
6795 (TYPE, current_type): Are struniq.
6796
6797 Use struniq for file names.
6798
6799 * src/files.h, src/files.c (infile): Split into...
6800 (grammar_file, current_file): these.
6801 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
6802 * src/reduce.c (reduce_print): Likewise.
6803 * src/getargs.c (getargs): Likewise.
6804 * src/complain.h, src/complain.c: Likewise.
6805 * src/main.c (main): Call struniqs_new early enough to use it for
6806 file names.
6807 Don't free the input file name.
6808
6809 2002-11-12 Akim Demaille <akim@epita.fr>
6810
6811 * src/symtab.c (symbol_free): Remove dead deactivated code:
6812 type_name are properly removed.
6813 Don't use XFREE to free items that cannot be NULL.
6814 * src/struniq.h, src/struniq.c: New.
6815 * src/main.c (main): Initialize/free struniqs.
6816 * src/parse-gram.y (%union): Add astruniq member.
6817 (yyprint): Adjust.
6818 * src/scan-gram.l (<{tag}>): Return a struniq.
6819 Free the obstack bit that used to store it.
6820 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
6821
6822 2002-11-11 Paul Eggert <eggert@twinsun.com>
6823
6824 Revamp to fix many (but not all) of the C- and M4-related quoting
6825 problems. Among other things, this fixes the Bison bug reported
6826 by Jan Hubicka when processing the Bash grammar; see:
6827 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
6828
6829 Use new @ escapes consistently. Represent brackets with @{ and @}
6830 rather than @<:@ and @:>@, since this works a bit better with dumb
6831 editors like vi. Represent @ with @@, since @ is now consistently
6832 an escape. Use @oline@ and @ofile@ rather than __oline__ and
6833 __ofile__, to avoid unexpected expansions. Similarly, use @output
6834 rather than #output.
6835
6836 * data/c.m4 (b4_copyright): Omit file name from comment, since
6837 the file name could contain "*/".
6838 (b4_synclines_flag): Don't quote the 2nd argument; it should already
6839 be quoted. All uses changed.
6840
6841 * data/glr.c: Use new @ escapes consistently.
6842 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
6843 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
6844 Remove, since they couldn't handle arbitrary characters in file
6845 names.
6846 * data/lalr1.cc: Likewise.
6847 * data/yacc.c: Likewise.
6848
6849 * src/files.c (output_infix): Remove; all uses removed.
6850 * src/files.h: Likewise.
6851
6852 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
6853 mishandled funny characters in file names, and anyway it isn't
6854 needed any more.
6855 * data/yacc.c: Likewise.
6856 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
6857
6858 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
6859 * data/yacc.c: Likewise.
6860
6861 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
6862 strings now.
6863 (muscle_init): Quote filename as a C string.
6864 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
6865 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
6866 * src/output.c (escaped_file_name_output): New function.
6867 (prepare_symbols): Quote tokens for M4.
6868 (prepare): Don't insert output_infix, output_prefix,
6869 output_parser_name, output_header_name; this is now down by scan-skel.
6870 Insert skeleton as a C string.
6871
6872 * src/output.c (user_actions_output, symbol_destructors_output,
6873 symbol_printers_output): Quote filenames for C and M4.
6874 * src/reader.c (prologue_augment, epilogue_set): Likewise.
6875
6876 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
6877 escapes other than \\ and \'; this simplifies the code.
6878 (<SC_STRING>): Likewise, for \\ and \".
6879 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
6880 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
6881 Use new escapes @{ and @} for [ and ].
6882
6883 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
6884 them with auto vars.
6885 Switch to new escape scheme, where @ is the escape character uniformly.
6886 Abort if a stray escape character is found. Avoid unbounded input
6887 buffer when parsing non-escaped text.
6888
6889 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
6890 __oline__, #output, $@, and @{ do not have unintended meanings.
6891
6892 2002-11-09 Paul Eggert <eggert@twinsun.com>
6893
6894 Fix the test failure due to GCC warnings described in
6895 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
6896 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
6897 evaluate to 0 if it's impossible for NINF to be in the respective
6898 table.
6899 (yygetLRActions, yyrecoverParseError): Use them.
6900
6901 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
6902 counted in the token inserted at end of file. Now takes
6903 location_t *, not location_t, so that the location can be
6904 adjusted. All uses changed.
6905
6906 * tests/regression.at (Invalid inputs): Adjust wording in
6907 diagnostic to match the new behavior.
6908
6909 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
6910 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
6911 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
6912 abort ();'. This reduces the runtime of the "Many lookaheads"
6913 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
6914 GCC 3.2.
6915
6916 2002-11-07 Paul Eggert <eggert@twinsun.com>
6917
6918 * src/parse-gram.y (CHARACTER): Remove unused token.
6919 All uses removed.
6920
6921 * src/scan-gram.l: Remove stack option. We no longer use the
6922 stack, since the stack was never deeper than 1; instead, use the
6923 new auto var c_context to record the stacked value.
6924
6925 Remove nounput option. At an unexpected end of file, we now unput
6926 the minimal input necessary to end cleanly; this simplifies the
6927 code.
6928
6929 Avoid unbounded token sizes where this is easy.
6930
6931 (unexpected_end_of_file): New function.
6932 Use it to systematize the error message on unexpected EOF.
6933 (last-string): Now auto, not static.
6934 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
6935 (scanner_last_string_free): Remove; not used.
6936 (percent_percent_count): Move decl to just before use.
6937 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
6938 not the (never otherwised-used) CHARACTER.
6939
6940 2002-11-07 Akim Demaille <akim@epita.fr>
6941
6942 Let yyerror always receive the msg as last argument, so that
6943 yyerror can be variadic.
6944
6945 * data/yacc.c (b4_yyerror_args): New.
6946 Use it when calling yyerror.
6947 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
6948 Use it when calling yyerror.
6949 * doc/bison.texinfo (Error Reporting): Adjust.
6950 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
6951 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
6952
6953 2002-11-06 Akim Demaille <akim@epita.fr>
6954
6955 #line should have quoted strings.
6956 Ideally, this should be done by m4_quotearg.
6957
6958 * src/scan-skel.l: Include quotearg.h.
6959 Quote __ofile__.
6960 * src/output.c (symbol_printers_output)
6961 (symbol_destructors_output): Quote the file name.
6962
6963 2002-11-06 Akim Demaille <akim@epita.fr>
6964
6965 * tests/regression.at (Invalid inputs): Adjust to the recent
6966 messages.
6967
6968 2002-11-06 Akim Demaille <akim@epita.fr>
6969
6970 Restore --no-lines.
6971 Reported by Jim Kent.
6972
6973 * data/c.m4 (b4_syncline): New.
6974 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
6975 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
6976 * src/output.c (user_actions_output): Likewise.
6977 (prepare): Define 'b4_synclines_flag'.
6978 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
6979
6980 2002-11-06 Akim Demaille <akim@epita.fr>
6981
6982 * src/main.c (main): Free `infile'.
6983 * src/scan-gram.l (handle_syncline): New.
6984 Recognize `#line'.
6985 * src/output.c (user_actions_output, symbol_destructors_output)
6986 (symbol_printers_output): Use the location's file name, not
6987 infile.
6988 * src/reader.c (prologue_augment, epilogue_set): Likewise.
6989
6990 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6991
6992 * src/tables.c (matching_state): Don't allow states to match if
6993 either has GLR conflict entries.
6994
6995 2002-11-05 Paul Eggert <eggert@twinsun.com>
6996
6997 * src/scan-gram.l: Use more accurate diagnostics, e.g.
6998 "integer out of range" rather than "invalid value".
6999 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
7000 accordingly.
7001
7002 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
7003 Also, remove one static variable in the scanner.
7004
7005 * src/scan-gram.l (braces_level): Now auto, not static.
7006 Initialize to zero if the compiler is being picky.
7007 (INITIAL): Clear braces_level instead of incrementing it.
7008 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
7009 as POSIX 1003.1-2001 requires.
7010 * src/system.h (IF_LINT): New macro, taken from coreutils.
7011 * configure.ac: Define "lint" if --enable-gcc-warnings.
7012
7013 2002-11-05 Akim Demaille <akim@epita.fr>
7014
7015 * src/scan-gram.l: When it starts with `%', complain about the
7016 whole directive, not just that `invalid character: %'.
7017
7018 2002-11-04 Akim Demaille <akim@epita.fr>
7019
7020 * Makefile.maint: Update from Autoconf.
7021 (update, cvs-update, po-update, do-po-update): New.
7022
7023 2002-11-04 Akim Demaille <akim@epita.fr>
7024
7025 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
7026 and yyerror.
7027 Have yyerror `use' its arguments.
7028 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
7029 returns true when location & yacc & pure & parse-param.
7030 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
7031
7032 2002-11-04 Akim Demaille <akim@epita.fr>
7033
7034 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
7035 clashes.
7036 * src/scan-gram.l: Use [\'] instead of ['] to pacify
7037 font-lock-mode.
7038 Use complain_at.
7039 Use quote, not quote_n since LOCATION_PRINT no longer uses the
7040 slot 0.
7041
7042 2002-11-03 Paul Eggert <eggert@twinsun.com>
7043
7044 * src/reader.c (get_merge_function, grammar_current_rule_check):
7045 Use consistent diagnostics for reporting type name clashes.
7046 Quote the types with <>, for consistency with Yacc.
7047 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
7048
7049 2002-11-03 Akim Demaille <akim@epita.fr>
7050
7051 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
7052 New.
7053 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
7054 (b4_parse_param): Remove.
7055 Use b4_identification.
7056 Propagate b4_pure_args where needed to pass them to yyerror.
7057 * data/glr.m4 (b4_parse_param): Remove.
7058 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
7059 (b4_lpure_formals): New.
7060 Use b4_identification.
7061 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
7062 b4_user_formals and b4_user_args.
7063 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
7064 (yyreportAmbiguity): When using a pure parser, also need
7065 the location, and the parse-params.
7066 Adjust callers.
7067 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
7068 When using a pure parser, also need the parse-params.
7069 Adjust callers.
7070 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
7071 (%pure-parser + %parse-param) LALR and GLR parsers.
7072 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
7073 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
7074 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
7075 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
7076 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
7077 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
7078 * doc/bison.texinfo: Untabify the whole file.
7079 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
7080 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
7081 (Error Reporting): Adjust to these new directives.
7082 Document %error-verbose, deprecate YYERROR_VERBOSE.
7083
7084 2002-11-03 Akim Demaille <akim@epita.fr>
7085
7086 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
7087 AT_CHECK_CALC_GLR invocations to use % directives, instead of
7088 command line options.
7089 * tests/cxx-type.at: Formatting changes.
7090
7091 2002-11-03 Paul Eggert <eggert@twinsun.com>
7092
7093 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
7094 to count columns correctly, and to check for invalid inputs.
7095
7096 Use mbsnwidth to count columns correctly. Account for tabs, too.
7097 Include mbswidth.h.
7098 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
7099 (extend_location): New function.
7100 (YY_LINES): Remove.
7101
7102 Handle CRLF in C code rather than in Lex code.
7103 (YY_INPUT): New macro.
7104 (no_cr_read): New function.
7105
7106 Scan UCNs, even though we don't fully handle them yet.
7107 (convert_ucn_to_byte): New function.
7108
7109 Handle backslash-newline correctly in C code.
7110 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
7111 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
7112 all uses changed.
7113 (tag, splice): New EREs. Do not allow NUL or newline in tags.
7114 Use {splice} wherever C allows backslash-newline.
7115 YY_STEP after space, newline, vertical-tab.
7116 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
7117
7118 (letter, id): Don't assume ASCII; e.g., spell out a-z.
7119
7120 ({int}, handle_action_dollar, handle_action_at): Check for integer
7121 overflow.
7122
7123 (YY_STEP): Omit trailing semicolon, so that it's more like C.
7124
7125 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
7126 as well as \000. Check for UCHAR_MAX, not 255.
7127 Allow \x with an arbitrary positive number of digits, as in C.
7128 Check for overflow here.
7129 Allow \? and UCNs, for compatibility with C.
7130
7131 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
7132 with quote slot used by complain_at.
7133
7134 * tests/input.at: Add tests for backslash-newline, m4 quotes
7135 in symbols, long literals, and funny escapes in strings.
7136
7137 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
7138 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
7139 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
7140 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
7141 * m4/mbswidth.m4: New file, from GNU coreutils.
7142
7143 * doc/bison.texinfo (Grammar Outline): Document // comments.
7144 (Symbols): Document that trigraphs have no special meaning in Bison,
7145 nor is backslash-newline allowed.
7146 (Actions): Document that trigraphs have no special meaning.
7147
7148 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
7149 no longer used.
7150
7151 2002-11-02 Paul Eggert <eggert@twinsun.com>
7152
7153 * src/reader.c: Don't include quote.h; not needed.
7154 (get_merge_function): Reword warning to be consistent with
7155 type clash diagnostic in grammar_current_rule_check.
7156
7157 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
7158 bug in trigraph handling.
7159
7160 * src/output.c (prepare_symbols): When printing token names,
7161 escape "[" as "@<:@" and likewise for "]".
7162
7163 * src/system.h (errno): Remove declaration, as we are now
7164 assuming C89 or better, and C89 guarantees errno.
7165
7166 2002-10-30 Paul Eggert <eggert@twinsun.com>
7167
7168 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
7169 Check for close failures.
7170 * src/files.h (xfclose): Return void, not int, since it always
7171 returned zero.
7172 * src/files.c (xfclose): Likewise. Report I/O error if ferror
7173 indicates one.
7174 * src/output.c (output_skeleton): Use xfclose rather than fclose
7175 and ferror. xfclose now checks ferror.
7176
7177 * data/glr.c (YYLEFTMOST_STATE): Remove.
7178 (yyreportTree): Use a stack-based leftmost state. This avoids
7179 our continuing battles with bogus warnings about initializers.
7180
7181 2002-10-30 Akim Demaille <akim@epita.fr>
7182
7183 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
7184 #if.
7185
7186 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7187
7188 * tests/glr-regr1.at: New test for reported regressions.
7189 * tests/testsuite.at: Add glr-regr1.at test.
7190 * tests/Makefile.am: Add glr-regr1.at test.
7191
7192 2002-10-24 Paul Eggert <eggert@twinsun.com>
7193
7194 Version 1.75a.
7195
7196 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
7197 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
7198 we use malloc. Don't assume 'A' through 'Z' are contiguous.
7199 Don't assume strdup exists; POSIX says its an XSI extension.
7200 Check for buffer overflow on input.
7201
7202 2002-10-24 Akim Demaille <akim@epita.fr>
7203
7204 * src/output.c (output_skeleton): Don't disable M4sugar comments
7205 too soon: it results in comments being expanded.
7206 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
7207 first output.
7208
7209 2002-10-24 Akim Demaille <akim@epita.fr>
7210
7211 * data/yacc.c (m4_int_type): New.
7212 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
7213 char' as only yacc.c wants K&R portability.
7214 * data/glr.c (yysigned_char): Remove.
7215 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
7216 Reported by Quoc Peyrot.
7217
7218 2002-10-23 Paul Eggert <eggert@twinsun.com>
7219
7220 * src/main.c (main): With --trace=time, report times even if a
7221 non-fatal error occurs. Formerly, the times were reported in some
7222 such cases but not in others.
7223 * src/reader.c (reader): Just return if a complaint has been issued,
7224 instead of exiting, so that 'main' can report times.
7225
7226 2002-10-22 Akim Demaille <akim@epita.fr>
7227
7228 * src/system.h: Include sys/types.
7229 Reported by Bert Deknuydt.
7230
7231 2002-10-23 Paul Eggert <eggert@twinsun.com>
7232
7233 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
7234 Suggested by Art Haas.
7235
7236 2002-10-22 Paul Eggert <eggert@twinsun.com>
7237
7238 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
7239 decl; not needed any more.
7240 * src/main.c (main): Use return to exit, undoing yesterday's change.
7241 The last OS that we could find where this wouldn't work is
7242 SunOS 3.5, and that's too old to worry about now.
7243
7244 * data/glr.c (struct yyltype): Define members even when not
7245 doing locations. This is more consistent with yacc.c, and it
7246 works around the following bug reports:
7247 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
7248 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
7249
7250 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
7251 @acronym consistently. Standardize on "Yacc" instead of "YACC",
7252 "Algol" instead of "ALGOL". Give a bit more history about BNF.
7253
7254 2002-10-22 Akim Demaille <akim@epita.fr>
7255
7256 * data/README: New.
7257
7258 2002-10-21 Paul Eggert <eggert@twinsun.com>
7259
7260 Be consistent about 'bool'; the old code used an enum in one
7261 module and an int in another, and this violates the C standard.
7262 * m4/stdbool.m4: New file, from coreutils 4.5.3.
7263 * configure.ac (AC_HEADER_STDBOOL): Add.
7264 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
7265 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
7266 * src/symtab.c (hash_compare_symbol_t): Likewise.
7267 * src/system.h (bool, false, true): Use a definition consistent
7268 with ../lib/hash.c. All uses changed.
7269
7270 * src/complain.c (warning_issued): Renamed from warn_message_count,
7271 so that we needn't worry about integer overflow (!).
7272 Now of type bool. All uses changed.
7273 (complaint_issued): Renamed from complain_message_count; likewise.
7274
7275 * src/main.c (main): Use exit to exit with failure.
7276
7277 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
7278 rather than 1 and 0.
7279 * src/main.c (main): Likewise.
7280 * src/getargs.c (getargs): Likewise.
7281 * src/reader.c (reader): Likewise.
7282
7283 * src/getarg.c (getargs): Remove duplicate code for
7284 "Try `bison --help'".
7285
7286 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
7287 What was that "2" for?
7288
7289 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
7290 * src/getargs.c (usage): Likewise.
7291
7292 * src/getargs.c (getargs): When there are too few operands, report
7293 the last one. When there are too many, report the first extra
7294 one. This is how diffutils does it.
7295
7296 2002-10-20 Paul Eggert <eggert@twinsun.com>
7297
7298 Remove K&R vestiges.
7299 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
7300 * src/complain.c (VA_START): Remove. Assume prototypes.
7301 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
7302 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
7303 fatal): Assume prototypes.
7304 * src/complain.h: Assume prototypes.
7305 * src/system.h (PARAMS): Remove.
7306 Include <limits.h> unconditionally, since it's guaranteeed even
7307 for a freestanding C89 compiler.
7308 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
7309 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
7310
7311 2002-10-20 Akim Demaille <akim@epita.fr>
7312
7313 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
7314 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
7315 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
7316 (yyresolveStates, yyresolveAction, yyresolveStack)
7317 (yyprocessOneStack): Use them.
7318 (yy_reduce_print): New.
7319 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
7320
7321 2002-10-20 Akim Demaille <akim@epita.fr>
7322
7323 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
7324 arguments and output `void'.
7325 (b4_c_function): Rename as...
7326 (b4_c_function_def): this.
7327 (b4_c_function_decl, b4_c_ansi_function_def)
7328 (b4_c_ansi_function_decl): New.
7329 Change the interpretation of the arguments: before `int, foo', now
7330 `int foo, foo'.
7331 * data/yacc.c (yyparse): Prototype and define thanks to these.
7332 Adjust b4_c_function_def uses.
7333 * data/glr.c (yyparse): Likewise, but ANSI only.
7334
7335 2002-10-20 Akim Demaille <akim@epita.fr>
7336
7337 * src/output.c (prepare): Move the definition of `tokens_number',
7338 `nterms_number', `undef_token_number', `user_token_number_max'
7339 to...
7340 (prepare_tokens): Here.
7341 (prepare_tokens): Rename as...
7342 (prepare_symbols): this.
7343 (prepare): Move the definition of `rules_number' to...
7344 (prepare_rules): here.
7345 (prepare): Move the definition of `last', `final_state_number',
7346 `states_number' to...
7347 (prepare_states): here.
7348 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
7349
7350 2002-10-20 Akim Demaille <akim@epita.fr>
7351
7352 * src/tables.h, src/tables.c, src/output.c: Comment changes.
7353
7354 2002-10-20 Akim Demaille <akim@epita.fr>
7355
7356 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
7357 * data/c.m4: here.
7358
7359 2002-10-20 Akim Demaille <akim@epita.fr>
7360
7361 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
7362 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
7363 `pair'.
7364 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
7365 `name' to...
7366 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
7367 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
7368 These.
7369
7370 2002-10-19 Paul Eggert <eggert@twinsun.com>
7371
7372 Do not create a temporary file, as that involves security and
7373 cleanup headaches. Instead, use a pair of pipes.
7374 Derived from a suggestion by Florian Krohm.
7375 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
7376 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
7377 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
7378 (BISON_PREREQ_SUBPIPE): Add.
7379 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
7380 Add subpipe.h, subpipe.c.
7381 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
7382 * po/POTFILES.in: Add lib/subpipe.c.
7383 * src/output.c: Include "subpipe.h".
7384 (m4_invoke): Remove decl.
7385 (scan_skel): New decl.
7386 (output_skeleton): Use pipe rather than temporary file for m4 input.
7387 Check that m4sugar.m4 is readable, to avoid deadlock.
7388 Check for pipe I/O error.
7389 * src/scan-skel.l (readpipe): Remove decl.
7390 (scan_skel): New function, to be used in place of m4_invoke.
7391 Read from stream rather than file.
7392
7393 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
7394 float, as this generates a warning on Solaris 8 + GCC 3.2 with
7395 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
7396 this generates a more-accurate value anyway.
7397
7398 * lib/timevar.c (timervar_accumulate): Rename locals to
7399 avoid confusion with similarly-named more-global.
7400 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
7401
7402 * src/output.c (prepare): Use xstrdup to convert char const *
7403 to char *, to avoid GCC warning.
7404
7405 2002-10-19 Akim Demaille <akim@epita.fr>
7406
7407 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
7408 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
7409 Use them to have `calc.y' ready for %pure-parser.
7410 * data/yacc.c (YYLEX): Pass a yylex return type to
7411 b4_c_function_call.
7412
7413 2002-10-19 Akim Demaille <akim@epita.fr>
7414
7415 Prototype support of %lex-param and %parse-param.
7416
7417 * src/parse-gram.y: Add the definition of the %lex-param and
7418 %parse-param tokens, plus their rules.
7419 Drop the `_' version of %glr-parser.
7420 Add the "," token.
7421 * src/scan-gram.l (INITIAL): Scan them.
7422 * src/muscle_tab.c: Comment changes.
7423 (muscle_insert, muscle_find): Rename `pair' as `probe'.
7424 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
7425 (muscle_entry_s): The `value' member is no longer const.
7426 Adjust all dependencies.
7427 * src/muscle_tab.c (muscle_init): Adjust: use
7428 MUSCLE_INSERT_STRING.
7429 Initialize the obstack earlier.
7430 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
7431 (muscle_pair_list_grow): New.
7432 * data/c.m4 (b4_c_function_call, b4_c_args): New.
7433 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
7434 * tests/calc.at: Use %locations, not --locations.
7435 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
7436
7437 2002-10-19 Akim Demaille <akim@epita.fr>
7438
7439 * src/getargs.c (usage): Take status as argument and exit
7440 accordingly.
7441 Report the traditional `Try ... --help' message when status != 0.
7442 (usage, version): Don't take a FILE * as arg, it is pointless.
7443 (getargs): When there is an incorrect number of arguments, make it
7444 an error, and report it GNUlically thanks to `usage ()'.
7445
7446 2002-10-18 Paul Eggert <eggert@twinsun.com>
7447
7448 * data/glr.c (yyreportParseError): Don't assume that sprintf
7449 yields the length of the printed string, as this is not true
7450 on SunOS 4.1.4. Reported by Peter Klein.
7451
7452 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
7453 * tests/conflicts.at (%nonassoc and eof): Likewise.
7454 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
7455
7456 2002-10-17 Akim Demaille <akim@epita.fr>
7457
7458 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
7459 * src/getargs.c (trace_types, trace_args): Adjust.
7460 * src/reader.c (grammar_current_rule_prec_set)
7461 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
7462 Standardize error messages.
7463 And s/@prec/%prec/!
7464 (reader): Use trace_flag to enable scanner/parser debugging,
7465 instead of an adhoc scheme.
7466 * src/scan-gram.l: Remove trailing debugging code.
7467
7468 2002-10-16 Paul Eggert <eggert@twinsun.com>
7469
7470 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
7471 MUSCLE_TAB_H.
7472
7473 * NEWS: Officially drop support for building Bison with K&R C,
7474 since it didn't work anyway and it's not worth worrying about.
7475 * Makefile.maint (wget_files): Remove ansi2knr.c.
7476 (ansi2knr.c-url_prefix): Remove.
7477 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
7478 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
7479 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
7480
7481 2002-10-15 Paul Eggert <eggert@twinsun.com>
7482
7483 Stop using the "enum_" trick for K&R-style function definitions;
7484 it confused me, and I was the author! Instead, assume that people
7485 who want to use K&R C compilers (when using these modules in GCC,
7486 perhaps?) will run ansi2knr.
7487
7488 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
7489 All uses of "enum_" changed to "enum ".
7490 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
7491 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
7492
7493 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
7494 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
7495 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
7496 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
7497 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
7498 abitset_not, abitset_ones, abitset_or, abitset_or_and,
7499 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
7500 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
7501 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
7502 Use function prototypes; this removes the need for declaring
7503 static functions simply to provide their prototypes.
7504 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
7505 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
7506 bitset_count_, bitset_create, bitset_dump, bitset_first,
7507 bitset_free, bitset_init, bitset_last, bitset_next,
7508 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
7509 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
7510 bitset_print, bitset_release_memory, bitset_toggle_,
7511 bitset_type_choose, bitset_type_get, bitset_type_name_get,
7512 debug_bitset): Likewise.
7513 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
7514 * lib/bitset_stats.c (bitset_log_histogram_print,
7515 bitset_percent_histogram_print, bitset_stats_and,
7516 bitset_stats_and_cmp, bitset_stats_and_or,
7517 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
7518 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
7519 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
7520 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
7521 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
7522 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
7523 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
7524 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
7525 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
7526 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
7527 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
7528 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
7529 bitset_stats_zero): Likewise.
7530 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
7531 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
7532 bitsetv_dump, debug_bitsetv): Likewise.
7533 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
7534 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
7535 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
7536 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
7537 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
7538 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
7539 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
7540 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
7541 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
7542 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
7543 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
7544 Likewise.
7545 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
7546 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
7547 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
7548 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
7549 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
7550 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
7551 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
7552 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
7553 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
7554 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
7555 lbitset_xor_cmp, lbitset_zero): Likewise.
7556
7557 2002-10-14 Akim Demaille <akim@epita.fr>
7558
7559 Version 1.75.
7560
7561 2002-10-14 Akim Demaille <akim@epita.fr>
7562
7563 * tests/Makefile.am (maintainer-check-posix): New.
7564
7565 2002-10-14 Akim Demaille <akim@epita.fr>
7566
7567 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
7568 member.
7569
7570 2002-10-14 Akim Demaille <akim@epita.fr>
7571
7572 * src/tables.c (table_ninf_remap): base -> tab.
7573 Reported by Matt Rosing.
7574
7575 2002-10-14 Paul Eggert <eggert@twinsun.com>
7576
7577 * tests/action.at, tests/calc.at, tests/conflicts.at,
7578 tests/cxx-type.at, tests/headers.at, tests/input.at,
7579 tests/regression.at, tests/synclines.at, tests/torture.at:
7580 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
7581 so that the tests still work even if POSIXLY_CORRECT is set.
7582 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
7583
7584 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
7585 for portability to K&R hosts. Fix typo: signed char is guaranteed
7586 only to 127, not to 128.
7587 * data/glr.c (yysigned_char): New type.
7588 * data/yacc.c (yysigned_char): Likewise.
7589 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
7590
7591 2002-10-13 Paul Eggert <eggert@twinsun.com>
7592
7593 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
7594 true due to limited range of data type" warning from GCC.
7595
7596 * data/c.m4 (b4_token_defines): Protect against double-inclusion
7597 by wrapping enum yytokentype's definition inside #ifndef
7598 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
7599
7600 2002-10-13 Akim Demaille <akim@epita.fr>
7601
7602 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
7603 Un yy- yyrhs to avoid the name clash with the global YYRHS.
7604
7605 2002-10-13 Akim Demaille <akim@epita.fr>
7606
7607 * Makefile.maint: Update from Autoconf 2.54.
7608 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
7609
7610 2002-10-13 Akim Demaille <akim@epita.fr>
7611
7612 * src/print.c (print_state): Separate the list of solved conflicts
7613 from the other items.
7614 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
7615
7616 2002-10-13 Akim Demaille <akim@epita.fr>
7617
7618 Let nondeterministic skeletons be usable with deterministic
7619 tables.
7620
7621 With the patch, GAWK compiled by GCC without -O2 passes its test
7622 suite using a GLR parser driven by LALR tables. It fails with -O2
7623 because `struct stat' gives two different answers on my machine:
7624 88 (definition of an auto var) and later 96 (memset on this var).
7625 Hence the stack is badly corrumpted. The headers inclusion is to
7626 blame: if I move the awk.h inclusion before GLR's system header
7627 inclusion, the two struct stat have the same size.
7628
7629 * src/tables.c (pack_table): Always create conflict_table.
7630 (token_actions): Always create conflict_list.
7631 * data/glr.c (YYFLAG): Remove, unused.
7632
7633 2002-10-13 Akim Demaille <akim@epita.fr>
7634
7635 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
7636 (O0FLAGS): New.
7637 (VALGRIND, GXX): New.
7638 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
7639 * tests/bison.in: Run $PREBISON a pre-command.
7640 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
7641 (maintainer-check-g++): New.
7642 * Makefile.am (maintainer-check): New.
7643
7644 2002-10-13 Akim Demaille <akim@epita.fr>
7645
7646 * data/glr.c: Formatting changes.
7647 Tweak some trace messages to match yacc.c's.
7648
7649 2002-10-13 Akim Demaille <akim@epita.fr>
7650
7651 GLR parsers sometimes raise parse errors instead of performing the
7652 default reduction.
7653 Reported by Charles-Henry de Boysson.
7654
7655 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
7656 check the length of the traces when %glr.
7657 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
7658 GLR's traces.
7659 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
7660 Test GLR parsers.
7661 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
7662 (yyltype): Remove the yy prefix from the member names.
7663 (yytable): Complete its comment.
7664 (yygetLRActions): Map error action number from YYTABLE from
7665 YYTABLE_NINF to 0.
7666 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
7667 (which was a bug: it should have been YYTABEL_NINF, and yet it was
7668 not satisfying as we could compare an YYACTION computed from
7669 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
7670 only value for error actions.
7671 (yyreportParseError): In verbose parse error messages, don't issue
7672 `error' in the list of expected tokens.
7673 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
7674 next action to perform to match glr.c's decoding.
7675 (yytable): Complete its comment.
7676
7677 2002-10-13 Paul Eggert <eggert@twinsun.com>
7678
7679 Fix problem reported by Henrik Grubbstroem in
7680 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
7681 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
7682 because the Bison parser reads the second action before reducing
7683 the first one.
7684 * src/scan-gram.l (rule_length): New static var.
7685 Use it to keep track of the rule length in the scanner, since
7686 we can't expect the parser to be in lock-step sync with the scanner.
7687 (handle_action_dollar, handle_action_at): Use this var.
7688 * tests/actions.at (Exotic Dollars): Test for the problem.
7689
7690 2002-10-12 Paul Eggert <eggert@twinsun.com>
7691
7692 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
7693 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
7694 Include <sys/time.h> when checking for clock_t and struct tms.
7695 Use same include order as source.
7696 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
7697 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
7698
7699 * lib/timevar.c: Update copyright date and clarify comments.
7700 (get_time) [IN_GCC]: Keep the GCC version for reference.
7701
7702 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
7703 GCC version as of today, then merge Bison's changes.
7704 Change "GCC" to "Bison" in copyright notice. timevar.def's
7705 author is Akim, so change that too.
7706
7707 * src/reader.c (grammar_current_rule_check):
7708 Don't worry about the default action if $$ is untyped.
7709 Prevents bogus warnings reported by Jim Gifford in
7710 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
7711
7712 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
7713 * data/glr.c, data/lalr1.cc, data/yacc.c:
7714 Output token definitions before the first part of user declarations.
7715 Fixes compatibility problem reported by Jim Gifford for kbd in
7716 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
7717
7718 2002-10-11 Paul Eggert <eggert@twinsun.com>
7719
7720 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
7721 (yyparse): here. This undoes some of the 2002-07-25 change.
7722 Compatibility problem reported by Ralf S. Engelschall with
7723 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
7724
7725 2002-10-11 Akim Demaille <akim@epita.fr>
7726
7727 * tests/regression.at Characters Escapes): New.
7728 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
7729 characters.
7730 Reported by Jan Nieuwenhuizen.
7731
7732 2002-10-11 Akim Demaille <akim@epita.fr>
7733
7734 * po/id.po: New.
7735
7736 2002-10-10 Paul Eggert <eggert@twinsun.com>
7737
7738 Portability fixes for bitsets; this also avoids several GCC
7739 warnings.
7740
7741 * lib/abitset.c: Include <stddef.h>, for offsetof.
7742 * lib/lbitset.c: Likewise.
7743
7744 * lib/abitset.c (abitset_bytes): Return a size that is aligned
7745 properly for vectors of objects. Do not assume that adding a
7746 header size to a multiple of a word size yields a value that is
7747 properly aligned for the whole union.
7748 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7749
7750 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
7751 unique names for structures.
7752 * lib/ebitset.c (ebitset_bytes): Likewise.
7753 * lib/lbitset.c (lbitset_bytes): Likewise.
7754
7755 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
7756 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
7757 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
7758 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
7759 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
7760 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
7761 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
7762 to improve the type-checking that GCC can do.
7763 * lib/bitset.c (bitset_op4_cmp): Likewise.
7764 * lib/bitset_stats.c (bitset_stats_count,
7765 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
7766 bitset_stats_copy, bitset_stats_disjoint_p,
7767 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
7768 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
7769 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
7770 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
7771 bitset_stats_and_or_cmp, bitset_stats_andn_or,
7772 bitset_stats_andn_or_cmp, bitset_stats_or_and,
7773 bitset_stats_or_and_cmp): Likewise.
7774 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
7775 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
7776 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
7777 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
7778
7779 * lib/abitset.h: Include bitset.h, not bbitset.h.
7780 * lib/ebitset.h: Likewise.
7781 * lib/lbitset.h: Likewise.
7782
7783 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
7784 All instances of parameters of type enum bitset_opts are now of
7785 type enum_bitset_opts, to conform to the C Standard, and similarly
7786 for enum_bitset_type.
7787 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
7788 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
7789
7790 Do not use "struct bitset_struct" to mean different things in
7791 different modules. Not only is this confusing, it violates
7792 the C Standard, which requires that structure types in different
7793 modules must be compatible if one is to be passed to the other.
7794 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
7795 All instances of "struct bitset_struct *" replaced with "bitset".
7796 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
7797 (union bitset_union, struct abitset_struct, struct ebitset_struct,
7798 struct lbitset_struct, struct bitset_stats_struct): New types.
7799 All uses of struct bitset_struct changed to union bitset_union,
7800 etc.
7801 * lib/abitset.c (struct abitset_struct, abitset,
7802 struct bitset_struct): Remove.
7803 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
7804 struct bitset_struct): Remove.
7805 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
7806 bitset_struct): Remove.
7807 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
7808 Likewise.
7809
7810 Do not call a function of type T using a call that assumes the
7811 function is of a different type U. Standard C requires that a
7812 function must be called with a type that is compatible with its
7813 definition.
7814 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
7815 New decls.
7816 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
7817 New functions.
7818 * lib/ebitset.c (PFV): Remove.
7819 * lib/lbitset.c (PFV): Likewise.
7820 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
7821 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
7822 decls.
7823 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
7824 (ebitset_vtable): Use them.
7825 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
7826 lbitset_xor): New functions.
7827 (lbitset_vtable): Use them.
7828
7829 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
7830 Declare.
7831
7832 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
7833 GCC warning.
7834 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
7835 Use offsetof, for simplicity.
7836
7837 2002-10-06 Paul Eggert <eggert@twinsun.com>
7838
7839 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
7840 the same width as int. This reapplies a hunk of the 2002-08-12 patch
7841 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
7842 which was inadvertently undone by the 2002-09-30 patch.
7843 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
7844 the same width as int.
7845
7846 2002-10-04 Paul Eggert <eggert@twinsun.com>
7847
7848 Version 1.50.
7849
7850 * configure.ac (AC_INIT), NEWS: Increment version number.
7851
7852 * doc/bison.texinfo: Minor spelling, grammar, and white space
7853 fixes.
7854 (Symbols): Mention that any negative value returned from yylex
7855 signifies end-of-input. Warn about negative chars. Mention
7856 the portable Standard C character set.
7857
7858 The GNU coding standard says CFLAGS and YFLAGS are reserved
7859 for the installer to set.
7860 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
7861 * src/Makefile.am (AM_CFLAGS): Likewise.
7862 (AM_YFLAGS): Renamed from YFLAGS.
7863
7864 Fix some MAX and MIN problems.
7865 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
7866 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
7867 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
7868 * src/reader.c (reader): Use it.
7869
7870 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
7871 POSIX 1003.1-2001 has removed fgrep.
7872
7873 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7874
7875 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
7876 interpreted as signed.
7877 * lib/ebitset.c (ebitset_list): Fix bug.
7878
7879 2002-10-01 Paul Eggert <eggert@twinsun.com>
7880
7881 More fixes for 64-bit hosts and large bitsets.
7882
7883 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
7884 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
7885 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
7886 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
7887 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
7888 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
7889 bitset_count_): Likewise.
7890 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
7891 bitset_first, bitset_last): Likewise.
7892 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
7893 bitset_stats_list_reverse, bitset_stats_size,
7894 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
7895 Likewise.
7896 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
7897 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
7898 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
7899 bitsetv_reflexive_transitive_closure): Likewise.
7900 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
7901 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
7902 Likewise.
7903 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
7904 Likewise.
7905
7906 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
7907 Use size_t, not unsigned int, to count bytes.
7908 * lib/abitset.h (abitset_bytes): Likewise.
7909 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
7910 Likewise.
7911 * lib/bitset.h (bitset_bytes): Likewise.
7912 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
7913 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
7914 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7915 * lib/ebitset.c (ebitset_bytes): Likewise.
7916 * lib/ebitset.h (ebitset_bytes): Likewise.
7917 * lib/lbitset.c (lbitset_bytes): Likewise.
7918 * lib/lbitset.h (lbitset_bytes): Likewise.
7919
7920 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
7921 abitset_subset_p, abitset_disjoint_p, abitset_and,
7922 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
7923 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
7924 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
7925 abitset_or_and, abitset_or_and_cmp):
7926 Use bitset_windex instead of unsigned int.
7927 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
7928 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
7929 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
7930 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
7931 Likewise.
7932 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
7933
7934 * lib/bitset.c (bitset_print):
7935 Use proper printf formats for widths of integer types.
7936 * lib/bitset_stats.c (bitset_percent_histogram_print,
7937 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
7938 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
7939 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
7940 * lib/lbitset.c (lbitset_bytes): Likewise.
7941
7942 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
7943 BITSET_SIZE_MAX): New macros.
7944 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
7945 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
7946 to BITSET_WINDEX_MAX.
7947
7948 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
7949 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
7950 since we now return the bitset_bindex type (not int).
7951
7952 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
7953 when computing sizes.
7954 * lib/ebitset.c (ebitset_elts_grow): Likewise.
7955
7956 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
7957 and avoid cast to unsigned.
7958
7959 2002-09-30 Akim Demaille <akim@epita.fr>
7960
7961 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
7962 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
7963 Updates from Michael Hayes.
7964
7965 2002-09-30 Art Haas <ahaas@neosoft.com>
7966
7967 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
7968 invocations.
7969 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
7970 defined.
7971
7972 2002-09-27 Akim Demaille <akim@epita.fr>
7973
7974 Version 1.49c.
7975
7976 2002-09-27 Akim Demaille <akim@epita.fr>
7977
7978 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
7979 (Because of AC_LIBSOURCE).
7980
7981 2002-09-27 Akim Demaille <akim@epita.fr>
7982
7983 Playing with Autoscan.
7984
7985 * configure.ac: Remove the old LIBOBJ tweaks.
7986 (AC_REPLACE_FUNCS): Add strrchr and strtol.
7987 * lib/strrchr.c: New.
7988 * lib/strtol.c: New, from the Coreutils 4.5.1.
7989
7990 2002-09-27 Akim Demaille <akim@epita.fr>
7991
7992 Playing with Autoscan.
7993
7994 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
7995 * lib/Makefile.am (libbison_a_SOURCES): No longer include
7996 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
7997 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
7998 Coreutils 4.5.1.
7999
8000 2002-09-24 Akim Demaille <akim@epita.fr>
8001
8002 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
8003 (Frequently Asked Questions, Parser Stack Overflow): New.
8004
8005 2002-09-13 Akim Demaille <akim@epita.fr>
8006
8007 Playing with autoscan.
8008
8009 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
8010 * src/files.c (skeleton_find): Remove, unused.
8011 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
8012 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
8013
8014 2002-09-13 Akim Demaille <akim@epita.fr>
8015
8016 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
8017 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
8018
8019 2002-09-13 Akim Demaille <akim@epita.fr>
8020
8021 * configure.ac: Require 2.54.
8022 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
8023 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
8024 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
8025 Remove, provided by Autoconf macros.
8026
8027 2002-09-12 Akim Demaille <akim@epita.fr>
8028
8029 * m4/prereq.m4: Update, from Coreutils 4.5.1.
8030
8031 2002-09-12 Akim Demaille <akim@epita.fr>
8032
8033 * m4/prereq.m4: Update, from Fileutils 4.1.5.
8034 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
8035 Reported by Martin Mokrejs.
8036
8037 2002-09-10 Akim Demaille <akim@epita.fr>
8038
8039 * src/parse-gram.y: Associate a human readable string to each
8040 token type.
8041 * tests/regression.at (Invalid inputs): Adjust.
8042
8043 2002-09-10 Gary V. Vaughan <gary@gnu.org>
8044
8045 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
8046 with an Autoconf-2.5x style configure.ac.
8047
8048 2002-09-06 Paul Eggert <eggert@twinsun.com>
8049
8050 * doc/bison.texinfo (Conditions): Make explicit that the GPL
8051 exception applies only to yacc.c. This is a modification of a
8052 patch originally suggested by Akim Demaille.
8053
8054 2002-09-06 Akim Demaille <akim@epita.fr>
8055
8056 * data/c.m4 (b4_copyright): Move the GPL exception comment from
8057 here to...
8058 * data/yacc.c: here.
8059
8060 * data/lalr1.cc (struct yyltype): Don't define it, since we use
8061 LocationType.
8062 (b4_ltype): Default to yy::Location from location.hh.
8063
8064 2002-09-04 Jim Meyering <jim@meyering.net>
8065
8066 * data/yacc.c: Guard the declaration of yytoknum also with
8067 `#ifdef YYPRINT', so it is declared only when used.
8068
8069 2002-09-04 Akim Demaille <akim@epita.fr>
8070
8071 * configure.in: Rename as...
8072 * configure.ac: this.
8073 Bump to 1.49c.
8074
8075 2002-09-04 Akim Demaille <akim@epita.fr>
8076
8077 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
8078 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
8079 translate maintainer only messages.
8080
8081 2002-08-12 Paul Eggert <eggert@twinsun.com>
8082
8083 Version 1.49b.
8084
8085 * Makefile.am (SUBDIRS): Remove intl.
8086 (DISTCLEANFILES): Remove.
8087 * NEWS: Mention that GNU M4 is now required. Clarify what is
8088 meant by "larger grammars". Mention the pt_BR translation.
8089 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
8090 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
8091 Bump version from 0.11.2 to 0.11.5.
8092 (BISON_PREREQ_STAGE): Remove.
8093 (AM_GNU_GETTEXT): Use external gettext.
8094 (AC_OUTPUT): Remove intl/Makefile.
8095
8096 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
8097
8098 * data/glr.c: Include string.h, for strlen.
8099 (yyreportParseError): Use size_t for yysize.
8100 (yy_yypstack): No longer nested inside yypstates, as nested
8101 functions are not portable. Do not assume size_t is the
8102 same width as int.
8103 (yypstates): Do not assume that ptrdiff_t is the same width
8104 as int, and similarly for yyposn and YYINDEX.
8105
8106 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
8107
8108 * lib/Makefile.am (INCLUDES): Do not include from the intl
8109 directory, which has been removed.
8110 * src/Makefile.am (INCLUDES): Likewise.
8111
8112 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
8113 (bitsets_sources, additional_bitsets_sources, timevars_sources):
8114 New vars.
8115
8116 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
8117 * tests/Makefile.am (EXTRA_DIST): Likewise.
8118
8119 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
8120 Do not assume that bitset_windex is the same width as unsigned.
8121
8122 * lib/abitset.c (abitset_unused_clear): Do not assume that
8123 bitset_word is the same width as int.
8124 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
8125 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
8126 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
8127 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
8128 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
8129
8130 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
8131 portability to one's complement hosts!).
8132 * lib/ebitset.c (ebitset_op1): Likewise.
8133 * lib/lbitset.c (lbitset_op1): Likewise.
8134
8135 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
8136 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
8137 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
8138 Sync with fileutils.
8139 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
8140 lib/gettext.h: Sync with diffutils.
8141
8142 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
8143 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
8144
8145 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
8146 PROTOTYPES to check for prototypes, and "defined __STDC__" to
8147 check for void *.
8148
8149 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
8150 size_t; the old version tried to do this but casted improperly.
8151 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
8152 (bitset_test): Now returns int, not unsigned long.
8153
8154 * lib/bitset_stats.c: Include "gettext.h".
8155 (_): New macro.
8156 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
8157 name locals "index", as it generates unnecessary warnings on some
8158 hosts that have an "index" function.
8159
8160 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
8161 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
8162 they need translation.
8163 * src/LR0.c (state_list_append, new_itemsets, get_state,
8164 append_states, generate_states): Likewise.
8165 * src/assoc.c (assoc_to_string): Likewise.
8166 * src/closure.c (print_closure, set_firsts, closure): Likewise.
8167 * src/gram.c (grammar_dump): Likewise.
8168 * src/injections.c (injections_compute): Likewise.
8169 * src/lalr.c (lookaheads_print): Likewise.
8170 * src/relation.c (relation_transpose): Likewise.
8171 * src/scan-gram.l: Likewise.
8172 * src/tables.c (table_grow, pack_vector): Likewise.
8173
8174 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
8175 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
8176 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
8177 * m4/mbstate_t.m4: Sync with fileutils.
8178 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
8179
8180 * po/LINGUAS: Add pt_BR.
8181 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
8182 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
8183 lib/timevar.c.
8184 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
8185 manual recommends.
8186 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
8187
8188 * src/complain.c (strerror_r): Remove decl; not needed.
8189 (strerror): Use same pattern as ../lib/error.c.
8190
8191 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
8192
8193 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
8194
8195 * src/main.c (main): Cast result of bindtextdomain and textdomain
8196 to void, to avoid a GCC warning when --disable-nls is in effect.
8197
8198 * src/scan-gram.l: Use strings rather than escapes when possible,
8199 to minimize the number of warnings from xgettext.
8200 (handle_action_dollar, handle_action_at): Don't use isdigit,
8201 as it mishandles negative chars and it may not work as expected
8202 outside the C locale.
8203
8204 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
8205 this is a GCC extension and is not portable to other compilers.
8206
8207 * src/system.h (alloca): Use same pattern as ../lib/error.c.
8208 Do not include <ctype.h>; no longer needed.
8209 Do not include <malloc.h>; no longer needed (and generates
8210 warnings on OpenBSD 3.0).
8211
8212 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
8213 it's not portable.
8214
8215 * tests/regression.at: Do not use 'cc -c input.c -o input';
8216 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
8217
8218 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
8219 exit status as failure, not just exit status 1. Sun C exits
8220 with status 2 sometimes.
8221
8222 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
8223 Use it for the two large tests.
8224
8225 2002-08-02 Akim Demaille <akim@epita.fr>
8226
8227 * src/conflicts.c (conflicts_output): Don't output rules never
8228 reduced here, since anyway that computation doesn't work.
8229 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
8230 (rule_useless_p, rule_never_reduced_p): New.
8231 (grammar_rules_partial_print): Use a filter instead of a range.
8232 Display the title only if needed.
8233 (grammar_rules_print): Adjust.
8234 (grammar_rules_never_reduced_report): New.
8235 * src/tables.c (action_row): Move the computation of rules never
8236 reduced to...
8237 (token_actions): here.
8238 * src/main.c (main): Make the parser before making the report, so
8239 that rules never reduced are computed.
8240 Call grammar_rules_never_reduced_report.
8241 * src/print.c (print_results): Report rules never reduced.
8242 * tests/conflicts.at, tests/reduce.at: Adjust.
8243
8244 2002-08-01 Akim Demaille <akim@epita.fr>
8245
8246 Instead of attaching lookaheads and duplicating the rules being
8247 reduced by a state, attach the lookaheads to the reductions.
8248
8249 * src/state.h (state_t): Remove the `lookaheads',
8250 `lookaheads_rule' member.
8251 (reductions_t): Add a `lookaheads' member.
8252 Use a regular array for the `rules'.
8253 * src/state.c (reductions_new): Initialize the lookaheads member
8254 to 0.
8255 (state_rule_lookaheads_print): Adjust.
8256 * src/state.h, src/state.c (state_reductions_find): New.
8257 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
8258 (count_rr_conflicts): Adjust.
8259 * src/lalr.c (LArule): Remove.
8260 (add_lookback_edge): Adjust.
8261 (state_lookaheads_count): New.
8262 (states_lookaheads_initialize): Merge into...
8263 (initialize_LA): this.
8264 (lalr_free): Adjust.
8265 * src/main.c (main): Don't free nullable and derives too early: it
8266 is used by --verbose.
8267 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
8268
8269 2002-08-01 Akim Demaille <akim@epita.fr>
8270
8271 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
8272 `rule_number_t**'.
8273 (set_derives, free_derives): Rename as...
8274 (derives_compute, derives_free): this.
8275 Adjust all dependencies.
8276 * src/nullable.c (set_nullable, free_nullable): Rename as...
8277 (nullable_compute, nullable_free): these.
8278 (rule_list_t): Store rule_t *, not rule_number_t.
8279 * src/state.c (state_rule_lookaheads_print): Directly compare rule
8280 pointers, instead of their numbers.
8281 * src/main.c (main): Call nullable_free, and derives_free earlier,
8282 as they were lo longer used.
8283
8284 2002-08-01 Akim Demaille <akim@epita.fr>
8285
8286 * lib/timevar.c (get_time): Include children time.
8287 * src/lalr.h (LA, LArule): Don't export them: used with the
8288 state_t.
8289 * src/lalr.c (LA, LArule): Static.
8290 * src/lalr.h, src/lalr.c (lalr_free): New.
8291 * src/main.c (main): Call it.
8292 * src/tables.c (pack_vector): Check whether loc is >= to the
8293 table_size, not >.
8294 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
8295 (tables_generate): do it, since that's also it which allocates
8296 them.
8297 Don't free LA and LArule, main does.
8298
8299 2002-07-31 Akim Demaille <akim@epita.fr>
8300
8301 Separate parser tables computation and output.
8302
8303 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
8304 (conflict_list, conflict_list_cnt, table, check, table_ninf)
8305 (yydefgoto, yydefact, high): Move to...
8306 * src/tables.h, src/tables.c: here.
8307 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
8308 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
8309 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
8310 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
8311 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
8312 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
8313 (action_row, save_row, token_actions, save_column, default_goto)
8314 (goto_actions, sort_actions, matching_state, pack_vector)
8315 (table_ninf_remap, pack_table, prepare_actions): Move to...
8316 * src/tables.c: here.
8317 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
8318 * src/output.c (token_actions, output_base, output_conflicts)
8319 (output_check): Merge into...
8320 (prepare_actions): this.
8321 (actions_output): Rename as...
8322 (user_actions_output): this.
8323 * src/main.c (main): Call tables_generate and tables_free.
8324
8325 2002-07-31 Akim Demaille <akim@epita.fr>
8326
8327 Steal GCC's --time-report support.
8328
8329 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
8330 stolen/adjusted from GCC.
8331 * m4/stage.m4: Remove time related checks.
8332 * m4/timevar.m4: New.
8333 * configure.in: Adjust.
8334 * src/system.h: Adjust to using timevar.h.
8335 * src/getargs.h, src/getargs.c: Support trace_time for
8336 --trace=time.
8337 * src/main.c (stage): Remove.
8338 (main): Replace `stage' invocations with timevar calls.
8339 * src/output.c: Insert pertinent timevar calls.
8340
8341 2002-07-31 Akim Demaille <akim@epita.fr>
8342
8343 Let --trace have arguments.
8344
8345 * src/getargs.h (enum trace_e): New.
8346 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
8347 (long_options, short_options): --trace/-T takes an optional
8348 argument.
8349 Change all the uses of trace_flag to reflect the new flags.
8350 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
8351
8352 Strengthen `stage' portability.
8353
8354 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
8355 * configure.in: Use it.
8356 Don't check for malloc.h and sys/times.h.
8357 * src/system.h: Include them when appropriate.
8358 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
8359 times and struct tms are available.
8360
8361 2002-07-30 Akim Demaille <akim@epita.fr>
8362
8363 In verbose parse error message, don't report `error' as an
8364 expected token.
8365 * tests/actions.at (Printers and Destructors): Adjust.
8366 * tests/calc.at (Calculator $1): Adjust.
8367 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
8368 error message, do not report the parser accepts the error token in
8369 that state.
8370
8371 2002-07-30 Akim Demaille <akim@epita.fr>
8372
8373 Normalize conflict related messages.
8374
8375 * src/complain.h, src/complain.c (warn, complain): New.
8376 * src/conflicts.c (conflicts_print): Use them.
8377 (conflict_report_yacc): New, extracted from...
8378 (conflicts_print): here.
8379 * tests/conflicts.at, tests/existing.at: Adjust.
8380
8381 2002-07-30 Akim Demaille <akim@epita.fr>
8382
8383 Report rules which are never reduced by the parser: those hidden
8384 by conflicts.
8385
8386 * src/LR0.c (save_reductions): Don't make the final state too
8387 different: save its reduction (accept) instead of having a state
8388 without any action (no shift or goto, no reduce).
8389 Note: the final state is now a ``regular'' state, i.e., the
8390 parsers now contain `reduce 0' as default reduction.
8391 Nevertheless, since they decide to `accept' when yystate =
8392 final_state, they still will not reduce rule 0.
8393 * src/print.c (print_actions, print_reduction): Adjust.
8394 * src/output.c (action_row): Track reduced rules.
8395 (token_actions): Report rules never reduced.
8396 * tests/conflicts.at, tests/regression.at: Adjust.
8397
8398 2002-07-30 Akim Demaille <akim@epita.fr>
8399
8400 `stage' was accidently included in a previous patch.
8401 Initiate its autoconfiscation.
8402
8403 * configure.in: Look for malloc.h and sys/times.h.
8404 * src/main.c (stage): Adjust.
8405 Report only when trace_flag.
8406
8407 2002-07-29 Akim Demaille <akim@epita.fr>
8408
8409 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
8410 state_number_t.
8411 (errs_t): symbol_t*, not symbol_number_t.
8412 (reductions_t): rule_t*, not rule_number_t.
8413 (FOR_EACH_SHIFT): New.
8414 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
8415 * src/print.c, src/print_graph.c: Adjust.
8416
8417 2002-07-29 Akim Demaille <akim@epita.fr>
8418
8419 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
8420
8421 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
8422 (endtoken, accept): these.
8423 * src/reader.c (reader): Set endtoken's default tag to "$end".
8424 Set undeftoken's tag to "$undefined" instead of "$undefined.".
8425 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
8426 Adjust.
8427
8428 2002-07-29 Akim Demaille <akim@epita.fr>
8429
8430 * src/reduce.c (reduce_grammar): When the language is empty,
8431 complain about the start symbol, not the axiom.
8432 Use its location.
8433 * tests/reduce.at (Empty Language): New.
8434
8435 2002-07-26 Akim Demaille <akim@epita.fr>
8436
8437 * src/reader.h, src/reader.c (gram_error): ... can't get
8438 yycontrol without making too strong assumptions on the parser
8439 itself.
8440 * src/output.c (prepare_tokens): Use the real 0th value of
8441 token_translations instead of `0'.
8442 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
8443 visible here.
8444 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
8445 for the time being: %locations ought to provide it to yyerror.
8446
8447 2002-07-25 Akim Demaille <akim@epita.fr>
8448
8449 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
8450 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
8451 * tests/regression.at (Web2c Actions): Adjust.
8452
8453 2002-07-25 Akim Demaille <akim@epita.fr>
8454
8455 Stop storing rules from 1 to nrules + 1.
8456
8457 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
8458 * src/nullable.c, src/output.c, src/print.c, src/reader.c
8459 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
8460 Iterate from 0 to nrules.
8461 Use rule_number_as_item_number and item_number_as_rule_number.
8462 Adjust to `derive' now containing possibly 0.
8463 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
8464 Handle the `- 1' part in rule numbers from/to item numbers.
8465 * src/conflicts.c (log_resolution): Fix the message which reversed
8466 shift and reduce.
8467 * src/output.c (action_row): Initialize default_rule to -1.
8468 (token_actions): Adjust.
8469 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
8470 expected output.
8471 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
8472
8473 2002-07-25 Akim Demaille <akim@epita.fr>
8474
8475 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
8476 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
8477 (b4_c_knr_arg_decl): New.
8478 * data/yacc.c: Use it to define yysymprint, yydestruct, and
8479 yyreport_parse_error.
8480
8481 2002-07-25 Akim Demaille <akim@epita.fr>
8482
8483 * data/yacc.c (yyreport_parse_error): New, extracted from...
8484 (yyparse): here.
8485 (yydestruct, yysymprint): Move above yyparse.
8486 Be K&R compliant.
8487
8488 2002-07-25 Akim Demaille <akim@epita.fr>
8489
8490 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
8491 replace...
8492 (b4_sint_type, b4_uint_type): these.
8493 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
8494 * tests/regression.at (Web2c Actions): Adjust.
8495
8496 2002-07-25 Akim Demaille <akim@epita.fr>
8497
8498 * src/gram.h (TIEM_NUMBER_MAX): New.
8499 (item_number_of_rule_number, rule_number_of_item_number): Rename
8500 as...
8501 (rule_number_as_item_number, item_number_as_rule_number): these.
8502 Adjust dependencies.
8503 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
8504 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
8505 (symbol_number_to_vector_number): New.
8506 (order): Of vector_number_t* type.
8507 (base_t, BASE_MAX, BASE_MIN): New.
8508 (froms, tos, width, pos, check): Of base_t type.
8509 (action_number_t, ACTION_MIN, ACTION_MAX): New.
8510 (actrow): Of action_number_t type.
8511 (conflrow): Of unsigned int type.
8512 (table_ninf, base_ninf): New.
8513 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
8514 (muscle_insert_int_table, muscle_insert_base_table)
8515 (muscle_insert_rule_number_table): New.
8516 (prepare_tokens): Output `toknum' as int_table.
8517 (action_row): Returns a rule_number_t.
8518 Use ACTION_MIN, not SHRT_MIN.
8519 (token_actions): yydefact is rule_number_t*.
8520 (table_ninf_remap): New.
8521 (pack_table): Use it for `base' and `table'.
8522 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
8523 replaced with...
8524 (YYPACT_NINF, YYTABLE_NINF): these.
8525 (yypact, yytable): Compute their types instead of hard-coded
8526 `short'.
8527 * tests/regression.at (Web2c Actions): Adjust.
8528
8529 2002-07-19 Akim Demaille <akim@epita.fr>
8530
8531 * src/scan-gram.l (id): Can start with an underscore.
8532
8533 2002-07-16 Akim Demaille <akim@epita.fr>
8534
8535 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
8536 Adjust all former `associativity' dependencies.
8537 * src/symtab.c (symbol_new): Default associativity is `undef', not
8538 `right'.
8539 (symbol_check_alias_consistence): Adjust.
8540
8541 2002-07-09 Akim Demaille <akim@epita.fr>
8542
8543 * doc/bison.texinfo: Properly set the ``header'' part.
8544 Use @dircategory ``GNU programming tools'' as per Texinfo's
8545 documentation.
8546 Use @copying.
8547
8548 2002-07-09 Akim Demaille <akim@epita.fr>
8549
8550 * lib/quotearg.h: Protect against multiple inclusions.
8551 * src/location.h (location_t): Add a `file' member.
8552 (LOCATION_RESET, LOCATION_PRINT): Adjust.
8553 * src/complain.c (warn_at, complain_at, fatal_at): Drop
8554 `error_one_per_line' support.
8555
8556 2002-07-09 Akim Demaille <akim@epita.fr>
8557
8558 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
8559 * src/reader.c (lineno): Remove.
8560 Adjust all dependencies.
8561 (get_merge_function): Take a location and use complain_at.
8562 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
8563 * tests/regression.at (Invalid inputs, Mixing %token styles):
8564 Adjust.
8565
8566 2002-07-09 Akim Demaille <akim@epita.fr>
8567
8568 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
8569 recovery rule, and forbid extensions when --yacc.
8570 (gram_error): Use complain_at.
8571 * src/reader.c (reader): Exit if there were parse errors.
8572
8573 2002-07-09 Akim Demaille <akim@epita.fr>
8574
8575 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
8576 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
8577 Reported by R Blake <blakers@mac.com>.
8578
8579 2002-07-09 Akim Demaille <akim@epita.fr>
8580
8581 * data/yacc.c: Output the copyright notive in the header.
8582
8583 2002-07-03 Akim Demaille <akim@epita.fr>
8584
8585 * src/output.c (froms, tos): Are state_number_t.
8586 (save_column): sp, sp1, and sp2 are state_number_t.
8587 (prepare): Rename `final' as `final_state_number', `nnts' as
8588 `nterms_number', `nrules' as `rules_number', `nstates' as
8589 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
8590 unused.
8591 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
8592 * data/lalr1.cc (nsym_): Remove, unused.
8593
8594 2002-07-03 Akim Demaille <akim@epita.fr>
8595
8596 * src/lalr.h, src/lalr.c (goto_number_t): New.
8597 * src/lalr.c (goto_list_t): New.
8598 Propagate them.
8599 * src/nullable.c (rule_list_t): New.
8600 Propagate.
8601 * src/types.h: Remove.
8602
8603 2002-07-03 Akim Demaille <akim@epita.fr>
8604
8605 * src/closure.c (print_fderives): Use rule_rhs_print.
8606 * src/derives.c (print_derives): Use rule_rhs_print.
8607 (rule_list_t): New, replaces `shorts'.
8608 (set_derives): Add comments.
8609 * tests/sets.at (Nullable, Firsts): Adjust.
8610
8611 2002-07-03 Akim Demaille <akim@epita.fr>
8612
8613 * src/output.c (prepare_actions): Free `tally' and `width'.
8614 (prepare_actions): Allocate and free `order'.
8615 * src/symtab.c (symbols_free): Free `symbols'.
8616 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
8617 * src/output.c (m4_invoke): Move to...
8618 * src/scan-skel.l: here.
8619 (<<EOF>>): Close yyout, and free its name.
8620
8621 2002-07-03 Akim Demaille <akim@epita.fr>
8622
8623 Fix some memory leaks, and fix a bug: state 0 was examined twice.
8624
8625 * src/LR0.c (new_state): Merge into...
8626 (state_list_append): this.
8627 (new_states): Merge into...
8628 (generate_states): here.
8629 (set_states): Don't ensure a proper `errs' state member here, do it...
8630 * src/conflicts.c (conflicts_solve): here.
8631 * src/state.h, src/state.c: Comment changes.
8632 (state_t): Rename member `shifts' as `transitions'.
8633 Adjust all dependencies.
8634 (errs_new): For consistency, also take the values as argument.
8635 (errs_dup): Remove.
8636 (state_errs_set): New.
8637 (state_reductions_set, state_transitions_set): Assert that no
8638 previous value was assigned.
8639 (state_free): New.
8640 (states_free): Use it.
8641 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
8642 temporary storage: use `errs' and `nerrs' as elsewhere.
8643 (set_conflicts): Allocate and free this `errs'.
8644
8645 2002-07-02 Akim Demaille <akim@epita.fr>
8646
8647 * lib/libiberty.h: New.
8648 * lib: Update the bitset implementation from upstream.
8649 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
8650 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
8651 * src/main.c: Adjust bitset stats calls.
8652
8653 2002-07-01 Paul Eggert <eggert@twinsun.com>
8654
8655 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
8656 char, so that negative chars don't collide with $.
8657
8658 2002-06-30 Akim Demaille <akim@epita.fr>
8659
8660 Have the GLR tests be `warning' checked, and fix the warnings.
8661
8662 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
8663 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
8664 (yyremoveDeletes): `yyi' and `yyj' are size_t.
8665 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
8666 (yyaddDeferredAction): static.
8667 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
8668 (yyreportParseError): yyprefix is const.
8669 yytokenp is used only when verbose.
8670 (yy__GNUC__): Replace with __GNUC__.
8671 (yypdumpstack): yyi is size_t.
8672 (yypreference): Un-yy local variables and arguments, to avoid
8673 clashes with `yyr1'. Anyway, we are not in the user name space.
8674 (yytname_size): be an int, as is compared with ints.
8675 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
8676 Use them.
8677 * tests/cxx-gram.at: Use quotation to protect $1.
8678 Use AT_COMPILE to enable warnings hunts.
8679 Prototype yylex and yyerror.
8680 `Use' argc.
8681 Include `string.h', not `strings.h'.
8682 Produce and prototype stmtMerge only when used.
8683 yylex takes a location.
8684
8685 2002-06-30 Akim Demaille <akim@epita.fr>
8686
8687 We spend a lot of time in quotearg, in particular when --verbose.
8688
8689 * src/symtab.c (symbol_get): Store a quoted version of the key.
8690 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
8691 Adjust all callers.
8692
8693 2002-06-30 Akim Demaille <akim@epita.fr>
8694
8695 * src/state.h (reductions_t): Rename member `nreds' as num.
8696 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
8697 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
8698
8699 2002-06-30 Akim Demaille <akim@epita.fr>
8700
8701 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
8702 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
8703 (shifts_to): Rename as...
8704 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
8705 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
8706 (TRANSITION_IS_DISABLED, transitions_to): these.
8707
8708 2002-06-30 Akim Demaille <akim@epita.fr>
8709
8710 * src/print.c (print_shifts, print_gotos): Merge into...
8711 (print_transitions): this.
8712 (print_transitions, print_errs, print_reductions): Align the
8713 lookaheads columns.
8714 (print_core, print_transitions, print_errs, print_state,
8715 print_grammar): Output empty lines separator before, not after.
8716 (state_default_rule_compute): Rename as...
8717 (state_default_rule): this.
8718 * tests/conflicts.at (Defaulted Conflicted Reduction),
8719 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
8720 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
8721
8722 2002-06-30 Akim Demaille <akim@epita.fr>
8723
8724 Display items as we display rules.
8725
8726 * src/gram.h, src/gram.c (rule_lhs_print): New.
8727 * src/gram.c (grammar_rules_partial_print): Use it.
8728 * src/print.c (print_core): Likewise.
8729 * tests/conflicts.at (Defaulted Conflicted Reduction),
8730 (Unresolved SR Conflicts): Adjust.
8731 (Unresolved SR Conflicts): Adjust and rename as...
8732 (Resolved SR Conflicts): this, as was meant.
8733 * tests/regression.at (Web2c Report): Adjust.
8734
8735 2002-06-30 Akim Demaille <akim@epita.fr>
8736
8737 * src/print.c (state_default_rule_compute): New, extracted from...
8738 (print_reductions): here.
8739 Pessimize, but clarify the code.
8740 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
8741
8742 2002-06-30 Akim Demaille <akim@epita.fr>
8743
8744 * src/output.c (action_row): Let default_rule be always a rule
8745 number.
8746
8747 2002-06-30 Akim Demaille <akim@epita.fr>
8748
8749 * src/closure.c (print_firsts, print_fderives, closure):
8750 Use BITSET_EXECUTE.
8751 * src/lalr.c (lookaheads_print): Likewise.
8752 * src/state.c (state_rule_lookaheads_print): Likewise.
8753 * src/print_graph.c (print_core): Likewise.
8754 * src/print.c (print_reductions): Likewise.
8755 * src/output.c (action_row): Likewise.
8756 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
8757
8758 2002-06-30 Akim Demaille <akim@epita.fr>
8759
8760 * src/print_graph.c: Use report_flag.
8761
8762 2002-06-30 Akim Demaille <akim@epita.fr>
8763
8764 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
8765 to...
8766 * src/relation.h, src/relation.c (traverse, relation_digraph)
8767 (relation_print, relation_transpose): New.
8768
8769 2002-06-30 Akim Demaille <akim@epita.fr>
8770
8771 * src/state.h, src/state.c (shifts_to): New.
8772 * src/lalr.c (build_relations): Use it.
8773
8774 2002-06-30 Akim Demaille <akim@epita.fr>
8775
8776 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
8777 (item_number_of_rule_number, rule_number_of_item_number): New.
8778 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
8779 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
8780 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
8781 Propagate their use.
8782 Much remains to be done, in particular wrt `shorts' from types.h.
8783
8784 2002-06-30 Akim Demaille <akim@epita.fr>
8785
8786 * src/symtab.c (symbol_new): Initialize the `printer' member.
8787
8788 2002-06-30 Akim Demaille <akim@epita.fr>
8789
8790 * src/LR0.c (save_reductions): Remove, replaced by...
8791 * src/state.h, src/state.c (state_reductions_set): New.
8792 (reductions, errs): Rename as...
8793 (reductions_t, errs_t): these.
8794 Adjust all dependencies.
8795
8796 2002-06-30 Akim Demaille <akim@epita.fr>
8797
8798 * src/LR0.c (state_list_t, state_list_append): New.
8799 (first_state, last_state): Now symbol_list_t.
8800 (this_state): Remove.
8801 (new_itemsets, append_states, save_reductions): Take a state_t as
8802 argument.
8803 (set_states, generate_states): Adjust.
8804 (save_shifts): Remove, replaced by...
8805 * src/state.h, src/state.c (state_shifts_set): New.
8806 (shifts): Rename as...
8807 (shifts_t): this.
8808 Adjust all dependencies.
8809 * src/state.h (state_t): Remove the `next' member.
8810
8811 2002-06-30 Akim Demaille <akim@epita.fr>
8812
8813 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
8814 escaped in slot 0.
8815
8816 2002-06-30 Akim Demaille <akim@epita.fr>
8817
8818 Use hash.h for the state hash table.
8819
8820 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
8821 (allocate_storage): Use state_hash_new.
8822 (free_storage): Use state_hash_free.
8823 (new_state, get_state): Adjust.
8824 * src/lalr.h, src/lalr.c (states): Move to...
8825 * src/states.h (state_t): Remove the `link' member, no longer
8826 used.
8827 * src/states.h, src/states.c: here.
8828 (state_hash_new, state_hash_free, state_hash_lookup)
8829 (state_hash_insert, states_free): New.
8830 * src/states.c (state_table, state_compare, state_hash): New.
8831 * src/output.c (output_actions): Do not free states now, since we
8832 still need to know the final_state number in `prepare', called
8833 afterwards. Do it...
8834 * src/main.c (main): here: call states_free after `output'.
8835
8836 2002-06-30 Akim Demaille <akim@epita.fr>
8837
8838 * src/state.h, src/state.c (state_new): New, extracted from...
8839 * src/LR0.c (new_state): here.
8840 * src/state.h (STATE_ALLOC): Move to...
8841 * src/state.c: here.
8842 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
8843 * src/state.h, src/state.c: here.
8844
8845 2002-06-30 Akim Demaille <akim@epita.fr>
8846
8847 * src/reader.c (gensym): Rename as...
8848 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
8849 (getsym): Rename as...
8850 (symbol_get): this.
8851
8852 2002-06-30 Akim Demaille <akim@epita.fr>
8853
8854 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
8855 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
8856 * src/output.c, src/print.c, src/print_graph.c: Propagate.
8857 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
8858
8859 2002-06-30 Akim Demaille <akim@epita.fr>
8860
8861 Make the test suite pass with warnings checked.
8862
8863 * tests/actions.at (Printers and Destructors): Improve.
8864 Avoid unsigned vs. signed issues.
8865 * tests/calc.at: Don't exercise the scanner here, do it...
8866 * tests/input.at (Torturing the Scanner): here.
8867
8868 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8869
8870 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
8871 reorganize first lines parallel to yacc.c.
8872
8873 2002-06-28 Akim Demaille <akim@epita.fr>
8874
8875 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
8876 (b4_token_enum, b4_token_defines): New, factored from...
8877 * data/lalr1.cc, data/yacc.c, glr.c: here.
8878
8879 2002-06-28 Akim Demaille <akim@epita.fr>
8880
8881 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
8882 unused variables.
8883 * src/output.c (merger_output): static.
8884
8885 2002-06-28 Akim Demaille <akim@epita.fr>
8886
8887 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
8888 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
8889 pacify GCC.
8890 * src/output.c (save_row): Initialize all the variables to pacify GCC.
8891
8892 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8893
8894 Accumulated changelog for new GLR parsing features.
8895
8896 * src/conflicts.c (count_total_conflicts): Change name to
8897 conflicts_total_count.
8898 * src/conflicts.h: Ditto.
8899 * src/output.c (token_actions): Use the new name.
8900 (output_conflicts): Change conflp => conflict_list_heads, and
8901 confl => conflict_list for better readability.
8902 * data/glr.c: Use the new names.
8903 * NEWS: Add self to GLR announcement.
8904
8905 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
8906
8907 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
8908 Akim Demaille.
8909
8910 * data/bison.glr: Change name to glr.c
8911 * data/glr.c: Renamed from bison.glr.
8912 * data/Makefile.am: Add glr.c
8913
8914 * src/getargs.c:
8915
8916 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
8917 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
8918
8919 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8920
8921 * data/bison.glr: Be sure to restore the
8922 current #line when returning to the skeleton contents after having
8923 exposed the input file's #line.
8924
8925 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8926
8927 * data/bison.glr: Bring up to date with changes to bison.simple.
8928
8929 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8930
8931 * data/bison.glr: Correct definitions that use b4_prefix.
8932 Various reformatting.
8933 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
8934 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
8935 yytokenp argument; now part of stack.
8936 (yychar): Define to behave as documented.
8937 (yyclearin): Ditto.
8938
8939 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8940
8941 * src/reader.h: Add declaration for free_merger_functions.
8942
8943 * src/reader.c (merge_functions): New variable.
8944 (get_merge_function): New function.
8945 (free_merger_functions): New function.
8946 (readgram): Check for %prec that is not followed by a symbol.
8947 Handle %dprec and %merge declarations.
8948 (packgram): Initialize dprec and merger fields in rules array.
8949
8950 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
8951 conflict_list_cnt, conflict_list_free): New variables.
8952 (table_grow): Also grow conflict_table.
8953 (prepare_rules): Output dprec and merger tables.
8954 (conflict_row): New function.
8955 (action_row): Output conflict lists for GLR parser. Don't use
8956 default reduction in conflicted states for GLR parser so that there
8957 are spaces for the conflict lists.
8958 (save_row): Also save conflict information.
8959 (token_actions): Allocate conflict list.
8960 (merger_output): New function.
8961 (pack_vector): Pack conflict table, too.
8962 (output_conflicts): New function to output yyconflp and yyconfl.
8963 (output_check): Allocate conflict_tos.
8964 (output_actions): Output conflict tables, also.
8965 (output_skeleton): Output b4_mergers definition.
8966 (prepare): Output b4_max_rhs_length definition.
8967 Use 'bison.glr' as default skeleton for GLR parsers.
8968
8969 * src/gram.c (glr_parser): New flag.
8970 (grammar_free): Call free_merger_functions.
8971
8972 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
8973 all pairs of conflicting reductions, rather than just all tokens
8974 causing conflicts. Needed to size conflict tables.
8975 (conflicts_output): Modify call to count_rr_conflicts for new
8976 interface.
8977 (conflicts_print): Ditto.
8978 (count_total_conflicts): New function.
8979
8980 * src/reader.h (merger_list): New type.
8981 (merge_functions): New variable.
8982
8983 * src/lex.h (tok_dprec, tok_merge): New token types.
8984
8985 * src/gram.h (rule_s): Add dprec and merger fields.
8986 (glr_parser): New flag.
8987
8988 * src/conflicts.h (count_total_conflicts): New function.
8989
8990 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
8991
8992 * doc/bison.texinfo (Generalized LR Parsing): New section.
8993 (GLR Parsers): New section.
8994 (Language and Grammar): Mention GLR parsing.
8995 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
8996 Correct typo ("tge" -> "the").
8997
8998 * data/bison.glr: New skeleton for GLR parsing.
8999
9000 * tests/cxx-gram.at: New tests for GLR parsing.
9001
9002 * tests/testsuite.at: Include cxx-gram.at.
9003
9004 * tests/Makefile.am: Add cxx-gram.at.
9005
9006 * src/parse-gram.y:
9007
9008 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
9009
9010 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
9011
9012 2002-06-27 Akim Demaille <akim@epita.fr>
9013
9014 * src/options.h, src/options.c: Remove.
9015 * src/getargs.c (short_options, long_options): New.
9016
9017 2002-06-27 Akim Demaille <akim@epita.fr>
9018
9019 * data/bison.simple, data/bison.c++: Rename as...
9020 * data/yacc.c, data/lalr1.cc: these.
9021 * doc/bison.texinfo (Environment Variables): Remove.
9022
9023 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
9024
9025 * src/getargs.c (report_argmatch): Initialize strtok().
9026
9027 2002-06-20 Akim Demaille <akim@epita.fr>
9028
9029 * data/bison.simple (b4_symbol_actions): New, replaces...
9030 (b4_symbol_destructor, b4_symbol_printer): these.
9031 (yysymprint): Be sure to call YYPRINT only for tokens, and using
9032 user token numbers.
9033
9034 2002-06-20 Akim Demaille <akim@epita.fr>
9035
9036 * data/bison.simple (yydestructor): Rename as...
9037 (yydestruct): this.
9038
9039 2002-06-20 Akim Demaille <akim@epita.fr>
9040
9041 * src/symtab.h, src/symtab.c (symbol_type_set)
9042 (symbol_destructor_set, symbol_precedence_set): The location is
9043 the last argument.
9044 Adjust all callers.
9045
9046 2002-06-20 Akim Demaille <akim@epita.fr>
9047
9048 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
9049 internals.
9050 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
9051 Takes a location.
9052 * src/symtab.h, src/symtab.c (symbol_class_set)
9053 (symbol_user_token_number_set): Likewise.
9054 Adjust all callers.
9055 Promote complain_at.
9056 * tests/input.at (Type Clashes): Adjust.
9057
9058 2002-06-20 Akim Demaille <akim@epita.fr>
9059
9060 * data/bison.simple (YYLEX): Fix the declaration when
9061 %pure-parser.
9062
9063 2002-06-20 Akim Demaille <akim@epita.fr>
9064
9065 * data/bison.simple (yysymprint): Don't print the token number,
9066 just its name.
9067 * tests/actions.at (Destructors): Rename as...
9068 (Printers and Destructors): this.
9069 Also exercise %printer.
9070
9071 2002-06-20 Akim Demaille <akim@epita.fr>
9072
9073 * data/bison.simple (YYDSYMPRINT): New.
9074 Use it to remove many of the #if YYDEBUG/if (yydebug).
9075
9076 2002-06-20 Akim Demaille <akim@epita.fr>
9077
9078 * src/symtab.h, src/symtab.c (symbol_t): printer and
9079 printer_location are new members.
9080 (symbol_printer_set): New.
9081 * src/parse-gram.y (PERCENT_PRINTER): New token.
9082 Handle its associated rule.
9083 * src/scan-gram.l: Adjust.
9084 (handle_destructor_at, handle_destructor_dollar): Rename as...
9085 (handle_symbol_code_at, handle_symbol_code_dollar): these.
9086 * src/output.c (symbol_printers_output): New.
9087 (output_skeleton): Call it.
9088 * data/bison.simple (yysymprint): New. Cannot be named yyprint
9089 since there are already many grammar files with a user `yyprint'.
9090 Replace the calls to YYPRINT to calls to yysymprint.
9091 * tests/calc.at: Adjust.
9092 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
9093 taking advantage of parser very internal details (stack size!).
9094
9095 2002-06-20 Akim Demaille <akim@epita.fr>
9096
9097 * src/scan-gram.l: Complete the scanner with the missing patterns
9098 to pacify Flex.
9099 Use `quote' and `symbol_tag_get' where appropriate.
9100
9101 2002-06-19 Akim Demaille <akim@epita.fr>
9102
9103 * tests/actions.at (Destructors): Augment to test locations.
9104 * data/bison.simple (yydestructor): Pass it the current location
9105 if locations are enabled.
9106 Prototype only when __STDC__ or C++.
9107 Change the argument names to move into the yy name space: there is
9108 user code here.
9109
9110 2002-06-19 Akim Demaille <akim@epita.fr>
9111
9112 * data/bison.simple (b4_pure_if): New.
9113 Use it instead of #ifdef YYPURE.
9114
9115 2002-06-19 Akim Demaille <akim@epita.fr>
9116
9117 * data/bison.simple (b4_location_if): New.
9118 Use it instead of #ifdef YYLSP_NEEDED.
9119
9120 2002-06-19 Akim Demaille <akim@epita.fr>
9121
9122 Prepare @$ in %destructor, but currently don't bind it in the
9123 skeleton, as %location use is not cleaned up yet.
9124
9125 * src/scan-gram.l (handle_dollar, handle_destructor_at)
9126 (handle_action_at): New.
9127 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
9128 a braced_code_t and a location as additional arguments.
9129 (handle_destructor_dollar): Instead of requiring `b4_eval', just
9130 unquote one when outputting `b4_dollar_dollar'.
9131 Adjust callers.
9132 * data/bison.simple (b4_eval): Remove.
9133 (b4_symbol_destructor): Adjust.
9134 * tests/input.at (Invalid @n): Adjust.
9135
9136 2002-06-19 Zack Weinberg <zack@codesourcery.com>
9137
9138 * doc/bison.texinfo: Document ability to have multiple
9139 prologue sections.
9140
9141 2002-06-18 Akim Demaille <akim@epita.fr>
9142
9143 * src/files.c (compute_base_names): When computing the output file
9144 names from the input file name, strip the directory part.
9145
9146 2002-06-18 Akim Demaille <akim@epita.fr>
9147
9148 * data/bison.simple.new: Comment changes.
9149 Reported by Andreas Schwab.
9150
9151 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
9152
9153 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
9154 there are no `label `yyoverflowlab' defined but not used' warnings
9155 when yyoverflow is defined.
9156
9157 2002-06-18 Akim Demaille <akim@epita.fr>
9158
9159 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
9160 new member.
9161 (symbol_destructor_set): Adjust.
9162 * src/output.c (symbol_destructors_output): Output the destructor
9163 locations.
9164 Output the symbol name.
9165 * data/bison.simple (b4_symbol_destructor): Adjust.
9166
9167 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
9168 and Akim Demaille <akim@epita.fr>
9169
9170 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
9171 what's left on the stack when the error recovery hits EOF.
9172 * tests/actions.at (Destructors): Complete to exercise this case.
9173
9174 2002-06-17 Akim Demaille <akim@epita.fr>
9175
9176 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
9177 arguments is really empty, not only equal to `[]'.
9178 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
9179 member.
9180 (symbol_destructor_set): New.
9181 * src/output.c (symbol_destructors_output): New.
9182 * src/reader.h (brace_code_t, current_braced_code): New.
9183 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
9184 (handle_dollar): Rename as...
9185 (handle_action_dollar): this.
9186 (handle_destructor_dollar): New.
9187 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
9188 (grammar_declaration): Use it.
9189 * data/bison.simple (yystos): Is always defined.
9190 (yydestructor): New.
9191 * tests/actions.at (Destructors): New.
9192 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
9193
9194 2002-06-17 Akim Demaille <akim@epita.fr>
9195
9196 * src/symlist.h, src/symlist.c (symbol_list_length): New.
9197 * src/scan-gram.l (handle_dollar, handle_at): Compute the
9198 rule_length only when needed.
9199 * src/output.c (actions_output, token_definitions_output): Output
9200 the full M4 block.
9201 * src/symtab.c: Don't access directly to the symbol tag, use
9202 symbol_tag_get.
9203 * src/parse-gram.y: Use symbol_list_free.
9204
9205 2002-06-17 Akim Demaille <akim@epita.fr>
9206
9207 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
9208 (symbol_list_prepend, get_type_name): Move to...
9209 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
9210 (symbol_list_prepend, symbol_list_n_type_name_get): here.
9211 Adjust all callers.
9212 (symbol_list_free): New.
9213 * src/scan-gram.l (handle_dollar): Takes a location.
9214 * tests/input.at (Invalid $n): Adjust.
9215
9216 2002-06-17 Akim Demaille <akim@epita.fr>
9217
9218 * src/reader.h, src/reader.c (symbol_list_new): Export it.
9219 (symbol_list_prepend): New.
9220 * src/parse-gram.y (%union): `list' is a new member.
9221 (symbols.1): New, replaces...
9222 (terms_to_prec.1, nterms_to_type.1): these.
9223 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
9224 Take a location as additional argument.
9225 Adjust all callers.
9226
9227 2002-06-15 Akim Demaille <akim@epita.fr>
9228
9229 * src/parse-gram.y: Move %token in the declaration section so that
9230 we don't depend upon CVS Bison.
9231
9232 2002-06-15 Akim Demaille <akim@epita.fr>
9233
9234 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
9235 * src/print.c (print_core): Use it.
9236
9237 2002-06-15 Akim Demaille <akim@epita.fr>
9238
9239 * src/conflicts.c (log_resolution): Accept the rule involved in
9240 the sr conflicts instead of the lookahead number that points to
9241 that rule.
9242 (flush_reduce): Accept the current lookahead vector as argument,
9243 instead of the index in LA.
9244 (resolve_sr_conflict): Accept the current number of lookahead
9245 bitset to consider for the STATE, instead of the index in LA.
9246 (set_conflicts): Adjust.
9247 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
9248
9249 2002-06-15 Akim Demaille <akim@epita.fr>
9250
9251 * src/state.h (state_t): Replace the `lookaheadsp' member, a
9252 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
9253 Adjust all dependencies.
9254 * src/lalr.c (initialize_lookaheads): Split into...
9255 (states_lookaheads_count, states_lookaheads_initialize): these.
9256 (lalr): Adjust.
9257
9258 2002-06-15 Akim Demaille <akim@epita.fr>
9259
9260 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
9261 out of...
9262 (grammar_rules_print): here.
9263 * src/reduce.c (reduce_output): Use it.
9264 * tests/reduce.at (Useless Rules, Reduced Automaton)
9265 (Underivable Rules): Adjust.
9266
9267 2002-06-15 Akim Demaille <akim@epita.fr>
9268
9269 Copy BYacc's nice way to report the grammar.
9270
9271 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
9272 New.
9273 Don't print the rules' location, it is confusing and useless.
9274 (rule_print): Use grammar_rhs_print.
9275 * src/print.c (print_grammar): Use grammar_rules_print.
9276
9277 2002-06-15 Akim Demaille <akim@epita.fr>
9278
9279 Complete and rationalize `useless thing' warnings.
9280
9281 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
9282 (symbol_tag_print): New.
9283 Use them everywhere in place of accessing directly the tag member.
9284 * src/gram.h, src/gram.c (rule_print): New.
9285 Use it where a rule used to be printed `by hand'.
9286 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
9287 (reduce_grammar_tables): Report the useless rules.
9288 (reduce_print): Useless things are a warning, not an error.
9289 Report it as such.
9290 * tests/reduce.at (Useless Nonterminals, Useless Rules):
9291 (Reduced Automaton, Underivable Rules): Adjust.
9292 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
9293 * tests/conflicts.at (Unresolved SR Conflicts)
9294 (Solved SR Conflicts): Adjust.
9295
9296 2002-06-15 Akim Demaille <akim@epita.fr>
9297
9298 Let symbols have a location.
9299
9300 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
9301 (getsym): Adjust.
9302 Adjust all callers.
9303 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
9304 Use location_t, not int.
9305 * src/symtab.c (symbol_check_defined): Take advantage of the
9306 location.
9307 * tests/regression.at (Invalid inputs): Adjust.
9308
9309 2002-06-15 Akim Demaille <akim@epita.fr>
9310
9311 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
9312 (input): Don't try to initialize yylloc here, do it in the
9313 scanner.
9314 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
9315 * src/gram.h (rule_t): Change line and action_line into location
9316 and action_location, of location_t type.
9317 Adjust all dependencies.
9318 * src/location.h, src/location.c (empty_location): New.
9319 * src/reader.h, src/reader.c (grammar_start_symbol_set)
9320 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
9321 (grammar_current_rule_symbol_append)
9322 (grammar_current_rule_action_append): Expect a location as argument.
9323 * src/reader.c (grammar_midrule_action): Adjust to attach an
9324 action's location as dummy symbol location.
9325 * src/symtab.h, src/symtab.c (startsymbol_location): New.
9326 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
9327 the line numbers.
9328
9329 2002-06-14 Akim Demaille <akim@epita.fr>
9330
9331 Grammar declarations may be found in the grammar section.
9332
9333 * src/parse-gram.y (rules_or_grammar_declaration): New.
9334 (declarations): Each declaration may end with a semicolon, not
9335 just...
9336 (grammar_declaration): `"%union"'.
9337 (grammar): Branch to rules_or_grammar_declaration.
9338
9339 2002-06-14 Akim Demaille <akim@epita.fr>
9340
9341 * src/main.c (main): Invoke scanner_free.
9342
9343 2002-06-14 Akim Demaille <akim@epita.fr>
9344
9345 * src/output.c (m4_invoke): Extracted from...
9346 (output_skeleton): here.
9347 Free tempfile.
9348
9349 2002-06-14 Akim Demaille <akim@epita.fr>
9350
9351 * src/parse-gram.y (directives, directive, gram)
9352 (grammar_directives, precedence_directives, precedence_directive):
9353 Rename as...
9354 (declarations, declaration, grammar, grammar_declaration)
9355 (precedence_declaration, precedence_declarator): these.
9356 (symbol_declaration): New.
9357
9358 2002-06-14 Akim Demaille <akim@epita.fr>
9359
9360 * src/files.c (action_obstack): Remove, unused.
9361 (output_obstack): Remove it, and all its dependencies, as it is no
9362 longer needed.
9363 * src/reader.c (epilogue_set): Build the epilogue in the
9364 muscle_obstack.
9365 * src/output.h, src/output.c (muscle_obstack): Move to...
9366 * src/muscle_tab.h, src/muscle_tab.h: here.
9367 (muscle_init): Initialize muscle_obstack.
9368 (muscle_free): New.
9369 * src/main.c (main): Call it.
9370
9371 2002-06-14 Akim Demaille <akim@epita.fr>
9372
9373 * src/location.h: New, extracted from...
9374 * src/reader.h: here.
9375 * src/Makefile.am (noinst_HEADERS): Merge into
9376 (bison_SOURCES): this.
9377 Add location.h.
9378 * src/parse-gram.y: Use location_t instead of Bison's.
9379 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
9380 Use location_t instead of ints.
9381
9382 2002-06-14 Akim Demaille <akim@epita.fr>
9383
9384 * data/bison.simple, data/bison.c++: Be sure to restore the
9385 current #line when returning to the skeleton contents after having
9386 exposed the input file's #line.
9387
9388 2002-06-12 Akim Demaille <akim@epita.fr>
9389
9390 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
9391 eager.
9392 * tests/actions.at (Exotic Dollars): New.
9393
9394 2002-06-12 Akim Demaille <akim@epita.fr>
9395
9396 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
9397 ['"/] too eagerly.
9398 * tests/input.at (Torturing the Scanner): New.
9399
9400 2002-06-11 Akim Demaille <akim@epita.fr>
9401
9402 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
9403 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
9404 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
9405 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
9406 * src/reader.c (reader): Use it.
9407
9408 2002-06-11 Akim Demaille <akim@epita.fr>
9409
9410 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
9411 Adjust all callers.
9412 (scanner_last_string_free): New.
9413
9414 2002-06-11 Akim Demaille <akim@epita.fr>
9415
9416 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
9417 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
9418 (last_string, YY_OBS_FREE): New.
9419 Use them when returning an ID.
9420
9421 2002-06-11 Akim Demaille <akim@epita.fr>
9422
9423 Have Bison grammars parsed by a Bison grammar.
9424
9425 * src/reader.c, src/reader.h (prologue_augment): New.
9426 * src/reader.c (copy_definition): Remove.
9427
9428 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
9429 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
9430 (grammar_current_rule_prec_set, grammar_current_rule_check)
9431 (grammar_current_rule_symbol_append)
9432 (grammar_current_rule_action_append): Export.
9433 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
9434 (symbol_list_action_append): Remove.
9435 Hook the routines from reader.
9436 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
9437 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
9438
9439 * src/reader.c (read_declarations): Remove, unused.
9440
9441 * src/parse-gram.y: Handle the epilogue.
9442 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
9443 (grammar_start_symbol_set): this.
9444 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
9445 * src/reader.c (readgram): Remove, unused.
9446 (reader): Adjust to insert eoftoken and axiom where appropriate.
9447
9448 * src/reader.c (copy_dollar): Replace with...
9449 * src/scan-gram.h (handle_dollar): this.
9450 * src/parse-gram.y: Remove `%thong'.
9451
9452 * src/reader.c (copy_at): Replace with...
9453 * src/scan-gram.h (handle_at): this.
9454
9455 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
9456 New.
9457
9458 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
9459 time being.
9460
9461 * src/reader.h, src/reader.c (grammar_rule_end): New.
9462
9463 * src/parse.y (current_type, current_class): New.
9464 Implement `%nterm', `%token' support.
9465 Merge `%term' into `%token'.
9466 (string_as_id): New.
9467 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
9468 type name.
9469
9470 * src/parse-gram.y: Be sure to handle properly the beginning of
9471 rules.
9472
9473 * src/parse-gram.y: Handle %type.
9474 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
9475
9476 * src/parse-gram.y: More directives support.
9477 * src/options.c: No longer handle source directives.
9478
9479 * src/parse-gram.y: Fix %output.
9480
9481 * src/parse-gram.y: Handle %union.
9482 Use the prologue locations.
9483 * src/reader.c (parse_union_decl): Remove.
9484
9485 * src/reader.h, src/reader.c (epilogue_set): New.
9486 * src/parse-gram.y: Use it.
9487
9488 * data/bison.simple, data/bison.c++: b4_stype is now either not
9489 defined, then default to int, or to the contents of %union,
9490 without `union' itself.
9491 Adjust.
9492 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
9493
9494 * src/output.c (actions_output): Don't output braces, as they are
9495 already handled by the scanner.
9496
9497 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
9498 characters to themselves.
9499
9500 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
9501 that the epilogue has a proper #line.
9502
9503 * src/parse-gram.y: Handle precedence/associativity.
9504
9505 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
9506 a terminal.
9507 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
9508 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
9509 at all to define terminals that cannot be emitted.
9510
9511 * src/scan-gram.l: Escape M4 characters.
9512
9513 * src/scan-gram.l: Working properly with escapes in user
9514 strings/characters.
9515
9516 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
9517 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
9518 grammar.
9519 Use more modest sizes, as for the time being the parser does not
9520 release memory, and therefore the process swallows a huge amount
9521 of memory.
9522
9523 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
9524 stricter %token grammar.
9525
9526 * src/symtab.h (associativity): Add `undef_assoc'.
9527 (symbol_precedence_set): Do nothing when passed an undef_assoc.
9528 * src/symtab.c (symbol_check_alias_consistence): Adjust.
9529
9530 * tests/regression.at (Invalid %directive): Remove, as it is now
9531 meaningless.
9532 (Invalid inputs): Adjust to the new error messages.
9533 (Token definitions): The new grammar doesn't allow too many
9534 eccentricities.
9535
9536 * src/lex.h, src/lex.c: Remove.
9537 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
9538 (copy_character, copy_string2, copy_string, copy_identifier)
9539 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
9540 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
9541 (parse_action): Remove.
9542 * po/POTFILES.in: Adjust.
9543
9544 2002-06-11 Akim Demaille <akim@epita.fr>
9545
9546 * src/reader.c (parse_action): Don't store directly into the
9547 rule's action member: return the action as a string.
9548 Don't require `rule_length' as an argument: compute it.
9549 (grammar_current_rule_symbol_append)
9550 (grammar_current_rule_action_append): New, eved out from
9551 (readgram): here.
9552 Remove `action_flag', `rulelength', unused now.
9553
9554 2002-06-11 Akim Demaille <akim@epita.fr>
9555
9556 * src/reader.c (grammar_current_rule_prec_set).
9557 (grammar_current_rule_check): New, eved out from...
9558 (readgram): here.
9559 Remove `xaction', `first_rhs': useless.
9560 * tests/input.at (Type clashes): New.
9561 * tests/existing.at (GNU Cim Grammar): Adjust.
9562
9563 2002-06-11 Akim Demaille <akim@epita.fr>
9564
9565 * src/reader.c (grammar_midrule_action): New, Eved out from
9566 (readgram): here.
9567
9568 2002-06-11 Akim Demaille <akim@epita.fr>
9569
9570 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
9571 New.
9572 (readgram): Use them as replacement of inlined code, crule and
9573 crule1.
9574
9575 2002-06-11 Akim Demaille <akim@epita.fr>
9576
9577 * src/reader.c (grammar_end, grammar_symbol_append): New.
9578 (readgram): Use them.
9579 Make the use of `p' as local as possible.
9580
9581 2002-06-10 Akim Demaille <akim@epita.fr>
9582
9583 GCJ's parser requires the tokens to be defined before the prologue.
9584
9585 * data/bison.simple: Output the token definition before the user's
9586 prologue.
9587 * tests/regression.at (Braces parsing, Duplicate string)
9588 (Mixing %token styles): Check the output from bison.
9589 (Early token definitions): New.
9590
9591 2002-06-10 Akim Demaille <akim@epita.fr>
9592
9593 * src/symtab.c (symbol_user_token_number_set): Don't complain when
9594 assigning twice the same user number to a token, so that we can
9595 use it in...
9596 * src/lex.c (lex): here.
9597 Also use `symbol_class_set' instead of hand written code.
9598 * src/reader.c (parse_assoc_decl): Likewise.
9599
9600 2002-06-10 Akim Demaille <akim@epita.fr>
9601
9602 * src/symtab.c, src/symtab.c (symbol_class_set)
9603 (symbol_user_token_number_set): New.
9604 * src/reader.c (parse_token_decl): Use them.
9605 Use a switch instead of ifs.
9606 Use a single argument.
9607
9608 2002-06-10 Akim Demaille <akim@epita.fr>
9609
9610 Remove `%thong' support as it is undocumented, unused, duplicates
9611 `%token's job, and creates useless e-mail traffic with people who
9612 want to know what it is, why it is undocumented, unused, and
9613 duplicates `%token's job.
9614
9615 * src/reader.c (parse_thong_decl): Remove.
9616 * src/options.c (option_table): Remove "thong".
9617 * src/lex.h (tok_thong): Remove.
9618
9619 2002-06-10 Akim Demaille <akim@epita.fr>
9620
9621 * src/symtab.c, src/symtab.c (symbol_type_set)
9622 (symbol_precedence_set): New.
9623 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
9624 (value_components_used): Remove, unused.
9625
9626 2002-06-09 Akim Demaille <akim@epita.fr>
9627
9628 Move symbols handling code out of the reader.
9629
9630 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
9631 (axiom): Move to...
9632 * src/symtab.h, src/symtab.c: here.
9633
9634 * src/gram.c (start_symbol): Remove: use startsymbol->number.
9635 * src/reader.c (startval): Rename as...
9636 * src/symtab.h, src/symtab.c (startsymbol): this.
9637 * src/reader.c: Adjust.
9638
9639 * src/reader.c (symbol_check_defined, symbol_make_alias)
9640 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
9641 (token_translations_init)
9642 Move to...
9643 * src/symtab.c: here.
9644 * src/reader.c (packsymbols): Move to...
9645 * src/symtab.h, src/symtab.c (symbols_pack): here.
9646 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
9647 argument.
9648
9649 2002-06-03 Akim Demaille <akim@epita.fr>
9650
9651 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
9652 then statements.
9653
9654 2002-06-03 Akim Demaille <akim@epita.fr>
9655
9656 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
9657 structs with non literals.
9658 * src/scan-skel.l: never-interactive.
9659 * src/conflicts.c (enum conflict_resolution_e): No trailing
9660 comma.
9661 * src/getargs.c (usage): Split long literal strings.
9662 Reported by Hans Aberg.
9663
9664 2002-05-28 Akim Demaille <akim@epita.fr>
9665
9666 * data/bison.c++: Use C++ ostreams.
9667 (cdebug_): New member.
9668
9669 2002-05-28 Akim Demaille <akim@epita.fr>
9670
9671 * src/output.c (output_skeleton): Be sure to allocate enough room
9672 for `/' _and_ for `\0' in full_skeleton.
9673
9674 2002-05-28 Akim Demaille <akim@epita.fr>
9675
9676 * data/bison.c++: Catch up with bison.simple:
9677 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9678 and Paul Eggert <eggert@twinsun.com>: `error' handing.
9679 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
9680 and popping traces.
9681
9682 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9683
9684 * src/output.c (output_skeleton): Put an explicit path in front of
9685 the skeleton file name, rather than relying on the -I directory,
9686 to partially alleviate effects of having a skeleton file lying around
9687 in the current directory.
9688
9689 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9690
9691 * src/conflicts.c (log_resolution): Correct typo:
9692 obstack_printf should be obstack_fgrow1.
9693
9694 2002-05-26 Akim Demaille <akim@epita.fr>
9695
9696 * src/state.h (state_t): `solved_conflicts' is a new member.
9697 * src/LR0.c (new_state): Set it to 0.
9698 * src/conflicts.h, src/conflicts.c (print_conflicts)
9699 (free_conflicts, solve_conflicts): Rename as...
9700 (conflicts_print, conflicts_free, conflicts_solve): these.
9701 Adjust callers.
9702 * src/conflicts.c (enum conflict_resolution_e)
9703 (solved_conflicts_obstack): New, used by...
9704 (log_resolution): this.
9705 Adjust to attach the conflict resolution to each state.
9706 Complete the description with the precedence/associativity
9707 information.
9708 (resolve_sr_conflict): Adjust.
9709 * src/print.c (print_state): Output its solved_conflicts.
9710 * tests/conflicts.at (Unresolved SR Conflicts)
9711 (Solved SR Conflicts): Exercise --report=all.
9712
9713 2002-05-26 Akim Demaille <akim@epita.fr>
9714
9715 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
9716 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
9717 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
9718 (token_number_t, item_number_as_token_number)
9719 (token_number_as_item_number, muscle_insert_token_number_table):
9720 Rename as...
9721 (symbol_number_t, item_number_as_symbol_number)
9722 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
9723 these, since it is more appropriate.
9724
9725 2002-05-26 Akim Demaille <akim@epita.fr>
9726
9727 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
9728 `Error:' lines.
9729 * data/bison.simple (yystos) [YYDEBUG]: New.
9730 (yyparse) [YYDEBUG]: Display the symbols which are popped during
9731 error recovery.
9732 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
9733
9734 2002-05-25 Akim Demaille <akim@epita.fr>
9735
9736 * doc/bison.texinfo (Debugging): Split into...
9737 (Tracing): this new section, its former contents, and...
9738 (Understanding): this new section.
9739 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
9740 by...
9741 (report_flag): this.
9742 Adjust all dependencies.
9743 (report_args, report_types, report_argmatch): New.
9744 (usage, getargs): Report/support -r, --report.
9745 * src/options.h
9746 (struct option_table_struct): Rename as..,
9747 (struct option_table_s): this.
9748 Rename the `set_flag' member to `flag' to match with getopt_long's
9749 struct.
9750 * src/options.c (option_table): Split verbose into an entry for
9751 %verbose, and another for --verbose.
9752 Support --report/-r, so remove -r from the obsolete --raw.
9753 * src/print.c: Attach full item sets and lookaheads reports to
9754 report_flag instead of trace_flag.
9755 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
9756
9757 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9758 and Paul Eggert <eggert@twinsun.com>
9759
9760 * data/bison.simple (yyparse): Correct error handling to conform to
9761 POSIX and yacc. Specifically, after syntax error is discovered,
9762 do not reduce further before shifting the error token.
9763 Clean up the code a bit by removing the labels yyerrdefault,
9764 yyerrhandle, yyerrpop.
9765 * NEWS: Document the above.
9766
9767 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9768
9769 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
9770 type; it isn't always big enough, since it doesn't necessarily
9771 include non-terminals.
9772 (yytranslate): Expand definition of yy_token_number_type, so that
9773 the latter can be removed.
9774 (yy_token_number_type): Remove, only one use.
9775 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
9776 don't use TokenNumberType as element type.
9777
9778 * tests/regression.at: Modify expected output to agree with change
9779 to yyr1 and yytranslate.
9780
9781 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
9782
9783 * src/reader.c (parse_action): Use copy_character instead of
9784 obstack_1grow.
9785
9786 2002-05-13 Akim Demaille <akim@epita.fr>
9787
9788 * tests/regression.at (Token definitions): Prototype yylex and
9789 yyerror.
9790
9791 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9792
9793 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
9794 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
9795 32-bit arithmetic.
9796 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
9797
9798 2002-05-07 Akim Demaille <akim@epita.fr>
9799
9800 * tests/synclines.at: Be sure to prototype yylex and yyerror to
9801 avoid GCC warnings.
9802
9803 2002-05-07 Akim Demaille <akim@epita.fr>
9804
9805 Kill GCC warnings.
9806
9807 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
9808 over the RHS of each rule.
9809 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
9810 * src/state.h (state_t): Member `nitems' is unsigned short.
9811 * src/LR0.c (get_state): Adjust.
9812 * src/reader.c (packgram): Likewise.
9813 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
9814 `Type'.
9815 (muscle_insert_int_table): Remove, unused.
9816 (prepare_rules): Remove `max'.
9817
9818 2002-05-06 Akim Demaille <akim@epita.fr>
9819
9820 * src/closure.c (print_firsts): Display of the symbol tags.
9821 (bitmatrix_print): Move to...
9822 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
9823 here.
9824 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
9825
9826 2002-05-06 Akim Demaille <akim@epita.fr>
9827
9828 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
9829 hash_do_for_each.
9830
9831 2002-05-06 Akim Demaille <akim@epita.fr>
9832
9833 * src/LR0.c (new_state, get_state): Instead of using the global
9834 `kernel_size' and `kernel_base', have two new arguments:
9835 `core_size' and `core'.
9836 Adjust callers.
9837
9838 2002-05-06 Akim Demaille <akim@epita.fr>
9839
9840 * src/reader.c (packgram): No longer end `ritem' with a 0
9841 sentinel: it is not used.
9842
9843 2002-05-05 Akim Demaille <akim@epita.fr>
9844
9845 New experimental feature: display the lookaheads in the report and
9846 graph.
9847
9848 * src/print (print_core): When --trace-flag, display the rules
9849 lookaheads.
9850 * src/print_graph.c (print_core): Likewise.
9851 Swap the arguments.
9852 Adjust caller.
9853
9854 2002-05-05 Akim Demaille <akim@epita.fr>
9855
9856 * tests/torture.at (Many lookaheads): New test.
9857
9858 2002-05-05 Akim Demaille <akim@epita.fr>
9859
9860 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
9861 (GENERATE_MUSCLE_INSERT_TABLE): this.
9862 (output_int_table, output_unsigned_int_table, output_short_table)
9863 (output_token_number_table, output_item_number_table): Replace with...
9864 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
9865 (muscle_insert_short_table, muscle_insert_token_number_table)
9866 (muscle_insert_item_number_table): these.
9867 Adjust all callers.
9868 (prepare_tokens): Don't free `translations', since...
9869 * src/reader.h, src/reader.c (grammar_free): do it.
9870 Move to...
9871 * src/gram.h, src/gram.c (grammar_free): here.
9872 * data/bison.simple, data/bison.c++: b4_token_number_max is now
9873 b4_translate_max.
9874
9875 2002-05-05 Akim Demaille <akim@epita.fr>
9876
9877 * src/output.c (output_unsigned_int_table): New.
9878 (prepare_rules): `i' is unsigned.
9879 `prhs', `rline', `r2' are unsigned int.
9880 Rename muscle `rhs_number_max' as `rhs_max'.
9881 Output muscles `prhs_max', `rline_max', and `r2_max'.
9882 Free rline and r1.
9883 * data/bison.simple, data/bison.c++: Adjust to use these muscles
9884 to compute types instead of constant types.
9885 * tests/regression.at (Web2c Actions): Adjust.
9886
9887 2002-05-04 Akim Demaille <akim@epita.fr>
9888
9889 * src/symtab.h (SALIAS, SUNDEF): Rename as...
9890 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
9891 Adjust dependencies.
9892 * src/output.c (token_definitions_output): Be sure not to output a
9893 `#define 'a'' when fed with `%token 'a' "a"'.
9894 * tests/regression.at (Token definitions): New.
9895
9896 2002-05-03 Paul Eggert <eggert@twinsun.com>
9897
9898 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
9899 for K&R C.
9900
9901 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
9902
9903 * Makefile.am (SUBDIRS): Remove intl.
9904 (EXTRA_DIST): Add config/config.rpath.
9905
9906 2002-05-03 Akim Demaille <akim@epita.fr>
9907
9908 * data/bison.simple (m4_if): Don't output empty enums.
9909 And actually, output valid enum definitions :(.
9910
9911 2002-05-03 Akim Demaille <akim@epita.fr>
9912
9913 * configure.bat: Remove, completely obsolete.
9914 * Makefile.am (EXTRA_DIST): Adjust.
9915 Don't distribute config.rpath...
9916 * config/Makefile.am (EXTRA_DIST): Do it.
9917
9918 2002-05-03 Akim Demaille <akim@epita.fr>
9919
9920 * configure.in (GETTEXT_VERSION): New.
9921 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
9922
9923 2002-05-03 Akim Demaille <akim@epita.fr>
9924
9925 * data/bison.simple (b4_token_enum): New.
9926 (b4_token_defines): Use it to output tokens both as #define and
9927 enums.
9928 Suggested by Paul Eggert.
9929 * src/output.c (token_definitions_output): Don't output spurious
9930 white spaces.
9931
9932 2002-05-03 Akim Demaille <akim@epita.fr>
9933
9934 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
9935
9936 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
9937
9938 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
9939 Update the stack class, give a try to deque as the default container.
9940
9941 2002-05-02 Akim Demaille <akim@epita.fr>
9942
9943 * data/bison.simple (yyparse): Do not implement @$ = @1.
9944 (YYLLOC_DEFAULT): Adjust to do it.
9945 * doc/bison.texinfo (Location Default Action): Fix.
9946
9947 2002-05-02 Akim Demaille <akim@epita.fr>
9948
9949 * src/reader.c (parse_braces): Merge into...
9950 (parse_action): this.
9951
9952 2002-05-02 Akim Demaille <akim@epita.fr>
9953
9954 * configure.in (ALL_LINGUAS): Remove.
9955 * po/LINGUAS, hr.po: New.
9956
9957 2002-05-02 Akim Demaille <akim@epita.fr>
9958
9959 Remove the so called hairy (semantic) parsers.
9960
9961 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
9962 * src/gram.h, src/gram.c (semantic_parser): Remove.
9963 (rule_t): Remove the guard and guard_line members.
9964 * src/lex.h (token_t): remove tok_guard.
9965 * src/options.c (option_table): Remove %guard and %semantic_parser
9966 support.
9967 * src/output.c, src/output.h (guards_output): Remove.
9968 (prepare): Adjust.
9969 (token_definitions_output): Don't output the `T'
9970 tokens (???).
9971 (output_skeleton): Don't output the guards.
9972 * src/files.c, src/files.c (attrsfile): Remove.
9973 * src/reader.c (symbol_list): Remove the guard and guard_line
9974 members.
9975 Adjust dependencies.
9976 (parse_guard): Remove.
9977 * data/bison.hairy: Remove.
9978 * doc/bison.texinfo (Environment Variables): Remove occurrences of
9979 BISON_HAIRY.
9980
9981 2002-05-02 Akim Demaille <akim@epita.fr>
9982
9983 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
9984 (parse_guard): Rename the formal argument `stack_offset' as
9985 `rule_length', which is more readable.
9986 Adjust callers.
9987 (copy_at, copy_dollar): Instead of outputting the hard coded
9988 values of $$, $n and so forth, output invocation to b4_lhs_value,
9989 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
9990 Note: this patch partially drops `semantic-parser' support: it
9991 always does `rule_length - n', where semantic parsers ought to
9992 always use `-n'.
9993 * data/bison.simple, data/bison.c++ (b4_lhs_value)
9994 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
9995
9996 2002-05-02 Akim Demaille <akim@epita.fr>
9997
9998 * configure.in (AC_INIT): Bump to 1.49b.
9999 (AM_INIT_AUTOMAKE): Short invocation.
10000
10001 2002-05-02 Akim Demaille <akim@epita.fr>
10002
10003 Version 1.49a.
10004
10005 2002-05-01 Akim Demaille <akim@epita.fr>
10006
10007 * src/skeleton.h: Remove.
10008
10009 2002-05-01 Akim Demaille <akim@epita.fr>
10010
10011 * src/skeleton.h: Fix the #endif.
10012 Reported by Magnus Fromreide.
10013
10014 2002-04-26 Paul Eggert <eggert@twinsun.com>
10015
10016 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
10017 Define if we define YYSTYPE and YYLTYPE, respectively.
10018 (YYCOPY): Fix [] quoting problem in the non-GCC case.
10019
10020 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
10021
10022 * src/scan-skel.l: Postprocess quadrigraphs.
10023
10024 * src/reader.c (copy_character): New function, used to output
10025 single characters while replacing `[' and `]' with quadrigraphs, to
10026 avoid troubles with M4 quotes.
10027 (copy_comment): Output characters with copy_character.
10028 (read_additionnal_code): Likewise.
10029 (copy_string2): Likewise.
10030 (copy_definition): Likewise.
10031
10032 * tests/calc.at: Exercise M4 quoting.
10033
10034 2002-04-25 Akim Demaille <akim@epita.fr>
10035
10036 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
10037 between `!' and the command.
10038 Reported by Paul Eggert.
10039
10040 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
10041
10042 * tests/calc.at: Exercise prologue splitting.
10043
10044 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
10045 `b4_post_prologue' instead of `b4_prologue'.
10046
10047 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
10048 muscles.
10049 (output): Free pre_prologue_obstack and post_prologue_obstack.
10050 * src/files.h, src/files.c (attrs_obstack): Remove.
10051 (pre_prologue_obstack, post_prologue_obstack): New.
10052 * src/reader.c (copy_definition): Add a parameter to specify the
10053 obstack to fill, instead of using attrs_obstack unconditionally.
10054 (read_declarations): Pass pre_prologue_obstack to copy_definition if
10055 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
10056
10057 2002-04-23 Paul Eggert <eggert@twinsun.com>
10058
10059 * data/bison.simple: Remove unnecessary commentary and white
10060 space differences from 1_29-branch.
10061 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
10062
10063 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
10064 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
10065 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
10066 constructors or destructors.
10067
10068 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
10069
10070 2002-04-23 Akim Demaille <akim@epita.fr>
10071
10072 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
10073 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
10074 location with columns.
10075 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
10076 All reported by Paul Eggert.
10077
10078 2002-04-22 Akim Demaille <akim@epita.fr>
10079
10080 * src/reduce.c (dump_grammar): Move to...
10081 * src/gram.h, src/gram.c (grammar_dump): here.
10082 Be sure to separate long item numbers.
10083 Don't read the members of a rule's prec if its nil.
10084
10085 2002-04-22 Akim Demaille <akim@epita.fr>
10086
10087 * src/output.c (table_size, table_grow): New.
10088 (MAXTABLE): Remove, replace uses with table_size.
10089 (pack_vector): Instead of dying when the table is too big, grow it.
10090
10091 2002-04-22 Akim Demaille <akim@epita.fr>
10092
10093 * data/bison.simple (yyr1): Its type is that of a token number.
10094 * data/bison.c++ (r1_): Likewise.
10095 * tests/regression.at (Web2c Actions): Adjust.
10096
10097 2002-04-22 Akim Demaille <akim@epita.fr>
10098
10099 * src/reader.c (token_translations_init): 256 is now the default
10100 value for the error token, i.e., it will be assigned another
10101 number if the user assigned 256 to one of her tokens.
10102 (reader): Don't force 256 to error.
10103 * doc/bison.texinfo (Symbols): Adjust.
10104 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
10105 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
10106 etc. instead of 10, 20, 30 (which was used to `jump' over error
10107 (256) and undefined (2)).
10108
10109 2002-04-22 Akim Demaille <akim@epita.fr>
10110
10111 Propagate more token_number_t.
10112
10113 * src/gram.h (token_number_as_item_number)
10114 (item_number_as_token_number): New.
10115 * src/output.c (GENERATE_OUTPUT_TABLE): New.
10116 Use it to create output_item_number_table and
10117 output_token_number_table.
10118 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10119 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
10120 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
10121 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
10122
10123 2002-04-22 Akim Demaille <akim@epita.fr>
10124
10125 * src/output.h, src/output.c (get_lines_number): Remove.
10126
10127 2002-04-19 Akim Demaille <akim@epita.fr>
10128
10129 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
10130 as Lex/Flex'.
10131 (Debugging): More details about enabling the debugging features.
10132 (Table of Symbols): Describe $$, $n, @$, and @n.
10133 Suggested by Tim Josling.
10134
10135 2002-04-19 Akim Demaille <akim@epita.fr>
10136
10137 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
10138
10139 2002-04-10 Akim Demaille <akim@epita.fr>
10140
10141 * src/system.h: Rely on HAVE_LIMITS_H.
10142 Suggested by Paul Eggert.
10143
10144 2002-04-09 Akim Demaille <akim@epita.fr>
10145
10146 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
10147 full stderr, and strip it according to the bison options, instead
10148 of composing the error message from different bits.
10149 This makes it easier to check for several error messages.
10150 Adjust all the invocations.
10151 Add an invocation exercising the error token.
10152 Add an invocation demonstrating a stupid error message.
10153 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
10154 Adjust the tests.
10155 Error message are for stderr, not stdout.
10156
10157 2002-04-09 Akim Demaille <akim@epita.fr>
10158
10159 * src/gram.h, src/gram.c (error_token_number): Remove, use
10160 errtoken->number.
10161 * src/reader.c (reader): Don't specify the user token number (2)
10162 for $undefined, as it uselessly prevents using it.
10163 * src/gram.h (token_number_t): Move to...
10164 * src/symtab.h: here.
10165 (state_t.number): Is a token_number_t.
10166 * src/print.c, src/reader.c: Use undeftoken->number instead of
10167 hard coded 2.
10168 (Even though this 2 is not the same as above: the number of the
10169 undeftoken remains being 2, it is its user token number which
10170 might not be 2).
10171 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
10172 `user_token_number_max'.
10173 Output `undef_token_number'.
10174 * data/bison.simple, data/bison.c++: Use them.
10175 Be sure to map invalid yylex return values to
10176 `undef_token_number'. This saves us from gratuitous SEGV.
10177
10178 * tests/conflicts.at (Solved SR Conflicts)
10179 (Unresolved SR Conflicts): Adjust.
10180 * tests/regression.at (Web2c Actions): Adjust.
10181
10182 2002-04-08 Akim Demaille <akim@epita.fr>
10183
10184 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
10185 Adding #line.
10186 Remove the duplicate `typedefs'.
10187 (RhsNumberType): Fix the declaration and various other typos.
10188 Use __ofile__.
10189 * data/bison.simple: Use __ofile__.
10190 * src/scan-skel.l: Handle __ofile__.
10191
10192 2002-04-08 Akim Demaille <akim@epita.fr>
10193
10194 * src/gram.h (item_number_t): New, the type of item numbers in
10195 RITEM. Note that it must be able to code symbol numbers as
10196 positive number, and the negation of rule numbers as negative
10197 numbers.
10198 Adjust all dependencies (pretty many).
10199 * src/reduce.c (rule): Remove this `short *' pointer: use
10200 item_number_t.
10201 * src/system.h (MINSHORT, MAXSHORT): Remove.
10202 Include `limits.h'.
10203 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
10204 (shortcpy): Remove.
10205 (MAXTABLE): Move to...
10206 * src/output.c (MAXTABLE): here.
10207 (prepare_rules): Use output_int_table to output rhs.
10208 * data/bison.simple, data/bison.c++: Adjust.
10209 * tests/torture.at (Big triangle): Move the limit from 254 to
10210 500.
10211 * tests/regression.at (Web2c Actions): Ajust.
10212
10213 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
10214 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
10215 passes, but produces negative #line number, once fixed, GCC is
10216 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
10217 C), it passes.
10218 * src/state.h (state_h): Code input lines on ints, not shorts.
10219
10220 2002-04-08 Akim Demaille <akim@epita.fr>
10221
10222 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
10223 and then the grammar.
10224
10225 2002-04-08 Akim Demaille <akim@epita.fr>
10226
10227 * src/system.h: No longer using strndup.
10228
10229 2002-04-07 Akim Demaille <akim@epita.fr>
10230
10231 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
10232 * src/output.c (output_table_data): Return the longest number.
10233 (prepare_tokens): Output `token_number_max').
10234 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
10235 New.
10236 Use them to define yy_token_number_type/TokenNumberType.
10237 Use this type for yytranslate.
10238 * tests/torture.at (Big triangle): Push the limit from 124 to
10239 253.
10240 * tests/regression.at (Web2c Actions): Adjust.
10241
10242 2002-04-07 Akim Demaille <akim@epita.fr>
10243
10244 * tests/torture.at (Big triangle): New.
10245 (GNU AWK Grammar, GNU Cim Grammar): Move to...
10246 * tests/existing.at: here.
10247
10248 2002-04-07 Akim Demaille <akim@epita.fr>
10249
10250 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
10251 nritems.
10252 Adjust dependencies.
10253
10254 2002-04-07 Akim Demaille <akim@epita.fr>
10255
10256 * src/reader.c: Normalize increments to prefix form.
10257
10258 2002-04-07 Akim Demaille <akim@epita.fr>
10259
10260 * src/reader.c, symtab.c: Remove debugging code.
10261
10262 2002-04-07 Akim Demaille <akim@epita.fr>
10263
10264 Rename all the `bucket's as `symbol_t'.
10265
10266 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
10267 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
10268 * src/symtab.c, src/symtab.h (bucket): Rename as...
10269 (symbol_t): this.
10270 (symbol_list_new, bucket_check_defined, bucket_make_alias)
10271 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
10272 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
10273 (buckets_new, buckets_free, buckets_do): Rename as...
10274 (symbol_list_new, symbol_check_defined, symbol_make_alias)
10275 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
10276 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
10277 (symbols_new, symbols_free, symbols_do): these.
10278
10279 2002-04-07 Akim Demaille <akim@epita.fr>
10280
10281 Use lib/hash for the symbol table.
10282
10283 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
10284 EOF.
10285 * src/lex.c (lex): Set the `number' member of new terminals.
10286 * src/reader.c (bucket_check_defined, bucket_make_alias)
10287 (bucket_check_alias_consistence, bucket_translation): New.
10288 (reader, grammar_free, readgram, token_translations_init)
10289 (packsymbols): Adjust.
10290 (reader): Number the predefined tokens.
10291 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
10292 for predefined tokens.
10293 * src/symtab.h (bucket): Remove all the hash table related
10294 members.
10295 * src/symtab.c (symtab): Replace by...
10296 (bucket_table): this.
10297 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
10298 (buckets_new, buckets_do): New.
10299
10300 2002-04-07 Akim Demaille <akim@epita.fr>
10301
10302 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
10303 (start_symbol, max_user_token_number, semantic_parser)
10304 (error_token_number): Initialize.
10305 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
10306 Initialize.
10307 (reader): Don't.
10308 (errtoken, eoftoken, undeftoken, axiom): Extern.
10309
10310 2002-04-07 Akim Demaille <akim@epita.fr>
10311
10312 * src/gram.h (rule_s): prec and precsym are now pointers
10313 to the bucket giving the priority/associativity.
10314 Member `associativity' removed: useless.
10315 * src/reduce.c, src/conflicts.c: Adjust.
10316
10317 2002-04-07 Akim Demaille <akim@epita.fr>
10318
10319 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
10320 Properly escape the symbols' TAG when outputting them.
10321
10322 2002-04-07 Akim Demaille <akim@epita.fr>
10323
10324 * src/lalr.h (LA): Is a bitsetv, not bitset*.
10325
10326 2002-04-07 Akim Demaille <akim@epita.fr>
10327
10328 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
10329 (LArule): this, which is an array to rule_t*.
10330 * src/print.c, src/conflicts.c: Adjust.
10331
10332 2002-04-07 Akim Demaille <akim@epita.fr>
10333
10334 * src/gram.h (rule_t): Rename `number' as `user_number'.
10335 `number' is a new member.
10336 Adjust dependencies.
10337 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
10338
10339 2002-04-07 Akim Demaille <akim@epita.fr>
10340
10341 As a result of the previous patch, it is no longer needed
10342 to reorder ritem itself.
10343
10344 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
10345
10346 2002-04-07 Akim Demaille <akim@epita.fr>
10347
10348 Be sure never to walk through RITEMS, but use only data related to
10349 the rules themselves. RITEMS should be banished.
10350
10351 * src/output.c (output_token_translations): Rename as...
10352 (prepare_tokens): this.
10353 In addition to `translate', prepare the muscles `tname' and
10354 `toknum', which were handled by...
10355 (output_rule_data): this.
10356 Remove, and move the remainder of its outputs into...
10357 (prepare_rules): this new routines, which also merges content from
10358 (output_gram): this.
10359 (prepare_rules): Be sure never to walk through RITEMS.
10360 (output_stos): Rename as...
10361 (prepare_stos): this.
10362 (output): Always invoke prepare_states, after all, just don't use it
10363 in the output if you don't need it.
10364
10365 2002-04-07 Akim Demaille <akim@epita.fr>
10366
10367 * src/LR0.c (new_state): Display `nstates' as the name of the
10368 newly created state.
10369 Adjust to initialize first_state and last_state if needed.
10370 Be sure to distinguish the initial from the final state.
10371 (new_states): Create the itemset of the initial state, and use
10372 new_state.
10373 * src/closure.c (closure): Now that the initial state has its
10374 items properly set, there is no need for a special case when
10375 creating `ruleset'.
10376
10377 As a result, now the rule 0, reducing to $axiom, is visible in the
10378 outputs. Adjust the test suite.
10379
10380 * tests/conflicts.at (Solved SR Conflicts)
10381 (Unresolved SR Conflicts): Adjust.
10382 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
10383 * tests/conflicts.at (S/R in initial): New.
10384
10385 2002-04-07 Akim Demaille <akim@epita.fr>
10386
10387 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
10388 the RHS of the rules.
10389 * src/output.c (output_gram): Likewise.
10390
10391 2002-04-07 Akim Demaille <akim@epita.fr>
10392
10393 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
10394 bucket.
10395 Adjust all dependencies.
10396 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
10397 `number' of the buckets too.
10398 * src/gram.h: Include `symtab.h'.
10399 (associativity): Move to...
10400 * src/symtab.h: here.
10401 No longer include `gram.h'.
10402
10403 2002-04-07 Akim Demaille <akim@epita.fr>
10404
10405 * src/gram.h, src/gram.c (rules_rhs_length): New.
10406 (ritem_longest_rhs): Use it.
10407 * src/gram.h (rule_t): `number' is a new member.
10408 * src/reader.c (packgram): Set it.
10409 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
10410 the end of `rules', and count them out of `nrules'.
10411 (reduce_output, dump_grammar): Adjust.
10412 * src/print.c (print_grammar): It is no longer needed to check for
10413 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
10414 * tests/reduce.at (Reduced Automaton): New test.
10415
10416 2002-04-07 Akim Demaille <akim@epita.fr>
10417
10418 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
10419 lacking `+ 1' to nrules, Bison reported as useless a token if it
10420 was used solely to set the precedence of the last rule...
10421
10422 2002-04-07 Akim Demaille <akim@epita.fr>
10423
10424 * data/bison.c++, data/bison.simple: Don't output the current file
10425 name in #line, to avoid useless diffs between two identical
10426 outputs under different names.
10427
10428 2002-04-07 Akim Demaille <akim@epita.fr>
10429
10430 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
10431 Normalize loops to using `< nrules + 1', not `<= nrules'.
10432
10433 2002-04-07 Akim Demaille <akim@epita.fr>
10434
10435 * TODO: Update.
10436
10437 2002-04-07 Akim Demaille <akim@epita.fr>
10438
10439 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
10440 bucket.value as bucket.number.
10441
10442 2002-04-07 Akim Demaille <akim@epita.fr>
10443
10444 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
10445 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
10446 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
10447 RHS, instead of being an index in RITEMS.
10448
10449 2002-04-04 Paul Eggert <eggert@twinsun.com>
10450
10451 * doc/bison.texinfo: Update copyright date.
10452 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
10453 (Symbols): Warn about running Bison in one character set,
10454 but compiling and/or running in an incompatible one.
10455 Warn about character code 256, too.
10456
10457 2002-04-03 Paul Eggert <eggert@twinsun.com>
10458
10459 * src/bison.data (YYSTACK_ALLOC): Depend on whether
10460 YYERROR_VERBOSE is nonzero, not whether it is defined.
10461
10462 Merge changes from bison-1_29-branch.
10463
10464 2002-03-20 Paul Eggert <eggert@twinsun.com>
10465
10466 Merge fixes from Debian bison_1.34-1.diff.
10467
10468 * configure.in (AC_PREREQ): 2.53.
10469
10470 2002-03-20 Akim Demaille <akim@epita.fr>
10471
10472 * src/conflicts.c (log_resolution): Argument `resolution' is const.
10473
10474 2002-03-19 Paul Eggert <eggert@twinsun.com>
10475
10476 * src/bison.simple (YYCOPY): New macro.
10477 (YYSTACK_RELOCATE): Use it.
10478 Remove Type arg; no longer needed. All callers changed.
10479 (yymemcpy): Remove; no longer needed.
10480
10481 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
10482 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
10483
10484 2002-03-19 Akim Demaille <akim@epita.fr>
10485
10486 Test and fix the #line outputs.
10487
10488 * tests/atlocal.at (GCC): New.
10489 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
10490 (Prologue synch line, %union synch line, Postprologue synch line)
10491 (Action synch line, Epilogue synch line): New tests.
10492 * src/reader.c (parse_union_decl): Define the muscle stype_line.
10493 * data/bison.simple, data/bison.c++: Use it.
10494
10495 2002-03-19 Akim Demaille <akim@epita.fr>
10496
10497 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
10498 (Solved SR Conflicts, %expect not enough, %expect right)
10499 (%expect too much): Move to...
10500 * tests/conflicts.at: this new file.
10501
10502 2002-03-19 Akim Demaille <akim@epita.fr>
10503
10504 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
10505 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
10506 that we can move to enums for instance.
10507 * src/output.c (token_definitions_output): Output a list of
10508 `token-name, token-number' instead of the #define.
10509 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
10510
10511 2002-03-14 Akim Demaille <akim@epita.fr>
10512
10513 Use Gettext 0.11.1.
10514
10515 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
10516
10517 * data/bison.c++: Make the user able to add members to the generated
10518 parser by subclassing.
10519
10520 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
10521
10522 * src/reader.c (read_additionnal_code): `c' should be an integer, not
10523 a character.
10524 Reported by Nicolas Tisserand and Nicolas Burrus.
10525
10526 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
10527
10528 * src/reader.c: Warn about lacking semi-colons, do not complain.
10529
10530 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
10531
10532 * data/bison.c++: Remove a debug line.
10533
10534 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
10535
10536 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
10537 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
10538 provide a default implementation.
10539
10540 2002-03-04 Akim Demaille <akim@epita.fr>
10541
10542 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
10543 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
10544 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
10545 * tests/semantic.at (Parsing Guards): Similarly.
10546 * src/reader.at (readgram): Complain if the last rule is not ended
10547 with a semi-colon.
10548
10549 2002-03-04 Akim Demaille <akim@epita.fr>
10550
10551 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
10552 * src/closure.c: here.
10553 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
10554 RTC.
10555 * src/warshall.h, src/warshall.c: Remove.
10556 * tests/sets.at (Broken Closure): Adjust.
10557
10558 2002-03-04 Akim Demaille <akim@epita.fr>
10559
10560 * src/output.c (output_skeleton): tempdir is const.
10561 bytes_read is unused.
10562
10563 2002-03-04 Akim Demaille <akim@epita.fr>
10564
10565 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
10566 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
10567 Update.
10568 From Michael Hayes.
10569
10570 2002-03-04 Akim Demaille <akim@epita.fr>
10571
10572 * src/closure.c (closure): `r' is unused.
10573
10574 2002-03-04 Akim Demaille <akim@epita.fr>
10575
10576 * tests/sets.at (Broken Closure): Add the ending `;'.
10577 * src/reader.at (readgram): Complain if a rule is not ended with a
10578 semi-colon.
10579
10580 2002-03-04 Akim Demaille <akim@epita.fr>
10581
10582 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
10583 (count_sr_conflicts): Use bitset_count.
10584 * src/reduce.c (inaccessable_symbols): Ditto.
10585 (bits_size): Remove.
10586 * src/warshall.h, src/warshall.c: Convert to bitsetv.
10587
10588 2002-03-04 Akim Demaille <akim@epita.fr>
10589
10590 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
10591 * src/reduce.c: Remove the `bitset_zero's following the
10592 `bitset_create's, as now it is performed by the latter.
10593
10594 2002-03-04 Akim Demaille <akim@epita.fr>
10595
10596 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
10597 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
10598 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
10599 latest sources from Michael.
10600
10601 2002-03-04 Akim Demaille <akim@epita.fr>
10602
10603 * src/output.c (output): Don't free the grammar.
10604 * src/reader.c (grammar_free): New.
10605 * src/main.c (main): Call it and don't free symtab here.
10606
10607 2002-03-04 Akim Demaille <akim@epita.fr>
10608
10609 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
10610 before returning.
10611 Reported by Benoit Perrot.
10612
10613 2002-03-04 Akim Demaille <akim@epita.fr>
10614
10615 Use bitset operations when possible, not loops over bits.
10616
10617 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
10618 bitset_or.
10619 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
10620 * src/reduce.c (useless_nonterminals): Formatting changes.
10621 * src/warshall.c (TC): Use bitset_or.
10622
10623 2002-03-04 Akim Demaille <akim@epita.fr>
10624
10625 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
10626 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
10627 Ditto.
10628
10629 2002-03-04 Akim Demaille <akim@epita.fr>
10630
10631 * src/lalr.c (F): Now a bitset*.
10632 Adjust all dependencies.
10633
10634 2002-03-04 Akim Demaille <akim@epita.fr>
10635
10636 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
10637 Adjust all dependencies.
10638
10639 2002-03-04 Akim Demaille <akim@epita.fr>
10640
10641 * src/L0.c, src/LR0.h (nstates): Be size_t.
10642 Adjust comparisons (signed vs unsigned).
10643 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
10644 bitset*.
10645 Adjust all dependencies.
10646
10647 2002-03-04 Akim Demaille <akim@epita.fr>
10648
10649 * src/closure.c (firsts): Now, also a bitset.
10650 Adjust all dependencies.
10651 (varsetsize): Remove, now unused.
10652 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
10653
10654 2002-03-04 Akim Demaille <akim@epita.fr>
10655
10656 * src/print.c: Convert to use bitset.h, not hand coded iterations
10657 over ints.
10658
10659 2002-03-04 Akim Demaille <akim@epita.fr>
10660
10661 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
10662
10663 2002-03-04 Akim Demaille <akim@epita.fr>
10664
10665 * src/closure.c (ruleset): Be a bitset.
10666 (rulesetsize): Remove.
10667
10668 2002-03-04 Akim Demaille <akim@epita.fr>
10669
10670 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
10671 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
10672 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
10673 * src/closure.c (fderives): Be an array of bitsets.
10674
10675 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
10676
10677 * data/bison.c++: Merge the two generated headers. Insert a copyright
10678 notice in each output file.
10679
10680 2002-02-28 Akim Demaille <akim@epita.fr>
10681
10682 * data/bison.c++: Copy the prologue of bison.simple to fetch
10683 useful M4 definitions, such as b4_header_guard.
10684
10685 2002-02-25 Akim Demaille <akim@epita.fr>
10686
10687 * src/getargs.c (version): Give the name of the authors, and use a
10688 translator friendly scheme for the bgr
10689 copyright notice.
10690
10691 2002-02-25 Akim Demaille <akim@epita.fr>
10692
10693 * src/output.c (header_output): Remove, now handled completely via
10694 M4.
10695
10696 2002-02-25 Akim Demaille <akim@epita.fr>
10697
10698 * m4/m4.m4: New, from CVS Autoconf.
10699 * configure.in: Invoke it.
10700 * src/output.c (output_skeleton): Use its result instead of the
10701 hard coded name.
10702
10703 2002-02-25 Akim Demaille <akim@epita.fr>
10704
10705 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
10706 Fileutils 4.1.5.
10707 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
10708 * src/output.c (output_skeleton): Use mkstemp to create a real
10709 temporary file.
10710 Move the filling of `skeleton' and its muscle to...
10711 (prepare): here.
10712 (output): Move the definition of the prologue muscle to...
10713 (prepare): here.
10714 * src/system.h (DEFAULT_TMPDIR): New.
10715
10716 2002-02-14 Paul Eggert <eggert@twinsun.com>
10717
10718 Remove the support for C++ namespace cleanliness; it was
10719 causing more problems than it was curing, since it didn't work
10720 properly on some nonstandard C++ compilers. This can wait
10721 for a proper C++ parser.
10722
10723 * NEWS: Document this.
10724 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
10725 of C++, as it's treated like C now.
10726 * src/bison.simple (YYSTD): Remove.
10727 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
10728 Treat C++ just like Standard C instead of trying to support
10729 namespace cleanliness.
10730
10731 2002-02-14 Akim Demaille <akim@epita.fr>
10732
10733 * tests/regression.at (else): Adjust to Andreas' change.
10734
10735 2002-02-14 Akim Demaille <akim@epita.fr>
10736
10737 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
10738
10739 2002-02-13 Andreas Schwab <schwab@suse.de>
10740
10741 * src/output.c (output_rule_data): Don't output NULL, it might
10742 not be defined yet.
10743
10744 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
10745
10746 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
10747 (Copyright notice): Update.
10748
10749 2002-02-11 Akim Demaille <akim@epita.fr>
10750
10751 * tests/regression.at (%nonassoc and eof): Don't include
10752 nonportable headers.
10753
10754 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
10755
10756 * data/bison.c++: Correct error recovery. Make the user able to
10757 initialize the starting location.
10758
10759 2002-02-07 Akim Demaille <akim@epita.fr>
10760
10761 * tests/input.at: New.
10762
10763 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
10764
10765 * data/bison.c++: Replace some direct m4 expansions by constants. Be
10766 more consistent when naming methods and variables. Put preprocessor
10767 directives around tables only needed for debugging.
10768
10769 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
10770
10771 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
10772 C++ parsers.
10773 (yy::b4_name::parse): Use print_.
10774
10775 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
10776
10777 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
10778
10779 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
10780
10781 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
10782 C++ parsers.
10783 (yy::b4_name::parse): Build verbose error messages, and use error_.
10784
10785 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
10786
10787 * data/bison.c++: Fix m4 quoting in comments.
10788
10789 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
10790
10791 * data/bison.c++: Adjust the parser code. Fix some muscles that were
10792 not expanded by m4.
10793
10794 2002-02-05 Akim Demaille <akim@epita.fr>
10795
10796 * data/bison.c++: Adjust to the M4 back end.
10797 More is certainly needed.
10798
10799 2002-02-05 Akim Demaille <akim@epita.fr>
10800
10801 Give a try to M4 as a back end.
10802
10803 * lib/readpipe.c: New, from wdiff.
10804 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
10805 BISON_HAIRY.
10806 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
10807 specific values. Now it is m4 that performs the lookup.
10808 * src/parse-skel.y: Remove.
10809 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
10810 * src/output.c (actions_output, guards_output)
10811 (token_definitions_output): No longer keeps track of the output
10812 line number, hence remove the second argument.
10813 (guards_output): Check against the guard member of a rule, not the
10814 action member.
10815 Adjust callers.
10816 (output_skeleton): Don't look for the skeleton location, let m4 do
10817 that.
10818 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
10819 file will be used.
10820 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
10821 (prepare): Given that for the time being changesyntax is not
10822 usable in M4, rename the muscles using `-' to `_'.
10823 Define `defines_flag', `output_parser_name' and `output_header_name'.
10824 * src/output.h (actions_output, guards_output)
10825 (token_definitions_output): Adjust prototypes.
10826 * src/scan-skel.l: Instead of scanning the skeletons, it now
10827 processes the output of m4: `__oline__' and `#output'.
10828 * data/bison.simple: Adjust to be used by M4(sugar).
10829 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
10830 to date.
10831 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
10832 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
10833 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
10834 shamelessly stolen from CVS Autoconf.
10835
10836 2002-02-05 Akim Demaille <akim@epita.fr>
10837
10838 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
10839 * configure.in: Check for the declarations of free and malloc.
10840 * src/muscle_tab.c: Adjust.
10841
10842 2002-02-05 Akim Demaille <akim@epita.fr>
10843
10844 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
10845 which have no values.
10846
10847 2002-02-05 Akim Demaille <akim@epita.fr>
10848
10849 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
10850 * data/: here.
10851
10852 2002-01-29 Paul Eggert <eggert@twinsun.com>
10853
10854 * src/bison.simple (YYSIZE_T): Do not define merely because
10855 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
10856 On some platforms, <alloca.h> does not declare YYSTD (size_t).
10857
10858 2002-01-27 Akim Demaille <akim@epita.fr>
10859
10860 Fix `%nonassoc and eof'.
10861
10862 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
10863 which were not properly copied! Replace
10864 memcpy (res->errs, src->errs, src->nerrs);
10865 with
10866 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
10867 !!!
10868 * tests/regression.at (%nonassoc and eof): Adjust to newest
10869 Autotest: `.' is not in the PATH.
10870
10871 2002-01-27 Akim Demaille <akim@epita.fr>
10872
10873 * tests/sets.at (AT_EXTRACT_SETS): New.
10874 (Nullable): Use it.
10875 (Firsts): New.
10876
10877 2002-01-26 Akim Demaille <akim@epita.fr>
10878
10879 * tests/actions.at, tests/calc.at, tests/headers.at,
10880 * tests/torture.at: Adjust to the newest Autotest which no longer
10881 forces `.' in the PATH.
10882
10883 2002-01-25 Akim Demaille <akim@epita.fr>
10884
10885 * tests/regression.at (%nonassoc and eof): New.
10886 Suggested by Robert Anisko.
10887
10888 2002-01-24 Akim Demaille <akim@epita.fr>
10889
10890 Bison dumps core when trying to complain about broken input files.
10891 Reported by Cris van Pelt.
10892
10893 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
10894 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
10895 into...
10896 (Invalid inputs): Strengthen: exercise parse_percent_token.
10897
10898 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
10899
10900 * src/Makefile.am: Add bison.c++.
10901 * src/bison.c++: New skeleton.
10902
10903 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
10904
10905 * po/it.po: New.
10906
10907 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
10908
10909 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
10910
10911 2002-01-20 Marc Autret <marc@gnu.org>
10912
10913 * src/files.c (compute_output_file_names): Fix
10914
10915 2002-01-20 Marc Autret <marc@gnu.org>
10916
10917 * tests/output.at: New test.
10918 * src/files.c (compute_base_names): Don't map extensions when
10919 the YACC flag is set, use defaults.
10920 Reported by Evgeny Stambulchik.
10921
10922 2002-01-20 Marc Autret <marc@gnu.org>
10923
10924 * src/system.h: Need to define __attribute__ away for non-GCC
10925 compilers as well (i.e., the vendor C compiler).
10926 Suggested by Albert Chin-A-Young.
10927
10928 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
10929
10930 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
10931 canonical definition.
10932 * src/system.h: Use the canonical definition for PARAMS (avoids
10933 a conflict with the macro from lib/hash.h).
10934
10935 2002-01-11 Akim Demaille <akim@epita.fr>
10936
10937 * configure.in: Use AC_FUNC_STRNLEN.
10938 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
10939
10940 2002-01-09 Akim Demaille <akim@epita.fr>
10941
10942 * src/files.c, src/files.h (output_infix): New.
10943 (tab_extension): Remove.
10944 (compute_base_names): Compute the former, drop the latter.
10945 * src/output.c (prepare): Insert the muscles `output-infix', and
10946 `output-suffix'.
10947 * src/parse-skel.y (string, string.1): New.
10948 (section.header): Use it.
10949 (section.yacc): Remove.
10950 (prefix): Remove too.
10951 * src/scan-skel.l: Adjust.
10952 * src/bison.simple, src/bison.hairy: Adjust.
10953
10954 2002-01-09 Akim Demaille <akim@epita.fr>
10955
10956 * configure.in (WERROR_CFLAGS): Compute it.
10957 * src/Makefile.am (CFLAGS): Pass it.
10958 * tests/atlocal.in (CFLAGS): Idem.
10959 * src/files.c: Fix a few warnings.
10960 (get_extension_index): Remove, unused.
10961
10962 2002-01-08 Akim Demaille <akim@epita.fr>
10963
10964 * src/getargs.c (AS_FILE_NAME): New.
10965 (getargs): Use it to convert DOSish file names.
10966 * src/files.c (base_name): Rename as full_base_name to avoid
10967 clashes with `base_name ()'.
10968 (filename_split): New.
10969 (compute_base_names): N-th rewrite, using filename_split.
10970
10971 2002-01-08 Akim Demaille <akim@epita.fr>
10972
10973 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
10974 New, stolen from the Fileutils 4.1.
10975 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
10976 * configure.in: Check for the presence of memrchr, and of its
10977 prototype.
10978
10979 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
10980
10981 * lib/hash.h (__P): Added definition for this macro.
10982 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
10983 BUILT_SOURCES, to ensure they are generated first.
10984 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
10985 %error-verbose to allow bootstrapping with bison 1.30x.
10986
10987 2002-01-06 Akim Demaille <akim@epita.fr>
10988
10989 * src/reader.c (parse_braces): Don't fetch the next char, the
10990 convention is to fetch on entry.
10991 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
10992 'switch' without a following semicolon.
10993 * tests/regression.at (braces parsing): New.
10994
10995 2002-01-06 Akim Demaille <akim@epita.fr>
10996
10997 Bison is dead wrong in its RR conflict reports.
10998
10999 * tests/torture.at (GNU Cim Grammar): New.
11000 * src/conflicts.c (count_rr_conflicts): Fix.
11001
11002 2002-01-06 Akim Demaille <akim@epita.fr>
11003
11004 Creating package.m4 from configure.ac causes too many problems.
11005
11006 * tests/Makefile.am (package.m4): Create it by hand,
11007 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
11008
11009 2002-01-06 Akim Demaille <akim@epita.fr>
11010
11011 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
11012 skeleton.h.
11013
11014 2002-01-04 Paul Eggert <eggert@twinsun.com>
11015
11016 * doc/bison.texinfo (Debugging):
11017 Remove YYSTDERR; it's no longer defined or used.
11018 Also, s/cstdio.h/cstdio/.
11019
11020 2002-01-03 Akim Demaille <akim@epita.fr>
11021
11022 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
11023
11024 2002-01-03 Akim Demaille <akim@epita.fr>
11025
11026 * src/parse-skel.y (process_skeleton): Don't bind the parser's
11027 tracing code to --trace, wait for a better --trace option, with
11028 args.
11029
11030 2002-01-03 Akim Demaille <akim@epita.fr>
11031
11032 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
11033 The ISO C++ standard is extremely clear about it: stderr is
11034 considered a macro, not a regular symbol (see table 94 `Header
11035 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
11036 Therefore std:: does not apply to it. It still does with fprintf.
11037 Also, s/cstdio.h/cstdio/.
11038
11039 2002-01-03 Akim Demaille <akim@epita.fr>
11040
11041 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
11042 for non system headers.
11043
11044 2002-01-02 Akim Demaille <akim@epita.fr>
11045
11046 Equip the skeleton chain with location tracking, runtime trace,
11047 pure parser and scanner.
11048
11049 * src/parse-skel.y: Request a pure parser, locations, and prefix
11050 renaming.
11051 (%union): Having several members with the same type does not help
11052 type mismatches, simplify.
11053 (YYPRINT, yyprint): New.
11054 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
11055 (skel_error): this.
11056 Handle locations.
11057 * src/scan-skel.l: Adjust to these changes.
11058 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
11059 (LOCATION_PRINT, skel_control_t): New.
11060
11061 2001-12-30 Akim Demaille <akim@epita.fr>
11062
11063 * src/parse-skel.y: Get rid of the shift/reduce conflict:
11064 replace `gb' with BLANKS.
11065 * src/scan-skel.l: Adjust.
11066
11067 2001-12-30 Akim Demaille <akim@epita.fr>
11068
11069 * src/system.h: We don't need nor want bcopy.
11070 Throw away MS-DOS crap: we don't need getpid.
11071 * configure.in: We don't need strndup. It was even causing
11072 problems: because Flex includes the headers *before* us,
11073 _GNU_SOURCE is not defined by config.h, and therefore strndup was
11074 not visible.
11075 * lib/xstrndup.c: New.
11076 * src/scan-skel.l: Use it.
11077 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
11078 * src/parse-skel.y: Use %directives instead of #defines.
11079
11080 2001-12-30 Akim Demaille <akim@epita.fr>
11081
11082 * src/skeleton.h: New.
11083 * src/output.c (output_parser, output_master_parser): Remove, dead
11084 code.
11085 * src/output.h (get_lines_number, actions_output, guards_output)
11086 (token_definitions_output): Prototype them.
11087 * src/parse-skel.y: Add the license notice.
11088 Include output.h and skeleton.h.
11089 (process_skeleton): Returns void, and takes a single parameter.
11090 * src/scan-skel.l: Add the license notice.
11091 Include skeleton.h.
11092 Don't use %option yylineno: it seems that then Flex imagines
11093 REJECT has been used, and therefore it won't reallocate its
11094 buffers (which makes no other sense to me than a bug). It results
11095 in warnings for `unused: yy_flex_realloc'.
11096
11097 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
11098
11099 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11100 (MUSCLE_INSERT_PREFIX): ...to there.
11101 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
11102 (MUSCLE_INSERT_PREFIX): Move from here...
11103
11104 * src/bison.hairy: Add a section directive. Put braces around muscle
11105 names. This parser skeleton is still broken, but Bison should not
11106 choke on a bad muscle 'syntax'.
11107 * src/bison.simple: Add a section directive. Put braces around muscle
11108 names.
11109
11110 * src/files.h (strsuffix, stringappend): Add declarations.
11111 (tab_extension): Add declaration.
11112 (short_base_name): Add declaration.
11113
11114 * src/files.c (strsuffix, stringappend): No longer static. These
11115 functions are used in the skeleton parser.
11116 (tab_extension): New.
11117 (compute_base_names): Use the computations done in this function
11118 to guess if the generated parsers should have '.tab' in their
11119 names.
11120 (short_base_name): No longer static.
11121
11122 * src/output.c (output_skeleton): New.
11123 (output): Disable call to output_master_parser, and give a try to
11124 a new skeleton handling system.
11125 (guards_output, actions_output): No longer static.
11126 (token_definitions_output, get_lines_number): No longer static.
11127
11128 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
11129
11130 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
11131 parse-skel.y.
11132
11133 * src/parse-skel.y: New file.
11134 * src/scan-skel.l: New file.
11135
11136 2001-12-29 Akim Demaille <akim@epita.fr>
11137
11138 %name-prefix is broken.
11139
11140 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
11141 Adjust all dependencies.
11142 * tests/headers.at (export YYLTYPE): Strengthen this test: use
11143 %name-prefix.
11144
11145 Renaming yylval but not yylloc is not consistent. Now we do.
11146
11147 * src/bison.simple: Prefix yylloc if used.
11148 * doc/bison.texinfo (Decl Summary): Document that.
11149
11150 2001-12-29 Akim Demaille <akim@epita.fr>
11151
11152 * doc/bison.texinfo: Promote `%long-directive' over
11153 `%long_directive'.
11154 Remove all references to fixed-output-files, yacc is enough.
11155
11156 2001-12-29 Akim Demaille <akim@epita.fr>
11157
11158 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
11159 user prologue. These are defaults.
11160 * tests/actions.at (Mid-rule actions): Make sure the user can
11161 define YYDEBUG and YYERROR_VERBOSE.
11162
11163 2001-12-29 Akim Demaille <akim@epita.fr>
11164
11165 * src/output.c (header_output): Don't forget to export YYLTYPE and
11166 yylloc.
11167 * tests/headers.at (export YYLTYPE): New, make sure it does.
11168 * tests/regression.at (%union and --defines, Invalid CPP headers):
11169 Move to...
11170 * tests/headers.at: here.
11171
11172 2001-12-29 Akim Demaille <akim@epita.fr>
11173
11174 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
11175
11176 2001-12-29 Akim Demaille <akim@epita.fr>
11177
11178 * tests/actions.at (Mid-rule actions): Output on a single line
11179 instead of several.
11180
11181 2001-12-29 Akim Demaille <akim@epita.fr>
11182
11183 * doc/bison.texinfo: Formatting changes.
11184
11185 2001-12-29 Akim Demaille <akim@epita.fr>
11186
11187 Don't store the token defs in a muscle, just be ready to output it
11188 on command. Now possible via `symbols'. Fixes a memory leak.
11189
11190 * src/output.c (token_definitions_output): New.
11191 (output_parser, header_output): Use it.
11192 * src/reader.c (symbols_save): Remove.
11193
11194 2001-12-29 Akim Demaille <akim@epita.fr>
11195
11196 * src/bison.simple: Do not provide a default for YYSTYPE and
11197 YYLTYPE before the user's prologue. Otherwise it's hardly... a
11198 default.
11199
11200 2001-12-29 Akim Demaille <akim@epita.fr>
11201
11202 Mid-rule actions are simply... ignored!
11203
11204 * src/reader.c (readgram): Be sure to attach mid-rule actions to
11205 the empty-rule associated to the dummy symbol, not to the host
11206 rule.
11207 * tests/actions.at (Mid-rule actions): New.
11208
11209 2001-12-29 Akim Demaille <akim@epita.fr>
11210
11211 Memory leak.
11212
11213 * src/reader.c (reader): Free grammar.
11214
11215 2001-12-29 Akim Demaille <akim@epita.fr>
11216
11217 Memory leak.
11218
11219 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
11220 since it allocates it for each state, although only one is needed.
11221 (allocate_storage): Do it here.
11222
11223 2001-12-29 Akim Demaille <akim@epita.fr>
11224
11225 * src/options.h, src/options.c (create_long_option_table): Rename
11226 as...
11227 (long_option_table_new): this, with a clearer prototype.
11228 (percent_table): Remove, unused,
11229 * src/getargs.c (getargs): Adjust.
11230
11231 2001-12-29 Akim Demaille <akim@epita.fr>
11232
11233 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
11234 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
11235 as states.
11236
11237 2001-12-29 Akim Demaille <akim@epita.fr>
11238
11239 * src/lalr.c (build_relations): Rename `states' as `states1'.
11240 Sorry, I don't understand exactly what it is, no better name...
11241
11242 2001-12-29 Akim Demaille <akim@epita.fr>
11243
11244 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
11245 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
11246 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
11247 as rules.
11248
11249 2001-12-29 Akim Demaille <akim@epita.fr>
11250
11251 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
11252 ago.
11253
11254 2001-12-29 Akim Demaille <akim@epita.fr>
11255
11256 * src/reader.c, src/reader.h (user_toknums): Remove.
11257 Adjust all users to use symbols[i]->user_token_number.
11258
11259 2001-12-29 Akim Demaille <akim@epita.fr>
11260
11261 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
11262 Adjust all users to use symbols[i]->prec or ->assoc.
11263
11264 2001-12-29 Akim Demaille <akim@epita.fr>
11265
11266 * src/reader.c, src/reader.h (tags): Remove.
11267 Adjust all users to use symbols[i]->tag.
11268
11269 2001-12-29 Akim Demaille <akim@epita.fr>
11270
11271 * src/gram.h, src/gram.c (symbols): New, similar to state_table
11272 and rule_table.
11273 * src/reader.c (packsymbols): Fill this table.
11274 Drop sprec.
11275 * src/conflicts.c (resolve_sr_conflict): Adjust.
11276 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
11277 single table.
11278 Use symbols[i]->tag instead of tags[i].
11279
11280 2001-12-29 Akim Demaille <akim@epita.fr>
11281
11282 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
11283 In addition, put a comment in there, to replace...
11284 * tests/regression.at (%union and C comments): Remove.
11285
11286 2001-12-29 Akim Demaille <akim@epita.fr>
11287
11288 * tests/regression.at (Web2c Actions): Blindly move the actual
11289 output as expected output. The contents *seem* right to me, but I
11290 can't pretend reading perfectly parser tables... Nonetheless, all
11291 the other tests pass correctly, the table look OK, even though the
11292 presence of `$axiom' is to be noted: AFAICS it is useless (but
11293 harmless).
11294
11295 2001-12-29 Akim Demaille <akim@epita.fr>
11296
11297 * src/reader.c (readgram): Don't add the rule 0 if there were no
11298 rules read. In other words, add it _after_ having performed
11299 grammar sanity checks.
11300 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
11301
11302 2001-12-29 Akim Demaille <akim@epita.fr>
11303
11304 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
11305 visible, and some states have now a different number.
11306
11307 2001-12-29 Akim Demaille <akim@epita.fr>
11308
11309 * src/reader.c (readgram): Bind the initial rule's lineno to that
11310 of the first rule.
11311 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
11312 (Solved SR Conflicts): Adjust rule 0's line number.
11313
11314 2001-12-29 Akim Demaille <akim@epita.fr>
11315
11316 Fix the `GAWK Grammar' failure.
11317
11318 * src/LR0.c (final_state): Initialize to -1 so that we do compute
11319 the reductions of the first state which was mistakenly confused
11320 with the final state because precisely final_state was initialized
11321 to 0.
11322 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
11323 now noticed by Bison.
11324 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
11325 have a reduction on $default.
11326
11327 2001-12-29 Akim Demaille <akim@epita.fr>
11328
11329 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
11330 rule line numbers.
11331 * src/closure.c (print_closure): Likewise.
11332 * src/derives.c (print_derives): Likewise.
11333 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
11334 now.
11335
11336 2001-12-29 Akim Demaille <akim@epita.fr>
11337
11338 * src/lalr.c (lookaheads_print): New.
11339 (lalr): Call it when --trace-flag.
11340 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
11341 are dumped.
11342
11343 2001-12-29 Akim Demaille <akim@epita.fr>
11344
11345 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
11346 when walking through ritem, even via rule->rhs.
11347 * src/reduce.c (dump_grammar, useful_production, reduce_output)
11348 (useful_production, useless_nonterminals): Likewise.
11349 (reduce_grammar_tables): Likewise, plus update nritems.
11350 * src/nullable.c (set_nullable): Likewise.
11351 * src/lalr.c (build_relations): Likewise.
11352 * tests/sets.at (Nullable): Adjust.
11353 Fortunately, now, the $axiom is no longer nullable.
11354
11355 2001-12-29 Akim Demaille <akim@epita.fr>
11356
11357 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
11358 the 0-sentinel.
11359 * src/gram.c (ritem_longest_rhs): Likewise.
11360 * src/reduce.c (nonterminals_reduce): Likewise.
11361 * src/print_graph.c (print_graph): Likewise.
11362 * src/output.c (output_rule_data): Likewise.
11363 * src/nullable.c (set_nullable): Likewise.
11364
11365 2001-12-29 Akim Demaille <akim@epita.fr>
11366
11367 * src/output.c: Comment changes.
11368
11369 2001-12-27 Paul Eggert <eggert@twinsun.com>
11370
11371 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
11372 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
11373 Sparc, as they were causing more porting problems than the
11374 (minor) performance improvement was worth.
11375
11376 Also, catch up with 1.31's YYSTD.
11377
11378 2001-12-27 Akim Demaille <akim@epita.fr>
11379
11380 * src/output.c (output_gram): Rely on nritems, not the
11381 0-sentinel. See below.
11382 Use -1 as separator, not 0.
11383 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
11384 Rely on -1 as separator in yyrhs, instead of 0.
11385 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
11386 twice `Now at end of input', therefore there are two lines less to
11387 expect.
11388
11389 2001-12-27 Akim Demaille <akim@epita.fr>
11390
11391 * tests/regression.at (Unresolved SR Conflicts):
11392 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
11393 below.
11394
11395 2001-12-27 Akim Demaille <akim@epita.fr>
11396
11397 * src/LR0.c (new_state): Recognize the final state by the fact it
11398 is reached by eoftoken.
11399 (insert_start_shifting_state, insert_eof_shifting_state)
11400 (insert_accepting_state, augment_automaton): Remove, since now
11401 these states are automatically computed from the initial state.
11402 (generate_states): Adjust.
11403 * src/print.c: When reporting a rule number to the user, substract
11404 1, so that the axiom rule is rule 0, and the first user rule is 1.
11405 * src/reduce.c: Likewise.
11406 * src/print_graph.c (print_core): For the time being, just as for
11407 the report, depend upon --trace-flags to dump the full set of
11408 items.
11409 * src/reader.c (readgram): Once the grammar read, insert the rule
11410 0: `$axiom: START-SYMBOL $'.
11411 * tests/set.at: Adjust: rule 0 is now displayed, and since the
11412 number of the states has changed (the final state is no longer
11413 necessarily the last), catch up.
11414
11415 2001-12-27 Akim Demaille <akim@epita.fr>
11416
11417 Try to make the use of the eoftoken valid. Given that its value
11418 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
11419 is used instead of > 0 where appropriate, (ii), depend upon nritems
11420 instead of the 0-sentinel.
11421
11422 * src/gram.h, src/gram.c (nritems): New.
11423 Expected to be duplication of nitems, but for the time being...
11424 * src/reader.c (packgram): Assert nritems and nitems are equal.
11425 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
11426 * src/closure.c (print_closure, print_fderives): Likewise.
11427 * src/gram.c (ritem_print): Likewise.
11428 * src/print.c (print_core, print_grammar): Likewise.
11429 * src/print_graph.c: Likewise.
11430
11431 2001-12-27 Akim Demaille <akim@epita.fr>
11432
11433 * src/main.c (main): If there are complains after grammar
11434 reductions, then output the report anyway if requested, then die.
11435 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
11436 * src/reader.c (eoftoken): New.
11437 (parse_token_decl): If the token being defined has value `0', it
11438 is the eoftoken.
11439 (packsymbols): No longer hack `tags' to insert `$' by hand.
11440 Be sure to preserve the value of the eoftoken.
11441 (reader): Make sure eoftoken is defined.
11442 Initialize nsyms to 0: now eoftoken is created just like the others.
11443 * src/print.c (print_grammar): Don't special case the eof token.
11444 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
11445 lie anyway, albeit pleasant.
11446 * tests/calc.at: Exercise error messages with eoftoken.
11447 Change the grammar so that empty input is invalid.
11448 Adjust expectations.
11449 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
11450
11451 2001-12-27 Akim Demaille <akim@epita.fr>
11452
11453 * configure.in: Check the protos of strchr ans strspn.
11454 Replace strchr if needed.
11455 * src/system.h: Provide the protos of strchr, strspn and memchr if
11456 missing.
11457 * lib/strchr.c: New.
11458 * src/reader.c (symbols_save): Use strchr.
11459
11460 2001-12-27 Akim Demaille <akim@epita.fr>
11461
11462 * src/print.c, src/print_graph.c (escape): New.
11463 Use it to quote the TAGS outputs.
11464 * src/print_graph.c (print_state): Now errors are in red, and
11465 reductions in green.
11466 Prefer high to wide: output the state number on a line of its own.
11467
11468 2001-12-27 Akim Demaille <akim@epita.fr>
11469
11470 * src/state.h, src/state.c (reductions_new): New.
11471 * src/LR0.c (set_state_table): Let all the states have a
11472 `reductions', even if reduced to 0.
11473 (save_reductions): Adjust.
11474 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
11475 * src/print.c (print_reductions, print_actions): Adjust.
11476 * src/output.c (action_row): Adjust.
11477
11478 2001-12-27 Akim Demaille <akim@epita.fr>
11479
11480 * src/state.h, src/state.c (errs_new, errs_dup): New.
11481 * src/LR0.c (set_state_table): Let all the states have an errs,
11482 even if reduced to 0.
11483 * src/print.c (print_errs, print_reductions): Adjust.
11484 * src/output.c (output_actions, action_row): Adjust.
11485 * src/conflicts.c (resolve_sr_conflict): Adjust.
11486
11487 2001-12-27 Akim Demaille <akim@epita.fr>
11488
11489 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
11490
11491 2001-12-27 Akim Demaille <akim@epita.fr>
11492
11493 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
11494 * src/print.c: here.
11495 (lookaheadset, shiftset): New, used as additional storage by
11496 print_reductions.
11497 (print_results): Adjust.
11498 (print_shifts, print_gotos, print_errs): New, extracted from...
11499 (print_actions): here.
11500 * src/print_graph.c (print_actions): Remove dead code.
11501
11502 2001-12-27 Akim Demaille <akim@epita.fr>
11503
11504 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
11505 `$n' and `@n'.
11506
11507 2001-12-27 Akim Demaille <akim@epita.fr>
11508
11509 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
11510 (build_relations): Adjust.
11511
11512 2001-12-27 Akim Demaille <akim@epita.fr>
11513
11514 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
11515 duplication.
11516
11517 2001-12-27 Akim Demaille <akim@epita.fr>
11518
11519 * src/reader.c (packgram): Catch nitems overflows.
11520
11521 2001-12-27 Akim Demaille <akim@epita.fr>
11522
11523 * src/files.c, src/files.h (guard_obstack): Remove.
11524 * src/output.c (output): Adjust.
11525 * src/reader.c (parse_braces): New, factoring...
11526 (copy_action, copy_guard): these two which are renamed as...
11527 (parse_action, parse_guard): these.
11528 As a voluntary consequence, using braces around guards is now
11529 mandatory.
11530
11531 2001-12-27 Akim Demaille <akim@epita.fr>
11532
11533 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
11534 * src/reader.c (symbol_list): `guard' and `guard_line' are new
11535 members.
11536 (symbol_list_new): Adjust.
11537 (copy_action): action_line is the first line, not the last.
11538 (copy_guard): Just as for actions, store the `action' only, not
11539 the switch/case/break flesh.
11540 Don't parse the user action that might follow the guard, let...
11541 (readgram): do it, i.e., now, there can be an action after a
11542 guard.
11543 In other words the guard is just explicitly optional.
11544 (packgram): Adjust.
11545 * src/output.c (guards_output): New.
11546 (output_parser): Call it when needed.
11547 (output): Also free the guard and attrs obstacks.
11548 * src/files.c, src/files.h (obstack_save): Remove.
11549 (output_files): Remove.
11550 As a result, if one needs the former `.act' file, using an
11551 appropriate skeleton which requires actions and guards is now
11552 required.
11553 * src/main.c (main): Adjust.
11554 * tests/semantic.at: New.
11555 * tests/regression.at: Use `input.y' as input file name.
11556 Avoid 8+3 problems by requiring input.c when the test needs the
11557 parser.
11558
11559 2001-12-27 Akim Demaille <akim@epita.fr>
11560
11561 * src/reader.c (symbol_list_new): Be sure to initialize all the
11562 fields.
11563
11564 2001-12-27 Akim Demaille <akim@epita.fr>
11565
11566 All the hacks using a final pseudo state are now useless.
11567
11568 * src/LR0.c (set_state_table): state_table holds exactly nstates.
11569 * src/lalr.c (nLA): New.
11570 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
11571 instead of lookaheadsp from the pseudo state (nstate + 1).
11572
11573 2001-12-27 Akim Demaille <akim@epita.fr>
11574
11575 * src/output.c (action_row, token_actions): Use a state_t instead
11576 of a integer, and nlookaheads instead of the following state's
11577 lookaheadsp.
11578
11579 2001-12-27 Akim Demaille <akim@epita.fr>
11580
11581 * src/conflicts.c (log_resolution, flush_shift)
11582 (resolve_sr_conflict, set_conflicts, solve_conflicts)
11583 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
11584 (conflicts_print, print_reductions): Use a state_t instead of an
11585 integer when referring to a state.
11586 As much as possible, depend upon nlookaheads, instead of the
11587 `lookaheadsp' member of the following state (since lookaheads of
11588 successive states are successive, the difference between state n + 1
11589 and n served as the number of lookaheads for state n).
11590 * src/lalr.c (add_lookback_edge): Likewise.
11591 * src/print.c (print_core, print_actions, print_state)
11592 (print_results): Likewise.
11593 * src/print_graph.c (print_core, print_actions, print_state)
11594 (print_graph): Likewise.
11595 * src/conflicts.h: Adjust.
11596
11597 2001-12-27 Akim Demaille <akim@epita.fr>
11598
11599 * src/bison.hairy: Formatting/comment changes.
11600 ANSIfy.
11601 Remove `register' indications.
11602 Add plenty of `static'.
11603
11604 2001-12-27 Akim Demaille <akim@epita.fr>
11605
11606 * src/output.c (prepare): Drop the muscle `ntbase' which
11607 duplicates ntokens.
11608 * src/bison.simple: Formatting/comment changes.
11609 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
11610 is an undocumented synonym.
11611
11612 2001-12-22 Akim Demaille <akim@epita.fr>
11613
11614 * src/output.c (output_table_data): Change the prototype to use
11615 `int' for array ranges: some invocations do pass an int, not a
11616 short.
11617 Reported by Wayne Green.
11618
11619 2001-12-22 Akim Demaille <akim@epita.fr>
11620
11621 Some actions of web2c.y are improperly triggered.
11622 Reported by Mike Castle.
11623
11624 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
11625 * tests/regression.at (Web2c): Rename as...
11626 (Web2c Report): this.
11627 (Web2c Actions): New.
11628
11629 2001-12-22 Akim Demaille <akim@epita.fr>
11630
11631 Reductions in web2c.y are improperly reported.
11632 Reported by Mike Castle.
11633
11634 * src/conflicts.c (print_reductions): Fix.
11635 * tests/regression.at (Web2c): New.
11636
11637 2001-12-18 Akim Demaille <akim@epita.fr>
11638
11639 Some host fail on `assert (!"foo")', which expands to
11640 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
11641 Reported by Nelson Beebee.
11642
11643 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
11644 `#define it_succeeded 0' and `assert (it_succeeded)'.
11645
11646 2001-12-17 Marc Autret <autret_m@epita.fr>
11647
11648 * src/bison.simple: Don't hard code the skeleton line and filename.
11649 * src/output.c (output_parser): Rename 'line' as 'output_line'.
11650 New line counter 'skeleton_line' (skeleton-line muscle).
11651
11652 2001-12-17 Paul Eggert <eggert@twinsun.com>
11653
11654 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
11655 YYDEBUG must be defined to a nonzero value.
11656
11657 * src/bison.simple (yytname): Do not assume that the user defines
11658 YYDEBUG to a properly parenthesized expression.
11659
11660 2001-12-17 Akim Demaille <akim@epita.fr>
11661
11662 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
11663 nlookaheads is a new member.
11664 Adjust all users.
11665 * src/lalr.h (nlookaheads): Remove this orphan declaration.
11666 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
11667 state.
11668
11669 2001-12-17 Akim Demaille <akim@epita.fr>
11670
11671 * src/files.h, src/files.c (open_files, close_files): Remove.
11672 * src/main.c (main): Don't open/close files, nor invoke lex_free,
11673 let...
11674 * src/reader.c (reader): Do it.
11675
11676 2001-12-17 Akim Demaille <akim@epita.fr>
11677
11678 * src/conflicts.c (print_reductions): Formatting changes.
11679
11680 2001-12-17 Akim Demaille <akim@epita.fr>
11681
11682 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
11683 (flush_reduce): New.
11684 (resolve_sr_conflict): Adjust.
11685
11686 2001-12-17 Akim Demaille <akim@epita.fr>
11687
11688 * src/output.c (output_obstack): Be static and rename as...
11689 (format_obstack): this, to avoid any confusion with files.c's
11690 output_obstack.
11691 * src/reader.h (muscle_obstack): Move to...
11692 * src/output.h: here, since it's defined in output.c.
11693
11694 2001-12-17 Akim Demaille <akim@epita.fr>
11695
11696 * src/output.c (action_row, save_column, default_goto)
11697 (sort_actions, matching_state, pack_vector): Better variable
11698 locality.
11699
11700 2001-12-17 Akim Demaille <akim@epita.fr>
11701
11702 * src/output.c: Various formatting changes.
11703
11704 2001-12-17 Akim Demaille <akim@epita.fr>
11705
11706 * src/files.c (output_files): Free the output_obstack.
11707 * src/main.c (main): Call print and print_graph conditionally.
11708 * src/print.c (print): Work unconditionally.
11709 * src/print_graph.c (print_graph): Work unconditionally.
11710 * src/conflicts.c (log_resolution): Output only if verbose_flag.
11711
11712 2001-12-16 Marc Autret <autret_m@epita.fr>
11713
11714 * src/output.c (actions_output): Fix. When we use %no-lines,
11715 there is one less line per action.
11716
11717 2001-12-16 Marc Autret <autret_m@epita.fr>
11718
11719 * src/bison.simple: Remove a useless #line directive.
11720 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
11721 * src/output.c (get_lines_number): New.
11722 (output_parser): Adjust, now takes care about the lines of a
11723 output muscles.
11724 Fix line numbering.
11725 (actions_output): Computes the number of lines taken by actions.
11726 (output_master_parser): Insert new skeleton which is the name of
11727 the output parser file name.
11728
11729 2001-12-15 Marc Autret <autret_m@epita.fr>
11730
11731 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
11732
11733 2001-12-15 Marc Autret <autret_m@epita.fr>
11734
11735 * src/output.c (output_gram): Keep track of the hairy one.
11736
11737 2001-12-15 Akim Demaille <akim@epita.fr>
11738
11739 Make `make distcheck' work.
11740
11741 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
11742 system.h which uses libgettext.h.
11743
11744 2001-12-15 Akim Demaille <akim@epita.fr>
11745
11746 * src/nullable.c (set_nullable): Useless rules must be skipped,
11747 otherwise, since we range over their symbols, we might look at a
11748 nonterminal which no longer ``exists'', i.e., it is not counted in
11749 `nvars', hence we overflow our arrays.
11750
11751 2001-12-15 Akim Demaille <akim@epita.fr>
11752
11753 The header can also be produced directly, without any obstack!
11754 Yahoo!
11755
11756 * src/files.c, src/files.h (defines_obstack): Remove.
11757 (compute_header_macro): Global.
11758 (defines_obstack_save): Remove.
11759 * src/reader.c (parse_union_decl): No longer output to
11760 defines_obstack: its content can be found in the `stype' muscle
11761 anyway.
11762 (output_token_translations): Merge into...
11763 (symbols_output): this.
11764 Rename as...
11765 (symbols_save): this.
11766 (reader): Adjust.
11767 * src/output.c (header_output): New.
11768 (output): Call it.
11769
11770 2001-12-15 Akim Demaille <akim@epita.fr>
11771
11772 * src/reader.c (parse_union_decl): Instead of handling two obstack
11773 simultaneously, use one to define the `stype' muscle, and use the
11774 value of the latter to fill defines_obstack.
11775 (copy_comment): Remove.
11776 (copy_comment2): Work for a single obstack.
11777 Rename as...
11778 (copy_comment): this.
11779
11780 2001-12-15 Akim Demaille <akim@epita.fr>
11781
11782 * src/lex.c, src/lex.h (xgetc): No longer static.
11783 * src/reader.c (parse_union_decl): Revamp.
11784
11785 2001-12-15 Akim Demaille <akim@epita.fr>
11786
11787 Still making progress in separating Bison into (i) input, (ii)
11788 process, (iii) output: now we can directly output the parser file
11789 without using table_obstack at all.
11790
11791 * src/files.c, src/files.h (table_obstack): Bye bye.
11792 (parser_file_name): New.
11793 * src/files.c (compute_output_file_names): Compute it.
11794 * src/output.c (actions_output, output_parser)
11795 (output_master_parser): To a file instead of an obstack.
11796
11797 2001-12-15 Akim Demaille <akim@epita.fr>
11798
11799 Attach actions to rules, instead of pre-outputting them to
11800 actions_obstack.
11801
11802 * src/gram.h (rule_t): action and action_line are new members.
11803 * src/reader.c (symbol_list): Likewise.
11804 (copy_action): Save the actions within the rule.
11805 (packgram): Save them in rule_table.
11806 * src/output.c (actions_output): New.
11807 (output_parser): Use it on `%%actions'.
11808 (output_rule_data): Don't free rule_table.
11809 (output): Do it.
11810 (prepare): Don't save the `action' muscle.
11811 * src/bison.simple: s/%%action/%%actions/.
11812
11813 2001-12-15 Akim Demaille <akim@epita.fr>
11814
11815 * src/reader.c (copy_action): When --yacc, don't append a `;'
11816 to the user action: let it fail if lacking.
11817 Suggested by Arnold Robbins and Tom Tromey.
11818
11819 2001-12-14 Akim Demaille <akim@epita.fr>
11820
11821 * src/lex.c (literalchar): Simply return the char you decoded, non
11822 longer mess around with obstacks and int pointers.
11823 Adjust all callers.
11824
11825 2001-12-14 Akim Demaille <akim@epita.fr>
11826
11827 * src/lex.c (literalchar): Don't escape the special characters,
11828 just decode them, and keep them as char (before, eol was output as
11829 the 2 char string `\n' etc.).
11830 * src/output.c (output_rule_data): Use quotearg to output the
11831 token strings.
11832
11833 2001-12-13 Paul Eggert <eggert@twinsun.com>
11834
11835 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
11836 Do not infringe on the global user namespace when using C++.
11837 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
11838 All uses of `fprintf' and `stderr' changed.
11839
11840 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
11841
11842 2001-12-13 Akim Demaille <akim@epita.fr>
11843
11844 The computation of nullable is broken: it doesn't handle empty
11845 RHS's properly.
11846
11847 * tests/torture.at (GNU AWK Grammar): New.
11848 * tests/sets.at (Nullable): New.
11849 * src/nullable.c (set_nullable): Instead of blindly looping over
11850 `ritems', loop over the rules, and then over their rhs's.
11851
11852 Work around Autotest bugs.
11853
11854 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
11855 frame, because Autotest understand lines starting with a `+' as
11856 traces from the shell. Then, they are not processed properly.
11857 Admittedly an Autotest bug, but we don't have time to wait for
11858 Autotest to catch up.
11859 * tests/regression.at (Broken Closure): Adjust to the new table
11860 frames.
11861 Move to...
11862 * tests/sets.at: here.
11863
11864 2001-12-13 Akim Demaille <akim@epita.fr>
11865
11866 * src/closure.c (closure): Use nrules instead of playing tricks
11867 with BITS_PER_WORD.
11868
11869 2001-12-13 Akim Demaille <akim@epita.fr>
11870
11871 * src/print.c (print_actions): Output the handling of `$' as the
11872 traces do: shifting the token EOF. Before EOF was treated as a
11873 nonterminal.
11874 * tests/regression.at: Adjust some tests.
11875 * src/print_graph.c (print_core): Complete the set of items via
11876 closure. The next-to-final and final states are still unsatisfying,
11877 but that's to be addressed elsewhere.
11878 No longer output the rule numbers, but do output the state number.
11879 A single loop for the shifts + gotos is enough, but picked a
11880 distinct color for each.
11881 (print_graph): Initialize and finalize closure.
11882
11883 2001-12-13 Akim Demaille <akim@epita.fr>
11884
11885 * src/reader.c (readgram): Remove dead code, an strip useless
11886 braces.
11887 (get_type): Remove, unused.
11888
11889 2001-12-12 Akim Demaille <akim@epita.fr>
11890
11891 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
11892 on that of lib/error.c.
11893
11894 2001-12-12 Akim Demaille <akim@epita.fr>
11895
11896 Some hosts don't like `/' in includes.
11897
11898 * src/system.h: Include libgettext.h without qualifying the path.
11899 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
11900 $(top_srcdir).
11901
11902 2001-12-11 Marc Autret <autret_m@epita.fr>
11903
11904 * src/output.c (output_parser): Remove useless muscle.
11905
11906 2001-12-11 Marc Autret <autret_m@epita.fr>
11907
11908 * src/bison.simple: Remove #line just before %%epilogue. It
11909 is now handled in ...
11910 * src/reader.c (read_additionnal_code): Add the output of a
11911 #line for the epilogue.
11912
11913 2001-12-10 Marc Autret <autret_m@epita.fr>
11914
11915 * src/reader.c (copy_definition): Re-use CPP-outed code which
11916 replace precedent remove.
11917 * src/bison.simple: Remove #line before %%prologue because
11918 %%input-line is wrong at this time.
11919
11920 2001-12-10 Marc Autret <autret_m@epita.fr>
11921
11922 * src/reader.c (symbols_output): Clean up.
11923 * src/output.c (output_gram, output): Clean up.
11924
11925 2001-12-10 Akim Demaille <akim@epita.fr>
11926
11927 * src/lalr.c (initialize_lookaheads): New. Extracted from...
11928 * src/LR0.c (set_state_table): here.
11929 * src/lalr.c (lalr): Call it.
11930
11931 2001-12-10 Akim Demaille <akim@epita.fr>
11932
11933 * src/state.h (shifts): Remove the `number' member: shifts are
11934 attached to state, hence no longer need to be labelled with a
11935 state number.
11936
11937 2001-12-10 Akim Demaille <akim@epita.fr>
11938
11939 Now that states have a complete set of members, the linked list of
11940 shifts is useless: just fill directly the state's shifts member.
11941
11942 * src/state.h (shifts): Remove the `next' member.
11943 * src/LR0.c (first_state, last_state): Remove.
11944 Adjust the callers.
11945 (augment_automaton): Don't look for the shifts that must be added
11946 a shift on EOF: it is those of the state we looked for! But now,
11947 since shifts are attached, it is no longer needed to looking
11948 merely by its id: its number.
11949
11950 2001-12-10 Akim Demaille <akim@epita.fr>
11951
11952 * src/LR0.c (augment_automaton): Better variable locality.
11953 Remove an impossible branch: if there is a state corresponding to
11954 the start symbol being shifted, then there is shift for the start
11955 symbol from the initial state.
11956
11957 2001-12-10 Akim Demaille <akim@epita.fr>
11958
11959 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
11960 only when appropriate: when insert_start_shifting_state' is not
11961 invoked.
11962 * tests/regression.at (Rule Line Numbers): Adjust.
11963
11964 2001-12-10 Akim Demaille <akim@epita.fr>
11965
11966 * src/LR0.c (augment_automaton): Now that all states have shifts,
11967 merge the two cases addition shifts to the initial state.
11968
11969 2001-12-10 Akim Demaille <akim@epita.fr>
11970
11971 * src/lalr.c (set_state_table): Move to...
11972 * src/LR0.c: here.
11973 * src/lalr.c (lalr): Don't call it...
11974 * src/LR0.c (generate_states): do it.
11975 * src/LR0.h (first_state): Remove, only the table is used.
11976
11977 2001-12-10 Akim Demaille <akim@epita.fr>
11978
11979 * src/LR0.h (first_shift, first_reduction): Remove.
11980 * src/lalr.c: Don't use first_shift: find shifts through the
11981 states.
11982
11983 2001-12-10 Akim Demaille <akim@epita.fr>
11984
11985 * src/LR0.c: Attach shifts to states as soon as they are
11986 computed.
11987 * src/lalr.c (set_state_table): Instead of assigning shifts to
11988 state, just assert that the mapping was properly done.
11989
11990 2001-12-10 Akim Demaille <akim@epita.fr>
11991
11992 * src/LR0.c (insert_start_shift): Rename as...
11993 (insert_start_shifting_state): this.
11994 (insert_eof_shifting_state, insert_accepting_state): New.
11995 (augment_automaton): Adjust.
11996 Better locality of the variables.
11997 When looking if the start_symbol is shifted from the initial
11998 state, using `while (... symbol != start_symbol ...)' sounds
11999 better than `while (... symbol < start_symbol ...)': If fail
12000 to see how the order between symbols could be relevant!
12001
12002 2001-12-10 Akim Demaille <akim@epita.fr>
12003
12004 * src/getargs.h: Don't declare `spec_name_prefix' and
12005 `spec_file_prefix', declared by src/files.h.
12006 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
12007 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
12008 * src/output.c (prepare): Adjust.
12009 * src/reader.c (symbols_output): Likewise.
12010 * src/vmsgetargs.c: Vaguely adjust, but who cares?
12011
12012 2001-12-10 Akim Demaille <akim@epita.fr>
12013
12014 * src/muscle_tab.c (muscle_init): NULL is a better default than
12015 `"0"'.
12016
12017 2001-12-10 Akim Demaille <akim@epita.fr>
12018
12019 * src/reader.c (reader): Calling symbols_output once is enough.
12020
12021 2001-12-10 Akim Demaille <akim@epita.fr>
12022
12023 Now that states have a complete set of members, the linked list of
12024 reductions is useless: just fill directly the state's reductions
12025 member.
12026
12027 * src/state.h (struct reductions): Remove member `number' and
12028 `next'.
12029 * src/LR0.c (first_reduction, last_reduction): Remove.
12030 (save_reductions): Don't link the new reductions, store them in
12031 this_state.
12032 * src/lalr.c (set_state_table): No need to attach reductions to
12033 states, it's already done.
12034 * src/output.c (output_actions): No longer free the shifts, then
12035 the reductions, then the states: free all the states and their
12036 members.
12037
12038 2001-12-10 Akim Demaille <akim@epita.fr>
12039
12040 * src/options.c (OPTN, DRTV, BOTH): New.
12041 (option_table): Use them.
12042
12043 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
12044 the job of system.h.
12045 * src/options.c: Don't include stdio.h and xalloc.h for the same
12046 reasons.
12047
12048 2001-12-10 Akim Demaille <akim@epita.fr>
12049
12050 * src/output.c (output, prepare): Make sure the values of the
12051 muscles `action' and `prologue' are 0-terminated.
12052
12053 2001-12-10 Akim Demaille <akim@epita.fr>
12054
12055 Clean up GCC warnings.
12056
12057 * src/reader.c (copy_action): `buf' is not used.
12058 (parse_skel_decl): Be static.
12059 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
12060 * src/options.h (create_long_option_table): Have a real prototype.
12061 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
12062 (hash_delete_at): Return const void *.
12063 Adjust casts to preserve the const.
12064
12065 2001-12-10 Akim Demaille <akim@epita.fr>
12066
12067 * configure.in: Require 2.52g.
12068 M4 is not needed, but AUTOM4TE is.
12069 * m4/m4.m4: Remove.
12070 * tests/Makefile.am: Adjust.
12071
12072 2001-12-10 Akim Demaille <akim@epita.fr>
12073
12074 One structure for states is enough, even though theoretically
12075 there are LR(0) states and LALR(1) states.
12076
12077 * src/lalr.h (state_t): Remove.
12078 (state_table): Be state_t **, not state_t *.
12079 * src/state.h (core, CORE_ALLOC): Rename as...
12080 (state_t, STATE_ALLOC): this.
12081 Add the LALR(1) members: shifts, reductions, errs.
12082 * src/LR0.c (state_table): Rename as...
12083 (state_hash): this, to avoid name clashes with the global
12084 `state_table'.
12085 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
12086 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
12087
12088 2001-12-10 Akim Demaille <akim@epita.fr>
12089
12090 Bison dumps core on bash.y.
12091 Reported by Pascal Bart.
12092
12093 * src/warshall.c (bitmatrix_print): New.
12094 (TC): Use it.
12095 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
12096 j must be the outer loop.
12097 * tests/regression.at (Broken Closure): New.
12098
12099 2001-12-05 Akim Demaille <akim@epita.fr>
12100
12101 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
12102 its argument.
12103 Reported by Peter Hamorsky.
12104
12105 2001-12-05 Akim Demaille <akim@epita.fr>
12106
12107 * src/conflicts.c (err_table): Remove.
12108 (resolve_sr_conflict): Adjust.
12109 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
12110 Rename as...
12111 (state_t.reductions, state_t.shifts): this.
12112
12113 2001-12-05 Akim Demaille <akim@epita.fr>
12114
12115 * src/reduce.c (reduce_grammar_tables): No longer disable the
12116 removal of useless rules via CPP but via `if (0)', so that the
12117 compiler still check the code is valid.
12118 For instance, it should have noticed `rline' no longer exists: use
12119 the `line' member of rule_t.
12120 * src/gram.c (dummy, rline): Remove, unused.
12121
12122 2001-12-05 Akim Demaille <akim@epita.fr>
12123
12124 * src/output.c (pack_vector): Use assert, not berror.
12125 * src/main.c (berror): Remove, unused.
12126
12127 2001-12-05 Akim Demaille <akim@epita.fr>
12128
12129 New experimental feature: if --verbose --trace output all the
12130 items of a state, not only its kernel.
12131
12132 * src/print.c (print_core): If `trace_flag', then invoke closure
12133 before outputting the items of the state (print_core is no longer
12134 a correct name them).
12135 (print_results): Invoke new_closure/free_closure if needed.
12136
12137 2001-12-05 Akim Demaille <akim@epita.fr>
12138
12139 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
12140 * src/closure.c, src/closure.h (itemsetsize): Rename as...
12141 (nitemset): for consistency with the rest of the project.
12142
12143 2001-12-05 Akim Demaille <akim@epita.fr>
12144
12145 * src/closure.c (print_closure): Improve.
12146 (closure): Use it for printing input and output.
12147
12148 2001-12-05 Akim Demaille <akim@epita.fr>
12149
12150 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
12151 indexed by nonterminals.
12152
12153 2001-12-05 Akim Demaille <akim@epita.fr>
12154
12155 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
12156 what it was!).
12157 * src/warshall.h: Remove accidental duplication of the content.
12158
12159 2001-12-05 Akim Demaille <akim@epita.fr>
12160
12161 * src/closure.c (set_fderives): De-obfuscate.
12162
12163 2001-12-05 Akim Demaille <akim@epita.fr>
12164
12165 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
12166
12167 2001-12-05 Akim Demaille <akim@epita.fr>
12168
12169 * src/closure.c (set_firsts): De-obfuscate.
12170
12171 2001-12-05 Akim Demaille <akim@epita.fr>
12172
12173 * src/output.c (action_row): De-obfuscate
12174 using the good o' techniques: arrays not pointers, variable
12175 locality, BITISSET, RESETBIT etc.
12176
12177 2001-12-05 Akim Demaille <akim@epita.fr>
12178
12179 Pessimize the code to simplify it: from now on, all the states
12180 have a valid SHIFTS, which NSHIFTS is possibly 0.
12181
12182 * src/LR0.c (shifts_new): Be global and move to..
12183 * src/state.c, src/state.h: here.
12184 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
12185 * src/print_graph: Adjust.
12186
12187 2001-12-05 Akim Demaille <akim@epita.fr>
12188
12189 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
12190 * src/conflicts.c: Use it.
12191 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
12192 incorrectly ``simplified''.
12193
12194 2001-12-05 Akim Demaille <akim@epita.fr>
12195
12196 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
12197 using the good o' techniques: arrays not pointers, variable
12198 locality, BITISSET, RESETBIT etc.
12199
12200 2001-12-05 Akim Demaille <akim@epita.fr>
12201
12202 * src/state.h (SHIFT_SYMBOL): New.
12203 * src/conflicts.c: Use it to deobfuscate.
12204
12205 2001-12-05 Akim Demaille <akim@epita.fr>
12206
12207 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
12208 (print_reductions): De-obfuscate using the good o' techniques:
12209 arrays not pointers, variable locality, BITISSET.
12210
12211 2001-12-05 Akim Demaille <akim@epita.fr>
12212
12213 * src/conflicts.c (print_reductions): Arrays, not pointers.
12214 Use BITISSET.
12215
12216 2001-12-05 Akim Demaille <akim@epita.fr>
12217
12218 * src/conflicts.c (print_reductions): Pessimize, but clarify.
12219
12220 2001-12-05 Akim Demaille <akim@epita.fr>
12221
12222 * src/conflicts.c (print_reductions): Improve variable locality.
12223
12224 2001-12-05 Akim Demaille <akim@epita.fr>
12225
12226 * src/conflicts.c (print_reductions): Pessimize, but clarify.
12227
12228 2001-12-05 Akim Demaille <akim@epita.fr>
12229
12230 * src/conflicts.c (print_reductions): Improve variable locality.
12231
12232 2001-12-05 Akim Demaille <akim@epita.fr>
12233
12234 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
12235 * src/lalr.c: Use them.
12236
12237 2001-12-05 Akim Demaille <akim@epita.fr>
12238
12239 * src/LR0.c (augment_automaton): Formatting changes.
12240 Better variable locality.
12241
12242 2001-12-05 Akim Demaille <akim@epita.fr>
12243
12244 * src/lalr.c (matrix_print): New.
12245 (transpose): Use it.
12246 Use arrays instead of pointers.
12247
12248 2001-12-05 Akim Demaille <akim@epita.fr>
12249
12250 * src/lalr.c (maxrhs): Move to...
12251 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
12252 * src/lalr.c (build_relations): Adjust.
12253
12254 2001-12-05 Akim Demaille <akim@epita.fr>
12255
12256 * src/lalr.c (transpose): Free the memory allocated to the
12257 argument, as it is replaced by the results by the unique caller.
12258 (build_relations): Merely invoke transpose: it handles the memory
12259 deallocation.
12260 Improve variable locality.
12261 Avoid variables used as mere abbreviations.
12262 (compute_lookaheads): Use arrays instead of pointers.
12263
12264 2001-12-05 Akim Demaille <akim@epita.fr>
12265
12266 * src/lalr.c (initialize_F): Improve variable locality.
12267 Avoid variables used as mere abbreviations.
12268
12269 2001-12-05 Akim Demaille <akim@epita.fr>
12270
12271 * src/derives.c (print_derives): Display the ruleno.
12272 * src/lalr.c (initialize_F, transpose): Better variable locality
12273 to improve readability.
12274 Avoid variables used as mere abbreviations.
12275
12276 2001-12-05 Akim Demaille <akim@epita.fr>
12277
12278 * src/lalr.c (traverse): Use arrays instead of pointers.
12279
12280 2001-12-05 Akim Demaille <akim@epita.fr>
12281
12282 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
12283 the handling of squeue.
12284 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
12285
12286 2001-12-05 Akim Demaille <akim@epita.fr>
12287
12288 Because useless nonterminals are now kept alive (instead of being
12289 `destroyed'), we now sometimes examine them, and store information
12290 related to them. Hence we need to know their number, and adjust
12291 memory allocations.
12292
12293 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
12294 static.
12295 * src/LR0.c (allocate_itemsets): The memory allocated to
12296 `symbol_count' was used for two different purpose: once to count
12297 the number of occurrences of each symbol, and later reassigned to
12298 `shift_symbol', containing the symbol that can be shifted from a
12299 given state.
12300 Deobfuscate, i.e., allocate, use and free `symbol_count' here
12301 only, and...
12302 (new_itemsets): Allocate `shift_symbol' here.
12303 (allocate_itemsets): symbol_count includes useless nonterminals.
12304 Make room for them.
12305 (free_storage): Use `free', not `XFREE', for pointers that cannot
12306 be null.
12307
12308 2001-12-05 Akim Demaille <akim@epita.fr>
12309
12310 * src/nullable.c (set_nullable): Deobfuscate the handling of
12311 ritem.
12312 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
12313
12314 2001-12-05 Akim Demaille <akim@epita.fr>
12315
12316 * src/gram.c, src/gram.h (ritem_print): New.
12317 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
12318 (This useless function was defined only to work around VMS linkers
12319 that can't handle compilation units with variables only).
12320 * src/reduce.c (dump_grammar): Use it to trace the construction of
12321 ritem.
12322
12323 2001-12-04 Paul Eggert <eggert@twinsun.com>
12324
12325 * src/bison.simple (union yyalloc): Change member names
12326 to be the same as the stack names.
12327 (yyparse): yyptr is now union yyalloc *, not char *.
12328 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
12329 and may generate better code on some machines.
12330 (yystpcpy): Use prototype if __STDC__ is defined, not just
12331 if __cplusplus is defined.
12332
12333 2001-11-30 Akim Demaille <akim@epita.fr>
12334
12335 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
12336 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
12337 Gettext doesn't compile cleanly, and dies with -Werror.
12338 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
12339 Include WARNING_CFLAGS here.
12340 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
12341 before being defined.
12342
12343 2001-11-27 Paul Eggert <eggert@twinsun.com>
12344
12345 * lib/quotearg.h (quotearg_n, quotearg_n_style):
12346 First arg is int, not unsigned.
12347 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
12348 (SIZE_MAX, UINT_MAX): New macros.
12349 (quotearg_n_options): Abort if N is negative.
12350 Avoid overflow check on hosts where size_t is 64 bits and int
12351 is 32 bits, as overflow is impossible there.
12352 Fix off-by-one typo that caused unnecessary reallocation.
12353
12354 2001-11-29 Paul Eggert <eggert@twinsun.com>
12355
12356 Name space cleanup in generated parser.
12357
12358 * doc/bison.texinfo (Bison Parser): Discuss system headers
12359 and their effect on the user name space.
12360
12361 * src/bison.simple:
12362 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
12363 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
12364 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
12365
12366 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
12367 on user names when possible.
12368
12369 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
12370 Simplify test for whather <alloca.h> exists.
12371
12372 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
12373
12374 (<stdio.h>): Include if YYDEBUG.
12375
12376 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
12377 ! defined (yyoverflow) && ! defined (yymemcpy).
12378
12379 (yymemcpy, yyparse): Rename local variables as needed so that
12380 they all begin with 'yy'.
12381
12382 (yystrlen, yystpcpy): New functions.
12383
12384 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
12385 All uses changed.
12386
12387 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
12388 instead of relying on string.h functions. Use YYSTACK_ALLOC
12389 and YYSTACK_FREE instead of malloc and free.
12390
12391 2001-11-30 Akim Demaille <akim@epita.fr>
12392
12393 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
12394 before their first uses.
12395 (YYBISON, YYPURE): Move to the top of the output.
12396
12397 2001-11-30 Akim Demaille <akim@epita.fr>
12398
12399 * tests/reduce.at (Useless Nonterminals): Fix.
12400
12401 2001-11-30 Akim Demaille <akim@epita.fr>
12402
12403 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
12404 if body instead of `;' to pacify GCC's warnings.
12405
12406 2001-11-30 Akim Demaille <akim@epita.fr>
12407
12408 Instead of mapping the LHS of unused rules to -1, keep the LHS
12409 valid, but flag the rules as invalid.
12410
12411 * src/gram.h (rule_t): `useful' is a new member.
12412 * src/print.c (print_grammar): Adjust.
12413 * src/derives.c (set_derives): Likewise.
12414 * src/reader.c (packgram, reduce_output): Likewise.
12415 * src/reduce.c (reduce_grammar_tables): Likewise.
12416 * tests/reduce.at (Underivable Rules, Useless Rules): New.
12417
12418 2001-11-30 Akim Demaille <akim@epita.fr>
12419
12420 * src/reduce.c (reduce_output): Formatting changes.
12421 * src/print.c (print_results, print_grammar): Likewise.
12422 * tests/regression.at (Rule Line Numbers)
12423 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
12424
12425 2001-11-30 Akim Demaille <akim@epita.fr>
12426
12427 * src/reduce.c (nonterminals_reduce): Instead of throwing away
12428 useless nonterminals, move them at the end of the symbol arrays.
12429 (reduce_output): Adjust.
12430 * tests/reduce.at (Useless Nonterminals): Adjust.
12431
12432 2001-11-30 Akim Demaille <akim@epita.fr>
12433
12434 * src/reduce.c: Various comment/formatting changes.
12435 (nonterminals_reduce): New, extracted from...
12436 (reduce_grammar_tables): here.
12437 (reduce_grammar): Call nonterminals_reduce.
12438
12439 2001-11-29 Paul Eggert <eggert@twinsun.com>
12440
12441 * src/bison.simple (YYSTACK_REALLOC): Remove.
12442 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
12443 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
12444 New macros.
12445 (union yyalloc): New type.
12446 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
12447 an arbitrary restriction on hosts where size_t is wider than int.
12448
12449 (yyparse): Don't dump core if alloca or malloc fails; instead, report
12450 a parser stack overflow. Allocate just one block of memory for all
12451 three stacks, instead of allocating three blocks; this typically is
12452 faster and reduces fragmentation.
12453
12454 Do not limit the number of items in the stack to a value that fits
12455 in 'int', as this is an arbitrary limit on hosts with 64-bit
12456 size_t and 32-bit int.
12457
12458 2001-11-29 Marc Autret <autret_m@epita.fr>
12459
12460 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
12461 of defining YYERROR_VERBOSE.
12462 [AT_DATA]: $4 is now out of C declarations in the prologue.
12463
12464 2001-11-28 Marc Autret <autret_m@epita.fr>
12465
12466 * src/reader.c (parse_dquoted_param): New.
12467 (parse_skel_decl): Use it.
12468 * src/lex.h: Add its prototype.
12469 * src/lex.c (literalchar): Become not static.
12470
12471 2001-11-28 Marc Autret <autret_m@epita.fr>
12472
12473 * src/output.h: And put its extern declaration here.
12474 * src/output.c (error_verbose): Define here.
12475 (prepare): Echo name modification.
12476 * src/getargs.h: Clean its extern declaration.
12477 * src/getargs.c (error_verbose_flag): Remove.
12478 (getargs): Remove case 'e'.
12479 * src/options.c (option_table): 'error-verbose' is now seen as simple
12480 percent option.
12481 Include output.h.
12482
12483 * src/reader.c (read_declarations): Remove case tok_include.
12484 (parse_include_decl): Remove.
12485 * src/lex.h (token_t): Remove tok_include.
12486 * src/options.c (option_table): 'include' is now a simple command line
12487 option.
12488
12489 2001-11-28 Marc Autret <autret_m@epita.fr>
12490
12491 * src/bison.simple: Adjust muscle names.
12492 * src/muscle_tab.c (muscle_init): Also rename the muscles.
12493 * src/output.c (prepare): s/_/-/ for the muscles names.
12494 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
12495
12496 2001-11-28 Marc Autret <autret_m@epita.fr>
12497
12498 * src/bison.simple: Fix debug.
12499 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
12500
12501 2001-11-28 Akim Demaille <akim@epita.fr>
12502
12503 * src/LR0.c (shifts_new): New.
12504 (save_shifts, insert_start_shift, augment_automaton): Use it.
12505
12506 2001-11-28 Akim Demaille <akim@epita.fr>
12507
12508 * src/closure.c (closure): `b' and `ruleno' denote the same value:
12509 keep ruleno only.
12510
12511 2001-11-28 Akim Demaille <akim@epita.fr>
12512
12513 * src/closure.c (closure): Instead of looping over word in array
12514 then bits in words, loop over bits in array.
12515
12516 2001-11-28 Akim Demaille <akim@epita.fr>
12517
12518 * src/closure.c (closure): No longer optimize the special case
12519 where all the bits of `ruleset[r]' are set to 0, to make the code
12520 clearer.
12521
12522 2001-11-28 Akim Demaille <akim@epita.fr>
12523
12524 * src/closure.c (closure): `r' and `c' are new variables, used to
12525 de-obfuscate accesses to RULESET and CORE.
12526
12527 2001-11-28 Akim Demaille <akim@epita.fr>
12528
12529 * src/reduce.c (reduce_print): Use ngettext.
12530 (dump_grammar): Improve the trace accuracy.
12531
12532 2001-11-28 Akim Demaille <akim@epita.fr>
12533
12534 * src/reduce.c (dump_grammar): Don't translate trace messages.
12535
12536 2001-11-28 Akim Demaille <akim@epita.fr>
12537
12538 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
12539 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
12540 as all tags are free'ed afterwards.
12541 From Enrico Scholz.
12542
12543 2001-11-27 Paul Eggert <eggert@twinsun.com>
12544
12545 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
12546 use alloca when we didn't want to, and vice versa.
12547
12548 2001-11-27 Marc Autret <autret_m@epita.fr>
12549
12550 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
12551 initialization.
12552 * src/output.c (prepare): Remove its update.
12553
12554 2001-11-27 Marc Autret <autret_m@epita.fr>
12555
12556 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
12557 Use %error-verbose.
12558
12559 2001-11-27 Marc Autret <autret_m@epita.fr>
12560
12561 * src/bison.simple: Remove YYERROR_VERBOSE using.
12562 Use %%error_verbose.
12563 (yyparse): Likewise.
12564 * src/output.c (prepare): Give its final value.
12565 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
12566 * src/getargs.h: Add its extern declaration.
12567 * src/getargs.c (error_verbose_flag): New int.
12568 (getargs): Update to catch new case.
12569 * src/options.c (option_table): 'error-verbose' is a new option.
12570 (shortopts): Update.
12571
12572 2001-11-27 Akim Demaille <akim@epita.fr>
12573
12574 * src/system.h: Use intl/libgettext.h.
12575 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
12576
12577 2001-11-27 Akim Demaille <akim@epita.fr>
12578
12579 * tests/torture.at (Exploding the Stack Size with Malloc):
12580 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
12581
12582 2001-11-27 Akim Demaille <akim@epita.fr>
12583
12584 * src/files.c: Include error.h.
12585 Reported by Hans Aberg.
12586
12587 2001-11-26 Marc Autret <autret_m@epita.fr>
12588
12589 * src/reader.c (parse_include_decl): New, not yet implemented.
12590 (read_declarations): Add case tok_include.
12591 * src/getargs.h (include): Add its extern definition.
12592 * src/getargs.c (include): New const char *.
12593 (getargs): Add case '-I'.
12594 * src/options.c (option_table): Add include as command line and
12595 percent option.
12596 * src/lex.h (token_t): Add tok_include.
12597
12598 2001-11-26 Akim Demaille <akim@epita.fr>
12599
12600 * src/reader.c (readgram): Make sure rules for mid-rule actions
12601 have a lineno equal to that of their host rule.
12602 Reported by Hans Aberg.
12603 * tests/regression.at (Rule Line Numbers): New.
12604
12605 2001-11-26 Akim Demaille <akim@epita.fr>
12606
12607 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
12608 size_ts.
12609
12610 2001-11-26 Akim Demaille <akim@epita.fr>
12611
12612 * src/complain.c, src/complain.h (error): Remove, provided by
12613 lib/error.[ch].
12614
12615 2001-11-26 Akim Demaille <akim@epita.fr>
12616
12617 * src/reader.c (read_declarations): Don't abort on tok_illegal,
12618 issue an error message.
12619 * tests/regression.at (Invalid %directive): New.
12620 Reported by Hans Aberg.
12621
12622 2001-11-26 Akim Demaille <akim@epita.fr>
12623
12624 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
12625 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
12626
12627 2001-11-26 Akim Demaille <akim@epita.fr>
12628
12629 * src/conflicts.c (conflicts_print): Don't complain at all when
12630 there are no reduce/reduce conflicts, and as many shift/reduce
12631 conflicts as expected.
12632 * tests/regression.at (%expect right): Adjust.
12633
12634 2001-11-23 Akim Demaille <akim@epita.fr>
12635
12636 * lib/alloca.c: Update, from fileutils.
12637
12638 2001-11-23 Akim Demaille <akim@epita.fr>
12639
12640 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
12641
12642 2001-11-23 Akim Demaille <akim@epita.fr>
12643
12644 * src/system.h: Include alloca.h.
12645 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
12646
12647 2001-11-23 Akim Demaille <akim@epita.fr>
12648
12649 * src/print_graph.c (print_actions): Remove `rule', unused.
12650 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
12651 pacify GCC's signed < unsigned warnings.
12652 * src/closure.c (itemsetsize): Likewise.
12653 * src/reader.c (symbol_list_new): Static.
12654
12655 2001-11-23 Akim Demaille <akim@epita.fr>
12656
12657 Attaching lineno to buckets is stupid, since only one copy of each
12658 symbol is kept, only the line of the first occurrence is kept too.
12659
12660 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
12661 * src/reader.c (rline_allocated): Remove, unused.
12662 (symbol_list): Have a `line' member.
12663 (symbol_list_new): New.
12664 (readgram): Use it.
12665 * src/print.c (print_grammar): Output the rule line numbers.
12666 * tests/regression.at (Solved SR Conflicts)
12667 (Unresolved SR Conflicts): Adjust.
12668 Reported by Hans Aberg.
12669
12670 2001-11-22 Marc Autret <autret_m@epita.fr>
12671
12672 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
12673
12674 2001-11-22 Marc Autret <autret_m@epita.fr>
12675
12676 * src/muscle_tab.c (muscle_init): Remove initialization of
12677 skeleton muscle.
12678 * src/output.c (output_master_parser): Do it here.
12679
12680 2001-11-20 Akim Demaille <akim@epita.fr>
12681
12682 * po/sv.po: New.
12683 * configure.in (ALL_LINGUAS): Adjust.
12684 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
12685 longer contains strings to translate.
12686
12687 2001-11-19 Akim Demaille <akim@epita.fr>
12688
12689 * src/conflicts.c (conflicts_print): Add a missing \n.
12690
12691 2001-11-19 Akim Demaille <akim@epita.fr>
12692
12693 * src/nullable.c (nullable_print): New.
12694 (set_nullable): Call it when tracing.
12695 Better locality of variables.
12696
12697 2001-11-19 Akim Demaille <akim@epita.fr>
12698
12699 * src/print.c (print_actions): Better locality of variables.
12700
12701 2001-11-19 Akim Demaille <akim@epita.fr>
12702
12703 * src/derives.c (print_derives): Fix and enrich.
12704 * src/closure.c (print_fderives): Likewise.
12705
12706 2001-11-19 Akim Demaille <akim@epita.fr>
12707
12708 * src/closure.c (itemsetend): Remove, replaced with...
12709 (itemsetsize): new.
12710
12711 2001-11-19 Akim Demaille <akim@epita.fr>
12712
12713 * src/LR0.c (kernel_end): Remove, replaced with...
12714 (kernel_size): new.
12715
12716 2001-11-19 Akim Demaille <akim@epita.fr>
12717
12718 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
12719 to clarify.
12720
12721 2001-11-19 Akim Demaille <akim@epita.fr>
12722
12723 * src/closure.c (closure): Use arrays instead of pointers to clarify.
12724
12725 2001-11-19 Akim Demaille <akim@epita.fr>
12726
12727 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
12728 trace messages.
12729 * src/LR0.c: Likewise.
12730 (allocate_itemsets): Use arrays instead of pointers to clarify.
12731
12732 2001-11-19 Akim Demaille <akim@epita.fr>
12733
12734 * src/getargs.c (statistics_flag): Replace with...
12735 (trace_flag): New.
12736 (longopts): Accept --trace instead of --statistics.
12737 * src/getargs.h, src/options.c: Adjust.
12738 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
12739 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
12740
12741 2001-11-19 Akim Demaille <akim@epita.fr>
12742
12743 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
12744 pointers to clarify the code.
12745 (save_reductions, save_shifts): Factor common parts of alternatives.
12746
12747 2001-11-19 Akim Demaille <akim@epita.fr>
12748
12749 * src/LR0.c (new_state, get_state): Complete TRACE code.
12750 * src/closure.c: Include `reader.h' to get `tags', needed by the
12751 trace code.
12752 Rename the conditional DEBUG as TRACE.
12753 Output consistently TRACEs to stderr, not stdout.
12754 * src/derives.c: Likewise.
12755 * src/reduce.c: (inaccessable_symbols): Using if is better style
12756 than goto.
12757 Use `#if TRACE' instead of `#if 0' for tracing code.
12758
12759 2001-11-19 Akim Demaille <akim@epita.fr>
12760
12761 * src/system.h (LIST_FREE, shortcpy): New.
12762 * src/LR0.c: Use them.
12763 * src/output.c (free_itemsets, free_reductions, free_shifts):
12764 Remove, replaced by LIST_FREE.
12765
12766 2001-11-19 Akim Demaille <akim@epita.fr>
12767
12768 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
12769 (REDUCTIONS_ALLOC): New.
12770 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
12771 allocation.
12772
12773 2001-11-19 Akim Demaille <akim@epita.fr>
12774
12775 * src/LR0.c (new_state): Complete trace code.
12776 * src/nullable.c (set_nullable): Don't translate traces.
12777
12778 2001-11-19 Akim Demaille <akim@epita.fr>
12779
12780 * src/print_graph.c (print_core): Better locality of variables.
12781 * src/print.c (print_core): Likewise.
12782
12783 2001-11-19 Akim Demaille <akim@epita.fr>
12784
12785 * src/vcg.c: You do the output, so you are responsible of the
12786 handling of VCG syntax, in particular: use quotearg.
12787 * src/print_graph.c: Don't.
12788 (print_actions): Don't output the actions as part of the nodes,
12789 since that's the job of the edges.
12790 (print_state): Don't output by hand: fill the node description,
12791 and ask for its output.
12792
12793 2001-11-19 Akim Demaille <akim@epita.fr>
12794
12795 * src/bison.simple (yyparse): When verbosely reporting an error,
12796 no longer put additional quotes around token names.
12797 * tests/calc.at: Adjust.
12798
12799 2001-11-19 Akim Demaille <akim@epita.fr>
12800
12801 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
12802 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
12803 * src/output.c: Adjust.
12804
12805 2001-11-19 Akim Demaille <akim@epita.fr>
12806
12807 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
12808 (rule_t): this.
12809 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
12810
12811 2001-11-19 Akim Demaille <akim@epita.fr>
12812
12813 * src/gram.h (rule_t): New.
12814 (rule_table): New.
12815 (rrhs, rlhs): Remove, part of state_t.
12816 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
12817 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
12818 * src/reader.c, src/reduce.c: Adjust.
12819
12820 2001-11-19 Akim Demaille <akim@epita.fr>
12821
12822 * src/reader.c (symbols_output): New, extracted from...
12823 (packsymbols): Here.
12824 (reader): Call it.
12825
12826 2001-11-19 Akim Demaille <akim@epita.fr>
12827
12828 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
12829 (maxrhs): this new function.
12830
12831 2001-11-19 Akim Demaille <akim@epita.fr>
12832
12833 * src/lalr.c (F): New macro to access the variable F.
12834 Adjust.
12835
12836 2001-11-19 Akim Demaille <akim@epita.fr>
12837
12838 * src/lalr.h (LA): New macro to access the variable LA.
12839 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
12840 * src/lalr.c: Adjust.
12841
12842 2001-11-19 Akim Demaille <akim@epita.fr>
12843
12844 * src/lalr.c (initialize_LA): Only initialize LA. Let...
12845 (set_state_table): handle the `lookaheads' members.
12846
12847 2001-11-19 Akim Demaille <akim@epita.fr>
12848
12849 * src/lalr.h (lookaheads): Removed array, whose contents is now
12850 a member of...
12851 (state_t): this structure.
12852 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
12853 Adjust.
12854
12855 2001-11-19 Akim Demaille <akim@epita.fr>
12856
12857 * src/lalr.h (consistent): Removed array, whose contents is now
12858 a member of...
12859 (state_t): this structure.
12860 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
12861 Adjust.
12862
12863 2001-11-19 Akim Demaille <akim@epita.fr>
12864
12865 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
12866 contents are now members of...
12867 (state_t): this structure.
12868 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
12869 Adjust.
12870
12871 2001-11-19 Akim Demaille <akim@epita.fr>
12872
12873 * src/lalr.h (state_t): New.
12874 (state_table): Be a state_t * instead of a core **.
12875 (accessing_symbol): Remove, part of state_t.
12876 * src/lalr.c: Adjust.
12877 (set_accessing_symbol): Merge into...
12878 (set_state_table): this.
12879 * src/print_graph.c, src/conflicts.c: Adjust.
12880
12881 2001-11-14 Akim Demaille <akim@epita.fr>
12882
12883 * tests/calc.at, tests/output.at, tests/regression.at,
12884 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
12885 now the tests are run in private dirs, therefore AC_CLEANUP and
12886 family can be simplified to 0-ary.
12887 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
12888 use abs. path to find config.h.
12889 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
12890 stderr, there can be way too much random noise.
12891 Instead pass -Werror to GCC and rely on the exit status.
12892 Reported by Wolfram Wagner.
12893
12894 2001-11-14 Akim Demaille <akim@epita.fr>
12895
12896 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
12897 defined only if yyoverflow is defined, to avoid `warning: unused
12898 variable `yyvs1''.
12899 Reported by The Test Suite.
12900
12901 2001-11-14 Akim Demaille <akim@epita.fr>
12902
12903 * src/print.c: Include reduce.h.
12904 Reported by Hans Aberg.
12905
12906 2001-11-14 Akim Demaille <akim@epita.fr>
12907
12908 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
12909 Revert a previous patch: these are really const.
12910 * src/conflicts.c (conflict_report): Additional useless pair of
12911 braces to pacify GCC's warnings for `if () if () {} else {}'.
12912 * src/lex.c (parse_percent_token): Replace equal_offset with
12913 arg_offset.
12914 arg is const.
12915 Be sure to strdup `arg' when used, since there is no reason for
12916 token_buffer not to change.
12917
12918 2001-11-14 Akim Demaille <akim@epita.fr>
12919
12920 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
12921 definition.
12922 * src/main.c (main): Use them.
12923 Suggested by Hans Aberg.
12924
12925 2001-11-12 Akim Demaille <akim@epita.fr>
12926
12927 * src/system.h (ngettext): Now that we use ngettext, be sure to
12928 provide a default definition when NLS are not used.
12929
12930 2001-11-12 Akim Demaille <akim@epita.fr>
12931
12932 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
12933 Use @kbd to denote user input.
12934 (Language and Grammar): ANSIfy the example.
12935 Adjust its layout for info/notinfo.
12936 (Location Tracking Calc): Output error messages to stderr.
12937 Output locations in a more GNUtically correct way.
12938 Fix a couple of Englishos.
12939 Adjust @group/@end group pairs.
12940
12941 2001-11-12 Akim Demaille <akim@epita.fr>
12942
12943 %expect was not functioning at all.
12944
12945 * src/conflicts.c (expected_conflicts): Set to -1.
12946 (conflict_report): Use ngettext.
12947 (conflicts_print): Check %expect and make its violation an error.
12948 * doc/bison.texinfo (Expect Decl): Adjust.
12949 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
12950 * tests/regression.at (%expect not enough, %expect right)
12951 (%expect too much): New.
12952
12953 2001-11-12 Akim Demaille <akim@epita.fr>
12954
12955 * tests/regression.at (Conflicts): Rename as...
12956 (Unresolved SR Conflicts): this.
12957 (Solved SR Conflicts): New.
12958
12959 2001-11-12 Akim Demaille <akim@epita.fr>
12960
12961 * src/reduce.c (print_results): Rename as...
12962 (reduce_output): This.
12963 Output to OUT, passed as argument, instead of output_obstack.
12964 (dump_grammar): Likewise.
12965 (reduce_free): New.
12966 Also free V1.
12967 (reduce_grammar): No longer call reduce_output, since...
12968 * src/print.c (print_results): do it.
12969 * src/main.c (main): Call reduce_free;
12970
12971 2001-11-12 Akim Demaille <akim@epita.fr>
12972
12973 * src/conflicts.c (print_reductions): Accept OUT as argument.
12974 Output to it, not to output_obstack.
12975 * src/print.c (print_actions): Adjust.
12976
12977 2001-11-12 Akim Demaille <akim@epita.fr>
12978
12979 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
12980 the result instead of using...
12981 (src_total, rrc_total, src_count, rrc_count): Remove.
12982 (any_conflicts): Remove.
12983 (print_conflicts): Split into...
12984 (conflicts_print, conflicts_output): New.
12985 * src/conflicts.h: Adjust.
12986 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
12987 * src/print.c (print_grammar): Issue `\n' between two rules.
12988 * tests/regression.at (Conflicts): New.
12989 Reported by Tom Lane.
12990
12991 2001-11-12 Akim Demaille <akim@epita.fr>
12992
12993 * tests/regression.at (Invalid input): Remove, duplicate with
12994 ``Invalid input: 1''.
12995
12996 2001-11-12 Akim Demaille <akim@epita.fr>
12997
12998 * tests/torture.at (AT_DATA_STACK_TORTURE)
12999 (Exploding the Stack Size with Alloca)
13000 (Exploding the Stack Size with Malloc): New.
13001
13002 2001-11-12 Akim Demaille <akim@epita.fr>
13003
13004 * src/bison.simple (YYSTACK_REALLOC): New.
13005 (yyparse) [!yyoverflow]: Use it and free the old stack.
13006 Reported by Per Allansson.
13007
13008 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
13009
13010 * src/bison.simple: Define type yystype instead of YYSTYPE, and
13011 define CPP macro, which substitute YYSTYPE by yystype.
13012 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
13013 with yyltype/YYLTYPE. This allows inclusion of the generated
13014 header within the parser if the compiler, such as GGC, accepts
13015 multiple equivalent #defines.
13016 From Akim.
13017
13018 2001-11-05 Akim Demaille <akim@epita.fr>
13019
13020 * src/reader.c (symbols_output): New, extracted from...
13021 (packsymbols): here.
13022 (reader): Adjust.
13023
13024 2001-11-05 Akim Demaille <akim@epita.fr>
13025
13026 * src/lex.c (parse_percent_token): s/quotearg/quote/.
13027
13028 2001-11-05 Akim Demaille <akim@epita.fr>
13029
13030 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
13031 pattern.
13032
13033 2001-11-05 Akim Demaille <akim@epita.fr>
13034
13035 * src/options.h (struct option_table_struct): set_flags is void*.
13036 * src/options.c (longopts): Support `--output' and `%output'.
13037 (usage): Adjust.
13038 * src/lex.h (tok_setopt): Remove, replaced with...
13039 (tok_intopt, tok_stropt): these new guys.
13040 * src/lex.c (getopt.h): Not needed.
13041 (token_buffer, unlexed_token_buffer): Not const.
13042 (percent_table): Promote `-' over `_' in directive names.
13043 Active `%name-prefix', `file-prefix', and `output'.
13044 (parse_percent_token): Accept possible arguments to directives.
13045 Promote `-' over `_' in directive names.
13046
13047 2001-11-04 Akim Demaille <akim@epita.fr>
13048
13049 * doc/bison.texinfo (Decl Summary): Split the list into
13050 `directives for grammars' and `directives for bison'.
13051 Sort'em.
13052 Add description of `%name-prefix', `file-prefix', and `output'.
13053 Promote `-' over `_' in directive names.
13054 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
13055 Simplify the description of `--name-prefix'.
13056 Promote `-' over `_' in directive names.
13057 Promote `--output' over `--output-file'.
13058 Fix the description of `--defines'.
13059 * tests/output.at: Exercise %file-prefix and %output.
13060
13061 2001-11-02 Akim Demaille <akim@epita.fr>
13062
13063 * doc/refcard.tex: Update.
13064
13065 2001-11-02 Akim Demaille <akim@epita.fr>
13066
13067 * src/symtab.h (SUNDEF): New.
13068 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
13069 stand for `uninitialized', instead of 0.
13070 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
13071 * src/lex.c (lex): Adjust.
13072
13073 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
13074 Number it 0.
13075 Let yylex return it instead of a plain 0.
13076 Reported by Dick Streefland.
13077
13078 2001-11-02 Akim Demaille <akim@epita.fr>
13079
13080 * tests/regression.at (Mixing %token styles): New test.
13081
13082 2001-11-02 Akim Demaille <akim@epita.fr>
13083
13084 * src/reader.c (parse_thong_decl): Formatting changes.
13085 (token_translations_init): New, extracted from...
13086 (packsymbols): Here.
13087 Adjust.
13088
13089 2001-11-01 Akim Demaille <akim@epita.fr>
13090
13091 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
13092 Check that `9foo.y' produces correct cpp guards.
13093 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
13094 guards.
13095 Reported by Wwp.
13096
13097 2001-11-01 Akim Demaille <akim@epita.fr>
13098
13099 * tests/regression.at (Invalid input: 2): New.
13100 * src/lex.c (unlexed_token_buffer): New.
13101 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
13102 too.
13103 Reported by Wwp.
13104
13105 2001-11-01 Akim Demaille <akim@epita.fr>
13106
13107 * tests/calc.at: Catch up with 1.30.
13108 * configure.in: Bump to 1.49a.
13109 Adjust to newer Autotest.
13110
13111 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
13112
13113 * src/conflicts.c: Move global variables rrc_total and src_total ...
13114 (print_conflicts): here.
13115 * src/output.c (output): Free global variable user_toknums.
13116 * src/lex.c (token_obstack): Become static.
13117
13118 2001-10-18 Akim Demaille <akim@epita.fr>
13119
13120 * tests/atlocal.in (GCC): Add.
13121 * tests/calc.at: s/m4_match/m4_bmatch/.
13122 s/m4_patsubst/m4_bpatsubst/.
13123 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
13124 * configure.in: AC_SUBST(GCC).
13125
13126 2001-10-14 Marc Autret <autret_m@epita.fr>
13127
13128 * src/options.c (create_long_option_table): Fix.
13129
13130 2001-10-10 Akim Demaille <akim@epita.fr>
13131
13132 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
13133
13134 2001-10-04 Akim Demaille <akim@epita.fr>
13135
13136 * src/reader.c (parse_union_decl): Push the caracters in
13137 union_obstack, not attrs_obstack.
13138
13139 2001-10-04 Akim Demaille <akim@epita.fr>
13140
13141 Merge in the branch 1.29.
13142
13143 * src/reader.c (packsymbols): Use a temporary obstack for
13144 `%%tokendef', since output_stack is already used elsewhere.
13145
13146 2001-10-02 Akim Demaille <akim@epita.fr>
13147
13148 Bump 1.29d.
13149
13150 2001-10-02 Akim Demaille <akim@epita.fr>
13151
13152 Version 1.29c.
13153
13154 2001-10-02 Akim Demaille <akim@epita.fr>
13155
13156 * tests/regression.at (Invalid CPP headers): New.
13157 From Alexander Belopolsky.
13158 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
13159
13160 2001-10-02 Akim Demaille <akim@epita.fr>
13161
13162 * tests/regression.at (Invalid input): New.
13163 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
13164 Reported by Shura.
13165
13166 2001-10-02 Akim Demaille <akim@epita.fr>
13167
13168 * tests/calc.at: Now that --debug works, the tests must be adjusted.
13169
13170 2001-10-02 Akim Demaille <akim@epita.fr>
13171
13172 * src/output.c (output_parser): Assert `skeleton'.
13173 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
13174 systems.
13175 From Shura.
13176
13177 2001-10-01 Marc Autret <autret_m@epita.fr>
13178
13179 * src/lex.h: Echo modifications.
13180 * src/lex.c (unlex): Parameter is now token_t.
13181 From Hans Aberg.
13182
13183 2001-10-01 Marc Autret <autret_m@epita.fr>
13184
13185 * src/main.c: Include lex.h.
13186 From Hans Aberg.
13187
13188 2001-09-29 Akim Demaille <akim@epita.fr>
13189
13190 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
13191
13192 2001-09-28 Akim Demaille <akim@epita.fr>
13193
13194 * tests/testsuite.at: Update to newer Autotest.
13195 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
13196
13197 2001-09-27 Akim Demaille <akim@epita.fr>
13198
13199 Position independent wrapper.
13200
13201 * tests/bison: Remove.
13202 * tests/bison.in: New.
13203 * configure.in: Adjust.
13204
13205 2001-09-27 Paul Eggert <eggert@twinsun.com>
13206
13207 Port quotearg fixes from tar 1.13.24.
13208
13209 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
13210 tm to be declared.
13211 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
13212 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
13213
13214 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
13215 * m4/mbrtowc.m4: New file.
13216 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
13217 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
13218
13219 2001-09-27 Akim Demaille <akim@epita.fr>
13220
13221 Bump to 1.29c.
13222
13223 2001-09-27 Akim Demaille <akim@epita.fr>
13224
13225 Version 1.29b.
13226
13227 2001-09-25 Akim Demaille <akim@epita.fr>
13228
13229 * src/system.h: Include `xalloc.h'.
13230 Remove it from the C files.
13231 * src/files.c (output_files): Free the obstacks.
13232 * src/lex.c (init_lex): Rename as...
13233 (lex_init): this.
13234 (lex_free): New.
13235 * src/main.c (main): Use it.
13236
13237 2001-09-24 Marc Autret <autret_m@epita.fr>
13238
13239 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
13240 to output informations in fout (FILE*).
13241 (open_graph, close_graph): Likewise.
13242 (output_graph, output_edge, output_node): Likewise.
13243 * src/vcg.h: Update function prototypes.
13244 * src/print_graph.c (print_graph): Open output graph file.
13245 (print_actions): Adjust.
13246 * src/files.h: Remove extern declaration.
13247 * src/files.c: Remove graph_obstack declaration.
13248 (open_files): Remove graph_obstack initialization.
13249 (output_files): Remove graph_obstack saving.
13250
13251 2001-09-24 Marc Autret <autret_m@epita.fr>
13252
13253 * src/files.c (compute_output_file_names): Fix.
13254
13255 2001-09-24 Marc Autret <autret_m@epita.fr>,
13256 Akim Demaille <akim@epita.fr>
13257
13258 * src/reader.c (reader): Remove call to free_symtab ().
13259 * src/main.c (main): Call it here.
13260 Include symtab.h.
13261 * src/conflicts.c (initialize_conflicts): Rename as...
13262 (solve_conflicts): this.
13263 * src/print.c (print_core, print_actions, print_state)
13264 (print_grammar): Dump to a file instead a `output_obstack'.
13265 (print_results): Dump `output_obstack', and then proceed with the
13266 FILE *.
13267 * src/files.c (compute_output_file_names, close_files): New.
13268 (output_files): Adjust.
13269 * src/main.c (main): Adjust.
13270
13271 2001-09-23 Marc Autret <autret_m@epita.fr>
13272
13273 * src/files.c (compute_header_macro): Computes header macro name
13274 from spec_defines_file when given.
13275
13276 2001-09-23 Marc Autret <autret_m@epita.fr>
13277
13278 * src/files.c (output_files): Add default extensions.
13279
13280 2001-09-22 Akim Demaille <akim@epita.fr>
13281
13282 * src/conflicts.c (finalize_conflicts): Rename as...
13283 (free_conflicts): this.
13284
13285 2001-09-22 Akim Demaille <akim@epita.fr>
13286
13287 * src/gram.c (gram_free): Rename back as...
13288 (dummy): this.
13289 (output_token_translations): Free `token_translations'.
13290 * src/symtab.c (free_symtab): Free the tag field.
13291
13292 2001-09-22 Akim Demaille <akim@epita.fr>
13293
13294 Remove `translations' as it is always set to true.
13295
13296 * src/gram.h: Adjust.
13297 * src/reader.c (packsymbols, parse_token_decl): Adjust
13298 * src/print.c (print_grammar): Adjust.
13299 * src/output.c (output_token_translations): Adjust.
13300 * src/lex.c (lex): Adjust.
13301 * src/gram.c: Be sure the set pointers to NULL.
13302 (dummy): Rename as...
13303 (gram_free): this.
13304
13305 2001-09-22 Akim Demaille <akim@epita.fr>
13306
13307 * configure.in: Invoke AM_LIB_DMALLOC.
13308 * src/system.h: Use dmalloc.
13309 * src/LR0.c: Be sure to have pointers initialized to NULL.
13310 (allocate_itemsets): Allocate kernel_items only if needed.
13311
13312 2001-09-22 Akim Demaille <akim@epita.fr>
13313
13314 * configure.in: Bump to 1.29b.
13315 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
13316 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
13317 need xmalloc.c in calc.y.
13318 From Pascal Bart.
13319
13320 2001-09-21 Akim Demaille <akim@epita.fr>
13321
13322 Version 1.29a.
13323 * Makefile.maint, config/config.guess, config/config.sub,
13324 * config/missing: Update from masters.
13325 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
13326 upon package.m4.
13327 * configure.in (ALL_LINGUAS): Add `tr'.
13328
13329 2001-09-21 Akim Demaille <akim@epita.fr>
13330
13331 * tests/Makefile.am (package.m4): Move to...
13332 ($(srcdir)/$(TESTSUITE)): here.
13333
13334 2001-09-20 Akim Demaille <akim@epita.fr>
13335
13336 * src/complain.c: No longer try to be standalone: use system.h.
13337 Don't assume __STDC__ is defined to 1. Just test if it is defined.
13338 * src/complain.h: Likewise.
13339 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
13340 Remove the unused variable `n'.
13341 From Albert Chin-A-Young.
13342
13343 2001-09-18 Marc Autret <autret_m@epita.fr>
13344
13345 * doc/bison.1: Update.
13346 * doc/bison.texinfo (Bison Options): Update --defines and --graph
13347 descriptions.
13348 (Option Cross Key): Update.
13349 Add --graph.
13350
13351 2001-09-18 Marc Autret <autret_m@epita.fr>
13352
13353 * tests/regression.at: New test (comment in %union).
13354
13355 2001-09-18 Marc Autret <autret_m@epita.fr>
13356
13357 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
13358 do that.
13359 Reported by Keith Browne.
13360
13361 2001-09-18 Marc Autret <autret_m@epita.fr>
13362
13363 * tests/output.at: Add tests for --defines and --graph.
13364
13365 2001-09-18 Marc Autret <autret_m@epita.fr>
13366
13367 * tests/output.at: Removes tests of %{header,src}_extension features.
13368
13369 2001-09-18 Akim Demaille <akim@epita.fr>
13370
13371 * tests/Makefile.am (package.m4): New.
13372 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
13373 (_AT_CHECK_CALC_ERROR): Likewise.
13374 Factor the `, ' part of verbose error messages.
13375
13376 2001-09-18 Marc Autret <autret_m@epita.fr>
13377
13378 * src/getargs.c (longopts): Declare --defines and --graph as options
13379 with optional arguments.
13380 * src/files.h: Add extern declarations.
13381 * src/files.c (spec_graph_file, spec_defines_file): New.
13382 (output_files): Update.
13383 Remove CPP-outed code.
13384
13385 2001-09-18 Marc Autret <autret_m@epita.fr>
13386
13387 Turn off %{source,header}_extension feature.
13388
13389 * src/files.c (compute_exts_from_gf): Update.
13390 (compute_exts_from_src): Update.
13391 (output_files): CPP-out useless code.
13392 * src/files.h: Remove {header,source}_extension extern declarations.
13393 * src/reader.c (parse_dquoted_param): CPP-out.
13394 (parse_header_extension_decl): Remove.
13395 (parse_source_extension_decl): Remove.
13396 (read_declarations): Remove cases tok_{hdrext,srcext}.
13397 * src/lex.c (percent_table): Remove {header,source}_extension entries.
13398 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
13399
13400 2001-09-10 Akim Demaille <akim@epita.fr>
13401
13402 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
13403 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
13404 (AT_CHECK_OUTPUT): this.
13405 Merely check ls' exit status, its output is useless.
13406
13407 2001-09-10 Akim Demaille <akim@epita.fr>
13408
13409 * tests/calc.at: Use m4_match.
13410 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
13411
13412 2001-09-10 Marc Autret <autret_m@epita.fr>,
13413 Akim Demaille <akim@epita.fr>
13414
13415 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
13416 enum color_e.
13417 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
13418 to `normal'.
13419 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
13420 * src/lex.h: Adjust prototype.
13421 (token_t): Add `tok_undef'.
13422 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
13423 (parse_percent_token): Now returns token_t.
13424 Add default statement in switch.
13425 (lex): Separate `c' as an input variable, from the token_t result
13426 part.
13427 (unlexed): Is a token_t.
13428
13429 2001-09-10 Akim Demaille <akim@epita.fr>
13430
13431 * configure.in: Bump to 1.29a.
13432
13433 2001-09-07 Akim Demaille <akim@epita.fr>
13434
13435 Version 1.29.
13436
13437 2001-08-30 Akim Demaille <akim@epita.fr>
13438
13439 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
13440 * m4/atconfig.m4: Remove.
13441 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
13442 * tests/bison: New.
13443 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
13444 m4_if, m4_patsubst, and m4_regexp.
13445 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
13446 `input' file instead of echo.
13447
13448 2001-08-29 Akim Demaille <akim@epita.fr>
13449
13450 Bump to 1.28e.
13451
13452 2001-08-29 Akim Demaille <akim@epita.fr>
13453
13454 Version 1.28d.
13455
13456 2001-08-29 Paul Eggert <eggert@twinsun.com>
13457
13458 * src/bison.simple (yyparse): Don't take the address of an
13459 item before the start of an array, as that doesn't conform to
13460 the C Standard.
13461
13462 2001-08-29 Robert Anisko <anisko_r@epita.fr>
13463
13464 * doc/bison.texinfo (Location Tracking Calc): New node.
13465
13466 2001-08-29 Paul Eggert <eggert@twinsun.com>
13467
13468 * src/output.c (output): Do not define const, as this now
13469 causes more problems than it cures.
13470
13471 2001-08-29 Akim Demaille <akim@epita.fr>
13472
13473 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
13474 the nodes.
13475 Be sure to tag the `detailmenu'.
13476
13477 2001-08-29 Akim Demaille <akim@epita.fr>
13478
13479 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
13480 download in a tmp dir.
13481
13482 2001-08-28 Marc Autret <autret_m@epita.fr>
13483
13484 * config/depcomp: New file.
13485
13486 2001-08-28 Marc Autret <autret_m@epita.fr>
13487
13488 * doc/bison.1 (mandoc): Adjust.
13489 From Juan Manuel Guerrero.
13490
13491 2001-08-28 Marc Autret <autret_m@epita.fr>
13492
13493 * src/print_graph.c (print_state): Fix.
13494
13495 2001-08-27 Marc Autret <autret_m@epita.fr>
13496
13497 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
13498 char * members.
13499 Echo modifications to the functions prototypes.
13500 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
13501
13502 2001-08-27 Marc Autret <autret_m@epita.fr>
13503
13504 * src/vcg.c: Include `xalloc.h'.
13505 (add_colorentry): New.
13506 (add_classname): New.
13507 (add_infoname): New.
13508 * src/vcg.h: Add new prototypes.
13509
13510 2001-08-27 Akim Demaille <akim@epita.fr>
13511
13512 * Makefile.maint: Sync. again with CVS Autoconf.
13513
13514 2001-08-27 Akim Demaille <akim@epita.fr>
13515
13516 * Makefile.maint: Formatting changes.
13517 (po-update, cvs-update, update): New targets.
13518 (AMTAR): Remove.
13519
13520 2001-08-27 Akim Demaille <akim@epita.fr>
13521
13522 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
13523 * Makefile.maint: Sync. with CVS Autoconf.
13524
13525 2001-08-27 Marc Autret <autret_m@epita.fr>
13526
13527 * src/vcg.h (struct infoname_s): New.
13528 (struct colorentry_s): New.
13529 (graph_s): New fields {vertical,horizontal}_order in structure.
13530 Add `infoname' field.
13531 Add `colorentry' field;
13532 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
13533 (G_HORIZONTAL_ORDER): New.
13534 (G_INFONAME): New.
13535 (G_COLORENTRY): New.
13536 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
13537 Add output of `infoname'.
13538 Add output of `colorentry'.
13539
13540 2001-08-27 Marc Autret <autret_m@epita.fr>
13541
13542 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
13543 This one shadowed a global parameter.
13544
13545 2001-08-24 Marc Autret <autret_m@epita.fr>
13546
13547 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
13548 instead of `unsigned'.
13549 (print_state): Do not call obstack_object_size () in obstack_grow ()
13550 to avoid macro variables shadowing.
13551
13552 2001-08-23 Marc Autret <autret_m@epita.fr>
13553
13554 * src/lex.c (percent_table): Typo: s/naem/name/.
13555 Add graph option.
13556 Normalize new options declarations.
13557
13558 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
13559
13560 * tests/suite.at: Exercise %header_extension and %source_extension.
13561
13562 2001-08-16 Marc Autret <autret_m@epita.fr>
13563
13564 * src/reader.c (parse_dquoted_param): New.
13565 (parse_header_extension_decl): Use it.
13566 (parse_source_extension_decl): Likewise.
13567
13568 2001-08-16 Marc Autret <autret_m@epita.fr>
13569
13570 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
13571 (get_xxxx_str): Use assert () instead of complain ().
13572 Remove return invokations in default cases.
13573 (get_decision_str): Modify default behaviour. Remove second argument.
13574 Echo modifications on calls.
13575 (output_graph): Fix.
13576
13577 2001-08-16 Marc Autret <autret_m@epita.fr>
13578
13579 * src/getargs.c (usage): Update with ``-g, --graph''.
13580
13581 2001-08-16 Marc Autret <autret_m@epita.fr>
13582
13583 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
13584 (Option Cross Key): Likewise.
13585 * doc/bison.1: Update.
13586
13587 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
13588
13589 * src/output.c (output_master_parser): Don't finish action_obstack.
13590 (output_parser): Don't care about the muscle action, here.
13591 (prepare): Copy the action_obstack in the action muscle.
13592 (output): Free action_obstack.
13593
13594 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
13595
13596 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
13597 will contain `%union' declaration.
13598 (parse_union_decl): Delete #line directive output.
13599 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
13600 informations about %union.
13601 (parse_union_decl): Copy the union_obstack in the muscle stype.
13602 * src/bison.simple: Add new #line directive.
13603 Add typdef %%stype YYSTYPE.
13604
13605 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
13606
13607 * src/bison.simple: Add new `#line' directive.
13608
13609 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
13610
13611 * src/bison.simple: New `#line' directive.
13612 * src/output.c (output_parser): Support new dynamic muscle input_line.
13613
13614 2001-09-22 Marc Autret <autret_m@epita.fr>
13615
13616 * src/output.c (output_master_parser): New.
13617 (output_parser): Be more re-entrant.
13618
13619 2001-09-21 Marc Autret <autret_m@epita.fr>
13620
13621 * src/reader.c (copy_definition, parse_union_decl): Update and use
13622 `linef' muscle.
13623 (copy_action): Likewise.
13624 Use obstack_1grow ().
13625 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
13626
13627 2001-09-21 Marc Autret <autret_m@epita.fr>
13628
13629 * src/options.c (option_table): Adjust.
13630 * src/lex.c (parse_percent_token): Fix.
13631
13632 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
13633
13634 * src/options.c (symtab.h): Include it, need by lex.h.
13635
13636 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
13637
13638 * src/lex.c (parse_percent_token): Change type of variable `tx', which
13639 is now an option_table_struct*.
13640 (option_strcmp): New function option_strcmp.
13641 (parse_percent_token): Call option_strcmp.
13642 * src/getargs.c (xalloc.h, options.h): Include it.
13643 (getargs): Call create_long_option_table.
13644 (getargs): Free longopts at the end of the function.
13645 (shortopts): Move in options.c.
13646 * src/options.c (create_long_option_table): New function. Convert
13647 information from option_table to option structure.
13648 * src/reader.c (options.h): Include it.
13649
13650 * src/Makefile.am: Adjust.
13651 * src/options.c (option_table): Create from longopts and percent_table.
13652 * src/getargs.c (longopts): Delete.
13653 * src/lex.c (struct percent_table_struct): Delete.
13654 (percent_table): Delete.
13655 (options.h): Include it.
13656 * src/options.c: Create.
13657 * src/options.h: Create.
13658 Declare enum opt_access_e.
13659 Define struct option_table_struct.
13660
13661 2001-09-20 Marc Autret <autret_m@epita.fr>
13662
13663 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
13664 sections of Bison.
13665
13666 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
13667
13668 * src/bison.simple: s/%%filename/%%skeleton.
13669 * src/muscle_tab.c (getargs.h): Include it.
13670 (muscle_init): Insert new muscle skeleton.
13671
13672 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
13673
13674 * src/output.c (output_parser): Delete unused variable actions_dumped.
13675
13676 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
13677
13678 * src/output.c (output): Delete call to reader_output_yylsp.
13679 * src/reader.c (reader): Likewise.
13680 * src/reader.h: Delete declaration of reader_output_yylsp.
13681
13682 2001-09-02 Marc Autret <autret_m@epita.fr>
13683
13684 * src/reader.c: Include muscle_tab.h.
13685 (parse_union_decl): Update.
13686 (parse_macro_decl): Rename parse_muscle_decl.
13687 Update to use renamed functions and variable.
13688 (read_declarations, copy_action, read_additionnal_code, : Updated
13689 with correct variables and functions names.
13690 (packsymbols, reader): Likewise.
13691
13692 * src/reader.h (muscle_obstack): Extern declaration update.
13693
13694 * src/output.c: Include muscle_tab.h
13695 In all functions using macro_insert, change by using muscle_insert ().
13696 (macro_obstack): Rename muscle_obstack.
13697 Echo modifications in the whole file.
13698 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
13699 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
13700 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
13701
13702 * src/muscle_tab.h: Update double inclusion macros.
13703 (macro_entry_s): Rename muscle_entry_s.
13704 Update prototypes.
13705
13706 * src/muscle_tab.c: Include muscle_tab.h.
13707 Rename macro_tabble to muscle_table.
13708 (mhash1, mhash2, mcmp): Use muscle_entry.
13709 (macro_init): Rename muscle_init. Update.
13710 (macro_insert): Rename muscle_insert. Update.
13711 (macro_find): Rename muscle_find. Update.
13712
13713 * src/main.c: Include muscle_tab.h.
13714 (main): Call muscle_init ().
13715 * src/Makefile.am (bison_SOURCES): Echo modifications.
13716
13717 2001-09-02 Marc Autret <autret_m@epita.fr>
13718
13719 Now the files macro_tab.[ch] are named muscle_tab.[ch].
13720
13721 * src/muscle_tab.c, src/muscle_tab.h: Add files.
13722
13723 2001-09-02 Marc Autret <autret_m@epita.fr>
13724
13725 * src/macrotab.c, src/macrotab.h: Remove.
13726
13727 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
13728
13729 * src/reader.c (copy_guard): Use muscle to specify the `#line'
13730 filename.
13731
13732 2001-09-01 Marc Autret <autret_m@epita.fr>
13733
13734 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
13735 to an explicit value to activate the feature. We do it here.
13736
13737 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
13738
13739 * src/output.c (prepare): Delete the `filename' muscule insertion.
13740 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
13741 (parse_union_decl): Likewise.
13742 * src/macrotab.c (macro_init): Initialize filename by infile.
13743
13744 2001-08-31 Marc Autret <autret_m@epita.fr>
13745
13746 * src/bison.simple (YYLSP_NEEDED): New definition.
13747 * src/output.c (prepare): Add macro insertion of `locations_flag'
13748
13749 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
13750
13751 * src/output.c (prepare): Delete insertion of previous muscles,
13752 and insert the `prefix' muscles.
13753 * src/macrotab.c (macro_init): Likewise.
13754 (macro_init): Initialization prefix directive by `yy'.
13755 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
13756 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
13757 yylval, yydebug, yyerror, yynerrs and yyparse.
13758 New directive `#define' to substitute yydebug, ... with option
13759 name_prefix.
13760
13761 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
13762
13763 * src/main.c (main): Standardize.
13764 * src/output.c (output_table_data, output_parser): Likewise.
13765 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
13766
13767 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
13768
13769 * src/reader.c (read_additionnal_code): Rename %%user_code to
13770 %%epilogue.
13771 * src/output.c (output): Rename %%declarations to %%prologue.
13772 * src/bison.simple: Echo modifications.
13773
13774 2001-08-31 Marc Autret <autret_m@epita.fr>
13775
13776 * src/reader.c (readgram): CleanUp.
13777 (output_token_defines): Likewise.
13778 (packsymbols): Likewise.
13779 (reader): Likewise.
13780 * src/output.c (output): CPP-out useless code.
13781
13782 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
13783
13784 * src/reader.c (reader): Delete obsolete call to function
13785 output_trailers and output_headers.
13786 * src/output.h: Remove obsolete functions prototypes of output_headers
13787 and output_trailers.
13788
13789 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
13790
13791 * src/main.c: Include macrotab.h.
13792 * src/macrotab.h (macro_entry_s): Constify fields.
13793 Adjust functions prototypes.
13794 * src/macrotab.c (macro_insert): Constify key and value.
13795 (macro_find): Constify key.
13796 (macro_insert): Include 'xalloc.h'
13797 (macro_insert): Use XMALLOC.
13798 (macro_find): Constify return value.
13799 * src/output.c (output_table_data): Rename table to table_data.
13800 (output_parser): Constify macro_key, macro_value.
13801
13802 2001-08-30 Marc Autret <autret_m@epita.fr>
13803
13804 * src/reader.c (parse_skel_decl): New.
13805 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
13806 * src/lex.h (token_t): New token `tok_skel'.
13807 * src/lex.c (percent_table): Add skeleton option entry.
13808 Standardize.
13809
13810 2001-08-29 Marc Autret <autret_m@epita.fr>
13811
13812 * src/bison.simple: Add %%user_code directive at the end.
13813 * src/reader.c (read_additionnal_code): New.
13814 (reader): Use it.
13815 * src/output.c (output_program): Remove.
13816 (output): Update.
13817
13818 2001-08-28 Marc Autret <autret_m@epita.fr>
13819
13820 * src/output.c (output_actions): Clean up.
13821 (output_gram): CPP-out useless code.
13822 * src/reader.c (reader): Clean up, CPP-out useless code.
13823
13824 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
13825
13826 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
13827 directive.
13828 * src/bison.simple: Add `%%definitions'.
13829
13830 2001-08-28 Marc Autret <autret_m@epita.fr>
13831
13832 * config/depcomp: New file.
13833
13834 2001-08-27 Paul Eggert <eggert@twinsun.com>
13835
13836 * src/bison.simple (yyparse): Don't take the address of an
13837 item before the start of an array, as that doesn't conform to
13838 the C Standard.
13839
13840 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
13841
13842 * src/output.c (output): Remove the initialization of the macro
13843 obstack. It was done too late here.
13844
13845 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
13846 completely wrong.
13847 (reader): Initialize the macro obstack here, since we need it to grow
13848 '%define' directives.
13849
13850 * src/reader.h: Declare the macro obstack as extern.
13851
13852 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
13853
13854 * src/output.c (output_parser): Fix. Store single '%' characters in
13855 the output obstack instead of throwing them away.
13856
13857 2001-08-27 Akim Demaille <akim@epita.fr>
13858
13859 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
13860
13861 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13862
13863 * lib/Makefile.am: Adjust.
13864
13865 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13866
13867 * src/bison.simple: Update and add '%%' directives.
13868
13869 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13870
13871 * src/reader.c (reader): Remove calls to 'output_headers' and
13872 'output_trailers'. Remove some C output.
13873 (readgram): Disable a piece of code that was writing a default
13874 definition for 'YYSTYPE'.
13875 (reader_output_yylsp): Remove.
13876 (packsymbols): Output token defintions to a macro.
13877 (copy_definition): Disable C output.
13878
13879 * src/reader.c (parse_macro_decl): New function used to parse macro
13880 declarations.
13881 (copy_string2): Put the body of copy_string into this new function.
13882 Add a parameter to let the caller choose whether he wants to copy the
13883 string delimiters or not.
13884 (copy_string): Be a simple call to copy_string2 with the last argument
13885 bound to true.
13886 (read_declarations): Add case for macro definition.
13887 (copy_identifier): New.
13888 (parse_macro_decl): Read macro identifiers using copy_identifier
13889 rather than lex.
13890
13891 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13892
13893 * src/output.c (prepare): Add prefixed names.
13894 (output_parser): Output semantic actions.
13895 (output_parser): Fix bug on '%%line' directives.
13896
13897 * src/output.c (output_headers): Remove. The C code printed by this
13898 function should now be in the skeletons.
13899 (output_trailers): Remove.
13900 (output): Disable call to 'reader_output_yylsp'.
13901 (output_rule_data): Do not output tables to the table obstack.
13902
13903 * src/output.c: Remove some C dedicated output.
13904 Improve the use of macro and output obstacks.
13905 (output_defines): Remove.
13906
13907 * src/output.c (output_token_translations): Associate 'translate'
13908 table with a macro. No output to the table obstack.
13909 (output_gram): Same for 'rhs' and 'prhs'.
13910 (output_stos): Same for 'stos'.
13911 (output_rule_data): Same for 'r1' and 'r2'.
13912 (token_actions): Same for 'defact'.
13913 (goto_actions): Same for 'defgoto'.
13914 (output_base): Same for 'pact' and 'pgoto'.
13915 (output_table): Same for 'table'.
13916 (output_check): Same for 'check'.
13917
13918 * src/output.c (output_table_data): New function.
13919 (output_short_table): Remove.
13920 (output_short_or_char_table): Remove.
13921
13922 * src/output.c (output_parser): Replace most of the skeleton copy code
13923 with something new. Skeletons are now processed character by character
13924 rather than line by line, and Bison looks for '%%' macros. This is the
13925 first step in making Bison's output process (a lot) more flexible.
13926 (output_parser): Use the macro table.
13927
13928 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13929
13930 * src/main.c (main): Initialize the macro table.
13931
13932 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13933
13934 * src/lex.c (percent_table): Add tok_define.
13935 * src/lex.h: Add tok_define.
13936
13937 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13938
13939 * src/macrotab.c: New file.
13940 * src/macrotab.h: New file.
13941 * src/Makefile.am: Update.
13942
13943 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
13944
13945 * lib/hash.c: New file.
13946 * lib/hash.h: New file.
13947 * lib/Makefile.am: Update.
13948
13949 2001-08-15 Akim Demaille <akim@epita.fr>
13950
13951 Version 1.28c.
13952
13953 2001-08-15 Marc Autret <autret_m@epita.fr>
13954
13955 * src/reader.c (readgram): Indent output macro YYSTYPE.
13956 (packsymbols): Likewise.
13957 (output_token_defines): Likewise.
13958 * src/files.c: Standardize.
13959 (compute_header_macro): New.
13960 (defines_obstack_save): New. Use compute_header_macro.
13961 (output_files): Update. Use defines_obstack_save.
13962
13963 2001-08-15 Akim Demaille <akim@epita.fr>
13964
13965 * doc/bison.texinfo (Table of Symbols): Document
13966 YYSTACK_USE_ALLOCA.
13967
13968 2001-08-15 Akim Demaille <akim@epita.fr>
13969
13970 * missing: Update from CVS Automake.
13971 * config/config.guess, config/config.sub, config/texinfo.tex:
13972 Update from gnu.org.
13973
13974 2001-08-15 Akim Demaille <akim@epita.fr>
13975
13976 * Makefile.maint: Sync with CVS Autoconf.
13977
13978 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
13979
13980 * doc/bison.texinfo: Include GNU Free Documentation License from
13981 `fdl.texi'.
13982 * doc/fdl.texi: Add to package.
13983
13984 2001-08-14 Marc Autret <autret_m@epita.fr>
13985
13986 Turn on %{source,header}_extension features.
13987
13988 * src/lex.c (percent_table): Un-CPP out header_extension and
13989 source_extension.
13990 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
13991 (compute_exts_from_src): Remove conditions. It restores priorities
13992 between options.
13993
13994 2001-08-14 Marc Autret <autret_m@epita.fr>
13995
13996 * src/files.c (compute_base_names): Add extensions computing when
13997 `--file-prefix' used.
13998 Standardize function calls.
13999
14000 2001-08-13 Marc Autret <autret_m@epita.fr>
14001
14002 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
14003 defining it (defined but null disables alloca).
14004
14005 2001-08-13 Marc Autret <autret_m@epita.fr>
14006
14007 * src/bison.simple (_yy_memcpy): CPP reformat.
14008
14009 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
14010
14011 * tests/atconfig.in (CPPFLAGS): Fix.
14012
14013 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
14014
14015 * doc/bison.texinfo: Include GNU General Public License from
14016 `gpl.texi'.
14017 * doc/gpl.texi: Add to package.
14018
14019 2001-08-10 Marc Autret <autret_m@epita.fr>
14020
14021 * src/print_graph.h: Fix.
14022 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
14023
14024 2001-08-10 Akim Demaille <akim@epita.fr>
14025
14026 * src/system.h: Provide default declarations for stpcpy, strndup,
14027 and strnlen.
14028
14029 2001-08-10 Robert Anisko <anisko_r@epita.fr>
14030
14031 * doc/bison.texinfo (Locations): Update @$ stuff.
14032
14033 2001-08-09 Robert Anisko <anisko_r@epita.fr>
14034
14035 * src/bison.simple (YYLLOC_DEFAULT): Update.
14036 (yyparse): Adjust.
14037
14038 2001-08-08 Marc Autret <autret_m@epita.fr>
14039
14040 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
14041 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
14042 Reported by Fabrice Bauzac.
14043
14044 2001-08-08 Marc Autret <autret_m@epita.fr>
14045
14046 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
14047 * src/vcg.c (output_node): Fix.
14048 * src/vcg.h: Cleanup.
14049 * src/print_graph.c: Add comments.
14050 (node_output_size): New global variable. Simplify the formatting of
14051 the VCG graph output.
14052 (print_actions): Unused code is now used. It notifies the final state
14053 and no action states in the VCG graph. It also give the reduce actions.
14054 The `shift and goto' edges are red and the `go to state' edges are
14055 blue.
14056 Get the current node name and node_obstack by argument.
14057 (node_obstack): New variable.
14058 (print_state): Manage node_obstack.
14059 (print_core): Use node_obstack given by argument.
14060 A node is not only computed here but in print_actions also.
14061 (print_graph): CPP out useless code instead of commenting it.
14062
14063 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
14064
14065 * tests/atconfig.in (CPPFLAGS): Fix.
14066
14067 2001-08-07 Akim Demaille <akim@epita.fr>
14068
14069 * src/print_graph.c (quote): New.
14070 (print_core): Use it.
14071
14072 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
14073
14074 * src/vcg.c (complain.h): Include it.
14075 Unepitaize `return' invocations.
14076 [NDEBUG] (main): Remove.
14077 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
14078 * src/files.c (open_files): Initialize graph_obstack.
14079 * src/print_graph.c (print_actions): CPP out useless code.
14080 (print_core): Don't output the last `\n' in labels.
14081 Use `quote'.
14082 * src/files.c (output_files): Output the VCG file.
14083 * src/main.c (main): Invoke print_graph ();
14084
14085 2001-08-06 Marc Autret <autret_m@epita.fr>
14086
14087 Automaton VCG graph output.
14088 Using option ``-g'' or long option ``--graph'', you can generate
14089 a gram_filename.vcg file containing a VCG description of the LALR (1)
14090 automaton of your grammar.
14091
14092 * src/main.c: Call to print_graph() function.
14093 * src/getargs.h: Update.
14094 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
14095 (graph_flag): New flag.
14096 (longopts): Update.
14097 (getargs): Add case `g'.
14098 * src/files.c (graph_obstack): New obstack struct.
14099 (open_files): Initialize new obstack.
14100 (output_files): Saves graph_obstack if required.
14101 * src/files.h (graph_obstack): New extern declaration.
14102 * src/Makefile.am: Add new source files.
14103
14104 2001-08-06 Marc Autret <autret_m@epita.fr>
14105
14106 * src/print_graph.c, src/print_graph.h (graph): New.
14107 * src/vcg.h: New file.
14108 * src/vcg.c: New file, VCG graph handling.
14109
14110 2001-08-06 Marc Autret <autret_m@epita.fr>
14111
14112 Add of %source_extension and %header_extension which specify
14113 the source or/and the header output file extension.
14114
14115 * src/files.c (compute_base_names): Remove initialisation of
14116 src_extension and header_extension.
14117 (compute_exts_from_gf): Update.
14118 (compute_exts_from_src): Update.
14119 (output_files): Update.
14120 * src/reader.c (parse_header_extension_decl): New.
14121 (parse_source_extension_decl): New.
14122 (read_declarations): New case statements for the new tokens.
14123 * src/lex.c (percent_table): Add entries for %source_extension
14124 and %header_extension.
14125 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
14126
14127 2001-08-06 Marc Autret <autret_m@epita.fr>
14128
14129 * configure.in: Bump to 1.28c.
14130 * doc/bison.texinfo: Texinfo thingies.
14131
14132 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
14133
14134 * tests/atconfig.in (CPPFLAGS): Add.
14135 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
14136
14137 2001-08-03 Akim Demaille <akim@epita.fr>
14138
14139 Version 1.28b.
14140
14141 2001-08-03 Akim Demaille <akim@epita.fr>
14142
14143 * tests/Makefile.am (check-local): Ship testsuite.
14144 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
14145 Include `string.h'.
14146
14147 2001-08-03 Akim Demaille <akim@epita.fr>
14148
14149 * configure.in: Try using -Wformat when compiling.
14150
14151 2001-08-03 Akim Demaille <akim@epita.fr>
14152
14153 * configure.in: Bump to 1.28b.
14154
14155 2001-08-03 Akim Demaille <akim@epita.fr>
14156
14157 * src/complain.c: Adjust strerror_r portability issues.
14158
14159 2001-08-03 Akim Demaille <akim@epita.fr>
14160
14161 Version 1.28a.
14162
14163 2001-08-03 Akim Demaille <akim@epita.fr>
14164
14165 * src/getargs.c, src/getarg.h (skeleton)): Constify.
14166 * src/lex.c (literalchar): Avoid name clashes on `buf'.
14167 * src/getargs.c: Include complain.h.
14168 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
14169 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
14170
14171 2001-08-03 Akim Demaille <akim@epita.fr>
14172
14173 * src/reader.c (readgram): Display hidden chars in error messages.
14174
14175 2001-08-03 Akim Demaille <akim@epita.fr>
14176
14177 Update to gettext 0.10.39.
14178
14179 2001-08-03 Akim Demaille <akim@epita.fr>
14180
14181 * lib/strspn.c: New.
14182
14183 2001-08-01 Marc Autret <autret_m@epita.fr>
14184
14185 * doc/bison.texinfo: Update.
14186 * doc/bison.1 (mandoc): Update.
14187 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
14188 * src/files.c: Support output files extensions computing.
14189 (src_extension): New static variable.
14190 (header_extension): New static variable.
14191 (tr): New function.
14192 (get_extension_index): New function, gets the index of an extension
14193 filename in a string.
14194 (compute_exts_from_gf): New function, computes extensions from the
14195 grammar file extension.
14196 (compute_exts_from_src): New functions, computes extensions from the
14197 C source file extension, file given by ``-o'' option.
14198 (compute_base_names): Update.
14199 (output_files): Update.
14200
14201 2001-08-01 Robert Anisko <anisko_r@epita.fr>
14202
14203 * doc/bison.texi: Document @$.
14204 (Locations): New section.
14205
14206 2001-07-18 Akim Demaille <akim@epita.fr>
14207
14208 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
14209 * config/prev-version.txt, config/move-if-change: New.
14210 * Makefile.am: Adjust.
14211
14212 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
14213
14214 * src/bison.simple (yyparse): Suppress warning `comparaison
14215 between signed and unsigned'.
14216
14217 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
14218
14219 * src/getargs.h (raw_flag): Remove.
14220 * src/getargs.c: Die on `-r'/`--raw'.
14221 * src/lex.c (parse_percent_token): Die on `%raw'.
14222 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
14223 * tests/calc.at: Suppress test with option `--raw'.
14224
14225 2001-07-14 Akim Demaille <akim@epita.fr>
14226
14227 * config/: New.
14228 * configure.in: Require Autoconf 2.50.
14229 Update to gettext 0.10.38.
14230
14231 2001-03-16 Akim Demaille <akim@epita.fr>
14232
14233 * doc/bison.texinfo: ANSIfy the examples.
14234
14235 2001-03-16 Akim Demaille <akim@epita.fr>
14236
14237 * getargs.c (skeleton): New variable.
14238 (longopts): --skeleton is a new option.
14239 (shortopts, getargs): -S is a new option.
14240 * getargs.h: Declare skeleton.
14241 * output.c (output_parser): Use it.
14242
14243 2001-03-16 Akim Demaille <akim@epita.fr>
14244
14245 * m4/strerror_r.m4: New.
14246 * m4/error.m4: Run AC_FUNC_STRERROR_R.
14247 * lib/error.h, lib/error.c: Update.
14248
14249 2001-03-16 Akim Demaille <akim@epita.fr>
14250
14251 * src/getargs.c (longopts): Clean up.
14252
14253 2001-02-21 Akim Demaille <akim@epita.fr>
14254
14255 * src/reader.c (gensym): `gensym_count' is your own.
14256 Use a static buf to create the symbol name, as token_buffer is no
14257 longer a buffer.
14258
14259 2001-02-08 Akim Demaille <akim@epita.fr>
14260
14261 * src/conflicts.c (conflict_report): Be sure not to append to res
14262 between two calls, which could happen if both first sprintf were
14263 skipped, but not the first cp += strlen.
14264
14265 2001-02-08 Akim Demaille <akim@epita.fr>
14266
14267 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
14268 New, from fileutils 4.0.37.
14269 * configure.in: Require Autoconf 2.49c. I took some time before
14270 making this decision. This is the only way out for portability
14271 issues in Bison, it would mean way too much duplicate effort to
14272 import in Bison features implemented in 2.49c since 2.13.
14273 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
14274
14275 2001-02-02 Akim Demaille <akim@epita.fr>
14276
14277 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
14278 * lib/xalloc.h, lib/xmalloc.c: Update.
14279
14280 2001-01-19 Akim Demaille <akim@epita.fr>
14281
14282 Get rid of the ad hoc handling of token_buffer in the scanner: use
14283 the obstacks.
14284
14285 * src/lex.c (token_obstack): New.
14286 (init_lex): Initialize it. No longer call...
14287 (grow_token_buffer): this. Remove it.
14288 Adjust all the places which used it to use the obstack.
14289
14290 2001-01-19 Akim Demaille <akim@epita.fr>
14291
14292 * src/lex.h: Rename all the tokens:
14293 s/\bENDFILE\b/tok_eof/g;
14294 s/\bIDENTIFIER\b/tok_identifier/g;
14295 etc.
14296 Let them be enums, not #define, to ease debugging.
14297 Adjust all the code.
14298
14299 2001-01-18 Akim Demaille <akim@epita.fr>
14300
14301 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
14302 * src/lex.c (maxtoken, grow_token_buffer): Static.
14303
14304 2001-01-18 Akim Demaille <akim@epita.fr>
14305
14306 Since we now use obstacks, more % directives can be enabled.
14307
14308 * src/lex.c (percent_table): Also accept `%yacc',
14309 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
14310 `%debug'.
14311 Handle the actions for `%semantic_parser' and `%pure_parser' here,
14312 instead of returning a token.
14313 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
14314 * src/reader.c (read_declarations): Adjust.
14315 * src/files.c (open_files): Don't call `compute_base_names', don't
14316 compute `attrsfile' since they depend upon data which might be
14317 *in* the input file now.
14318 (output_files): Do it here.
14319 * src/output.c (output_headers): Document the fact that this patch
14320 introduces a guaranteed SEGV for semantic parsers.
14321 * doc/bison.texinfo: Document them.
14322 * tests/suite.at: Exercise these %options.
14323
14324 2000-12-20 Akim Demaille <akim@epita.fr>
14325
14326 Also handle the output file (--verbose) with obstacks.
14327
14328 * files.c (foutput): Remove.
14329 (output_obstack): New.
14330 Adjust all dependencies.
14331 * src/conflicts.c: Return a string.
14332 * src/system.h (obstack_grow_string): Rename as...
14333 (obstack_sgrow): this. Be ready to work with non literals.
14334 (obstack_fgrow4): New.
14335
14336 2000-12-20 Akim Demaille <akim@epita.fr>
14337
14338 * src/files.c (open_files): Fix the computation of short_base_name
14339 in the case of `-o foo.tab.c'.
14340
14341 2000-12-20 Akim Demaille <akim@epita.fr>
14342
14343 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
14344 (copy_dollar): Now that everything uses obstacks, get rid of the
14345 FILE * parameters.
14346
14347 2000-12-20 Akim Demaille <akim@epita.fr>
14348
14349 * src/files.c (open_files): Actually the `.output' file is based
14350 on the short_base_name, not base_name.
14351 * tests/suite.at (Checking output file names): Adjust.
14352
14353 2000-12-20 Akim Demaille <akim@epita.fr>
14354
14355 * src/bison.s1: Remove, we now use directly...
14356 * src/bison.simple: this.
14357 * src/Makefile.am: Use pkgdata instead of data.
14358
14359 2000-12-20 Akim Demaille <akim@epita.fr>
14360
14361 * src/files.c (guard_obstack): New.
14362 (open_files): Initialize it.
14363 (output_files): Dump it...
14364 * src/files.h: Export it.
14365 * src/reader.c (copy_guard): Use it.
14366
14367 2000-12-19 Akim Demaille <akim@epita.fr>
14368
14369 * src/files.c (outfile, defsfile, actfile): Removed as global
14370 vars.
14371 (open_files): Don't compute them.
14372 (output_files): Adjust.
14373 (base_name, short_base_name): Be global.
14374 Adjust dependencies.
14375
14376 2000-12-19 Akim Demaille <akim@epita.fr>
14377
14378 * src/files.c (strsuffix): New.
14379 (stringappend): Be just like strcat but allocate.
14380 (base_names): Eve out from open_files.
14381 Try to simplify the rather hairy computation of base_name and
14382 short_base_name.
14383 (open_files): Use it.
14384 * tests/suite.at (Checking output file names): New test.
14385
14386 2000-12-19 Akim Demaille <akim@epita.fr>
14387
14388 * src/system.h (obstack_grow_literal_string): Rename as...
14389 (obstack_grow_string): this.
14390 * src/output.c (output_parser): Recognize `%% actions' instead of
14391 `$'.
14392 * src/bison.s1: s/$/%% actions/.
14393 * src/bison.hairy: Likewise.
14394
14395 2000-12-19 Akim Demaille <akim@epita.fr>
14396
14397 * src/output.c (output_parser): Compute the `#line' lines when
14398 there are.
14399 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
14400 Suggested by Hans Aberg.
14401
14402 2000-12-19 Akim Demaille <akim@epita.fr>
14403
14404 Let the handling of the skeleton files be local to the procedures
14405 that use it.
14406
14407 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
14408 longer static.
14409 (fparser, open_extra_files): Remove.
14410 (open_files, output_files): Don't take care of fparser.
14411 * src/files.h: Adjust.
14412 * src/output.c (output_parser): Open and close the file to the
14413 skeleton.
14414 * src/reader.c (read_declarations): When %semantic_parser, open
14415 fguard.
14416
14417 2000-12-19 Akim Demaille <akim@epita.fr>
14418
14419 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
14420 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
14421
14422 2000-12-19 Akim Demaille <akim@epita.fr>
14423
14424 * src/files.c (open_files): Yipee! We no longer need all the code
14425 looking for `/tmp' since we have no tmp file.
14426
14427 2000-12-19 Akim Demaille <akim@epita.fr>
14428
14429 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
14430 New macros.
14431 * src/files.c (open_files): Less dependency on MSDOS etc.
14432
14433 2000-12-14 Akim Demaille <akim@epita.fr>
14434
14435 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
14436 Provide a default definition.
14437 Use it when executing the default @ action.
14438 * src/reader.c (reader_output_yylsp): No longer include
14439 `timestamp' and `text' in the default YYLTYPE.
14440
14441 2000-12-12 Akim Demaille <akim@epita.fr>
14442
14443 * src/reader.c (copy_definition, parse_union_decl, copy_action)
14444 (copy_guard): Quote the file names.
14445 Reported by Laurent Mascherpa.
14446
14447 2000-12-12 Akim Demaille <akim@epita.fr>
14448
14449 * src/output.c (output_headers, output_program, output): Be sure
14450 to escape special characters when outputting filenames.
14451 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
14452 (output_headers): Don't depend on them, Use ACTSTR.
14453
14454 2000-11-17 Akim Demaille <akim@epita.fr>
14455
14456 * lib/obstack.h: Formatting changes.
14457 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
14458 prevents type checking.
14459 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
14460 cast the value to (void *): assigning a `foo *' to a `void *'
14461 variable is valid.
14462 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
14463 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
14464 append characters.
14465
14466 2000-11-17 Akim Demaille <akim@epita.fr>
14467
14468 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
14469 as...
14470 (suite.m4, regression.m4, calc.m4): these.
14471 * tests/atgeneral.m4: Update from CVS Autoconf.
14472
14473 2000-11-17 Akim Demaille <akim@epita.fr>
14474
14475 * tests/regression.m4 (%union and --defines): New test,
14476 demonstrating a current bug in the obstack implementation.
14477
14478 2000-11-17 Akim Demaille <akim@epita.fr>
14479
14480 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
14481 macros.
14482 Use them to declare the variables which are global or local to
14483 `yyparse'.
14484
14485 2000-11-17 Akim Demaille <akim@epita.fr>
14486
14487 * acconfig.h: Remove, no longer used.
14488
14489 2000-11-07 Akim Demaille <akim@epita.fr>
14490
14491 * src: s/Copyright (C)/Copyright/g.
14492
14493 2000-11-07 Akim Demaille <akim@epita.fr>
14494
14495 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
14496 defining.
14497 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
14498
14499 2000-11-07 Akim Demaille <akim@epita.fr>
14500
14501 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
14502 Merge in a single CPP if/else.
14503
14504 2000-11-07 Akim Demaille <akim@epita.fr>
14505
14506 * src/output.c (output): Remove useless variables.
14507 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
14508 argument `data' for consistency with the prototypes.
14509 Qualify it `const'.
14510 (obstack_copy, obstack_copy0): Rename the second argument as
14511 `address' for consistency. Qualify it `const'.
14512 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
14513 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
14514 `const' their input argument (`data' or `address').
14515 Adjust the corresponding macros to include `const' in casts.
14516
14517 2000-11-03 Akim Demaille <akim@epita.fr>
14518
14519 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
14520 s/PFILE1/BISON_HAIRY/.
14521 Adjust dependencies.
14522
14523 2000-11-03 Akim Demaille <akim@epita.fr>
14524
14525 For some reason, this was not applied.
14526
14527 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
14528 `unlink': it's no longer used.
14529
14530 2000-11-03 Akim Demaille <akim@epita.fr>
14531
14532 * src/files.c (skeleton_find): New function, eved out of...
14533 (open_files, open_extra_files): here.
14534
14535 2000-11-03 Akim Demaille <akim@epita.fr>
14536
14537 Don't use `atexit'.
14538
14539 * src/files.c (obstack_save): New function.
14540 (done): Rename as...
14541 (output_files): this.
14542 Use `obstack_save'.
14543 * src/main.c (main): Don't use `atexit' to register `done', since
14544 it no longer has to remove tmp files, just call `output_files'
14545 when there are no errors.
14546
14547 2000-11-02 Akim Demaille <akim@epita.fr>
14548
14549 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
14550 `unlink': it's no longer used.
14551 * src/files.h: Formatting changes.
14552
14553 2000-11-02 Akim Demaille <akim@epita.fr>
14554
14555 Remove the last uses of mktemp and unlink/delete.
14556
14557 * src/files.c (fdefines, ftable): Removed.
14558 (defines_ostack, table_obstack): New.
14559 Adjust dependencies of the former into uses of the latter.
14560 * src/output.c (output_short_or_char_table, output_short_table):
14561 Convert to using obstacks.
14562 * src/reader.c (copy_comment2): Accept one FILE * and two
14563 obstacks.
14564 (output_token_defines, reader_output_yylsp): Use obstacks.
14565 * src/system.h (obstack_fgrow3): New.
14566 * po/POTFILES.in: Adjust.
14567
14568 2000-11-01 Akim Demaille <akim@epita.fr>
14569
14570 Change each use of `fattrs' into a use of `attrs_obstack'.
14571
14572 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
14573 * src/files.c (fattrs): Remove.
14574 (attrs_obstack): New.
14575 Adjust all dependencies.
14576 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
14577
14578 2000-11-01 Akim Demaille <akim@epita.fr>
14579
14580 Introduce obstacks.
14581 Change each use of `faction' into a use of `action_obstack'.
14582
14583 * lib/obstack.h, lib/obstack.c: New files.
14584 * src/files.c (faction): Remove.
14585 (action_obstack): New.
14586 Adjust all dependencies.
14587
14588 2000-10-20 Akim Demaille <akim@epita.fr>
14589
14590 * lib/quote.h (PARAMS): New macro. Use it.
14591
14592 2000-10-16 Akim Demaille <akim@epita.fr>
14593
14594 * src/output.c (output_short_or_char_table): New function.
14595 (output_short_table, output_token_translations): Use it.
14596 (goto_actions): Use output_short_table.
14597
14598 2000-10-16 Akim Demaille <akim@epita.fr>
14599
14600 * src/symtab.c (bucket_new): New function.
14601 (getsym): Use it.
14602
14603 * src/output.c (output_short_table): New argument to display the
14604 comment associated with the table.
14605 Adjust dependencies.
14606 (output_gram): Use it.
14607 (output_rule_data): Nicer output layout for YYTNAME.
14608
14609 2000-10-16 Akim Demaille <akim@epita.fr>
14610
14611 * src/lex.c (read_typename): New function.
14612 (lex): Use it.
14613 * src/reader.c (copy_dollar): Likewise.
14614
14615 2000-10-16 Akim Demaille <akim@epita.fr>
14616
14617 * src/reader.c (copy_comment2): Expect the input stream to be on
14618 the `/' which is suspected to open a comment, instead of being
14619 called after `//' or `/*' was read.
14620 (copy_comment, copy_definition, parse_union_decl, copy_action)
14621 (copy_guard): Adjust.
14622
14623 2000-10-16 Akim Demaille <akim@epita.fr>
14624
14625 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
14626 `read_signed_integer'.
14627
14628 2000-10-16 Akim Demaille <akim@epita.fr>
14629
14630 * src/reader.c (copy_dollar): New function.
14631 (copy_guard, copy_action): Use it.
14632
14633 2000-10-16 Akim Demaille <akim@epita.fr>
14634
14635 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
14636 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
14637 New files, from Fileutils 4.0.27.
14638 * src/main.c (printable_version): Remove.
14639 * src/lex.c, src/reader.c: Use `quote'.
14640
14641 2000-10-04 Akim Demaille <akim@epita.fr>
14642
14643 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
14644
14645 2000-10-04 Akim Demaille <akim@epita.fr>
14646
14647 * doc/bison.texinfo: Various typos spotted by Neil Booth.
14648
14649 2000-10-04 Akim Demaille <akim@epita.fr>
14650
14651 When a literal string is used to define two different tokens,
14652 `bison -v' segfaults.
14653 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
14654
14655 * tests/regression.m4: New file.
14656 Include the core of the sample provided by Piotr Gackiewicz.
14657 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
14658 properly.
14659
14660 2000-10-04 Akim Demaille <akim@epita.fr>
14661
14662 * src/reader.c (parse_expect_decl): Keep `count' within the size
14663 of `buffer'.
14664 From Neil Booth.
14665
14666 2000-10-02 Paul Eggert <eggert@twinsun.com>
14667
14668 * bison.s1 (yyparse): Assign the default value
14669 unconditionally, to avoid a GCC warning and make the parser a
14670 tad smaller.
14671
14672 2000-10-02 Akim Demaille <akim@epita.fr>
14673
14674 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
14675 options.
14676
14677 2000-10-02 Akim Demaille <akim@epita.fr>
14678
14679 * src/derives.c, src/print.c, src/reduce.c: To ease the
14680 translation, move some `\n' out of the translated strings.
14681
14682 2000-10-02 Akim Demaille <akim@epita.fr>
14683
14684 The location tracking mechanism is precious for parse error
14685 messages. Nevertheless, it is enabled only when `@n' is used in
14686 the grammar, which is a different issue (you can use it in error
14687 message, but not in the grammar per se). Therefore, there should
14688 be another means to enable it.
14689
14690 * src/getargs.c (getargs): Support `--locations'.
14691 (usage): Report it.
14692 * src/getargs.h (locationsflag): Export it.
14693 * src/lex.c (percent_table): Support `%locations'.
14694 * src/reader.c (yylsp_needed): Remove this variable, now replaced
14695 with `locationsflag'.
14696 * doc/bison.texinfo: Document `--locations' and `%locations'.
14697 Sort the options.
14698 * tests/calc.m4: Test it.
14699
14700 For regularity of the names, replace each
14701 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
14702 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
14703 In addition replace each `flag' with `_flag'.
14704
14705 2000-10-02 Akim Demaille <akim@epita.fr>
14706
14707 Also test parse error messages, including with YYERROR_VERBOSE.
14708
14709 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
14710 associative).
14711 Use it to check the computations.
14712 Use it to check `nonassoc' is honored.
14713 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
14714 `--yyerror-verbose'.
14715 (_AT_CHECK_CALC): Adjust to this option.
14716 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
14717
14718 2000-10-02 Akim Demaille <akim@epita.fr>
14719
14720 Test also `--verbose', `--defines' and `--name-prefix'. Testing
14721 the latter demonstrates a flaw in the handling of non debugging
14722 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
14723 was used in order to simplify:
14724
14725 #if YYDEBUG
14726 if (yydebug)
14727 {
14728 ...
14729 }
14730 #endif
14731
14732 into
14733
14734 if (yydebug)
14735 {
14736 ...
14737 }
14738
14739 unfortunately this leads to a CPP conflict when
14740 `--name-prefix=foo' is used since it produces `#define yydebug
14741 foodebug'.
14742
14743 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
14744 (YYDPRINTF): New macro.
14745 Spread its use.
14746 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
14747 the bison options.
14748 Also test `--verbose', `--defines' and `--name-prefix'.
14749
14750 2000-10-02 Akim Demaille <akim@epita.fr>
14751
14752 Improve the readability of the produced parsers.
14753
14754 * src/bison.s1: Formatting changes.
14755 Improve the comment related to the `$' mark.
14756 (yydefault): Don't fall through to `yyresume': `goto' there.
14757 * src/output.c (output_parser): When the `$' is met, skip the end
14758 of its line.
14759 New variable, `number_of_dollar_signs', to check there's exactly
14760 one `$' in the parser skeleton.
14761
14762 2000-10-02 Akim Demaille <akim@epita.fr>
14763
14764 * lib/xstrdup.c: New file, from the fileutils.
14765 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
14766 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
14767 instead of strlen + xmalloc + strcpy.
14768 * src/symtab.c (copys): Remove, use xstrdup instead.
14769
14770 2000-10-02 Akim Demaille <akim@epita.fr>
14771
14772 * src/gram.h (associativity): New enum type which replaces the
14773 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
14774 `right_assoc', `left_assoc' and `non_assoc'.
14775 Adjust all dependencies.
14776 * src/reader.c: Formatting changes.
14777 (LTYPESTR): Don't define it, use it as a literal in
14778 `reader_output_yylsp'.
14779 * src/symtab.h (symbol_class): New enum type which replaces the
14780 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
14781 `sunknown', `stoken and `snterm'.
14782
14783 2000-10-02 Akim Demaille <akim@epita.fr>
14784
14785 * src/getargs.c (fixed_outfiles): Rename as...
14786 (yaccflag): for consistency and accuracy.
14787 Adjust dependencies.
14788
14789 2000-10-02 Akim Demaille <akim@epita.fr>
14790
14791 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
14792 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
14793 difficult and introduced a lot of core dump. It turns out that
14794 Bison used an implementation of `xmalloc' based on `calloc', and
14795 at various places it does depend upon the initialization to 0. I
14796 have not tried to isolate the pertinent places, and all the former
14797 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
14798 someone should address this issue.
14799
14800 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
14801 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
14802 files.
14803 Adjust dependencies.
14804 * src/warshall.h: New file.
14805 Propagate.
14806
14807 2000-10-02 Akim Demaille <akim@epita.fr>
14808
14809 Various anti-`extern in *.c' changes.
14810
14811 * src/system.h: Include `assert.h'.
14812
14813 2000-10-02 Akim Demaille <akim@epita.fr>
14814
14815 * src/state.h (nstates, final_state, first_state, first_shift)
14816 (first_reduction): Move their exportation from here...
14817 * src/LR0.h: to here.
14818 Adjust dependencies.
14819 * src/getargs.c (statisticsflag): New variable.
14820 Add support for `--statistics'.
14821 Adjust dependencies.
14822
14823 Remove a lot of now useless `extern' statements in most files.
14824
14825 2000-10-02 Akim Demaille <akim@epita.fr>
14826
14827 * src/LR0.h: New file.
14828 Propagate its use.
14829
14830 2000-10-02 Akim Demaille <akim@epita.fr>
14831
14832 * src/print.h: New file.
14833 Propagate its use.
14834 * src/print.c: Formatting and ordering changes.
14835 (verbose, terse): Replace with...
14836 (print_results): this new function.
14837 Adjust dependencies.
14838
14839 2000-10-02 Akim Demaille <akim@epita.fr>
14840
14841 * src/conflicts.c (conflict_report): New function.
14842 (conflict_log, verbose_conflict_log): Replace with...
14843 (print_conflicts): this function.
14844 Adjust dependencies.
14845 * src/conflicts.h: New file.
14846 Propagate its inclusion.
14847
14848 2000-10-02 Akim Demaille <akim@epita.fr>
14849
14850 * src/nullable.h: New file.
14851 Propagate its inclusion.
14852 * src/nullable.c: Formatting changes.
14853
14854 2000-10-02 Akim Demaille <akim@epita.fr>
14855
14856 * src/reduce.h: New file.
14857 Propagate its inclusion.
14858 * src/reduce.c: Topological sort and other formatting changes.
14859 (bool, TRUE, FALSE): Move their definition to...
14860 * src/system.h: here.
14861
14862 2000-10-02 Akim Demaille <akim@epita.fr>
14863
14864 * src/files.c: Formatting changes.
14865 (tryopen, tryclose, openfiles): Rename as...
14866 (xfopen, xfclose, open_files): this.
14867 (stringappend): static.
14868 * src/files.h: Complete the list of exported symbols.
14869 Propagate its use.
14870
14871 2000-10-02 Akim Demaille <akim@epita.fr>
14872
14873 * src/reader.h: New file.
14874 Propagate its use instead of tedious list of `extern' and
14875 prototypes.
14876 * src/reader.c: Formatting changes, topological sort,
14877 s/register//.
14878
14879 2000-10-02 Akim Demaille <akim@epita.fr>
14880
14881 * src/lex.h: Prototype `lex.c' exported functions.
14882 * src/reader.c: Adjust.
14883 * src/lex.c: Formatting changes.
14884 (safegetc): Rename as...
14885 (xgetc): this.
14886
14887 2000-10-02 Akim Demaille <akim@epita.fr>
14888
14889 * src/lalr.h: New file.
14890 Propagate its inclusion instead of prototypes and `extern'.
14891 * src/lalr.c: Formatting changes, topological sorting etc.
14892
14893 2000-10-02 Akim Demaille <akim@epita.fr>
14894
14895 * src/output.c (token_actions): Introduce a temporary array,
14896 YYDEFACT, that makes it possible for this function to use
14897 output_short_table.
14898
14899 2000-10-02 Akim Demaille <akim@epita.fr>
14900
14901 `user_toknums' is output as a `short[]' in `output.c', while it is
14902 defined as a `int[]' in `reader.c'. For consistency with the
14903 other output tables, `user_toknums' is now defined as a table of
14904 shorts.
14905
14906 * src/reader.c (user_toknums): Be a short table instead of an int
14907 table.
14908 Adjust dependencies.
14909
14910 Factor the short table outputs.
14911
14912 * src/output.c (output_short_table): New function.
14913 * src/output.c (output_gram, output_stos, output_rule_data)
14914 (output_base, output_table, output_check): Use it.
14915
14916 2000-10-02 Akim Demaille <akim@epita.fr>
14917
14918 * src/output.c (output): Topological sort of the functions, in
14919 order to get rid of the `static' prototypes.
14920 No longer use `register'.
14921 * src/output.h: New file.
14922 Propagate its inclusion in files explicitly prototyping functions
14923 from output.c.
14924
14925 2000-09-21 Akim Demaille <akim@epita.fr>
14926
14927 * src/atgeneral.m4: Update from Autoconf.
14928
14929 2000-09-21 Akim Demaille <akim@epita.fr>
14930
14931 * src/closure.h: New file.
14932 * src/closure.c: Formatting changes, topological sort over the
14933 functions, use of closure.h.
14934 (initialize_closure, finalize_closure): Rename as...
14935 (new_closure, free_closure): these. Adjust dependencies.
14936 * src/LR0.c: Formatting changes, topological sort, use of
14937 cloture.h.
14938 (initialize_states): Rename as...
14939 (new_states): this.
14940 * src/Makefile.am (noinst_HEADERS): Adjust.
14941
14942 2000-09-20 Akim Demaille <akim@epita.fr>
14943
14944 * src/acconfig.h: Don't protect config.h against multiple
14945 inclusion.
14946 Don't define PARAMS.
14947 * src/system.h: Define PARAMS.
14948 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
14949 purpose of config.h. system.h must not try to fix wrong
14950 definitions in config.h.
14951
14952 2000-09-20 Akim Demaille <akim@epita.fr>
14953
14954 * src/derives.h: New file.
14955 * src/main.c, src/derives.h: Use it.
14956 Formatting changes.
14957 * src/Makefile.am (noinst_HEADERS): Adjust.
14958
14959 2000-09-20 Akim Demaille <akim@epita.fr>
14960
14961 * tests/atgeneral.m4: Update from Autoconf.
14962 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
14963 (AT_CHECK_CALC): New macros.
14964 Use these macros to test bison with options `', `--raw',
14965 `--debug', `--yacc', `--yacc --debug'.
14966
14967 2000-09-19 Akim Demaille <akim@epita.fr>
14968
14969 * src/output.c: Formatting changes.
14970 * src/machine.h: Remove, leaving its contents in...
14971 * src/system.h: here.
14972 Include stdio.h.
14973 Adjust all dependencies on stdio.h and machine.h.
14974 * src/getargs.h: New file.
14975 Let all `extern' declarations about getargs.c be replaced with
14976 inclusion of `getargs.h'.
14977 * src/Makefile.am (noinst_HEADERS): Adjust.
14978
14979 * tests/calc.m4 (yyin): Be initialized in main, not on the global
14980 scope.
14981 (yyerror): Returns void, not int.
14982 * doc/bison.texinfo: Formatting changes.
14983
14984 2000-09-19 Akim Demaille <akim@epita.fr>
14985
14986 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
14987 portable.
14988
14989 2000-09-18 Akim Demaille <akim@epita.fr>
14990
14991 * configure.in: Append WARNING_CFLAGS to CFLAGS.
14992 * src/Makefile.am (INCLUDES): Don't.
14993 Be ready to fetch headers in lib/.
14994
14995 2000-09-18 Akim Demaille <akim@epita.fr>
14996
14997 * doc/bison.texinfo: Update the copyright.
14998 ANSIfy and GNUify the examples.
14999 Remove the old menu.
15000
15001 2000-09-18 Akim Demaille <akim@epita.fr>
15002
15003 First set of tests: use the `calc' example from the documentation.
15004
15005 * src/bison.s1 (yyparse): Condition the code using `yytname' which
15006 is defined only when YYDEBUG is.
15007 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
15008 * src/files.c (tryopen, tryclose): Formatting changes.
15009 Move to the top and be static.
15010 * src/reader.c (read_signed_integer): Likewise.
15011 * tests/calc.m4: New file.
15012 * Makefile.am, suite.m4: Adjust.
15013 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
15014
15015 2000-09-18 Akim Demaille <akim@epita.fr>
15016
15017 Add support for an Autotest test suite for Bison.
15018
15019 * m4/m4.m4, m4/atconfig.m4: New files.
15020 * m4/Makefile.am (EXTRA_DIST): Adjust.
15021 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
15022 files.
15023 * src/getargs.c: Display a more standard --version message.
15024 * src/reader.c (reader): Formatting changes.
15025 No longer depend upon VERSION_STRING.
15026 * configure.in: No longer use `dnl'.
15027 Set up the test suite and the new directory `tests/.
15028 (VERSION_STRING): Remove.
15029
15030 2000-04-14 Akim Demaille <akim@epita.fr>
15031
15032 * src/reader.c (copy_comment2): New function, same as former
15033 `copy_comment', but outputs into two FILE *.
15034 (copy_comment): Use it.
15035 (parse_union_decl): Use it.
15036 (get_type, parse_start_decl): Use the same `invalid' message.
15037 (parse_start_decl, parse_union_decl): Use the same `multiple'
15038 message.
15039 (parse_union_decl, copy_guard, copy_action): Use the same
15040 `unmatched' message.
15041 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
15042
15043 2000-03-31 Akim Demaille <akim@epita.fr>
15044
15045 * src/files.c (tryopen, tryclose): Move to the top.
15046 Be static.
15047
15048 2000-03-31 Akim Demaille <akim@epita.fr>
15049
15050 * src/main.c (main): Don't call `done', exit does it.
15051
15052 2000-03-31 Akim Demaille <akim@epita.fr>
15053
15054 * allocate.c: s/return (foo)/return foo/.
15055 * lalr.c: Likewise.
15056 * LR0.c: Likewise.
15057 * output.c: Likewise.
15058 * reader.c: Likewise.
15059 * symtab.c: Likewise.
15060 * vmsgetargs.c: Likewise.
15061
15062 2000-03-31 Akim Demaille <akim@epita.fr>
15063
15064 Clean up the error reporting functions.
15065
15066 * src/report.c: New file.
15067 * src/report.h: Likewise.
15068 * src/Makefile.am: Adjust.
15069 * m4/error.m4: New file.
15070 * m4/Makefile.am: Adjust.
15071 * configure.in (jm_PREREQ_ERROR): Call it.
15072 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
15073 Remove.
15074 (fatal, fatals): Remove. All callers use complain.c::fatal.
15075 (warn, warni, warns, warnss, warnss): Remove. All callers use
15076 complain.c::complain.
15077 (toomany): Remove, use fatal instead.
15078 * src/files.c (done): No argument, use complain_message_count.
15079 * src/main.c (main): Register `done' to `atexit'.
15080
15081 * src/getargs.c (usage): More `fputs', less `fprintf'.
15082
15083 2000-03-28 Akim Demaille <akim@epita.fr>
15084
15085 * lib/: New directory.
15086 * Makefile.am (SUBDIRS): Adjust.
15087 * configure.in: Adjust.
15088 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
15089 useless.
15090 * src/alloca.c: Moved to lib/.
15091 * src/getopt.c: Likewise.
15092 * src/getopt1.c: Likewise.
15093 * src/getopt.h: Likewise.
15094 * src/ansi2knr.c: Likewise.
15095 * src/ansi2knr.1: Likewise.
15096 * src/Makefile.am: Adjust.
15097 * lib/Makefile.am: New file.
15098
15099 2000-03-28 Akim Demaille <akim@epita.fr>
15100
15101 * src/getargs.c (usage): Refresh the help message.
15102
15103 2000-03-17 Akim Demaille <akim@epita.fr>
15104
15105 * src/getopt1.c: Updated from textutils 2.0e
15106 * src/getopt.c: Likewise.
15107 * src/getopt.h: Likewise.
15108
15109 2000-03-17 Akim Demaille <akim@epita.fr>
15110
15111 * src/Makefile.am (bison.simple): Fix the awk program: quote only
15112 the file name, not the whole `#line LINE FILE'.
15113
15114 2000-03-17 Akim Demaille <akim@epita.fr>
15115
15116 On syntax errors, report the token on which we choked.
15117
15118 * src/bison.s1 (yyparse): In the label yyerrlab, when
15119 YYERROR_VERBOSE, add yychar in msg.
15120
15121 2000-03-17 Akim Demaille <akim@epita.fr>
15122
15123 * src/reader.c (copy_at): New function.
15124 (copy_guard): Use it.
15125 (copy_action): Use it.
15126
15127 2000-03-17 Akim Demaille <akim@epita.fr>
15128
15129 Be kind to translators, save some useless translations.
15130
15131 * src/main.c (banner): New function.
15132 (fatal_banner): Use it.
15133 (warn_banner): Use it.
15134
15135 2000-03-17 Akim Demaille <akim@epita.fr>
15136
15137 * src/reader.c (copy_definition): Use copy_string and
15138 copy_comment. Removed now unused `match', `ended',
15139 `cplus_comment'.
15140 (copy_comment, copy_string): Moved, to be visible from
15141 copy_definition.
15142
15143 2000-03-17 Akim Demaille <akim@epita.fr>
15144
15145 * src/reader.c (copy_string): Declare `static inline'. No
15146 problems with inline, since it is checked by configure.
15147 (copy_comment): Likewise.
15148
15149 2000-03-17 Akim Demaille <akim@epita.fr>
15150
15151 * src/reader.c (packsymbols): Formatting changes.
15152
15153 2000-03-17 Akim Demaille <akim@epita.fr>
15154
15155 * src/reader.c (copy_comment): New function, factored out from:
15156 (copy_action): Use it. Removed now unused `match', `ended',
15157 `cplus_comment'.
15158 (copy_guard): Likewise.
15159
15160 2000-03-17 Akim Demaille <akim@epita.fr>
15161
15162 * src/reader.c (copy_string): New function, factored out from:
15163 (copy_action): Use it.
15164 (copy_guard): Likewise.
15165
15166 2000-03-17 Akim Demaille <akim@epita.fr>
15167
15168 Change the handling of @s so that they behave exactly like $s.
15169 There is now a pseudo variable @$ (readble and writable), location
15170 of the lhs of the rule (by default ranging from the location of
15171 the first symbol of the rhs, to the location of the last symbol,
15172 or, if the rhs is empty, YYLLOC).
15173
15174 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
15175 yyval.
15176 (yyparse): When providing a default semantic action, provide a
15177 default location action.
15178 (after the $): No longer change `*YYLSP', just stack YYLOC the
15179 same way you stack YYVAL.
15180 * src/reader.c (read_declarations): Use warns.
15181 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
15182 (copy_action, case '@'): Likewise.
15183 Use a standard error message, to save useless work from
15184 translators.
15185
15186 2000-03-17 Akim Demaille <akim@epita.fr>
15187
15188 * src/bison.s1: Formatting and cosmetics changes.
15189 * src/reader.c: Likewise.
15190 Update the Copyright notice.
15191
15192 2000-03-17 Akim Demaille <akim@epita.fr>
15193
15194 * src/bison.s1 (#line): All set to `#line' only, since the
15195 Makefile now handles them.
15196
15197 2000-03-16 Akim Demaille <akim@epita.fr>
15198
15199 * src/output.c (output_rule_data): Output the documentation of
15200 some of the tables.
15201 (Copyright notice): Update.
15202 Formatting changes.
15203
15204 2000-03-16 Akim Demaille <akim@epita.fr>
15205
15206 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
15207 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
15208 One `#if YYDEBUG' remains, since it uses variables which are
15209 defined only if `YYDEBUG != 0'.
15210
15211 2000-03-16 Akim Demaille <akim@epita.fr>
15212
15213 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
15214 and related variables so that the similarities are highlighted.
15215
15216 2000-03-16 Akim Demaille <akim@epita.fr>
15217
15218 * src/bison.s1: Properly indent CPP directives.
15219
15220 2000-03-16 Akim Demaille <akim@epita.fr>
15221
15222 * src/bison.s1: Properly indent the `alloca' CPP section.
15223
15224 2000-03-16 Akim Demaille <akim@epita.fr>
15225
15226 Do not hard code values of directories in `configure.in'.
15227 Update the `configure' tool chain.
15228
15229 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
15230 src/makefile.am.
15231 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
15232 (AC_OUTPUT): Add m4/Makefile.
15233 Bump to bison 1.28a, 1.29 has never been released.
15234 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
15235 handled via src/Makefile.am.
15236 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
15237 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
15238 autoheader.
15239 * Makefile.am (SUBDIRS): Add m4.
15240 (ACLOCAL_AM_FLAGS): New variable.
15241 (AUTOMAKE_OPTIONS): Add check-news.
15242 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
15243 the proper line number and file name.
15244 (DEFS): Propagate the location of bison library files and of the
15245 locale files.
15246 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
15247 builddir.
15248 * acinclude.m4: Remove, replaced by the directory m4.
15249 * m4/Makefile.am (EXTRA_DIST): New variable.
15250 * m4/gettext.m4: New file, from the fileutils.
15251 * m4/lcmessage.m4: Likewise
15252 * m4/progtest.m4: Likewise.
15253 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
15254
15255 2000-03-10 Akim Demaille <akim@epita.fr>
15256
15257 * src/closure.c:
15258 Formatting changes of various comments.
15259 Respect the GNU coding standards at various places.
15260 Don't use `_()' when no translation is needed.
15261
15262 1999-12-13 Jesse Thilo <jthilo@gnu.org>
15263
15264 * src/files.c:
15265 OS/2 honors TMPDIR environment variable.
15266
15267 1999-12-13 Jesse Thilo <jthilo@gnu.org>
15268
15269 * doc/bison.texinfo: Tweaked spelling and grammar.
15270 Updated ISBN.
15271 Removed reference to price of printed copy.
15272 Mention BISON_SIMPLE and BISON_HAIRY.
15273
15274 1999-12-13 Jesse Thilo <jthilo@gnu.org>
15275
15276 * configure.in, NEWS:
15277 Bison 1.29 released.
15278
15279 1999-10-27 Jesse Thilo <jthilo@gnu.org>
15280
15281 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
15282 Added reference card.
15283
15284 1999-07-26 Jesse Thilo <jthilo@gnu.org>
15285
15286 * po/ru.po: Added Russian translation.
15287
15288 1999-07-26 Jesse Thilo <jthilo@gnu.org>
15289
15290 * configure.in: Added Russian translation.
15291
15292 1999-07-06 Jesse Thilo <jthilo@gnu.org>
15293
15294 * configure.in, NEWS, README:
15295 Released version 1.28.
15296
15297 1999-06-14 Jesse Thilo <jthilo@gnu.org>
15298
15299 * src/system.h:
15300 Squashed redefinition warning on some systems.
15301
15302 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
15303 Have configure build version string instead of relying on ANSI string
15304 concatentation.
15305
15306 1999-06-14 Jesse Thilo <jthilo@gnu.org>
15307
15308 * po/POTFILES.in: Got rid of version.c.
15309
15310 1999-06-14 Jesse Thilo <jthilo@gnu.org>
15311
15312 * acconfig.h, configure.in:
15313 Have configure build version string instead of relying on ANSI string
15314 concatentation.
15315
15316 1999-06-08 Jesse Thilo <jthilo@gnu.org>
15317
15318 * doc/bison.1:
15319 Dropped mention of `+' for long-named options.
15320
15321 1999-05-30 Jesse Thilo <jthilo@gnu.org>
15322
15323 * src/files.c: Added <unistd.h> for unlink().
15324
15325 * src/Makefile.am, src/system.h:
15326 I18n fixes.
15327
15328 1999-05-30 Jesse Thilo <jthilo@gnu.org>
15329
15330 * README: Added a FAQ list.
15331
15332 * configure.in, acconfig.h:
15333 I18n fixes.
15334
15335 1999-05-30 Jesse Thilo <jthilo@gnu.org>
15336
15337 * doc/FAQ, doc/Makefile.am:
15338 Added a FAQ list.
15339
15340 1999-05-19 Jesse Thilo <jthilo@gnu.org>
15341
15342 * src/alloc.h, src/symtab.h, src/version.c:
15343 Protected inclusion of "config.h" with HAVE_CONFIG_H.
15344
15345 1999-04-18 Jesse Thilo <jthilo@gnu.org>
15346
15347 * src/.cvsignore, src/Makefile.am:
15348 Reorganized: sources in `src', documentation in `doc'.
15349
15350 * src/lex.c (literalchar):
15351 fixed the code for escaping double quotes (thanks
15352 Jonathan Czisny.)
15353
15354 1999-04-18 Jesse Thilo <jthilo@gnu.org>
15355
15356 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
15357 Adjusted paths to reflect directory reorganization.
15358
15359 1999-04-18 Jesse Thilo <jthilo@gnu.org>
15360
15361 * doc/.cvsignore, doc/Makefile.am:
15362 Reorganized: sources in `src', documentation in `doc'.
15363
15364 1999-04-18 Jesse Thilo <jthilo@gnu.org>
15365
15366 * configure.in:
15367 Updated AC_INIT file to reflect directory reorganization.
15368
15369 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
15370 Reorganized: sources in `src', documentation in `doc'.
15371
15372 1999-04-13 Jesse Thilo <jthilo@gnu.org>
15373
15374 * src/allocate.c:
15375 Don't declare calloc() and realloc() if not necessary.
15376
15377 1999-04-13 Jesse Thilo <jthilo@gnu.org>
15378
15379 * configure.in, acconfig.h, acinclude.m4:
15380 Don't declare calloc() and realloc() if not necessary.
15381
15382 1999-03-23 Jesse Thilo <jthilo@gnu.org>
15383
15384 * po/.cvsignore: Added i18n support.
15385
15386 1999-03-23 Jesse Thilo <jthilo@gnu.org>
15387
15388 * acconfig.h, configure.in, Makefile.am:
15389 Added i18n support.
15390
15391 1999-03-22 Jesse Thilo <jthilo@gnu.org>
15392
15393 * src/bison.s1: Fixed #line numbers.
15394
15395 1999-03-15 Jesse Thilo <jthilo@gnu.org>
15396
15397 * po/es.po, po/fr.po, po/nl.po, po/de.po:
15398 Added PO files from Translation Project.
15399
15400 1999-03-03 Jesse Thilo <jthilo@gnu.org>
15401
15402 * Makefile.am:
15403 Added support for non-ANSI compilers (ansi2knr).
15404
15405 1999-02-16 Jesse Thilo <jthilo@gnu.org>
15406
15407 * configure.in: Bumped version number to 1.27.
15408
15409 * Makefile.am:
15410 Added `bison.simple' to list of files removed by `make distclean'.
15411
15412 1999-02-12 Jesse Thilo <jthilo@gnu.org>
15413
15414 * src/files.c, src/files.h:
15415 Defined locations of parser files in config.h instead of Makefile.
15416
15417 1999-02-12 Jesse Thilo <jthilo@gnu.org>
15418
15419 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
15420 Defined locations of parser files in config.h instead of Makefile.
15421
15422 1999-02-09 Jesse Thilo <jthilo@gnu.org>
15423
15424 * Makefile.am:
15425 Removed inappropriate use of $< macro.
15426
15427 1999-02-05 Jesse Thilo <jthilo@gnu.org>
15428
15429 * po/Makefile.in.in, po/POTFILES.in:
15430 Add `po' directory skeleton.
15431
15432 1999-01-27 Jesse Thilo <jthilo@gnu.org>
15433
15434 * README: Document help-bison list.
15435
15436 * configure.in: Add check for mkstemp().
15437
15438 1999-01-20 Jesse Thilo <jthilo@gnu.org>
15439
15440 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
15441 Hush a few compiler warnings.
15442
15443 * src/files.c:
15444 Add tryclose(), which verifies that fclose was successful.
15445 Hush a couple of compiler warnings.
15446
15447 1999-01-20 Jesse Thilo <jthilo@gnu.org>
15448
15449 * Makefile.am, OChangeLog:
15450 ChangeLog is now automatically generated. Include the old version as
15451 OChangeLog.
15452
15453 1999-01-14 Jesse Thilo <jthilo@gnu.org>
15454
15455 * 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:
15456 Update FSF address.
15457
15458 1999-01-14 Jesse Thilo <jthilo@gnu.org>
15459
15460 * doc/bison.texinfo: Fix formatting glitch.
15461
15462 * doc/bison.texinfo: Update FSF address.
15463
15464 1999-01-14 Jesse Thilo <jthilo@gnu.org>
15465
15466 * acconfig.h: Update FSF address.
15467
15468 1999-01-08 Jesse Thilo <jthilo@gnu.org>
15469
15470 * src/system.h:
15471 Don't define PACKAGE here, since config.h defines it.
15472
15473 1998-12-30 Jesse Thilo <jthilo@gnu.org>
15474
15475 * src/reader.c: Update copyright date.
15476
15477 * src/main.c:
15478 Ditch sprintf to statically-sized buffers in fatal/warn functions in
15479 favor of output directly to stderr (avoids buffer overruns).
15480
15481 * src/reader.c: Some checks for premature EOF.
15482
15483 * 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:
15484 Use prototypes if the compiler understands them.
15485
15486 * src/files.c: Honor TMPDIR on Unix hosts.
15487 Use prototypes if the compiler understands them.
15488
15489 * src/reader.c:
15490 Fix a couple of buffer overrun bugs.
15491 Use prototypes if the compiler understands them.
15492
15493 * src/system.h: Include unistd.h and ctype.h.
15494 Use #ifdef instead of #if for NLS symbols.
15495
15496 1998-12-30 Jesse Thilo <jthilo@gnu.org>
15497
15498 * doc/bison.texinfo:
15499 Delete comment "consider using @set for edition number, etc..." since
15500 we now are doing so.
15501
15502 1998-12-30 Jesse Thilo <jthilo@gnu.org>
15503
15504 * configure.in:
15505 Use prototypes if the compiler understands them.
15506
15507 * NEWS: Document 1.26 highlights.
15508
15509 * Makefile.am: Require Automake 1.3 or later.
15510
15511 * acconfig.h:
15512 Use prototypes if the compiler understands them.
15513
15514 1998-12-29 Jesse Thilo <jthilo@gnu.org>
15515
15516 * src/version.c:
15517 Use VERSION symbol from automake for version number.
15518
15519 1998-12-29 Jesse Thilo <jthilo@gnu.org>
15520
15521 * acconfig.h, configure.in, version.cin:
15522 Use VERSION symbol from automake for version number.
15523
15524 1998-11-28 Jesse Thilo <jthilo@gnu.org>
15525
15526 * Makefile.am:
15527 Distribute original version of simple parser (bison.s1), not built
15528 version (bison.simple).
15529
15530 1998-11-28 Jesse Thilo <jthilo@gnu.org>
15531
15532 * doc/bison.texinfo: Add info dir entry.
15533
15534 * doc/bison.texinfo:
15535 Let automake put version number into documentation.
15536
15537 1998-11-26 Jesse Thilo <jthilo@gnu.org>
15538
15539 * src/bison.cld, src/build.com, src/vmshlp.mar:
15540 Add non-RCS files from /gd/gnu/bison.
15541
15542 1998-11-26 Jesse Thilo <jthilo@gnu.org>
15543
15544 * doc/bison.1:
15545 Document the BISON_HAIRY and BISON_SIMPLE variables.
15546
15547 1998-11-25 Jesse Thilo <jthilo@gnu.org>
15548
15549 * src/version.c: Build version.c automatically.
15550
15551 * src/reader.c:
15552 Fix token numbering (used to start at 258, not 257).
15553
15554 * src/system.h: Include config.h.
15555
15556 * src/getargs.c: Update bug report address.
15557
15558 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
15559 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
15560
15561 1998-11-25 Jesse Thilo <jthilo@gnu.org>
15562
15563 * Makefile.am:
15564 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
15565
15566 * configure.in, version.cin:
15567 Build version.c automatically.
15568
15569 * AUTHORS: Add AUTHORS file.
15570
15571 * README: Update bug report address.
15572
15573 * bison.simple:
15574 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
15575
15576 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
15577 Add automake stuff.
15578
15579 1998-11-25 Jesse Thilo <jthilo@gnu.org>
15580
15581 * doc/bison.texinfo: Clean up some formatting.
15582
15583 1998-05-05 Richard Stallman <rms@gnu.org>
15584
15585 * doc/bison.texinfo:
15586 Explain better why to make a pure parser.
15587
15588 1998-01-05 Richard Stallman <rms@gnu.org>
15589
15590 * src/files.c (openfiles):
15591 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
15592 find a temporary directory, if possible. Do not unlink files while
15593 they are open.
15594
15595 1997-08-25 Richard Stallman <rms@gnu.org>
15596
15597 * src/reader.c (stack_offset;):
15598 Change some warni to warns.
15599
15600 * src/lex.c (literalchar): Use warns, not warni.
15601
15602 1997-06-28 Richard Stallman <rms@gnu.org>
15603
15604 * src/bison.s1: Add a Bison version comment.
15605
15606 * src/main.c (fatal, warn, berror):
15607 Use program_name.
15608
15609 1997-06-28 Richard Stallman <rms@gnu.org>
15610
15611 * Makefile.in (bison_version): New variable.
15612 (dist): Use that variable.
15613 (bison.s1): Substitute the Bison version into bison.simple.
15614
15615 * bison.simple: Add a Bison version comment.
15616
15617 1997-06-18 Richard Stallman <rms@gnu.org>
15618
15619 * src/main.c (fatal, warn, berror):
15620 Make error messages standard.
15621 (toomany): Improve error message text.
15622
15623 * 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:
15624 new.h renamed to alloc.h.
15625
15626 1997-06-18 Richard Stallman <rms@gnu.org>
15627
15628 * Makefile.in: new.h renamed to alloc.h.
15629
15630 1997-05-24 Richard Stallman <rms@gnu.org>
15631
15632 * src/lex.c (literalchar):
15633 Fix the code for escaping \, " and '.
15634
15635 (lex): Avoid trouble when there are many chars
15636 to discard in a char literal with just several chars in it.
15637
15638 1997-05-17 Richard Stallman <rms@gnu.org>
15639
15640 * src/bison.s1:
15641 Use malloc, if using alloca is troublesome.
15642 (YYSTACK_USE_ALLOCA): New flag macro.
15643 Define it for some systems and compilers.
15644 (YYSTACK_ALLOC): New macro.
15645 (yyparse): Use YYSTACK_ALLOC to allocate stack.
15646 If it was malloc'd, free it.
15647
15648 1997-05-17 Richard Stallman <rms@gnu.org>
15649
15650 * bison.simple:
15651 Use malloc, if using alloca is troublesome.
15652 (YYSTACK_USE_ALLOCA): New flag macro.
15653 Define it for some systems and compilers.
15654 (YYSTACK_ALLOC): New macro.
15655 (yyparse): Use YYSTACK_ALLOC to allocate stack.
15656 If it was malloc'd, free it.
15657
15658 1997-04-23 Richard Stallman <rms@gnu.org>
15659
15660 * src/bison.s1:
15661 (alloca) [__hpux]: Always define as __builtin_alloca.
15662
15663 1997-04-23 Richard Stallman <rms@gnu.org>
15664
15665 * bison.simple:
15666 (alloca) [__hpux]: Always define as __builtin_alloca.
15667
15668 1997-04-22 Richard Stallman <rms@gnu.org>
15669
15670 * src/bison.s1:
15671 [__hpux]: Include alloca.h (right for HPUX 10)
15672 instead of declaring alloca (right for HPUX 9).
15673
15674 * src/bison.s1 (__yy_memcpy):
15675 Declare arg `count' as unsigned int.
15676 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
15677
15678 1997-04-22 Richard Stallman <rms@gnu.org>
15679
15680 * bison.simple:
15681 [__hpux]: Include alloca.h (right for HPUX 10)
15682 instead of declaring alloca (right for HPUX 9).
15683
15684 * bison.simple (__yy_memcpy):
15685 Declare arg `count' as unsigned int.
15686 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
15687
15688 1997-01-03 Richard Stallman <rms@gnu.org>
15689
15690 * src/allocate.c: [__STDC__ or _MSC_VER]:
15691 Declare calloc and realloc to return void *.
15692
15693 1997-01-02 Richard Stallman <rms@gnu.org>
15694
15695 * src/system.h:
15696 [_MSC_VER]: Include stdlib.h and process.h.
15697 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
15698
15699 * src/main.c (main): Return FAILURE as a value.
15700 (printable_version): Declare arg as int, not char.
15701
15702 1997-01-02 Richard Stallman <rms@gnu.org>
15703
15704 * Makefile.in (dist):
15705 Explicitly check for symlinks, and copy them.
15706
15707 1996-12-19 Richard Stallman <rms@gnu.org>
15708
15709 * src/files.c:
15710 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
15711
15712 1996-12-18 Paul Eggert <eggert@gnu.org>
15713
15714 * src/bison.s1 (yyparse):
15715 If __GNUC__ and YYPARSE_PARAM are both defined,
15716 declare yyparse to have a void * argument.
15717
15718 1996-12-18 Paul Eggert <eggert@gnu.org>
15719
15720 * bison.simple (yyparse):
15721 If __GNUC__ and YYPARSE_PARAM are both defined,
15722 declare yyparse to have a void * argument.
15723
15724 1996-12-17 Richard Stallman <rms@gnu.org>
15725
15726 * src/reduce.c (nbits): Add some casts.
15727
15728 1996-08-12 Richard Stallman <rms@gnu.org>
15729
15730 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
15731
15732 1996-08-12 Richard Stallman <rms@gnu.org>
15733
15734 * bison.simple: Test _MSDOS as well as _MSDOS_.
15735
15736 1996-07-31 Richard Stallman <rms@gnu.org>
15737
15738 * src/bison.s1:
15739 [__sun && __i386]: Include alloca.h.
15740
15741 1996-07-31 Richard Stallman <rms@gnu.org>
15742
15743 * bison.simple:
15744 [__sun && __i386]: Include alloca.h.
15745
15746 1996-07-30 Richard Stallman <rms@gnu.org>
15747
15748 * src/bison.s1: Comment change.
15749
15750 * src/bison.s1: Test _MSDOS_, not MSDOS.
15751
15752 1996-07-30 Richard Stallman <rms@gnu.org>
15753
15754 * bison.simple: Comment change.
15755
15756 * bison.simple: Test _MSDOS_, not MSDOS.
15757
15758 1996-06-01 Richard Stallman <rms@gnu.org>
15759
15760 * 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:
15761 Insert `_' macro around many string constants.
15762
15763 * src/main.c:
15764 Insert `_' macro around many string constants.
15765
15766 (main): Call setlocale, bindtextdomain and textdomain.
15767
15768 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
15769 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
15770 [ENABLE_NLS]: Include libintl.h.
15771 [ENABLE_NLS] (gettext): Define.
15772 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
15773 (N_, PACKAGE, LOCALEDIR): New macros.
15774
15775 1996-06-01 Richard Stallman <rms@gnu.org>
15776
15777 * POTFILES.in: New file.
15778
15779 * Makefile.in (allocate.o):
15780 Define target explicitly.
15781
15782 * Makefile.in (CFLAGS): Set to @CFLAGS@.
15783 (LDFLAGS): Set to @LDFLAGS@.
15784 (configure): Run autoconf only if preceding `cd' succeeds.
15785 (bison.s1): Redirect output to temporary file then move the
15786 temporary to the target, rather than redirecting directly to bison.s1.
15787 (clean): Remove config.status and config.log.
15788 (distclean): Don't remove config.status here.
15789
15790 1996-05-12 Richard Stallman <rms@gnu.org>
15791
15792 * src/bison.s1:
15793 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
15794
15795 1996-05-12 Richard Stallman <rms@gnu.org>
15796
15797 * bison.simple:
15798 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
15799
15800 1996-05-11 Richard Stallman <rms@gnu.org>
15801
15802 * src/bison.s1 (__yy_memcpy):
15803 Really reorder the args, as was supposedly done on Feb 14 1995.
15804 (yyparse): Calls changed accordingly.
15805
15806 1996-05-11 Richard Stallman <rms@gnu.org>
15807
15808 * Makefile.in (dist): Don't use $(srcdir).
15809
15810 * bison.simple (__yy_memcpy):
15811 Really reorder the args, as was supposedly done on Feb 14 1995.
15812 (yyparse): Calls changed accordingly.
15813
15814 1996-01-27 Richard Stallman <rms@gnu.org>
15815
15816 * src/output.c (output_rule_data):
15817 Test YYERROR_VERBOSE in the conditional
15818 around the definition of ttyname.
15819
15820 1995-12-29 Richard Stallman <rms@gnu.org>
15821
15822 * src/bison.s1:
15823 Fix line numbers in #line commands.
15824
15825 1995-12-29 Richard Stallman <rms@gnu.org>
15826
15827 * bison.simple:
15828 Fix line numbers in #line commands.
15829
15830 1995-12-27 Richard Stallman <rms@gnu.org>
15831
15832 * src/bison.s1 (YYPARSE_PARAM_DECL):
15833 In C++, make it always null.
15834 (YYPARSE_PARAM_ARG): New macro.
15835 (yyparse): Use YYPARSE_PARAM_ARG.
15836
15837 1995-12-27 Richard Stallman <rms@gnu.org>
15838
15839 * bison.simple (YYPARSE_PARAM_DECL):
15840 In C++, make it always null.
15841 (YYPARSE_PARAM_ARG): New macro.
15842 (yyparse): Use YYPARSE_PARAM_ARG.
15843
15844 1995-11-29 Richard Stallman <rms@gnu.org>
15845
15846 * doc/bison.texinfo:
15847 Describe literal string tokens, %raw, %no_lines, %token_table.
15848
15849 1995-11-29 Daniel Hagerty <hag@gnu.org>
15850
15851 * doc/bison.texinfo: Fixed update date
15852
15853 1995-10-16 Richard Stallman <rms@gnu.org>
15854
15855 * src/version.c: Version 1.25.
15856
15857 1995-10-16 Richard Stallman <rms@gnu.org>
15858
15859 * NEWS: *** empty log message ***
15860
15861 1995-10-16 Richard Stallman <rms@gnu.org>
15862
15863 * doc/bison.1, doc/bison.rnh:
15864 Add new options.
15865
15866 1995-10-15 Richard Stallman <rms@gnu.org>
15867
15868 * src/vmsgetargs.c, src/getargs.c:
15869 Added -n, -k, and -raw switches.
15870 (noparserflag, toknumflag, rawtoknumflag): New variables.
15871
15872 * src/symtab.h (SALIAS):
15873 New #define for adding aliases to %token.
15874 (struct bucket): Added `alias' field.
15875
15876 * src/reduce.c (reduce_grammar):
15877 Revise error message.
15878 (print_notices): Remove final `.' from error message.
15879
15880 * src/reader.c (reader_output_yylsp):
15881 New function.
15882 (readgram): Use `#if 0' around code that accepted %command
15883 inside grammar rules: The documentation doesn't allow it,
15884 and it will fail since the %command processors scan for the next %.
15885 (parse_token_decl): Extended the %token
15886 declaration to allow a multi-character symbol as an alias.
15887 (parse_thong_decl): New function.
15888 (read_declarations): Added %thong declarations.
15889 (read_declarations): Handle NOOP to deal with allowing
15890 % declarations as another means to specify the flags.
15891 (readgram): Allow %prec prior to semantics embedded in a rule.
15892 (skip_to_char, read_declarations, copy_definition)
15893 (parse_token_decl, parse_start_decl, parse_type_decl)
15894 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
15895 (get_type_name, copy_guard, copy_action, readgram)
15896 (get_type, packsymbols): Revised most error messages.
15897 Changed `fatal' to `warnxxx' to avoid aborting for error.
15898 Revised and use multiple warnxxx functions to avoid using VARARGS1.
15899 (read_declarations): Improve the error message for
15900 an invalid character. Do not abort.
15901 (read_declarations, copy_guard, copy_action): Use
15902 printable_version to avoid unprintable characters in printed output.
15903 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
15904 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
15905 Allow the type of a non-terminal can be given
15906 more than once, as long as all specifications give the same type.
15907
15908 * src/output.c:
15909 (output_headers, output_trailers, output, output_gram)
15910 (output_rule_data): Implement noparserflag variable.
15911 Implement toknumflag variable.
15912 (output): Call reader_output_yylsp to output LTYPESTR.
15913
15914 * src/main.c (main):
15915 If reader sees an error, don't process the grammar.
15916 (fatals): Updated to not use VARARGS1.
15917 (printable_version, int_to_string, warn, warni, warns, warnss)
15918 (warnsss): New error reporting functions. Avoid abort for error.
15919
15920 * src/lex.h:
15921 Added THONG and NOOP for alias processing.
15922 Added SETOPT for the new code that allows setting options with %flags.
15923
15924 * src/lex.c:
15925 Include getopt.h. Add some extern decls.
15926 (safegetc): New function to deal with EOF gracefully.
15927 (literalchar); new function to deal with reading \ escapes.
15928 (lex): Use literalchar.
15929 (lex): Implemented "..." tokens.
15930 (literalchar, lex, parse_percent_token): Made tokenbuffer
15931 always contain the token. This includes growing the token
15932 buffer while reading an integer.
15933 (parse_percent_token): Replaced if-else statement with percent_table.
15934 (parse_percent_token): Added % declarations as another
15935 way to specify the flags -n, -l, and -r. Also added hooks for
15936 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
15937 major changes to files.c.
15938 (lex) Retain in the incoming stream a character following
15939 an incorrect '/'.
15940 (skip_white_space, lex): Revised most error messages
15941 and changed fatal to warn to avoid aborting.
15942 (percent_table): Added %thong declarations.
15943
15944 * src/gram.h: Comment changes.
15945
15946 * src/files.c (openfiles, open_extra_files, done):
15947 Add faction flag
15948 and actfile file. Handle noparserflag. Both for -n switch.
15949
15950 * src/conflicts.c (resolve_sr_conflict):
15951 Remove use of alloca.
15952
15953 1995-06-01 Jim Meyering <meyering@gnu.org>
15954
15955 * doc/bison.texinfo: *** empty log message ***
15956
15957 1995-05-06 Richard Stallman <rms@gnu.org>
15958
15959 * src/bison.s1: Comment change.
15960
15961 1995-05-06 Richard Stallman <rms@gnu.org>
15962
15963 * bison.simple: Comment change.
15964
15965 1995-05-03 Richard Stallman <rms@gnu.org>
15966
15967 * src/version.c: Version now 1.24.
15968
15969 * src/bison.s1: Change distribution terms.
15970
15971 * src/version.c: Version now 1.23.
15972
15973 1995-05-03 Richard Stallman <rms@gnu.org>
15974
15975 * doc/bison.texinfo:
15976 Rewrite "Conditions for Using Bison".
15977 Update version to 1.24.
15978
15979 1995-05-03 Richard Stallman <rms@gnu.org>
15980
15981 * bison.simple: Change distribution terms.
15982
15983 1995-02-23 Richard Stallman <rms@gnu.org>
15984
15985 * src/files.c: Test __VMS_POSIX as well as VMS.
15986
15987 1995-02-14 Jim Meyering <meyering@gnu.org>
15988
15989 * src/bison.s1 (__yy_memcpy):
15990 Renamed from __yy_bcopy to avoid
15991 confusion. Reverse FROM and TO arguments to be consistent with
15992 those of memcpy.
15993
15994 1995-02-14 Jim Meyering <meyering@gnu.org>
15995
15996 * bison.simple (__yy_memcpy):
15997 Renamed from __yy_bcopy to avoid
15998 confusion. Reverse FROM and TO arguments to be consistent with
15999 those of memcpy.
16000
16001 1994-11-10 David J. MacKenzie <djm@gnu.org>
16002
16003 * NEWS: reformat
16004
16005 * NEWS: New file.
16006
16007 * Makefile.in (DISTFILES): Include NEWS.
16008
16009 * Makefile.in (DISTFILES):
16010 Include install-sh, not install.sh.
16011
16012 * configure.in: Update to Autoconf v2 macro names.
16013
16014 1994-10-05 David J. MacKenzie <djm@gnu.org>
16015
16016 * Makefile.in: fix typo
16017
16018 * Makefile.in (prefix, exec_prefix):
16019 Let configure set them.
16020
16021 1994-09-28 David J. MacKenzie <djm@gnu.org>
16022
16023 * Makefile.in: Set datadir to $(prefix)/share.
16024
16025 1994-09-15 Richard Stallman <rms@gnu.org>
16026
16027 * src/bison.s1:
16028 Update copyright notice and GPL version.
16029
16030 1994-09-15 Richard Stallman <rms@gnu.org>
16031
16032 * bison.simple:
16033 Update copyright notice and GPL version.
16034
16035 1994-07-12 Richard Stallman <rms@gnu.org>
16036
16037 * src/reduce.c, src/reader.c:
16038 entered into RCS
16039
16040 1994-05-05 David J. MacKenzie <djm@gnu.org>
16041
16042 * Makefile.in: entered into RCS
16043
16044 1994-03-26 Richard Stallman <rms@gnu.org>
16045
16046 * src/bison.s1: entered into RCS
16047
16048 1994-03-26 Richard Stallman <rms@gnu.org>
16049
16050 * bison.simple: entered into RCS
16051
16052 1994-03-25 Richard Stallman <rms@gnu.org>
16053
16054 * src/main.c: entered into RCS
16055
16056 1994-03-24 Richard Stallman <rms@gnu.org>
16057
16058 * src/conflicts.c: entered into RCS
16059
16060 1994-01-02 Richard Stallman <rms@gnu.org>
16061
16062 * Makefile.in: *** empty log message ***
16063
16064 1993-11-21 Richard Stallman <rms@gnu.org>
16065
16066 * src/bison.s1: *** empty log message ***
16067
16068 1993-11-21 Richard Stallman <rms@gnu.org>
16069
16070 * doc/bison.texinfo: entered into RCS
16071
16072 * doc/bison.texinfo: *** empty log message ***
16073
16074 1993-11-21 Richard Stallman <rms@gnu.org>
16075
16076 * bison.simple: *** empty log message ***
16077
16078 1993-10-25 David J. MacKenzie <djm@gnu.org>
16079
16080 * doc/bison.texinfo: *** empty log message ***
16081
16082 1993-10-19 Richard Stallman <rms@gnu.org>
16083
16084 * src/bison.s1: *** empty log message ***
16085
16086 1993-10-19 Richard Stallman <rms@gnu.org>
16087
16088 * bison.simple: *** empty log message ***
16089
16090 1993-10-14 Richard Stallman <rms@gnu.org>
16091
16092 * src/bison.s1: *** empty log message ***
16093
16094 1993-10-14 Richard Stallman <rms@gnu.org>
16095
16096 * bison.simple: *** empty log message ***
16097
16098 1993-09-14 David J. MacKenzie <djm@gnu.org>
16099
16100 * doc/bison.texinfo: *** empty log message ***
16101
16102 1993-09-13 Noah Friedman <friedman@gnu.org>
16103
16104 * Makefile.in: *** empty log message ***
16105
16106 1993-09-10 Richard Stallman <rms@gnu.org>
16107
16108 * src/conflicts.c: *** empty log message ***
16109
16110 * src/system.h: entered into RCS
16111
16112 1993-09-10 Richard Stallman <rms@gnu.org>
16113
16114 * doc/bison.1: entered into RCS
16115
16116 1993-09-06 Noah Friedman <friedman@gnu.org>
16117
16118 * src/version.c: entered into RCS
16119
16120 1993-09-06 Noah Friedman <friedman@gnu.org>
16121
16122 * Makefile.in: *** empty log message ***
16123
16124 1993-07-30 David J. MacKenzie <djm@gnu.org>
16125
16126 * Makefile.in: *** empty log message ***
16127
16128 1993-07-24 Richard Stallman <rms@gnu.org>
16129
16130 * src/bison.s1: *** empty log message ***
16131
16132 1993-07-24 Richard Stallman <rms@gnu.org>
16133
16134 * bison.simple: *** empty log message ***
16135
16136 1993-07-08 David J. MacKenzie <djm@gnu.org>
16137
16138 * Makefile.in: *** empty log message ***
16139
16140 1993-07-04 Richard Stallman <rms@gnu.org>
16141
16142 * src/bison.s1: *** empty log message ***
16143
16144 1993-07-04 Richard Stallman <rms@gnu.org>
16145
16146 * bison.simple: *** empty log message ***
16147
16148 1993-06-26 David J. MacKenzie <djm@gnu.org>
16149
16150 * src/getargs.c: entered into RCS
16151
16152 1993-06-26 David J. MacKenzie <djm@gnu.org>
16153
16154 * doc/bison.texinfo: *** empty log message ***
16155
16156 * doc/bison.1: New file.
16157
16158 1993-06-25 Richard Stallman <rms@gnu.org>
16159
16160 * src/getargs.c: New file.
16161
16162 1993-06-16 Richard Stallman <rms@gnu.org>
16163
16164 * src/bison.s1: *** empty log message ***
16165
16166 1993-06-16 Richard Stallman <rms@gnu.org>
16167
16168 * bison.simple: *** empty log message ***
16169
16170 1993-06-03 Richard Stallman <rms@gnu.org>
16171
16172 * src/bison.s1: New file.
16173
16174 1993-06-03 Richard Stallman <rms@gnu.org>
16175
16176 * doc/bison.texinfo: *** empty log message ***
16177
16178 1993-06-03 Richard Stallman <rms@gnu.org>
16179
16180 * bison.simple: New file.
16181
16182 1993-05-19 Richard Stallman <rms@gnu.org>
16183
16184 * doc/bison.texinfo: New file.
16185
16186 1993-05-07 Noah Friedman <friedman@gnu.org>
16187
16188 * Makefile.in: *** empty log message ***
16189
16190 1993-04-28 Noah Friedman <friedman@gnu.org>
16191
16192 * src/reader.c: *** empty log message ***
16193
16194 1993-04-23 Noah Friedman <friedman@gnu.org>
16195
16196 * src/alloc.h: entered into RCS
16197
16198 1993-04-20 David J. MacKenzie <djm@gnu.org>
16199
16200 * src/version.c: *** empty log message ***
16201
16202 * src/files.c, src/allocate.c:
16203 entered into RCS
16204
16205 * src/reader.c: *** empty log message ***
16206
16207 * src/lex.c: entered into RCS
16208
16209 * src/conflicts.c: New file.
16210
16211 * src/symtab.c: entered into RCS
16212
16213 * src/alloc.h: New file.
16214
16215 * src/LR0.c: entered into RCS
16216
16217 1993-04-18 Noah Friedman <friedman@gnu.org>
16218
16219 * src/reader.c: New file.
16220
16221 * src/version.c: *** empty log message ***
16222
16223 1993-04-18 Noah Friedman <friedman@gnu.org>
16224
16225 * Makefile.in: *** empty log message ***
16226
16227 1993-04-17 Noah Friedman <friedman@gnu.org>
16228
16229 * Makefile.in: *** empty log message ***
16230
16231 1993-04-15 Richard Stallman <rms@gnu.org>
16232
16233 * src/main.c, src/files.c:
16234 New file.
16235
16236 1993-04-15 Noah Friedman <friedman@gnu.org>
16237
16238 * configure.in: entered into RCS
16239
16240 * configure.in: *** empty log message ***
16241
16242 * configure.in: New file.
16243
16244 1993-04-14 Richard Stallman <rms@gnu.org>
16245
16246 * Makefile.in: New file.
16247
16248 1993-04-13 Richard Stallman <rms@gnu.org>
16249
16250 * src/version.c: New file.
16251
16252 1993-03-25 Richard Stallman <rms@gnu.org>
16253
16254 * src/output.c: entered into RCS
16255
16256 1992-09-25 Richard Stallman <rms@gnu.org>
16257
16258 * configure.bat: entered into RCS
16259
16260 1992-06-22 Richard Stallman <rms@gnu.org>
16261
16262 * src/vmsgetargs.c: entered into RCS
16263
16264 1992-06-22 Richard Stallman <rms@gnu.org>
16265
16266 * doc/bison.rnh: entered into RCS
16267
16268 1992-04-20 David J. MacKenzie <djm@gnu.org>
16269
16270 * README: entered into RCS
16271
16272 1992-01-22 Richard Stallman <rms@gnu.org>
16273
16274 * src/machine.h: entered into RCS
16275
16276 1991-12-21 Richard Stallman <rms@gnu.org>
16277
16278 * src/lalr.c, src/closure.c:
16279 entered into RCS
16280
16281 1991-12-20 Richard Stallman <rms@gnu.org>
16282
16283 * src/state.h: entered into RCS
16284
16285 1991-12-18 Richard Stallman <rms@gnu.org>
16286
16287 * src/print.c, src/nullable.c, src/derives.c:
16288 entered into RCS
16289
16290 1991-11-03 David J. MacKenzie <djm@gnu.org>
16291
16292 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
16293 entered into RCS
16294
16295 1988-09-09 Richard Stallman <rms@gnu.org>
16296
16297 * src/bison.hairy: entered into RCS
16298
16299 1987-12-16 Richard Stallman <rms@gnu.org>
16300
16301 * REFERENCES: entered into RCS
16302
16303
16304 -----
16305
16306 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
16307 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
16308 Software Foundation, Inc.
16309
16310 Copying and distribution of this file, with or without
16311 modification, are permitted provided the copyright notice and this
16312 notice are preserved.
16313
16314 $Id$