]> git.saurik.com Git - bison.git/blame - ChangeLog
* ChangeLog: Correct formatting.
[bison.git] / ChangeLog
CommitLineData
4158e0a1 12006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 2
4158e0a1
JD
3 * tests/glr-regression.at: For consistency with my newer test cases,
4 don't thank myself.
5
d659304d
JD
62006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7
8 * data/glr.c (yyresolveValue): When merging semantic options, if at
9 least one user action succeeds but a later one cuts the parse, then
10 destroy the semantic value before returning rather than leaking it.
11 (yyresolveStates): If a user action cuts the parse and thus
12 yyresolveValue fails, ignore the (unset) semantic value rather than
13 corrupting the yyGLRState, and empty the semantic options list since
14 the user actions should have called all necessary destructors.
15 Simplify code with YYCHK.
16 * tests/glr-regression.at (Corrupted semantic options if user action
17 cuts parse): New test case.
18 (Undesirable destructors if user action cuts parse): New test case.
19 Before applying any of this patch, this test case never actually failed
20 for me... but only because the corrupted semantic options usually
21 masked this bug.
22 (Leaked merged semantic value if user action cuts parse): New test
23 case.
24
6ec2c0f2
AD
252006-01-05 Akim Demaille <akim@epita.fr>
26
27 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
28
1b9c21fb
PE
292006-01-04 Paul Eggert <eggert@cs.ucla.edu>
30
31 * data/c.m4 (b4_c_modern): New macro, with a new provision for
32 _MSC_VER. Problem reported by Cenzato Marco.
33 (b4_c_function_def): Use it.
34 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
35 b4_c_modern.
36 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
37 than rolling our own.
38
84866159
AD
392006-01-04 Akim Demaille <akim@epita.fr>
40
41 Also warn about non-used mid-rule values.
42 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
43 member.
44 (symbol_list_new): Adjust.
45 * src/reader.c (symbol_typed_p): New.
46 (grammar_rule_check): Use it.
47 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
48 Check its rule.
49 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
50 Use it.
51 * tests/actions.at (Exotic Dollars): Adjust.
52
378f4bd8
AD
532006-01-04 Akim Demaille <akim@epita.fr>
54
55 * src/reader.c (grammar_midrule_action): If $$ is set in a
56 mid-rule, move the `used' bit to its lhs.
57 * tests/input.at (Unused values): New.
58 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
59
e2a21b6f
PE
602006-01-03 Paul Eggert <eggert@cs.ucla.edu>
61
54662697
PE
62 * doc/bison.texinfo (Bison Options): Say more accurately what
63 --yacc does.
64 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
65 about declarations in the grammar when in Yacc mode, as POSIX does
66 not require a diagnostic when the grammar uses extensions.
67
68 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
69
073f9288
PE
70 Warn about dubious constructions like "%token T T".
71 Reported by twlevo.
72 * src/symtab.h (struct symbol.declared): New member.
73 * src/symtab.c (symbol_new): Initialize it to false.
74 (symbol_class_set): New arg DECLARING, specifying whether
75 this is a declaration that we want to warn about, if there
76 is more than one of them. All uses changed.
77
1221b78a
PE
78 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
79 Allow multiple %union directives, whose contents concatenate.
80 * src/parse-gram.y (grammar_declaration): Likewise.
81 Use muscle_code_grow, so that we don't need stype_line any more.
82 All uses changed.
83
84 * src/muscle_tab.c (muscle_grow): Fix comment.
85
e2a21b6f
PE
86 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
87 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
88 Update copyright year to 2006.
89
8f7e3cf9
AD
902006-01-03 Akim Demaille <akim@epita.fr>
91
92 Have glr.cc pass (some of) the calc.at tests.
93 * data/glr.cc (b4_parse_param_orig): New.
94 (b4_parse_param): Improve its definition, and bound it more
95 clearly in the skeleton.
96 (b4_epilogue): Append, instead of prepending, in order to keep
97 #line consistency.
98 Simplify the generation of auxiliary functions: locations and
99 purity are mandated.
100 (b4_global_tokens_and_yystype): Honor it.
101 * data/location.cc (c++.m4): Don't include it.
102 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
103 and AT_SKEL_CC_IF.
104 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
105 AT_LALR1_CC_IF.
106 Be sure to initialize the first position's filename.
107 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
108 mandated anyway.
109 (AT_CHECK_CALC_GLR_CC): New.
110 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
111
3953ed88
AD
1122006-01-02 Akim Demaille <akim@epita.fr>
113
114 * src/output.c (output_skeleton): Don't hard wire the inclusion of
115 c.m4.
0a96ba81 116 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
117 * data/glr.cc: Do not include stack.hh.
118
9ecafbbf
AD
1192006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
120
121 * data/glr.c: Reformat whitespace with tabs.
122 (b4_lpure_formals): Remove this unused m4 macro.
123 * tests/cxx-type.at: Reformat whitespace with tabs.
124 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
125 since it's a member. Rename type to isNterm for clarity.
126
c4d497a0
AD
1272005-12-29 Akim <akim@sulaco.local>
128
129 Let glr.cc catch up with symbol_value_print.
130 * data/glr.cc (b4_yysymprint_generate): Replace by...
131 (b4_yy_symbol_print_generate): this.
132 (yy_symbol_print, yy_symbol_value_print): Declare them.
133
4517da37
PE
1342005-12-28 Paul Eggert <eggert@cs.ucla.edu>
135
136 * src/location.h (boundary): Note that a line or column equal
137 to INT_MAX indicates an overflow.
138 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
139 (rule_length_overflow, increment_rule_length, add_column_width):
140 New functions.
141 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
142 (<SC_BRACED_CODE>"}"):
143 Use increment_rule_length rather than incrementing it by hand.
144 (adjust_location, handle_syncline): Diagnose overflow.
145 (handle_action_dollar, handle_action_at):
146 Fix bug with monstrosities like $-2147483648.
147 Remove now-unnecessary checks.
148 (scan_integer): Verify assumptions and remove now-unnecessary checks.
149 (convert_ucn_to_byte): Verify assumptions.
150 (handle_syncline): New arg LOC. All callers changed.
151 Don't store through a value derived from char const * pointer.
152
153 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
154 GCC warnings.
155
e3233bf6
PE
1562005-12-27 Paul Eggert <eggert@cs.ucla.edu>
157
158 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
159 Remove unnecessary forward static decls.
160
8f3596a6
AD
1612005-12-27 Akim Demaille <akim@epita.fr>
162
163 * src/reader.c (grammar_current_rule_check): Also check that $$
164 is used.
165 Take the rule to check as argument, hence rename as...
166 (grammar_rule_check): this.
167 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
168 Rename as...
169 (grammar_rule_begin, grammar_rule_end): these, for consistency.
170 (grammar_midrule_action, grammar_symbol_append): Now static.
171 * tests/torture.at (input): Don't rely on the default action
172 being always performed.
173 * tests/calc.at: "Set" $$ even when the action is "cut" with
174 YYERROR or other.
175 * tests/actions.at (Exotic Dollars): Instead of using unused
176 values, check that the warning is issued.
177
721be13c
PE
1782005-12-22 Paul Eggert <eggert@cs.ucla.edu>
179
180 * NEWS: Improve wording for unused-value warnings.
181
a0af42fc
AD
1822005-12-22 Akim Demaille <akim@epita.fr>
183
184 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
185 (b4_yysymprint_generate): Rename as...
186 (b4_yy_symbol_print_generate): this.
187 Generate yy_symbol_print instead of yysymprint.
188 Generate also yy_symbol_value_print, and use it.
189
affac613
AD
1902005-12-22 Akim Demaille <akim@epita.fr>
191
721be13c 192 * NEWS: Warn about unused values.
affac613
AD
193 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
194 a `used' member.
195 (symbol_list_n_get, symbol_list_n_used_set): New.
196 (symbol_list_n_type_name_get): Use symbol_list_n_get.
197 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
198 * src/reader.c (grammar_current_rule_check): Check that values are
199 used.
200 * src/symtab.c (symbol_print): Accept 0.
201 * tests/existing.at: Remove the type information.
202 Empty the actions.
203 Remove useless actions (beware of mid-rule actions: perl -000
204 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
205 * tests/actions.at (Exotic Dollars): Use unused values.
206 * tests/calc.at: Likewise.
207 * tests/glr-regression.at (No users destructors if stack 0 deleted):
208 Likewise.
209
210 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
211 rule_useful_p.
212
9d9b8b70
PE
2132005-12-21 Paul Eggert <eggert@cs.ucla.edu>
214
8bb4c753
PE
215 Undo 2005-12-01 tentative license wording change. The wording is
216 still being reviewed by the lawyers, and we don't want to wait for
217 them before publishing a test release. For now, revert to the
218 previous wording.
219 * NEWS: Undo 2005-12-01 change.
220 * data/glr.c: Revert to previous license wording.
221 * data/glr.cc: Likewise.
222 * data/lalr1.cc: Likewise.
223 * data/location.cc: Likewise.
224 * data/yacc.c: Likewise.
225
9d9b8b70
PE
226 * NEWS: Reword %destructor vs YYABORT etc.
227 * data/glr.c: Use American spacing, for consistency.
228 * data/glr.cc: Likewise.
229 * data/lalr1.cc: Likewise.
230 * data/yacc.c: Likewise.
231 * data/yacc.c: Reformat comments slightly.
232 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
233 for consistency. Fix some spelling errors and reword recently-included
234 text slightly.
235 * tests/cxx-type.at: Cast results of malloc, for C++.
236
2c3b392a
AD
2372005-12-21 Joel E. Denny <address@hidden>
238
239 * tests/cxx-type.at: Construct a tree, count the parents of shared
240 nodes, and free each node once and only once. Previously, the memory
241 for semantic values was leaked instead.
242
d6cff4dc
AD
2432005-12-21 Joel E. Denny <address@hidden>
244
245 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
246 (yylval, yylloc): If pure, #define to yystackp->yyval and
247 yystackp->yyloc similar to yychar and yynerrs.
248 (yyparse): If pure, remove local yylval and yylloc. Add local
249 yystackp to accommodate pure definitions of yylval and yylloc.
250 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
251 yylvalp and yyllocp to &yylval and &yylloc.
252 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
253 namespace. Previously, nerrs and char were missing, but lval and lloc
254 weren't necessary.
255 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
256 yylvalp and yyllocp parameters since, if pure, these are now always
257 accessible through yystackp. If not pure, they are still accessible
258 globally.
259 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
260 `if (YYID (N))' to pacify lint.
261
a85284cf
AD
2622005-12-21 Akim Demaille <akim@epita.fr>
263
264 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
265 destroy the RHS symbols of a rule.
266 * data/yacc.c (yylen): Initialize to 0.
267 Keep its value to the number of items to possibly shift.
268 In particular, a regular successful parse that ends on YYFINAL by
269 a (internal) YYACCEPT must not have yylen != 0.
270 (yyerrorlab, yyreturn): Pop the RHS.
271 Reorder a bit to emphasize the `shifting' bits of code.
272 (YYPOPSTACK): Now accept a number of items to pop.
273 * data/lalr1.cc: Likewise.
274 * data/glr.c: Formatting changes.
275 Use goto instead of fall through.
276 * doc/bison.texinfo (Destructor Decl): Complete.
277
d508c281
JMG
2782005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
279
280 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
281 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
282 * djgpp/config.bat: Replace every occurence of the file name
283 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
284 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
285 * djgpp/config.sed: Replace every occurence of the file name
286 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
287 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
288 * djgpp/djunpack.bat: DJGPP specific file.
289 * djgpp/fnchange.lst: DJGPP specific file.
290 * djgpp/README.in: Add new information about how to unpack the bison
291 source on MSDOS and other systems which have 8.3 file name restrictions
292 using djunpack.bat and fnchange.lst.
293
3e7a2cd9
PE
2942005-12-12 Paul Eggert <eggert@cs.ucla.edu>
295
296 * bootstrap (build_cvs_prefix): Remove; unused.
297 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
298 when getting gnulib.
299
3002005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
301
302 * data/glr.c: Reorder typedef declarations for structs to match order
303 of struct declarations.
304 Rename yystack everywhere to yystackp except in yyparse where it's not
305 a pointer.
306 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
307 consistency.
308 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
309 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
310 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
311 lint.
312
877519f8
PE
3132005-12-09 Paul Eggert <eggert@cs.ucla.edu>
314
0eca5a39
PE
315 * tests/sets.at (Accept): Fix typos in regular expression used to
316 sed out the final state number.
317
2cec9080
PE
318 Work around portability problem on Solaris 10: flex-generated
319 files include <stdio.h> before <config.h>, which messes up
320 because the latter defines __EXTENSIONS__. Address the problem
321 by creating two new little files that include <config.h> first,
322 then include the flex-generated files. Rewrite everyone else
323 to include <config.h> first, as well.
324 * lib/timevar.c: Always include "config.h".
325 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
326 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
327 (EXTRA_bison_SOURCES): New macro.
328 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
329 * src/system.h: Don't include config.h.
330 * src/LR0.c: Include <config.h> first.
331 * src/assoc.c: Likewise.
332 * src/closure.c: Likewise.
333 * src/complain.c: Likewise.
334 * src/conflicts.c: Likewise.
335 * src/derives.c: Likewise.
336 * src/files.c: Likewise.
337 * src/getargs.c: Likewise.
338 * src/gram.c: Likewise.
339 * src/lalr.c: Likewise.
340 * src/location.c: Likewise.
341 * src/main.c: Likewise.
342 * src/muscle_tab.c: Likewise.
343 * src/nullable.c: Likewise.
344 * src/output.c: Likewise.
345 * src/parse-gram.y: Likewise.
346 * src/print.c: Likewise.
347 * src/print_graph.c: Likewise.
348 * src/reader.c: Likewise.
349 * src/reduce.c: Likewise.
350 * src/relation.c: Likewise.
351 * src/state.c: Likewise.
352 * src/symlist.c: Likewise.
353 * src/symtab.c: Likewise.
354 * src/tables.c: Likewise.
355 * src/uniqstr.c: Likewise.
356 * src/vcg.c: Likewise.
357
877519f8
PE
358 * src/parse-gram.y: Fix minor problems uncovered by lint.
359 (current_lhs, current_lhs_location): Now static.
360 (current_assoc): Remove unused variable.
361
362 Cleanups so that Bison-generated parsers have less lint.
363 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
364 Prepend /*ARGSUSED*/, for lint's sake.
365 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
366 definition if 'lint' is defined.
367 (YYID): New macro (or function, if lint).
368 All uses of /*CONSTCOND*/0 replaced by YYID(0).
369 * data/yacc.c: Likewise.
370 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
371 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
372 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
373 is C++ only.
374 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
375 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
376 Use YYID(0) rather than 0, for lint.
377 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
378 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
379
f5228370
PE
3802005-12-07 Paul Eggert <eggert@cs.ucla.edu>
381
382 * tests/glr-regression.at
383 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
384 Close memory leak reported by twlevo.
385
69ce078b
PE
3862005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
387
6ff99711
PE
388 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
389 all stacks.
390 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
391 * tests/glr-regression.at (No users destructors if stack 0 deleted):
392 New test case.
393 (Duplicated user destructor for lookahead): This test now is expected
394 to succeed.
395
af3412cd
PE
3962005-12-01 Paul Eggert <eggert@cs.ucla.edu>
397
32b5b719 398 * NEWS: Document the following change.
af3412cd
PE
399 * data/yacc.c: Say "parser skeleton" rather than "file", since
400 it's no longer just a file.
401 * data/glr.c: Grant a special exception for C GLR parsers, that
402 reads like the already-existing exception for C LALR(1) parsers.
403 * data/glr.cc: Likewise.
404 * data/lalr1.cc: Likewise.
405 * data/location.cc: Likewise.
406 * data/yacc.c: Reword the "written by" statement to clarify that
407 it was the parser skeleton, not the entire output file.
408 * data/glr.c: Written by Paul Hilfinger.
409 * data/glr.cc: Written by Akim Demaille.
410 * data/lalr1.cc: Likewise.
411
035aa4a0
PE
4122005-11-18 Paul Eggert <eggert@cs.ucla.edu>
413
d9963c85
PE
414 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
415 Fix typos in previous change that broke 'make check'.
416 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
417 supported in C.
418 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
419 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
420 We can revert this once things settle down.
421
035aa4a0
PE
422 * src/conflicts.c (conflicts_print): Don't print file name twice
423 when %expect fails because there were no conflicts.
424 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
425 change.
426 * tests/conflicts.at (%expect not enough, %expect too much):
427 (%expect with reduce conflicts): Adjust to new behavior.
428
4292005-11-18 Akim Demaille <akim@epita.fr>
430
431 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
432 errors.
433 * NEWS: Document this.
434 * doc/bison.texinfo (Expect Decl): Likewise.
435
d1ff7a7c
AD
4362005-11-16 Akim Demaille <akim@epita.fr>
437
438 Generalize the display of semantic values and locations in traces.
439 * data/glr.c (yy_reduce_print): Fix indices (again).
440 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
441 literal integers.
442 * data/lalr1.cc (yyreduce_print): Rename as...
443 (yy_reduce_print): this.
444 Display values and locations.
445 * data/yacc.c (yy_reduce_print): Likewise.
446 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
447 (yysymprint): Move higher to be visible from yy_reduce_print).
448 (yyparse): Adjust.
449 * tests/calc.at: Adjust the expected length of the traces.
450
6de5398d
AD
4512005-11-14 Akim Demaille <akim@epita.fr>
452
453 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
454 from 1 to N, while values and location start at 0.
455 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
456
a1373f55
AD
4572005-11-14 Akim Demaille <akim@epita.fr>
458
459 * data/glr.c (yy_reduce_print): Fix the $ number.
460
613d8952
AD
4612005-11-14 Akim Demaille <akim@epita.fr>
462
463 "Use" parse parameters.
464 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
465 * data/glr.c, data/glr.cc: Use them.
466 * data/glr.c (YYUSE): Have a C++ definition that supports
467 non-pointer types.
468
b2741627
AD
4692005-11-14 Akim Demaille <akim@epita.fr>
470
471 * data/glr.c (yyexpandGLRStack): Declare only if defined.
472
5059b5c8
AD
4732005-11-14 Akim Demaille <akim@epita.fr>
474
42249483
AD
475 * data/glr.cc: New.
476 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 477
4626a15d
AD
4782005-11-12 Akim Demaille <akim@epita.fr>
479
480 Let position and location be PODs.
481 * data/location.cc (position::initialize, location::initialize): New.
482 (position::position, location::location): Define only if
483 b4_location_constructors is defined.
484 * data/lalr1.cc (b4_location_constructors): Define it for backward
485 compatibility.
486 * doc/bison.texinfo (Initial Action Decl): Use initialize.
487
4882005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
489
490 * data/lalr1.cc: Move the body of the ctor and dtor into the
491 parser file (instead of the header).
492 Wrap the implementations in a "namespace yy".
493
4942005-11-12 Akim Demaille <akim@epita.fr>
495
496 Have glr.c include its header file when created.
497 * data/glr.c (b4_shared_declarations): New.
498 Output them verbatim in the parser if !%defines, otherwise
499 output then in the header file, and include it instead.
500
1989d947
AD
5012005-11-11 Akim Demaille <akim@epita.fr>
502
503 * data/glr.c: Comment changes.
504
5052005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
506
507 When yydebug, report semantic and location values for reductions.
508 * data/glr.c (yy_reduce_print): Report the semantic values and the
509 locations.
510 (YY_REDUCE_PRINT): Adjust.
511 (yyglrReduce): Use them.
512 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
513 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
514 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
515 traces.
516
02998094
AD
5172005-11-10 Akim Demaille <akim@epita.fr>
518
519 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
520 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
521 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
522
5210672f
PE
5232005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
524
525 * m4/cxx.m4, examples/Makefile.am: Don't build
526 examples/calc++ if no C++ compiler is available. (trivial change)
527
a8991a1d
AD
5282005-11-09 Akim Demaille <akim@epita.fr>
529
530 * src/scan-skel.l: Use a couple of asserts.
531
36b5e963
AD
5322005-11-03 Akim Demaille <akim@epita.fr>
533
534 In some (weird) cases, the final state number is incorrect.
535 Reported by Alexandre Duret-Lutz.
536 * src/LR0.c (state_list_append): Remove the computation of
537 final_state.
538 (save_reductions): Do it here.
539 (get_state): Alpha conversion.
540 (generate_states): Use a for loop.
541 * src/gram.h (item_number_is_rule_number)
542 (item_number_is_symbol_number): New.
543 * src/state.c: Use assert.
544 * src/system.h: Include assert.h.
545 * tests/sets.at (Accept): New.
546
44e7ead1
PH
5472005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
548
549 * data/glr.c (yyfill): Adjust comment.
36b5e963 550 (yyresolveAction): Initialize default location properly
44e7ead1
PH
551 for empty right-hand sides.
552 (yydoAction): Ditto.
553 Add comment explaining apparently dead code.
36b5e963
AD
554 * tests/glr-regression.at
555 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 556 New test.
36b5e963 557
e10a80ee
PE
5582005-10-30 Paul Eggert <eggert@cs.ucla.edu>
559
560 * bootstrap (cleanup_gnulib): New function. Use it to clean up
561 gnulib when interrupted. This fixes some race conditions and
562 works around some portability problems (one noted by Paul
563 Hilfinger).
564
067b32ee
AD
5652005-10-22 Akim <akim@epita.fr>
566
567 * Makefile.cfg: Adjust to config -> build-aux.
568 Reported by twledo.
569
4b367315
AD
5702005-10-21 Akim Demaille <akim@epita.fr>
571
572 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
573 the %parse-params.
574 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
575 * data/yacc.c (b4_Pure_if): Rename as...
576 (b4_yacc_pure_if): this.
577 (YY_SYMBOL_PRINT, yyparse): Adjust.
578 * doc/bison.texinfo: Formatting changes.
579
24cc23d9
AD
5802005-10-21 Akim Demaille <akim@epita.fr>
581
582 Finish the transition config -> build-aux.
583 * configure.ac, Makefile.am: Use build-aux.
584 * config/prev-version, config/announce-gen, config/Makefile.am:
585 Move to...
586 * build-aux/prev-version, build-aux/announce-gen,
587 * build-aux/Makefile.am: here.
588
d4476375
AD
5892005-10-14 Akim Demaille <akim@epita.fr>
590
591 * examples/calc++/test: Use set -x only when VERBOSE.
592
302c0aee
PE
5932005-10-13 Paul Eggert <eggert@cs.ucla.edu>
594
595 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
596 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
597
7625ec2c
AD
5982005-10-13 Akim Demaille <akim@epita.fr>
599
600 * src/scan-skel.l: Output the base name parts of the parser and
601 header file names.
302c0aee 602 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
603 additional checks.
604 Use this to exercise C++ outputs in subdirs.
605 Reported by Oleg Smolsky.
606
ba0fe3c7
PE
6072005-10-12 Paul Eggert <eggert@cs.ucla.edu>
608
609 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
610 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
611 Problem reported by John P. Hartmann.
612 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
613 already defined it.
614
9b8a5ce0
AD
6152005-10-12 Akim Demaille <akim@epita.fr>
616
617 * src/parse-gram.y (version_check): Exit 63 to please missing
618 (stands for "version mismatch).
619 * tests/input.at, doc/bison.texinfo: Adjust.
620
4f6e011e
PE
6212005-10-10 Paul Eggert <eggert@cs.ucla.edu>
622
623 Work around portability problems with Visual Age C compiler
624 (xlc and xlC_r) reported by John P. Hartmann.
625 * data/location.cc (initial_column, initial_line): Remove.
626 All uses replaced by 0 and 1.
627 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
628 that xlc complains about.
629 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 630 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 631 as __STDC__.
4d7aa45e
PE
632 * data/yacc.c (YYMODERN_C): New macro, which also looks at
633 __STDC_VERSION__. Use it everywhere instead of looking at
634 __STDC__ and __cplusplus.
4f6e011e 635
a1b3bf8c
AD
6362005-10-10 Akim Demaille <akim@epita.fr>
637
638 * examples/calc++/test: Be quiet unless VERBOSE.
639
412e44aa
PE
6402005-10-05 Paul Eggert <eggert@cs.ucla.edu>
641
2a4647a3
PE
642 * data/c.m4 (yydestruct, yysymprint):
643 Use YYUSE instead of casting to void.
644 * data/glr.c (YYUSE): New macro.
645 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
646 Use it instead of rolling our own.
647 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
648 (YYCHK1):
649 Use /*CONSTCOND*/ to suppress lint warnings.
650 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
651 (YY_STACK_PRINT): Use 'false' not '0'.
652 (YYUSE): New macro.
653 (yysymprint_, yydestruct_): Use it instead of rolling our own.
654 * data/yacc.c (YYUSE): New macro.
655 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
656 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
657 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
658
659
412e44aa
PE
660 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
661 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
662
88c6637f
PE
6632005-10-04 Paul Eggert <eggert@cs.ucla.edu>
664
2f4f028d
PE
665 Undo the parts of the unlocked-I/O change that substituted
666 putc or puts for printf. This might hurt performance a bit,
667 but some people prefer the printf style.
668 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
669 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
670 All uses replaced by YYFPRINTF and YYDPRINTF.
671 * data/yacc.c: Likewise.
672 * lib/bitset.c (bitset_print): Likewise.
673 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
674 putc and puts.
675 * lib/lbitset.c (debug_lbitset): Likewise.
676 * src/closure.c (print_firsts, print_fderives): Likewise.
677 * src/gram.c (grammar_dump): Likewise.
678 * src/lalr.c (look_ahead_tokens_print): Likewise.
679 * src/output.c (escaped_output): Likewise.
680 (user_actions_output): Break apart two printfs.
681 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
682 * src/reduce.c (reduce_print): Likewise.
683 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
684 * src/system.h: Include unlocked-io.h rathe than stdio.h.
685
88c6637f
PE
686 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
687 Use assignments rather than casts-to-void to suppress
688 unused-variable warnings. This pacifies 'lint'.
689 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
690 unused-variable warnings.
691
fb32e373
JMG
6922005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
693
694 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
695
edb8f44f
PE
6962005-10-02 Paul Eggert <eggert@cs.ucla.edu>
697
fb9c0b33
PE
698 Use unlocked I/O for a minor performance improvement on hosts like
699 GNU/Linux and Solaris that support unlocked I/O. The basic idea
700 is to use the gnlib unlocked-io module, and to prefer putc and
701 puts to printf when either will work (since the latter doesn't
702 come in an unlocked flavor).
703 * bootstrap (gnulib_modules): Add unlocked-io.
704 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
705 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
706 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
707 and similarly for puts and putc and printf.
708 * data/yacc.c: Likewise.
709 * lib/bitset.c (bitset_print): Likewise.
710 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
711 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
712 to printf.
713 * lib/lbitset.c (debug_lbitset): Likewise.
714 * src/closure.c (print_firsts, print_fderives): Likewise.
715 * src/gram.c (grammar_dump): Likewise.
716 * src/lalr.c (look_ahead_tokens_print): Likewise.
717 * src/output.c (escaped_output): Likewise.
718 (user_actions_output): Coalesce two printfs.
2f4f028d 719 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
720 * src/reduce.c (reduce_print): Likewise.
721 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 722 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 723
edb8f44f
PE
724 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
725 this confuses xgettext.
726
b50d2359
AD
7272005-10-02 Akim Demaille <akim@epita.fr>
728
729 * bootstrap (gnulib_modules): Add strverscmp.
730 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
731 * m4/.cvsignore: Add strverscmp.m4.
732 * src/parse-gram.y (%require): New token, new rule.
733 (version_check): New.
734 * src/scan-gram.l (%require): Adjust.
735 * tests/input.at (AT_REQUIRE): New.
736 Use it.
737 * doc/bison.texinfo (Require Decl): New.
738 (Calc++ Parser): Use %require.
739
21667f64
AD
7402005-10-02 Akim Demaille <akim@epita.fr>
741
742 * data/location.cc: New.
743
2b81e969
AD
7442005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
745 Akim Demaille <akim@epita.fr>
746
747 Make sure -odir/foo.cc creates dir/location.hh etc.
748 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
749 (spec_file_prefix, spec_verbose_file, spec_graph_file)
750 (spec_defines_file): Now const.
751 (dir_prefix): New.
752 (short_base_name): Remove.
753 * src/files.c: Adjust.
754 (dirname.h): Include.
755 (base_name): Don't prototype it.
756 (finput): Remove, duplicates gram_in.
757 (full_base_name, short_base_name): Replace by...
758 (all_but_ext, all_but_tab_ext): these.
759 (compute_base_names): Rename as...
760 (compute_file_name_parts): this.
761 Update to compute the new variables, including dir_prefix.
762 Adjust dependencies.
763 * src/output.c (prepare): Output them.
764 * src/reader.c: Adjust to use gram_in, not finput.
765 * src/scan-skel.l (@dir_prefix@): New.
766
ad6a9b97
JMG
7672005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
768
769 * lib/subpipe.c: New function end_of_output_subpipe() added
770 to allow support for non-posix systems. This is a no-op function
771 for posix systems.
772
773 * lib/subpipe.h: New function end_of_output_subpipe() added
774 to allow support for non-posix systems. This is a no-op function
775 for posix systems.
776
777 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
778 handle the lack of pipe/fork functionality on non-posix systems.
779
780 * djgpp/Makefile.maint: DJGPP specific file.
781
782 * djgpp/README.in: DJGPP specific file.
783
784 * djgpp/config.bat: DJGPP specific configuration file.
785
786 * djgpp/config.sed: DJGPP specific configuration file.
787
788 * djgpp/config.site: DJGPP specific configuration file.
789
790 * djgpp/config_h.sed: DJGPP specific configuration file.
791
792 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
793
794 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
795
fc695704
AD
7962005-10-02 Akim Demaille <akim@epita.fr>
797
798 * data/location.cc: New, extract from...
799 * data/lalr1.cc: here.
800 (location.hh): Include it after the user prologue, in case the
801 filename type is defined by the user.
802 Forward declation location and position before the pre-prologue.
803 (yyresult_): Rename as...
804 (yyresult): this, it's a local variable, not an attribute.
805 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
806
8072005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
808
809 * examples/extexi: Restore the #line generation.
810
fb9712a9
AD
8112005-09-30 Akim Demaille <akim@epita.fr>,
812 Alexandre Duret-Lutz <adl@gnu.org>
813
814 Move the token type and YYSTYPE in the parser class.
815 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
816 (parser::token): New, from the moved free definition of tokens.
817 (parser::semantic_value): Now a full definition instead of an
818 indirection to YYSTYPE.
819 (b4_post_prologue): No longer included in the header file, but
820 in the implementation file.
821 * doc/bison.texi (C+ Language Interface): Update.
822 * src/parse-gram.y: Support unary %define.
823 * tests/actions.at: Define global_tokens_and_yystype for backward
824 compatibility until we update the tests.
825 * tests/calc.at: Idem.
826 (first_line, first_column, last_line, last_column): Define for lalr1.cc
827 to simplify the code.
828
55f0c7b1
PE
8292005-09-29 Paul Eggert <eggert@cs.ucla.edu>
830
831 Port to SunOS 4.1.4, which lacks strtoul and strerror.
832 Ah, the good old days! Problem reported by Peter Klein.
833 * bootstrap (gnulib_modules): Add strerror, strtoul.
834 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
835 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
836
fb9712a9 8372005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
838
839 * data/c.m4 (b4_error_verbose_if): New.
840 * data/lalr1.cc: Use it.
841 (YYERROR_VERBOSE_IF): Remove.
842 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
843 parser members, replaced by...
844 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
845 local variables.
846 (yysyntax_error_): Takes the state number as argument.
847 (yyreduce_print_): Use the argument yyrule, not the former
848 attribute yyn_.
849
8a6f72f3
PE
8502005-09-26 Paul Eggert <eggert@cs.ucla.edu>
851
852 * bootstrap (gnulib_modules): Add verify.
853 * lib/.cvsignore: Add verify.h.
854 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
855 * src/system.h (verify): Remove.
856 Include verify.h instead.
857 * src/tables.c (tables_generate): Use new API for 'verify'.
858
0d50976f
PE
8592005-09-21 Paul Eggert <eggert@cs.ucla.edu>
860
ebc3737e
PE
861 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
862 local variables whose names begin with 'yy'.
863 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
864 Trivial changes from Joel E. Denny.
865
0d50976f
PE
866 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
867 it itself.
868 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
869 don't use alloca any more.
870
871 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
872 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 873 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
874 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
875 to match yacc.c, to test more hosts.
876
a05b79df
PE
8772005-09-20 Paul Eggert <eggert@cs.ucla.edu>
878
55289366
PE
879 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
880 doesn't affect behavior.
881 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
882 Solaris, AIX, MSC.
883 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
884 This works a bit better with glibc, if user code has already included
885 stdlib.h.
886 * doc/bison.texinfo (Bison Parser): Document that users can't
887 arbitrarily use malloc and free for other purposes. Document
888 that <alloca.h> and <malloc.h> might be included.
889 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
890 user must declare alloca.
891
a05b79df
PE
892 * HACKING (release): Forwarn the Translation Project about
893 stable releses.
894
3ab2ca22
AD
8952005-09-20 Akim Demaille <akim@epita.fr>
896
897 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
898
a9739e7c
PE
8992005-09-19 Paul Eggert <eggert@cs.ucla.edu>
900
a702593e
PE
901 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
902 (YYSTACK_ALLOC_MAXIMUM): Use it.
903 (yysyntax_error): New function.
904 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
905 multiple syntax errors are reported, and alloca is being used.
906 Instead, reallocate buffers twice as big each time, so that
907 we waste at most half the allocated memory. Start with a small
908 (128-byte) buffer that will suffice in most cases anyway.
909 Use yysyntax_error to do most of the work.
910
911 * doc/bison.texinfo (Error Reporting, Table of Symbols):
912 yynerrs is the number of errors reported, not the number of
913 errors encountered.
914
a9739e7c
PE
915 * tests/glr-regression.at (Duplicated user destructor for lookahead):
916 Mark it as expected to fail.
917 Cast result of malloc; problem reported by twlevo@xs4all.nl.
918 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
919 Don't start user-code symbols with "yy", to avoid name space problems.
920
f479c6c6
AD
9212005-09-19 Akim Demaille <akim@epita.fr>
922
923 Remove the traits, failed experiment.
924 It never proved useful, and anyway because of the current
925 definition, it was not possible to have several specialization of
926 this traits, making it useless.
927 * data/lalr1.cc (yy:traits): Remove.
928 Inline its definitions in the parser class.
929
e2586f82
AD
9302005-09-19 Akim Demaille <akim@epita.fr>
931
932 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
933 least Mac OSX with a /usr/local install of gettext.
934
2e8cf949
AD
9352005-09-19 Akim Demaille <akim@epita.fr>
936
937 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
938 and yytoken for similarity with the other skeletons.
939
c7fb0b90
AD
9402005-09-19 Akim Demaille <akim@epita.fr>
941
942 * NEWS, configure.ac: Bump to 2.1a.
943
1bd0deda
PE
9442005-09-16 Paul Eggert <eggert@cs.ucla.edu>
945
946 * NEWS: Version 2.1.
947
948 * NEWS: Remove notice of yytname change, since it was never in an
949 official release.
950 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
951 diagnostic.
952 * src/output.c (prepare): Likewise.
953 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
954 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
955 is not defined. This is an awful hack, but it's enough for now.
956 All callers changed.
957 * tests/glr-regression-at (make_value): Args are const pointers now,
958 to avoid GCC warning.
959 (Duplicated user destructor for lookahead): New test. Currently
960 skipped. It fails on my host but I'm not sure it'll always fail.
961
9622005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
963
964 * src/symtab.h (struct symbol): Declare the printer and destructor
965 as const, to avoid accidental calls to free.
966 (symbol_destructor_set, symbol_printer_set): Adjust.
967 * src/symtab.c: Adjust.
968
1bd0deda 9692005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
970
971 * data/c.m4 (b4_token_enums): New.
972 (b4_token_defines): Rename as...
973 (b4_token_enums_defines): this.
974 (b4_token_defines): New, output only the #defines.
975 * data/yacc.c, data/glr.c: Adjust.
976 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
977 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
978 as default values.
979
dbcdae2d
AD
9802005-09-16 Akim Demaille <akim@epita.fr>
981
982 * data/lalr1.cc (yylex_): Remove, inline its code.
983 (yyreport_syntax_error_): Remove, replaced by...
984 (yysyntax_error_): this which returns a string and leaves to the
985 caller the call to the users' error function.
986 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
987 Move from members of the parser object...
988 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
989 to local variables of the parse function.
990
70d8f291
AD
9912005-09-16 Akim Demaille <akim@epita.fr>
992
993 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
994 since it's in Bison's name space.
995
b47dbebe
PE
9962005-09-15 Paul Eggert <eggert@cs.ucla.edu>
997
ae199bf1
PE
998 * data/glr.c (yyresolveValue): Add default case to pacify
999 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
1000
b47dbebe
PE
1001 * NEWS: Document when yyparse started to return 2.
1002 * doc/bison.texinfo (Parser Function): Document when yyparse
1003 returns 2.
1004
1005 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
1006 (b4_filename_type): Renamed back from b4_file_name_type. All uses
1007 changed.
1008 (class position): file_name -> filename (reverting). All uses changed.
1009
10102005-09-14 Paul Eggert <eggert@cs.ucla.edu>
1011
1012 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
1013 do anything if $@ exists. This reverts part of the 2005-07-07
1014 patch.
1015
00292f66
PE
10162005-09-11 Paul Eggert <eggert@cs.ucla.edu>
1017
1018 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
1019 contains obsolete information and isn't worth distributing as a
1020 separate file anyway.
1021 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
1022 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
1023 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
1024 (yyparse): Abort if user code uses longjmp to throw an unexpected
1025 value.
1026
a420f962
PE
10272005-09-09 Paul Eggert <eggert@cs.ucla.edu>
1028
00292f66
PE
1029 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
1030 Suggested by twlevo@xs4all.nl.
1031
127287e9
PE
1032 * data/glr.c (YYCHK1): Do not assume YYE is in range.
1033 This avoids a diagnostic from gcc -Wswitch-enum.
1034 Problem reported by twlevo@xs4all.nl.
1035
a420f962
PE
1036 * doc/bison.texinfo: Don't use "filename", as per GNU coding
1037 standards. Use "file name" or "file" or "name", depending on
1038 the context.
1039 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
1040 not to hack/foo.tab.c.
1041 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
1042 * data/glr.c: b4_filename -> b4_file_name.
1043 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
1044 All uses changed.
1045 (class position): filename -> file_name. All uses changed.
1046 * data/yacc.c: b4_filename -> b4_file_name.
1047 * lib/bitset.h: filename -> file_name in local vars.
1048 * lib/bitset_stats.c: Likewise.
1049 * src/files.c: Likewise.
1050 * src/scan-skel.l ("@output ".*\n): Likewise.
1051 * src/files.c (file_name_split): Renamed from filename_split.
1052 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
1053
10542005-09-08 Paul Eggert <eggert@cs.ucla.edu>
1055
1056 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
1057 to accommodate latest gnulib.
1058
1059 * tests/glr-regression.at (Duplicate representation of merged trees):
1060 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
1061
1062 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
1063 needed.
1064
42a6501d
PE
10652005-08-26 Paul Eggert <eggert@cs.ucla.edu>
1066
1067 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
1068 All uses changed. Invoke user destructor after an error during a
1069 split parse (trivial change from Joel E. Denny).
1070
1071 * tests/glr-regression.at
1072 (User destructor after an error during a split parse): New test case.
1073 Problem reported by Joel E. Denny in:
1074 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
1075
ef9a1faf
PE
10762005-08-25 Paul Eggert <eggert@cs.ucla.edu>
1077
5b4aaf78
PE
1078 * README-cvs: Give URLs for recommended tools.
1079 Mention Gzip version problem, and bootstrapping issues.
1080 Remove troubleshooting section, as it's somewhat obsolete.
1081
b5240ba5
PE
1082 * bootstrap (no_cache): New var, to accommodate different wget
1083 variants. Use it instead of '-C off'. Problem reported by
1084 twlevo@xs4all.nl.
1085
ef9a1faf
PE
1086 * data/glr.c (yydestroyStackItem): New function.
1087 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
1088 debugging information. Problem reported by Joel E. Denny.
1089
e6efa9da
AD
10902005-08-25 Akim Demaille <akim@epita.fr>
1091
1092 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
1093
adc90f13
PE
10942005-08-24 Paul Eggert <eggert@cs.ucla.edu>
1095
1096 * data/glr.c (yyrecoverSyntaxError, yyreturn):
1097 Don't invoke destructor on unresolved entries.
1098 * tests/glr-regression.at
1099 (User destructor for unresolved GLR semantic value): New test case.
1100 Problem reported by Joel E. Denny in:
1101 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
1102
f9315de5
PE
11032005-08-21 Paul Eggert <eggert@cs.ucla.edu>
1104
15d29c1f
PE
1105 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
1106 Add strnlen.c.
1107 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
1108 lib-prefix.m4, po.m4.
1109
dd5f2af2
PE
1110 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
1111 in yydestruct diagnostic, since it might not be an error.
1112 Problem reported by Joel Denny near end of
1113 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 1114 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
1115 * data/yacc.c (yyreturn): Likewise.
1116 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
1117
1118 * src/files.c: Remove obsolete FIXME comment.
1119
1120 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
1121 with the other templates, and to fix bogus run-on messages such
1122 as the one reported at the end of
1123 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
1124 All callers changed to avoid the newline.
1125 (yyprocessOneStack): Output two lines rather than one, to accommodate
1126 the above change. This changes the debug output format slightly.
1127
f9315de5
PE
1128 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
1129 reported by Joel E. Denny in
1130 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
1131 (trivial change).
1132 * tests/glr-regression.at (Duplicate representation of merged trees):
1133 New test, from Joel E. Denny in:
1134 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
1135 * THANKS: Add Joel E. Denny.
1136
1137 * configure.ac (AC_INIT): Bump to 2.0c.
1138
04098407
PE
11392005-07-24 Paul Eggert <eggert@cs.ucla.edu>
1140
1141 * NEWS: Version 2.0b.
1142
ca5d2013
PE
1143 * Makefile.am (SUBDIRS): Put examples before tests, so that
1144 "make check" doesn't finish with "All 1 tests passed".
1145
3d54b576
PE
1146 * tests/regression.at (Token definitions): Don't rely on
1147 AT_PARSER_CHECK for data that contains backslashes. It currently
1148 uses 'echo', and 'echo' isn't portable if its argument contains
1149 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
1150 that the byte '\0xff' is not printable in the C locale; it is,
1151 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
1152 not printable, so use '\0x81' to test.
1153
d53ae497
PE
1154 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
1155 version of GCC, since the macro is used with non-GCC compilers.
1156
fc01665e
PE
1157 Fix core dump reported by Pablo De Napoli in
1158 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
1159 * tests/regression.at (Invalid inputs with {}): New test.
1160 * src/parse-gram.y (token_name): Translate type before using
1161 it as an index.
1162
04098407
PE
1163 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
1164 the user's name space. All uses changed to __attribute__
1165 ((__unused__)).
1166 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
1167 Add __attribute__ ((__noreturn__)).
1168
1169 * etc/clcommit: Remove. We weren't using it, and it failed
1170 "make maintainer-distcheck".
1171 * Makefile.maint: Merge from coreutils.
1172 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
1173 (syntax-check-rules): Change list of rules as described below.
1174 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
1175 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
1176 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
1177 (sc_trailing_space): New rules.
1178 (sc_xalloc_h_in_src): Remove.
1179 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
1180 (sc_space_tab, sc_error_exit_success, sc_changelog):
1181 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
1182 (makefile-check, po-check, author_mark_check):
1183 (makefile_path_separator_check, copyright-check):
1184 Use grep -n, to make it easier to find violations.
1185 Use CVS_LIST and CVS_LIST_EXCEPT.
1186 (header_regexp, h_re): Remove.
1187 (dd_c): New macro.
1188 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
1189 (my-distcheck): Use more-modern GCC flags.
1190 (signatures, %.asc): Remove.
1191 (rel-files, announcement): Remove signatures.
1192 Restore old updating code, even though we don't use it, so
1193 that we're the same as coreutils.
1194 (alpha, beta, major): Depend on news-date-check.
1195 Make the upload commands.
1196
1197 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
1198 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
1199 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
1200 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
1201 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
1202 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
1203 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
1204 * tests/sets.at: Likewise.
1205
1206 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
1207 we comment out the Autoconf version number.
1208 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
1209 it's error-prone and "make maintainer-distcheck" rejects it.
1210
1211 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
1212 Indent calls to "error" to pacify "make maintainer-distcheck",
1213 when the calls are not intended to be translated.
1214 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
1215
1216 * src/Makefile.am (DEFS): Use +=, to pacify
1217 "make maintainer-distcheck".
1218 (bison_SOURCES): Add scan-skel.h.
1219 (sc_tight_scope): New rule, from coreutils.
1220
1221 * src/files.c (src_extension, header_extension):
1222 Now static, not extern.
1223 * src/getargs.c (short_options): Likewise.
1224 * src/muscle_tab.c (muscle_table): Likewise.
1225 * src/parse-gram.y (current_class, current_type, current_prec):
1226 Likewise.
1227 * src/reader.c (grammar_end, previous_rule_end): Likewise.
1228 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
1229 * src/main.c (main): Cast bindtextdomain and textdomain calls to
1230 void, to avoid warning when NLS is disabled.
1231 * src/output.c: Include scan-skel.h.
1232 (scan_skel): Remove decl, since scan-skel.h does this.
1233 (output_skeleton):
1234 Indent calls to "error" to pacify "make maintainer-distcheck".
1235 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
1236 * src/reader.h (gram_end, gram_lineno): New decls to pacify
1237 "make maintainer-distcheck".
1238 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
1239 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
1240 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
1241 (skel_lex_destroy, scan_skel): Move these decls to...
1242 * src/scan-skel.h: New file.
1243 * src/uniqstr.c (uniqstr_assert):
1244 Indent calls to "error" to pacify "make maintainer-distcheck".
1245
1246 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
1247 not @VAR@.
1248
1249 * tests/torture.at: Revamp to avoid misuse of atoi that
1250 "make maintainer-distcheck" complained about.
1251
1252 * examples/extexi (message): Don't print a message more than once,
1253 and omit line-number decoration that makes Emacs compile think
1254 that informative messages are worth worrying about.
1255
12562005-07-22 Paul Eggert <eggert@cs.ucla.edu>
1257
1258 * configure.ac: Update version number.
1259
1260 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
1261 accidentally.
1262 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
1263 autogenerated by the maintainer.
1264 * examples/calc++/.cvsignore: Add *.yy.
1265
1266 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
1267 * lib/bitset_stats.c (bitset_stats_init): Likewise.
1268 * lib/bitsetv.c (bitsetv_alloc): Likewise.
1269
1270 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
1271
1272 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
1273 from maintainer-distcheck about casting the argument of 'free'.
1274
1275 * NEWS: Mention recent yytname changes.
1276 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
1277
1278 * bootstrap: For translations that have not yet been upgraded to
1279 the new runtime-po domain, prime the pump by extracting the
1280 relevant strings from the obsolete translations. This code can be
1281 removed once the bison-runtime domain has been translated by each
1282 team.
1283
1284 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
1285 now that token names are already quoted.
1286
1287 Fix problem reported by Anthony Heading.
1288 * data/glr.c (YYTOKEN_TABLE): New macro.
1289 (yytname): Define if YYTOKEN_TABLE.
1290 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
1291 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
1292 (YYERROR_VERBOSE): Define the same way the other skeletons do.
1293 * src/output.c (prepare_symbols): Output token_table_flag.
1294
0ffda363
PE
12952005-07-21 Paul Eggert <eggert@cs.ucla.edu>
1296
1297 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
1298 again if the first call fails.
1299
1300 * data/glr.c (yytnamerr): New function.
1301 (yyreportSyntaxError): Use it to dequote most string literals.
1302 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
1303 with other skeletons. All uses changed.
1304 (yytnameerr_): New function.
1305 (yyreport_syntax_error): Use it to dequote most string literals.
1306 * data/yacc.c (yytnamerr): New function.
1307 (yyerrlab): Use it to decode most string literals.
1308 * doc/bison.texinfo (Decl Summary, Calling Convention):
1309 Clarify quoting convention of yytname.
1310 * src/output.c (prepare_symbols): Quote all names. This undoes
1311 the 2005-04-17 change, which is now accomplished (mostly) via
1312 changes in the parsers as described above.
1313 * tests/regression.at (Token definitions, Web2c Actions):
1314 Undo most 2005-04-17 change here, too.
1315
13162005-07-20 Paul Eggert <eggert@cs.ucla.edu>
1317
1318 Fix more problems reported by twlevo@xs4all.nl.
1319 * tests/cxx-type.at: Don't pipe output of ./types through sed to
1320 remove trailing spaces. This loses the exit status of ./types,
1321 and isn't needed since ./types shouldn't be emitting trailing
1322 spaces.
1323 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
1324 as the stack isn't valid in that case.
1325
1326 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
1327 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
1328 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
1329 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
1330 is used.
1331 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
1332 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
1333 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
1334 Likewise.
1335
1336 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
1337 overly-picky compilers that reject 'char *foo = "bar";'.
1338
1339 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
1340 to FILE * parameter, not to stderr. This fixes a typo introduced
1341 in the 2005-07-12 change.
1342
1343 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
1344 warnings from GCC 4.
1345
1346 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
1347 (yyglrShiftDefer, yysplitStack):
1348 Remove unused parameters b4_pure_formals. All uses changed.
1349 (yyglrShift): Remove unused parameters b4_user_formals.
1350 All uses changed.
1351 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
1352
6100a9aa
PE
13532005-07-18 Paul Eggert <eggert@cs.ucla.edu>
1354
258b75ca
PE
1355 Destructor cleanups and regularization among the three skeletons.
1356 * NEWS: Document the behavior changes.
1357 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
1358 stack before failing, as the cleanup code will do it for us now.
1359 * data/lalr1.cc (yyerrlab): Likewise.
1360 * data/glr.c (yyparse): Pop everything off the stack before
1361 freeing it, so that destructors get called properly.
1362 * data/lalr1.cc (yyreturn): Likewise.
1363 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
1364 This is more consistent.
1365 * doc/bison.texinfo (Destructor Decl): Mention more reasons
1366 why destructors might be called. 1.875 -> 2.1.
1367 (Destructor Decl, Decl Summary, Table of Symbols):
1368 Some English-language cleanups for %destructor.
1369 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
1370 Add output line for destructor of start symbol.
1371 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
1372 because of that same extra output line.
1373
1a059451
PE
1374 * NEWS: Document minor wording changes in diagnostics of
1375 Bison-generated parsers.
1376 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
1377 Remove unused formals. All uses changed.
1378 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
1379 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
1380 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
1381 Rename yyoverflowab to yyexhaustedlab.
1382 When memory exhaustion occurs during syntax-error reporting,
1383 report it separately rather than in a single diagnostic; this
1384 eases translation.
1385 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
1386 (Memory Exhausted): Renamed from Parser Stack Overflow.
1387 Revamp wording slightly to prefer "memory exhaustion".
1388 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
1389
97460c78
PE
1390 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
1391
30757c8c
PE
1392 Add i18n support to the GLR skeleton. Partially fix the C++
1393 skeleton; a C++ expert needs to finish this. Remove debugging
1394 msgids; there's little point to having them translated, since they
1395 can be understood only by someone who can read the
1396 (English-language) source code.
1397
1398 Generate runtime-po/bison-runtime.pot automatically, so that we
1399 don't have to worry about garbage getting in that file. We'll
1400 make sure after the next official release that old msgids don't
1401 get lost. See
1402 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
1403
1404 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
1405 Now auto-generated.
1406 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
1407 Fix typos in explanations of the runtime file.
1408 * bootstrap: Change gettext keyword from YYI18N to YY_.
1409 Use standard Makefile.in.in in runtime-po, since we'll arrange
1410 for backward-compatible bison-runtime.po files in a different way.
1411 * data/glr.c (YY_): New macro, from yacc.c.
1412 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
1413 Translate messages intended for users.
1414 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
1415 the wording in the other skeletons. We don't know that the memory
1416 is virtual.
1417 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
1418 Use same method that yacc.c uses.
1419 Don't translate debugging messages.
1420 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
1421 it doesn't work (yet), and requires C++ expertise to fix.
1422 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
1423 Move defn to a more logical place, to be consistent with other
1424 skeletons.
1425 Don't translate debugging messages.
1426 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
1427 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
1428 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
1429 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
1430
ac8c5689
PE
1431 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
1432 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
1433 void, not int.
1434 * tests/glr-regression.at (Badly Collapsed GLR States):
1435 Likewise.
1436 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
1437 yylex should return 0 at EOF rather than aborting.
1438
6100a9aa
PE
1439 Improve tests for stack overflow in GLR parser.
1440 Problem reported by twlevo@xs4all.nl.
1441 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
1442 All uses removed.
1443 (yyStackOverflow): Just longjmp, but with value 2 so that caller
1444 can handle the problem.
1445 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
1446 (yyparse): New local variable yyresult to record the result.
1447 Use result of setjmp to set it, rather than storing itinto
1448 struct.
1449 (yyDone): Remove label.
1450 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
1451 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
1452 if YYABORT is used).
1453 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
1454 yyparse status; put status > 1 into diagnostic.
1455 Check that status==2 works.
1456 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
1457 Use exit status 3 for failure to open (which shouldn't happen).
1458
15f40952
PE
14592005-07-17 Paul Eggert <eggert@cs.ucla.edu>
1460
67fd79c4
PE
1461 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
1462 1 on syntax error; just let yyparse do its thing.
1463 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
1464 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
1465 (Exploding the Stack Size with Alloca):
1466 (Exploding the Stack Size with Malloc):
1467 Expect exit status 2, not 1, since the parser is supposed to blow
1468 its stack. Problem reported by twlevo@xs4all.nl.
1469
15f40952
PE
1470 * data/glr.c (yyparse): Don't assume that the initial calls
1471 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
1472 Print a stack-overflow message and fail instead.
1473 Initialize the line-number information before creating the stack,
1474 so that the stack-overflow message can report line zero safely.
1475
f32c66b5
PE
14762005-07-14 Paul Eggert <eggert@cs.ucla.edu>
1477
a22ff96f 1478 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
1479 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
1480 (yyuserMerge): Provide a default case if b4_mergers is empty.
1481 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
1482 * tests/glr-regression.at
1483 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 1484 Add casts to pacify C++ compilers.
1beb0b24
PE
1485 * tests/glr-regression.at (Improper merging of GLR delayed action
1486 sets): Declare yylex before using it.
f32c66b5 1487 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
1488 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
1489 test for valgrind; valgrind is independent of g++.
1490 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
1491 for compatibility with POSIX 1003.1-2001 (if running coreutils).
1492 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
1493 Use a destructor, so that we can expand the stack. Change
1494 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 1495
d741bd1b
PE
14962005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
1497
1498 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
1499 a valgrind failure. Problem reported by twlevo@xs4all.nl.
1500
0410a6e0
PE
15012005-07-13 Paul Eggert <eggert@cs.ucla.edu>
1502
1503 * PACKAGING: New file, suggested by Bruno Haible and taken from
1504 similar wording in gettext's PACKAGING file.
1505 * NEWS: Mention PACKAGING.
1506 * Makefile.am (EXTRA_DIST): Add PACKAGING.
1507
f7ab6a50
PE
15082005-07-12 Paul Eggert <eggert@cs.ucla.edu>
1509
baf785db 1510 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
1511 * bootstrap: Get runtime translations into runtime-po.
1512 Create runtime-po files automatically, if possible.
1513 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
1514 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
1515 does not infringe on the user's name space.
1516 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
1517 * doc/bison.texinfo (Internationalization): Revamp the English
1518 and Texinfo syntax a bit, to try to make it clearer.
1519 (Bison Options, Option Cross Key): Mention --print-localedir.
1520 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
1521 YYENABLE_NLS. Quote a bit more.
1522 * runtime-po/.cvsignore: New file.
1523 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
1524 * runtime-po/Rules-quot: Remove; now created by bootstrap.
1525 * runtime-po/quot.sed: Likewise.
1526 * runtime-po/boldquot.sed: Likewise.
1527 * runtime-po/en@quot.header: Likewise.
1528 * runtime-po/en@boldquot.header: Likewise.
1529 * runtime-po/insert-header.sin: Likewise.
1530 * runtime-po/remove-potcdate.sin: Likewise.
1531 * runtime-po/Makevars: Likewise.
1532 * runtime-po/LINGUAS: Likewise.
1533 * runtime-po/de.po: Likewise; we will rely on the translation project
1534 to maintain this, so "bootstrap" should get it.
0410a6e0 1535 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
1536 its value.
1537 * src/main.c (main): Bind the bison-runtime domain, too.
1538
15392005-07-12 Bruno Haible <bruno@clisp.org>
1540
1541 * data/yacc.c: Include <libintl.h> when NLS is enabled.
1542 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
1543 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
1544 * runtime-po: New directory.
1545 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
1546 $(DOMAIN).pot-update rule, so that old messages are never dropped.
1547 * runtime-po/Rules-quot: New file, copied from po/.
1548 * runtime-po/quot.sed: Likewise.
1549 * runtime-po/boldquot.sed: Likewise.
1550 * runtime-po/en@quot.header: Likewise.
1551 * runtime-po/en@boldquot.header: Likewise.
1552 * runtime-po/insert-header.sin: Likewise.
1553 * runtime-po/remove-potcdate.sin: Likewise.
1554 * runtime-po/Makevars: New file.
1555 * runtime-po/POTFILES.in: New file.
1556 * runtime-po/LINGUAS: New file.
1557 * runtime-po/bison-runtime.pot: New file.
1558 * runtime-po/de.po: New file.
1559 * m4/bison.m4: New file.
1560 * Makefile.am (SUBDIRS): Add runtime-po.
1561 (aclocaldir, aclocal_DATA): New variables.
1562 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
1563 Define aclocaldir.
1564 * src/getargs.c (usage): Document --print-localedir option.
1565 (PRINT_LOCALEDIR_OPTION): New enum item.
1566 (long_options): Add --print-localedir option.
1567 (getargs): Handle --print-localedir option.
1568 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
1569 (Internationalization): New section.
1570
22dda0f0
AD
15712005-07-12 Akim Demaille <akim@epita.fr>
1572
1573 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
1574 for consistency with the rest of the code.
1575 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
1576 Add separators.
1577
82b248ad
AD
15782005-07-12 Akim Demaille <akim@epita.fr>
1579
1580 * src/parse-gram.y: Use %printer instead of YYPRINT.
1581
fa0e9314
AD
15822005-07-12 Akim Demaille <akim@epita.fr>
1583
867a3e00
AD
1584 * src/symtab.h, src/symtab.c (symbol_print): New.
1585 * src/symlist.h, src/symlist.c (symbol_list_print): New.
1586 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
1587
15882005-07-12 Akim Demaille <akim@epita.fr>
1589
1590 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
1591 b4_at_dollar and b4_dollar_dollar.
1592
e054b190
PE
15932005-07-11 Paul Eggert <eggert@cs.ucla.edu>
1594
1595 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
1596 and Pennello's paper.
1597
34160ec4
PE
15982005-07-09 Paul Eggert <eggert@cs.ucla.edu>
1599
407d4a75
PE
1600 * data/yacc.c (yyparse): Undo previous patch. Instead,
1601 set yylsp[0] and yyvsp[0] only if the initial action
1602 sets yylloc and yylval, respectively.
1603
34160ec4
PE
1604 * data/yacc.c (yyparse): In the initial action, set
1605 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
1606 This avoids the use of undefined variables if the initial
1607 action does not set yylloc and/or yylval.
1608
c3d5a4a7
PE
16092005-07-07 Paul Eggert <eggert@cs.ucla.edu>
1610
b34d96c1
PE
1611 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
1612 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
1613 Remove from CVS. These files are automatically generated.
1614 * examples/extexi: Clarify that this file is now part of Bison,
1615 not GNU M4, and that it works with any POSIX-compatible Awk.
1616 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
1617 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
1618 so that we also get calc++-parser.yy. Geneate it.
1619 Use $(AWK), not gawk, since any conforming Awk will do.
1620 Put comment before action, since older 'make' can't handle comment
1621 in action.
1622 $(BUILT_SOURCES): List all built sources, not just some of them.
1623 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
1624 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
1625 $($(calc_sources_generated)): Remove unnecessary test for existence
1626 of target. (This had a shell syntax error anyway; a stray "x".)
1627 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
1628 calc++-parser.yy.
1629 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
1630
c3d5a4a7
PE
1631 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
1632 implied by the other modules.
1633
828c373b
AD
16342005-07-06 Akim Demaille <akim@epita.fr>
1635
1636 Bind examples/calc++ to the package.
1637 * examples/calc++/Makefile: Remove, replaced by...
1638 * examples/calc++/Makefile.am: ... this new file.
1639 * examples/calc++/test: Remove input.
1640 * examples/calc++/compile: Remove.
1641 * examples/Makefile.am: New.
1642 * configure.ac, Makefile.am: Adjust.
1643 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
1644
63cb01d6
PE
16452005-07-05 Paul Eggert <eggert@cs.ucla.edu>
1646
fd2df2ed
PE
1647 * data/glr.c (yyFail): Drastically simplify; since the format argument
1648 never had any % directives, we can simply pass it to yyerror.
1649 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
1650 be modified later, as that is the usual style in glr.c.
1651 Problems reported by Paul Hilfinger.
1652
63cb01d6
PE
1653 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
1654 and size overflow errors.
1655 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
1656 in case the user prolog sets feature-test macros like _GNU_SOURCE.
1657 (YYSIZEMAX): New macro.
1658 (yystpcpy): New function, taken from yacc.c.
1659 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
1660 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
1661 so that we don't have to maintain their signatures.
1662 (yyFail): Check for buffer overflow, by using vsnprintf rather
1663 than vsprintf. Allocate a bigger buffer if possible.
1664 Report an error if buffer allocation fails.
1665 (yyStackOverflow): New function.
1666 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
1667 the initialization was successful. It might fail if storage was
1668 exhausted.
1669 (yyexpandGLRStack): Add more checks for storage allocation failure.
1670 Use yyStackOverflow to report failures.
1671 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
1672 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
1673 Don't assume stack number fits in int.
1674 (yysplitStack): Check for storage allocation failure.
1675 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
1676 can print diagnostics on storage allocation failure. All callers
1677 changed.
1678 (yyresolveValue): Use yybool for boolean.
1679 (yyreportSyntaxError): Check for size-calculation overflow.
1680 This code is taken from yacc.c.
1681 (yyparse): Check for storage allocation errors when allocating
1682 the initial stack.
1683
1c59e0a1
AD
16842005-07-05 Akim Demaille <akim@epita.fr>
1685
1686 Extract calc++ from the documentation.
1687 * doc/bison.texinfo (Calc++): Add the extraction marks.
1688 * examples/extexi: New, from the aborted GNU Programming 2E.
1689 Separate the different paragraph of a file with empty lines.
1690 * examples/Makefile: Use it to extract the whole calc++ example.
1691
8a0adb01
AD
16922005-06-24 Akim Demaille <akim@epita.fr>
1693
1694 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
1695 class typedefs.
1696
12545799
AD
16972005-06-22 Akim Demaille <akim@epita.fr>
1698
1699 * doc/bison.texinfo (C++ Language Interface): First stab.
1700 (C++ Parsers): Remove.
1701
99be0235
AD
17022005-06-22 Akim Demaille <akim@epita.fr>
1703
1704 * data/lalr1.cc (yylex_): Honor %lex-param.
1705
0ffd4fd1
AD
17062005-06-22 Akim Demaille <akim@epita.fr>
1707
1708 Start a set of simple examples.
1709 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
1710 * examples/calc++/calc++-driver.hh,
1711 * examples/calc++/calc++-parser.yy,
1712 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
1713 * examples/calc++/compile, examples/calc++/test: New.
1714
0925ebb4
PE
17152005-06-09 Paul Eggert <eggert@cs.ucla.edu>
1716
1717 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
1718 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
1719 which stems from the 2005-05-27 patch.
1720
43d3b664
PH
17212005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
1722
1723 * data/glr.c: Modify treatment of unused parameters to permit use
1724 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
1725
3062864d
PE
17262005-05-30 Paul Eggert <eggert@cs.ucla.edu>
1727
1728 Fix infringement on user name space reported by Janos Zoltan Szabo.
1729 * data/yacc.c (yyparse): strlen -> yystrlen.
1730
989b5b8e
AD
17312005-05-30 Akim Demaille <akim@epita.fr>
1732
1733 * data/lalr1.cc (_): New.
1734 Translate the various messages.
1735
bedf57f5
PE
17362005-05-27 Paul Eggert <eggert@cs.ucla.edu>
1737
1738 Fix infringement on user name space reported by Bruno Haible.
1739 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
1740 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
1741 the user's name space.
1742 (alloca): Include <stdlib.h> to get it, if it's not built in.
1743 (YYMALLOC, YYFREE): Define only if needed.
1744 (malloc, free): Declare, but only if needed, as this infringes on
1745 the user name space.
1746
4d1801f1
PE
17472005-05-25 Paul Eggert <eggert@cs.ucla.edu>
1748
1749 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
1750 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
1751 with %d format.
1752 * lib/ebitset.c (min, max): Undef before defining.
1753 * lib/vbitset.c (min, max): Likewise.
1754 * lib/subpipe.c (create_subpipe): Save local variables in case
1755 vfork clobbers them.
1756
17572005-05-24 Bruno Haible <bruno@clisp.org>
1758
1759 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
1760 error message syntax used by gcc-4.0.
1761
b94a9e1e
PE
17622005-05-23 Paul Eggert <eggert@cs.ucla.edu>
1763
85ac3861
PE
1764 * README: Mention m4 1.4.3. Remove obsolete advice about
1765 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
1766
b94a9e1e
PE
1767 * bootstrap: Remove workaround for problem I encountered with
1768 gettext 0.14.1; it seems to be fixed now.
1769
51c30d21
PE
17702005-05-22 Paul Eggert <eggert@cs.ucla.edu>
1771
009ce67d
PE
1772 * NEWS: Version 2.0a.
1773
f2a97c62
PE
1774 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
1775 the previous change.
1776
c8775f93
PE
1777 Various maintainer cleanups.
1778 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
1779 conftest*, for benefit of CVS commands run at the same time as
1780 "configure". Add build-aux, since "bootstrap" now creates it and
1781 its subfiles.
1782 * Makefile.cfg (move_if_change): Remove.
1783 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
1784 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
1785 (po_repo, do-po-update, po-update, wget_files, get-targets):
1786 (config.guess-url_prefix, config.sub-url_prefix):
1787 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
1788 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
1789 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
1790 Remove.
1791 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
1792 this is now the recommended name.
1793 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
1794 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
1795 ylwrap. These files now go into build-aux.
1796 * config/move-if-change: Remove.
1797 * config/prev-version.txt: Bump from 1.75 to 2.0.
1798
3ea5f0ec
PE
1799 * bootstrap: Add stdio-safer, unistd-safer modules.
1800 Remove m4/glibc2.m4 (introduced by latest gnulib, but
1801 we don't need it).
1802 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
1803 fopen-safer.c, stdio-safer.h, unistd-safer.h.
1804 * lib/subpipe.c: Include "unistd-safer.h".
1805 (create_subpipe): Make sure all the newly-created
1806 file descriptors are > 2, so that diagnostics don't
1807 get sent down them (which might cause Bison to hang, in theory).
1808 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
1809 * src/files.c (xfopen): Use fopen_safer, not fopen.
1810
51c30d21
PE
1811 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
1812 yesterday's yacc.c fix.
1813
cea1469d
PE
18142005-05-21 Paul Eggert <eggert@cs.ucla.edu>
1815
3ea5f0ec
PE
1816 * data/glr.c, data/lalr1.cc: Update copyright date.
1817
cea1469d
PE
1818 Fix a destructor bug reported by Wolfgang Spraul in
1819 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
1820 * data/yacc.c (yyabortlab): Don't call destructor, and
1821 don't set yychar to EMPTY.
1822 (yyoverflowlab): Don't call destructor.
1823 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
1824 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
1825 since we no longer output the message "discarding lookahead token
1826 end of input ()".
1827
5e6f62f2
PH
18282005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
1829
1830 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
1831 fix a small glitch in debugging output.
1832 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
1833 after YY_SYMBOL_PRINT where needed.
1834
1835 (struct yyGLRState): Add some comments.
1836 (struct yySemanticOption): Add some comments.
1837 (union yyGLRStackItem): Add comment.
1838
1839 (yymergeOptionSets): Correct this to properly perform the union,
1840 avoiding infinite reported by Michael Rosien.
1841 Update comment.
1842
1843 * tests/glr-regression.at: Add test for GLR merging error reported
1844 by M. Rosien.
cea1469d 1845
0fb669f9
PE
18462005-05-13 Paul Eggert <eggert@cs.ucla.edu>
1847
1848 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
1849 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
1850 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
1851 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
1852 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
1853 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
1854 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
1855 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
1856 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
1857 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
1858 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
1859 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
1860 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
1861 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
1862 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
1863 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
1864 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
1865 src/derives.h, src/files.c, src/files.h, src/getargs.c,
1866 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
1867 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
1868 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
1869 src/output.h, src/parse-gram.c, src/parse-gram.h,
1870 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
1871 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
1872 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
1873 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
1874 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
1875 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
1876 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
1877 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
1878 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
1879 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
1880 tests/reduce.at, tests/regression.at, tests/sets.at,
1881 tests/synclines.at, tests/testsuite.at, tests/torture.at:
1882 Update FSF postal mail address.
1883
51f4735e
PE
18842005-05-11 Paul Eggert <eggert@cs.ucla.edu>
1885
1886 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
1887 Problem reported by Ralf Menzel.
1888
80ce3401
PE
18892005-05-01 Paul Eggert <eggert@cs.ucla.edu>
1890
1891 * tests/actions.at: Test that stack overflow invokes destructors.
1892 From Marcus Holland-Moritz.
1893 * data/yacc.c (yyerrlab): Move the code that destroys the stack
1894 from here....
1895 (yyreturn): to here. That way, destructors are called properly
1896 even if the stack overflows, or the user calls YYACCEPT or
1897 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
1898 (yyoverflowlab): Destroy the lookahead.
1899
19002005-04-24 Paul Eggert <eggert@cs.ucla.edu>
1901
1902 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
1903
72f000b0
PE
19042005-04-17 Paul Eggert <eggert@cs.ucla.edu>
1905
1906 * NEWS: Bison-generated C parsers no longer quote literal strings
1907 associated with tokens.
1908 * src/output.c (prepare_symbols): Don't escape strings,
1909 since users don't want to see C escapes.
1910 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
1911 in diagnostics.
c19683bb 1912 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
1913 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
1914
1094323f
PE
19152005-04-16 Paul Eggert <eggert@cs.ucla.edu>
1916
1917 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
1918 the data size is known to be too small and we can't increase it.
1919 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
1920
ca407bdf
PE
19212005-04-15 Paul Eggert <eggert@cs.ucla.edu>
1922
1923 * src/parse-gram.y: Include quotearg.h.
1924 (string_as_id): Quote $1 before using it as a key, since the
1925 lexer no longer quotes it for us.
1926 (string_content): Don't strip quotes, since lexer no longer
1927 quotes it for us.
1928 * src/scan-gram.l: Include quotearg.h.
1929 ("\""): Omit quote.
1930 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
1931 a key, since the rest of the lexer doesn't quote it.
1932 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
1933 * tests/regression.at (Token definitions): Check for backslashes
1934 in token strings.
1935
1936 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
1937 (YYSIZE_T): Define to unsigned long int when using an older compiler.
1938 (yyparse): Revamp code to generate long syntax error message, to
1939 make it easier to translate, and to avoid problems with arithmetic
1940 overflow. Change "virtual memory" to "memory" in diagnostic, since
1941 we don't know whether the memory is virtual.
1942
1ce59070
PE
19432005-04-13 Paul Eggert <eggert@cs.ucla.edu>
1944
1945 * NEWS: Bison-generated C parsers now use the _ macro to
1946 translate strings.
1947 * data/yacc.c (_) [!defined _]: New macro.
1948 All English strings wrapped inside this macro.
1949 * doc/bison.texinfo (Bison Parser): Document _.
1950 * po/POTFILES.in: Include src/parse-gram.c, since it now
1951 includes translateable strings that parse-gram.y doesn't.
1952
a749a695
PE
19532005-04-12 Paul Eggert <eggert@cs.ucla.edu>
1954
1955 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
1956 reverting the 2004-10-11 change to this function.
1957 (symbol_check_alias_consistency): Don't call symbol_type_set
1958 if the type name is already correct.
1959 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
1960
8fb1053b
PE
19612005-03-25 Paul Eggert <eggert@cs.ucla.edu>
1962
1963 * tests/regression.at (Token definitions): Don't use a token named
1964 c, as that generates a "#define c ..." that runs afoul of buggy
1965 stdlib.h that uses the identifier c as a member of struct
1966 drand48_data. Problem reported by Horst Wente.
1967
ff498c4a
PE
19682005-03-21 Paul Eggert <eggert@cs.ucla.edu>
1969
1970 * bootstrap: Change translation URL from
1971 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
1972 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
1973 redirection glitches. Problem reported by twlevo@xs4all.nl.
1974
65211d70
PE
19752005-03-20 Paul Eggert <eggert@cs.ucla.edu>
1976
1977 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
1978 after operands; POSIX says this isn't portable for the c99 command.
1979
9577fb1f
PE
19802005-03-18 Paul Eggert <eggert@cs.ucla.edu>
1981
1982 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
1983 immediately if a data overrun has occurred; this may help us track
1984 down what may be a spurious failure on MacOS.
1985
78b178f7
PE
19862005-03-17 Paul Eggert <eggert@cs.ucla.edu>
1987
a2599d0f
PE
1988 Respond to problems reported by twlevo@xs4all.nl.
1989
1990 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
1991
78b178f7
PE
1992 * src/vcg.h: Comment fix.
1993 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
1994 (G_CMAX): Change to -1 instead of INT_MAX.
1995
1996 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 1997
7296e729
PE
19982005-03-15 Paul Eggert <eggert@cs.ucla.edu>
1999
2000 * src/tables.c (state_number_to_vector_number): Put it inside an
2001 "#if 0", since it's not currently used. Problem reported by
2002 Roland McGrath.
2003
05ac60f3
PE
20042005-03-06 Paul Eggert <eggert@cs.ucla.edu>
2005
2006 * src/output.c (escaped_output): Renamed from
2007 escaped_file_name_output, since we now use it for symbol tags as
2008 well. All uses changed.
2009 (symbol_destructors_output, symbol_printers_output):
2010 Escape symbol tags too.
2011 Problem reported by Matyas Forstner in
2012 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
2013
2014 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
2015 not needed.
2016 * src/output.c (user_actions_output, token_definitions_output,
2017 symbol_destructors_output, symbol_printers_output): Likewise.
2018 * src/reader.c (prologue_augment): Likewise.
2019 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
2020
2021 * src/vcg.c (output_edge): Don't quote linestyle arg.
2022 Problem reported by twlevo@xs4all.nl.
2023
7eb453ac
PE
20242005-02-28 Paul Eggert <eggert@cs.ucla.edu>
2025
2026 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
2027 example, reported by Derek M Jones. Also, make the example even
2028 more outrageous, to better illustrate how bad the problem is.
2029
4c04c52a
PE
20302005-02-24 Paul Eggert <eggert@cs.ucla.edu>
2031
2032 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
2033 putsym. Typo reported by Sebastian Piping.
2034
a61e1620
PE
20352005-02-23 Paul Eggert <eggert@cs.ucla.edu>
2036
2037 * doc/bison.texinfo (Language and Grammar): some -> same
2038 (Epilogue): int he -> in the
2039 Typos reported by Sebastian Piping via Justin Pence.
2040
9ec93868
PE
20412005-02-07 Paul Eggert <eggert@cs.ucla.edu>
2042
2043 * tests/glr-regression.at (Improper handling of embedded actions
2044 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
2045 embedded actions and $-N in GLR parsers", work around an Autoconf bug
2046 with dollar signs in test names.
2047 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
2048 for a similar reason.
2049
73ce7e7e
PE
20502005-01-28 Paul Eggert <eggert@cs.ucla.edu>
2051
2052 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
2053 wants to redefine G_VIEW.
2054
2e72b98e
PE
20552005-01-27 Paul Eggert <eggert@cs.ucla.edu>
2056
2057 * src/vcg.c (get_view_str): Remove case for normal_view.
2058 Problem reported by twlevo@xs4all.nl.
2059
e0d634e5
PE
20602005-01-24 Paul Eggert <eggert@cs.ucla.edu>
2061
ccf830a4
PE
2062 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
2063 Problem reported by twlevo@xs4all.nl.
2064
e0d634e5
PE
2065 * doc/bison.texinfo: Change @dircategory from "GNU programming
2066 tools" to "Software development". Requested by Richard Stallman
2067 via Karl Berry.
2068
7bbc8cb0
PE
20692005-01-23 Paul Eggert <eggert@cs.ucla.edu>
2070
2071 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
2072 Problem reported by twlevo@xs4all.nl.
2073
08b770bc
PE
20742005-01-21 Paul Eggert <eggert@cs.ucla.edu>
2075
2076 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
2077 keyword; it's not needed with modern compilers, and it doesn't
2078 affect correctness with older compilers. Suggested by
2079 twlevo@xs4all.nl.
2080
95f22ad2
PE
20812005-01-17 Paul Eggert <eggert@cs.ucla.edu>
2082
2083 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
2084 gcc -Wswitch-default.
2085 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
2086 * data/yacc.c (yyparse): Likewise.
2087
d229d15c
PE
20882005-01-12 Paul Eggert <eggert@cs.ucla.edu>
2089
2090 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
2091 already. Let config.h define any nonstandard values.
2092
ecadd90f
PE
20932005-01-10 Paul Eggert <eggert@cs.ucla.edu>
2094
2095 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
2096 for the benefit of slower hosts. Problem reported by
2097 Nelson H. F. Beebe.
2098
213744b5
PE
20992005-01-07 Paul Eggert <eggert@cs.ucla.edu>
2100
2101 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
2102 being defined and not used.
2103 * data/lalr1.cc (yyparse): Likewise.
2104 Use "if (false)" rather than "if (0)".
2105
249d3236
PE
21062005-01-05 Paul Eggert <eggert@cs.ucla.edu>
2107
2108 * TODO: Mention that we should allow NUL bytes in tokens.
2109
987cc1fb
PE
21102005-01-02 Paul Eggert <eggert@cs.ucla.edu>
2111
2112 * src/scan-skel.l (<<EOF>>): Don't close standard output.
2113 Problem reported by Hans Aberg.
2114
08fe02d9
PE
21152005-01-01 Paul Eggert <eggert@cs.ucla.edu>
2116
2117 * src/getargs.c (version): Happy new year; update overall
2118 program copyright date from 2004 to 2005.
2119
2120 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
2121 Problem reported by Hans Aberg.
2122 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
2123 (Output file names.): Add a test for the case when standard output
2124 is closed.
2125
010c0266
PE
21262004-12-26 Paul Eggert <eggert@cs.ucla.edu>
2127
2128 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
2129 to fix an oversight in the Bison 2.0 manual.
2130
da12206a
PE
21312004-12-25 Paul Eggert <eggert@cs.ucla.edu>
2132
2133 * NEWS: Version 2.0. Reformat the existing news items since
2134 1.875, so that related items are grouped together.
3a4734aa 2135 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
2136 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
2137
c935d934
PE
2138 * tests/torture.at (Exploding the Stack Size with Alloca): Set
2139 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
2140 otherwise, we're not testing alloca. Unfortunately there's no
2141 simple way to consult HAVE_ALLOCA here.
2142
da12206a
PE
2143 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
2144 for yymsg, too.
2145
2146 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
2147 hand. This avoids a warning about comparing int to size_t when
2148 GCC warnings are enabled.
2149
0a2c5137
PE
21502004-12-22 Paul Eggert <eggert@cs.ucla.edu>
2151
d7e14fc0
PE
2152 * NEWS: Bison-generated parsers no longer default to using the
2153 alloca function (when available) to extend the parser stack, due
2154 to widespread problems in unchecked stack-overflow detection.
2155 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
2156 responsibility to set it to a positive value. This lets the user
2157 specify a value that is not a preprocessor constant.
2158 * data/yacc.c (YYMAXDEPTH): Likewise.
2159 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
2160 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
2161 to be a compile-time constant. However, explain the constraints on it.
2162 Also, explain the constraints on YYINITDEPTH.
2163 (Table of Symbols): Explain that alloca is no longer the default.
2164 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
2165 to 1.
2166
0a2c5137
PE
2167 * doc/bison.texinfo (Location Default Action): Mention that n must
2168 be zero when k is zero. Suggested by Frank Heckenbach.
2169
e019c247
AD
21702004-12-22 Akim Demaille <akim@epita.fr>
2171
2172 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
2173 (parser::state_type, parser::semantic_type, parser::location_type):
2174 Private, not public.
2175 (parser::parse): Return ints, not bool.
2176 Returning a bool introduces a problem: 0 corresponds to false, and
2177 it seems weird to return false on success. Returning true changes
2178 the conventions for yyparse.
2179 Alternatively we could return void and send an exception.
2180 There is no clear consensus (yet?).
2181 (state_stack, semantic_stack, location_stack): Rename as...
2182 (state_stack_type, semantic_stack_type, location_stack_type): these.
2183 Private, not public.
2184 * tests/c++.at: New.
2185 * tests/testsuite.at, tests/Makefile.am: Adjust.
2186
72731bb7
AD
21872004-12-21 Akim Demaille <akim@epita.fr>
2188
2189 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
2190
9a0d8bec
AD
21912004-12-21 Akim Demaille <akim@epita.fr>
2192
2193 Don't impose std::string for filenames.
2194
2195 * data/lalr1.cc (b4_filename_type): New.
2196 (position::filename): Use it.
2197 (parser.hh): Move the inclusion of stack.hh and location.hh below
2198 the user code, so that needed headers for the filename type can be
2199 included first.
72731bb7
AD
2200 Forward declare them before the user code.
2201 * tests/Makefile.am (check-local, installcheck-local): Pass
2202 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 2203
99880de5
AD
22042004-12-20 Akim Demaille <akim@epita.fr>
2205
2206 Use more STL like names: my_class instead of MyClass.
2207
2208 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
2209 (SemanticStack, SemanticType, StateStack, StateType)
2210 (TokenNumberType, Stack, Slice, Traits, Parser::location)
2211 (Parser::value): Rename as...
2212 (location_stack, location_type, rhs_number_type, semantic_stack)
2213 (semantic_type, state_stack, state_type, token_number_type, stack)
2214 (slice, traits, parser::yylloc, parser::yylval): these.
2215
2216 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
2217
9bec482e
PE
22182004-12-19 Paul Eggert <eggert@cs.ucla.edu>
2219
2220 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
2221 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
2222
f6fbd3da
PE
22232004-12-17 Paul Eggert <eggert@cs.ucla.edu>
2224
2225 Remove uses of 'short int' and 'unsigned short int'. This raises
2226 some arbitrary limits. It uses more memory but nowadays that's
2227 not much of an issue.
2228
2229 This change does not affect the generated parsers; that's a different
2230 task, as some users will want to conserve memory there.
2231
2232 Ideally we should use size_t to represent all object counts, and
2233 something like ptrdiff_t to represent signed differences of object
2234 counts; but that will require more code-cleanup than I have the
2235 time to do right now.
2236
2237 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
2238 Use size_t, not int or short int, to count objects.
2239 * src/closure.c (nritemset, closure): Likewise.
2240 * src/closure.h (nritemset, closure): Likewise.
2241 * src/nullable.c (nullable_compute): Likewise.
2242 * src/print.c (print_core): Likewise.
2243 * src/print_graph.c (print_core): Likewise.
2244 * src/state.c (state_compare, state_hash): Likewise.
2245 * src/state.h (struct state): Likewise.
2246 * src/tables.c (default_goto, goto_actions): Likewise.
2247
2248 * src/gram.h (rule_number, rule): Use int, not short int.
2249 * src/output.c (prepare_rules): Likewise.
2250 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
2251 errs, reductions): Likewise.
2252 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
2253 Likewise.
2254 * src/tables.c (vector_number, tally, action_number,
2255 ACTION_NUMBER_MINIMUM): Likewise.
2256 * src/output.c (muscle_insert_short_int_table): Remove.
2257
efeed023
AD
22582004-12-17 Akim Demaille <akim@epita.fr>
2259
2260 * data/lalr1.cc: Extensive Doxygenation.
2261 (error_): Rename as...
2262 (error): this, since it is visible to the user.
2263 Adjust callers.
2264 (Parser::message): Now an automatic variable from...
2265 (Parser::yyreport_syntax_error_): here.
2266 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
2267 Parser::error.
2268 * tests/input.at: Escape $.
2269
bc82c5a5
PE
22702004-12-16 Paul Eggert <eggert@cs.ucla.edu>
2271
2272 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
2273 Parenthesize rhs to avoid obscure problems with mistakes like
2274 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
2275 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
2276 b4_rhs_location): Likewise.
2277 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
2278 b4_rhs_location): Likewise.
2279
fd19f271
AD
22802004-12-16 Akim Demaille <akim@epita.fr>
2281
2282 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
2283 yacc.c: be sure to stay within yycheck_.
2284 * tests/actions.at: Re-enable C++ tests.
2285
10454ea4
AD
22862004-12-16 Akim Demaille <akim@epita.fr>
2287
2288 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
2289 real.
2290
c5b95ccf
AD
22912004-12-16 Akim Demaille <akim@epita.fr>
2292
2293 Use #define to handle the %name-prefix.
2294
2295 * data/glr.c, data/yacc.c: Comment changes.
2296 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
2297 so that one can refer to yylex in the parser file, and have it
2298 renamed, as is the case with other skeletons.
2299
617a8f12
AD
23002004-12-16 Akim Demaille <akim@epita.fr>
2301
2302 Move lalr1.cc internals into yy*.
2303
2304 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
2305 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
2306 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
2307 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
2308 (empty_, final_, terror_, errcode_, ntokens_)
2309 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
2310 (looka_, ilooka_, error_range_, nerrs_):
2311 Rename as...
2312 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
2313 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
2314 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
2315 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
2316 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
2317 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
2318 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
2319 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
2320 these.
2321
1e547e6e
PE
23222004-12-15 Paul Eggert <eggert@cs.ucla.edu>
2323
2324 Fix some problems reported by twlevo at xs4all.
2325 * src/symtab.c (symbol_new): Report an error if the input grammar
2326 contains too many symbols. This is better than calling abort() later.
2327 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
2328 (struct node, struct graph):
2329 Rename member expand to stretch. All uses changed.
2330 (struct graph): Remove member layoutalgorithm. All uses removed.
2331 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
2332 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
2333 All uses changed.
2334 (N_STRETCH): Rename from N_EXPAND. All uses changed.
2335
735d6bd4
AD
23362004-12-15 Akim Demaille <akim@epita.fr>
2337
2338 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
2339 Add more Doxygen comments.
2340 (symprint_, stack_print_, reduce_print_, destruct_, pop)
2341 (report_syntax_error_, translate_): Rename as...
2342 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
2343 (yypop_, yyreport_syntax_error_, yytranslate_): this.
2344
2e1f5829
AD
23452004-12-15 Akim Demaille <akim@epita.fr>
2346
2347 * data/lalr1.cc (lex_): Rename as...
2348 (yylex_): this.
2349 Move the trace here.
2350 Take the %name-prefix into account.
2351 Reported by Alexandre Duret-Lutz.
2352
a3cb6248
AD
23532004-12-15 Akim Demaille <akim@epita.fr>
2354
2355 Simplify the C++ parser constructor.
2356
2357 * data/lalr1.cc (debug_): Rename as...
2358 (yydebug_): so that the parser's internals are always in the yy*
2359 pseudo namespace.
2360 Adjust uses.
2361 (b4_parse_param_decl): Remove the leading comma as it is now only
2362 called as unique argument list.
2363 (Parser::Parser): Remove the constructor accepting a location and
2364 an initial debugging level.
2365 Remove from the other ctor the argument for the debugging level.
2366 (debug_level_type, debug_level, set_debug_level): New.
2367
2368 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
2369 constructor calls.
2370
07fed891
AD
23712004-12-15 Akim Demaille <akim@epita.fr>
2372
2373 Remove b4_root related material: failure experiment
a3cb6248 2374 (which goal was to allow to derive from a class).
07fed891
AD
2375
2376 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
2377 definitions and uses.
2378
e603eaa5
PE
23792004-12-14 Paul Eggert <eggert@cs.ucla.edu>
2380
2381 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
2382 not 2, since it's not portable to subtract 1 from the start of an
2383 array. The new item 0 is never set or used. All uses changed.
2384
2385 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
2386 the default definition of YYLLOC_DEFAULT. Problem reported
2387 by Frank Heckenbach.
2388
fafb007d
PE
23892004-12-12 Paul Eggert <eggert@cs.ucla.edu>
2390
2391 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
2392 the normal case and one for the error case. Just use the
2393 first one uniformly. Problem reported by Frank Heckenbach.
2394 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
2395 use exactly the same macro in both places.
2396 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
2397 so that the normal-case YYRHSLOC works for the error case too.
2398 All uses changed.
2399 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
2400 (YYLLOC_DEFAULT): Use the same macro as glr.c.
2401 * doc/bison.texinfo (Location Default Action): Don't claim that
2402 we have an array of locations. Use the same macro for both glr
2403 and lalr parsers. Mention YYRHSLOC. Mention what happens when
2404 the index is 0.
2405
48814dcd
PE
24062004-12-10 Paul Eggert <eggert@cs.ucla.edu>
2407
a4e1a53b
PE
2408 * HACKING: Update email addresses to send announcements to.
2409
48814dcd
PE
2410 * configure.ac (AC_INIT): Bump version to 1.875f.
2411
337116ba
PE
24122004-12-10 Paul Eggert <eggert@cs.ucla.edu>
2413
2414 * NEWS: Version 1.875e.
2415 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
2416
2417 * src/scan-skel.l: Include "complain.h", for "fatal".
2418
2419 * src/relation.h (relation_print, relation_digraph):
2420 Relation sizes are of type relation_node, not size_t (this is
2421 merely a doc fix, since the two types are equivalent).
2422 (relation_transpose): Relation sizes are of type relation_node,
2423 not int.
2424 * src/relation.c: Likewise.
2425 (top, infinity): Now of type relation_node, not int.
2426 (traverse, relation_transpose): Use relation_node, not int.
2427
2428 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
2429 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
2430 (yyparse): Remove unused local introduced in 2004-10-25 patch.
2431
2432 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 2433 specifying whether the test should be skipped. Use it tp
337116ba 2434 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 2435 fail on some hosts, and should be skipped.
337116ba 2436
da2a7671
PE
24372004-12-08 Paul Eggert <eggert@cs.ucla.edu>
2438
2439 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
2440 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
2441 unless otherwise specified below.
2442
2443 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
2444 to allocate kernel_base, kernel_items, kernel_size, since
2445 they needn't be initialized to 0.
2446 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
2447 * src/closure.c (new_closure): Likewise, for itemset.
2448 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
2449 * src/lalr.c (set_goto_map): Likewise, for temp_map.
2450 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
2451 (build_relations): Likewise for edge, states1, includes.
2452 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
2453 * src/reader.c (packgram): Likewise, for ritem, rules.
2454 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
2455 * src/relation.c (relation_digraph): Likewise for VERTICES.
2456 (relation_transpose): Likewise for new_R, end_R.
2457 * src/symtab.c (symbols_token_translations_init): Likewise for
2458 token_translations.
2459 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
2460 (token_actions): Likewise for yydefact, actrow, conflrow,
2461 conflict_list.
2462 (save_column): Likewise for froms[symno], tos[symno].
2463 (goto_actions): Likewise for state_count.
2464 (pack_table): Likewise for base, pos, check.
2465 (tables_generate): Likewise for width.
2466
2467 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
2468 for initial core. Just have a separate core, so we needn't worry
2469 about whether kernel_size and kernel_base are initialized.
2470
2471 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
2472 kernel_size, kernel_items): Remove unnecessary initialization.
2473 * src/conflicts.c (conflicts): Likewise.
2474 * src/derives.c (derives): Likewise.
2475 * src/muscle_tablc (muscle_insert): Likewise.
2476 * src/relation.c (relation_digraph): Likewise.
2477 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
2478 conflrow, conflict_table, conflict_list, table, check):
2479 Likewise.
2480
2481 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
2482 This is because all callers pass unsigned int.
2483 * src/closure.h (new_closure): Likewise.
2484
2485 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
2486 (build_relations): Initialize includes[i] in all cases.
2487 * src/reader.c (packgram): Always initialize rules[ruleno].prec
2488 and rules[ruleno].precsym. Initialize members in order.
2489 * src/relation.c (relation_transpose): Always initialize new_R[i]
2490 and end_R[i].
2491 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
2492
2493 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
2494 conflict_list[0] was always 0, but now it isn't initialized.
2495
2496 * src/table.c (table_grow): When conflict_table grew, the grown
2497 area wasn't cleared. Fix this.
2498
2499 * lib/.cvsignore: Add strdup.c, strdup.h.
2500 * m4/.cvsignore: Add strdup.m4.
2501
00baeeac
PE
25022004-12-07 Paul Eggert <eggert@cs.ucla.edu>
2503
2504 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
2505 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
2506 GOTO_NUMBER_MAXIMUM, since we occasionally compute
2507 ngotos + 1 without checking for overflow.
2508 (build_relations): Use END_NODE, not -1, to denote end of edges.
2509 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
2510 build_relations): Use goto_number, not int, for goto numbers.
2511 * src/tables.c (save_column, default_goto): Likewise.
2512
be3d9d42
AD
25132004-11-23 Akim Demaille <akim@epita.fr>
2514
2515 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
2516 of #defining from yystype.
2517 Don't typedef yystype, C++ does not need it.
2518 This lets it possible to forward declare it as union.
2519
78e526d5
PE
25202004-11-23 Paul Eggert <eggert@cs.ucla.edu>
2521
2522 * bootstrap (gnulib_modules): Add extensions.
2523 Problem reported by Jim Meyering.
2524
afbb696d
PE
25252004-11-22 Paul Eggert <eggert@cs.ucla.edu>
2526
2527 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
2528 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
2529 src/system.h, src/tables.c: XFREE -> free, to accommodate
2530 recent change to gnulib xalloc.h.
78e526d5 2531 Problem reported by Jim Meyering.
afbb696d 2532
c1f8f16a
AD
25332004-11-17 Akim Demaille <akim@epita.fr>
2534
2535 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
2536
25372004-10-28 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
2538 Alexandre Duret-Lutz <adl@gnu.org>
2539
2540 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
2541 changes.
2542 (YYCDEBUG): Adjust.
2543 Use it instead of cdebug_.
2544 (Parser::debug_stream, Parser::set_debug_stream): New.
2545 (Parser::symprint_): Define cdebug_ for temporary backward
2546 compatibility.
2547 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
2548 debug_stream ().
2549
68e11668
AD
25502004-11-17 Akim Demaille <akim@epita.fr>
2551
2552 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
2553 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
2554 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
2555 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
2556
97cbc73e
PE
25572004-10-27 Paul Eggert <eggert@cs.ucla.edu>
2558
2559 * data/glr.c (yyloc_default): Remove; not used.
2560 Problem reported by Frank Heckenbach.
2561
e342c3be
AD
25622004-10-25 Akim Demaille <akim@epita.fr>
2563
2564 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
2565 Introduce another definition to address simple location arrays.
2566 (yyGLRStack): New member: yyerror_range.
2567 (yyrecoverSyntaxError, yyparse): Update it.
2568 (yyrecoverSyntaxError): Use it when shifting the error token to
2569 have an accurate range, equivalent to the one computed by both
2570 yacc.c and lalr1.cc.
2571 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
2572 that column numbers start at column 0, as per GNU Coding
2573 Standards, the others tests, and the doc.
2574 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
2575 Adjust to the above change (first column is 0).
2576 And adjust the location of the "<error>", now covering the whole
2577 line.
2578
93602feb 25792004-10-22 Akim Demaille <akim@epita.fr>
04098407 2580 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
2581
2582 Remove some arbitrary limits on goto numbers and relations.
2583 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
2584 initial values, since they're never used.
2585 (set_goto_map): ngotos is now unsigned, so test for overflow
2586 by seeing whether it wraps around to zero.
2587 * src/lalr.h (goto_number): Now size_t, not short int.
2588 (GOTO_NUMBER_MAXIMUM): Remove.
2589 * src/relation.c (relation_print, traverse, relation_transpose):
2590 Check for END_NODE rather than looking at sign.
2591 * src/relation.h (END_NODE): New macro.
2592 (relation_node): Now size_t, not short int.
2593
dba08b04
PE
25942004-10-22 Paul Eggert <eggert@cs.ucla.edu>
2595
2596 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
2597 keyword, not an identifier. Problem reported by Baron Schwartz in
2598 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
2599
df09ef2e
AD
26002004-10-11 Akim Demaille <akim@epita.fr>
2601
2602 * src/symtab.c (symbol_check_alias_consistency): Also check
2603 type names, destructors, and printers.
2604 Reported by Alexandre Duret-Lutz.
2605 Recode the handling of associativity and precedence in terms
2606 of symbol_precedence_set.
2607 Accept no redeclaration at all, not even equal to the previous
2608 value.
2609 (redeclaration): New.
2610 Use it to factor redeclaration complaints.
2611 (symbol_make_alias): Don't set the type of the alias, let
2612 symbol_check_alias_consistency do it as for other features.
2613 * src/symtab.h (symbol): Add new member prec_location, and
2614 type_location.
2615 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
2616 * tests/input.at (Incompatible Aliases): New.
2617
146bc99d
PE
26182004-10-09 Paul Eggert <eggert@cs.ucla.edu>
2619
2620 .cvsignore fixes to accommodate gnulib changes,
2621 and the practice of naming build directories "_build".
2622 * .cvsignore: Add "_*". Sort.
2623 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
2624 * m4/.cvsignore: Add "*_gl.m4".
2625
e503aa60
AD
26262004-10-06 Akim Demaille <akim@epita.fr>
2627
2628 * src/parse-gram.y (add_param): Fix the truncation of trailing
2629 spaces.
2630
b4a20338
AD
26312004-10-05 Akim Demaille <akim@epita.fr>
2632
2633 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
2634 whether the reducion was empty or not. This leaves room to
2635 improve the use of YYLLOC_DEFAULT in such a case.
2636 lalr1.cc is still experimental, so changing this is acceptable.
2637 And finally, there are probably not many users who changed the
2638 handling of locations in GLR, so changing is admissible too.
2639
2640 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
2641 empty reduction, set @$ to an empty location ending the previously
2642 stacked symbol.
2643 Adjust uses to make sure the code is triggered on empty
2644 reductions.
2645 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
2646 expected output: empty reductions have empty locations.
2647
f85a5e6f
AD
26482004-09-29 Akim Demaille <akim@epita.fr>
2649
2650 * data/lalr1.cc: Move towards a more standard C++ coding style
2651 for templates: Class < T > -> Class<T>.
2652
b203fc2c
AD
26532004-09-29 Akim Demaille <akim@epita.fr>
2654
2655 * data/lalr1.cc: Reinstall the former ctor, for sake of
2656 compatibility, but warn it will be removed.
2657 Move towards a more standard C++ coding style (i.e., type *var ->
2658 type* var).
2659
5b7e1e73
PE
26602004-09-27 Paul Eggert <eggert@cs.ucla.edu>
2661
3fee967f
PE
2662 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
2663 since it's less likely to work if NULs are involved in the future.
5b7e1e73 2664
0dcca5c2
AD
26652004-09-27 Akim Demaille <akim@epita.fr>
2666
2667 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
2668
6dde1c82
AD
26692004-09-27 Akim Demaille <akim@epita.fr>
2670
2671 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 2672 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
2673 and argument names.
2674 (b4_cc_constructor_call): Likewise.
2675
b233d555
AD
26762004-09-24 Akim Demaille <akim@epita.fr>
2677
2678 * src/parse-gram.y (add_param): Strip the leading and trailing
2679 blanks from a formal argument declaration.
2680 (YY_LOCATION_PRINT): New.
2681
619404e3
AD
26822004-09-24 Akim Demaille <akim@epita.fr>
2683
2684 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
2685 after the location.
2686
dd8d9022
AD
26872004-09-24 Akim Demaille <akim@epita.fr>
2688
2689 * doc/bison.texinfo (Table of Symbols): Sort.
2690
0092f063
AD
26912004-09-21 Akim Demaille <akim@epita.fr>
2692
2693 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
2694 the useless parentheses.
2695 Suggested by Paul Eggert.
2696
451364ed
AD
26972004-09-20 Akim Demaille <akim@epita.fr>
2698
2699 Let the initial-action act on the look-ahead, and use it for the
2700 "initial push" (corresponding to an hypothetical beginning-of-file).
2701 And let lalr1.cc honor %initial-action.
2702
2703 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
2704 example.
2705 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
2706 (Parser::Parser): Remove the ctor that used to initialize it.
2707 (Parser::parse): Like in the other skeletons, issue the "starting
2708 parse" message before any action.
2709 Honor %initial-action.
2710 Initialize the stacks with the lookahead.
2711 * data/yacc.c: Let $$ and @$ in %initial-action designate the
2712 look-ahead.
2713 Push them in the stacks.
2714 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
2715
18d192f0
AD
27162004-09-20 Akim Demaille <akim@epita.fr>
2717
2718 * doc/bison.texinfo (Initial Action Decl): New.
2719
b8458aa5
AD
27202004-09-20 Akim Demaille <akim@epita.fr>
2721
2722 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
2723 clearer criterion to define it.
2724 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
2725 When reducing on an empty RHS, use the latest stacked location as
2726 location.
2727 yylloc is not always available.
2728 * data/glr.c: Likewise.
2729 Also, honor initial-actions.
2730
3fc16193
AD
27312004-09-20 Akim Demaille <akim@epita.fr>
2732
2733 * data/yacc.c (YY_LOCATION_PRINT): New.
2734 Define when we know YYLTYPE's structure, i.e., when the default
2735 YYLLOC_DEFAULT is used.
2736 * data/c.m4 (b4_yysymprint_generate): Use it.
2737 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
2738 value of the result.
2739 (error_start_): Replace with...
2740 (error_range_): this location array.
2741 This allows to replace code relying on the implementation of
2742 locations by portable code.
2743 * data/yacc.c (yylerrsp): Replace with...
2744 (yyerror_range): this.
2745 Every time a token is popped, update yyerror_range[0], to have an
2746 accurate location for the error token.
2747 * data/glr.c (YY_LOCATION_PRINT): New.
2748 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
2749 deference a pointer.
2750 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
2751 report the location in %printers.
2752
2753 * src/scan-skel.l: Instead of abort, report error messages to ease
2754 understanding skeleton scanning failures.
2755
ecfe33e7
AD
27562004-09-16 Akim Demaille <akim@epita.fr>
2757
2758 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
2759 (iterator, const_iterator): these, to be more in the C++ spirit.
2760 Also, return reverse iterators so that when displaying the stack
2761 we display its bottom first.
2762 (Parser::stack_print_, Parser::reduce_print_): Match the messages
2763 from yacc.c.
2764 We should probably use vector here though.
2765
1576d44d
AD
27662004-09-16 Akim Demaille <akim@epita.fr>
2767
2768 Have more complete shift traces.
2769
2770 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
2771 to report Shifts instead of ad hoc YYDPRINTF invocations,
2772 including for the error token.
2773 * data/lalr1.cc (symprint_): Output the location.
2774 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
2775 output the location within the %printer.
2776 Activate GLR tests, at least to make sure they compile properly.
2777 They still don't pass though.
2778 * tests/calc.at: Adjust expect verbose output, since now "Entering
2779 state..." is on a different line than the "Shifting" message.
2780
9c66f418
AD
27812004-09-08 Akim Demaille <akim@epita.fr>
2782
2783 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
2784 Bison directive from the Bison file to the invocation of this
2785 macro, so that these directives are passed to
2786 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
2787 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
2788 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
2789 the extra Bison directives instead of the whole series.
2790 Change the grammar so that there are recoverable errors, and
2791 unrecoverable errors. Now we can have the parser give up before
2792 consuming the whole input. As a result we now can observe that
2793 the lookahead is freed when needed.
2794 Change the parser source to parse argv[1] instead of a hard coded
2795 string.
2796 Simplify yylex, and give a value and location to EOF.
2797 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
2798 passed directives already coded in the file.
2799 Add some tests to check the location of "error".
2800 For some tests, the C++ parser is correct, and not yacc.c.
2801 For other tests, they provide different, but unsatisfying, values,
2802 so keep the C++ value so that at least one parser is "correct"
2803 according to the test suite.
2804 (Actions after errors): Remove, this is subsumed by the
2805 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
2806
52d5733f
AD
28072004-09-06 Akim Demaille <akim@epita.fr>
2808
2809 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 2810 (Parser::pop): New.
52d5733f
AD
2811 Use it.
2812
a0e68930
AD
28132004-09-06 Akim Demaille <akim@epita.fr>
2814
2815 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
2816 argument, an informative message.
2817 Call YY_SYMBOL_PRINT.
2818 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
2819 * data/lalr1.cc (destruct_): Likewise.
2820 In addition, no longer depend on b4_yysymprint_generate and
2821 b4_yydestruct_generate to generate these functions, do it "by
2822 hand".
2823
e757bb10
AD
28242004-09-03 Akim Demaille <akim@epita.fr>
2825
2826 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
2827 invoked, yydestruct the lookahead.
2828 * tests/calc.at (Calculator $1): Update the expected lengths of
2829 traces: there is an added line for the discarded lookahead.
2830 * doc/bison.texinfo (Destructor Decl): Some rewording.
2831 Define "discarded" symbols.
2832
0fe1f06d
AD
28332004-09-02 Akim Demaille <akim@epita.fr>
2834
2835 * data/lalr1.cc (translate_, destruct_): No reason to be static.
2836
284acc8b
AD
28372004-09-02 Akim Demaille <akim@epita.fr>
2838
2839 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
2840 (YYDSYMPRINTF): Rename as...
2841 (YY_SYMBOL_PRINT): this.
2842 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
2843 two.
2844 Use it instead of direct symprint_ calls.
2845 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
2846 one.
2847
a5eb1ed2
AD
28482004-09-02 Akim Demaille <akim@epita.fr>
2849
b7c72fe1
AD
2850 * data/lalr1.cc (b4_yysymprint_generate): New.
2851 (symprint_): New member function, defined when YYDEBUG.
2852 Use it consistently instead of token/nterm debugging output by
2853 hand.
a5eb1ed2
AD
2854 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
2855 %printer calls to use cdebug_ when using lalr1.cc.
2856
417141dd
AD
28572004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
2858
2859 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
2860 with #ifdef YYDEBUG.
2861
2fa09258
AD
28622004-08-26 Akim Demaille <akim@epita.fr>
2863
2864 * doc/bison.texinfo (Implementing Loops): Rename as...
2865 (Implementing Gotos/Loops): this.
2866
9378b508
PE
28672004-08-13 Paul Eggert <eggert@cs.ucla.edu>
2868
2869 Adjust to latest gnulib.
2870 * bootstrap (gnulib_modules): Add xalloc-die.
2871 Set LC_ALL=C so that file names sort consistently.
2872 Prefer the gnulib copies of gettext.m4, glibc21.m4,
2873 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
2874 uintmax_t.m4, ulonglong.m4.
2875 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
2876 po.m4 since we are now using _gl.m4 instead.
2877
87a8ad5c
PE
28782004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
2879
2880 * src/scan-action.l: Remove. Scanning of semantic actions is
2881 handled in scan-gram.l.
2882
dca81a78
PE
28832004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
2884
2885 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
2886
2887 * src/location.h (struct): The file member is a uniqstr.
2888 (equal_boundaries): Use UNIQSTR_EQ for comparison.
2889
c9cbf7c5
PE
28902004-07-22 Paul Eggert <eggert@cs.ucla.edu>
2891
2892 Fix bug with non-%union parsers that have printers or destructors,
2893 which led to a Bison core dump. Reported by Peter Fales in
2894 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 2895
c9cbf7c5
PE
2896 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
2897 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
2898 not to our own type.
2899 * src/output.c (symbol_destructors_output, symbol_printers_output):
2900 Don't assume %union.
2901 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
2902 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
2903 UNION-FLAG. All callers changed.
2904 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
2905 Use type char, not unsigned int, when declaring an array of char;
2906 this lets us remove a cast.
2907 (Printers and Destructors): Add non-%union test cases.
2908
fa7e68c3
PE
29092004-06-21 Paul Eggert <eggert@cs.ucla.edu>
2910
2911 * doc/bison.texinfo: Minor editorial changes, mostly to the new
2912 GLR writeups. E.g., avoid frenchspacing and the future tense,
2913 change "lookahead" to "look-ahead", and change "wrt" to "with
2914 respect to".
2fa09258 2915
fa7e68c3
PE
29162004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
2917
2918 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
2919 New sections, split off from the GLR Parsers section. Put the new
2920 Simple GLR Parser near the start of the GLR section, for clarity.
2921 Rewrite connective text.
2922
99a9344e
PE
29232004-06-21 Frank Heckenbach <frank@g-n-u.de>
2924
2925 * doc/bison.texinfo (Simple GLR Parsers): New section.
2926
8dd162d3
PE
29272004-06-21 Paul Eggert <eggert@cs.ucla.edu>
2928
2929 * NEWS, TODO, doc/bison.texinfo:
2930 Use "look-ahead" instead of "lookahead", to be consistent.
2931 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
2932 while we're fixing "look-ahead".
2933 * src/conflicts.c (shift_set): Renamed from shiftset.
2934 (look_ahead_set): Renamed from lookaheadset.
2935 * src/print.c: Likewise.
2936 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
2937 name for "lookahead".
2938 (report_types, usage): Likewise.
2939 * src/getargs.h (report_look_ahead_tokens): Renamed from
2940 report_lookaheads.
2941 * src/lalr.c (compute_look_ahead_tokens): Renamed from
2942 compute_lookaheads.
2943 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
2944 (look_ahead_tokens_print): Renamed from lookaheads_print.
2945 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
2946 state_rule_lookaheads_print.
2947 * src/state.h: Likewise.
2948 (reductions.look_ahead_tokens): Renamed from lookaheads.
2949 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
2950 AT_DATA_LOOKAHEADS_GRAMMAR.
2951
57a90331
PE
29522004-06-03 Paul Eggert <eggert@cs.ucla.edu>
2953
2954 * README: Update location of patched M4 distribution.
2955
8ed3234a
PE
29562004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
2957
2958 Don't assume the C++ compiler takes the same arguments as the C compiler
2959 (trivial change).
2960 * configure.ac (O0CXXFLAGS): New var.
2961 * tests/atlocal.in (CXXFLAGS): Use it.
2962
07971983
PE
29632004-05-29 Paul Eggert <eggert@cs.ucla.edu>
2964
2965 Fix some "make check" problems with C++ reported by
2966 Albert Chin-A-Young for Tru64 C++ in this thread:
2967 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
2968
2969 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
2970 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
2971 Output to a .cc file for C++, not to a .c file.
2972 * tests/calc.at (AT_CHECK_CALC): Likewise.
2973 * tests/regression.at (AT_CHECK_DANCER): Likewise.
2974 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
2975
29058652
PE
29762004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
2977
2978 * tests/calc.at, tests/actions.at: Workaround for SGI
2979 C++ compiler. (trivial change)
2980
62cb8a99
PE
29812004-05-27 Paul Eggert <eggert@cs.ucla.edu>
2982
fd418816
PE
2983 Spent a few hours checking out which prerequisite versions the
2984 current sources actually require. I went all the way back to
2985 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
2986 a seemingly endless set of combinations of versions more recent
2987 than that. The bottom line is that the current sources require
2988 fairly recent versions of the build tools, and it'll be some work
2989 to change this.
2990 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
2991 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
2992 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
2993 Add comments explaining why those particular versions are
2994 currently needed.
2fa09258 2995
62cb8a99
PE
2996 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
2997 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 2998 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
2999
3000 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
3001 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
3002
caa52c10
PE
30032004-05-26 Paul Eggert <eggert@cs.ucla.edu>
3004
3005 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
3006 0.11.5. Suggested by Bruno Haible.
3007 * bootstrap: Remove gettext version checking.
3008
3009 * doc/bison.texinfo (Decl Summary): Also mention that %union
3010 can depend on prerequisite types. Problem reported by Tim
3011 Van Holder.
3012
4bfd5e4e
PE
30132004-05-25 Paul Eggert <eggert@cs.ucla.edu>
3014
2cef3017
PE
3015 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
3016 * README-alpha: Don't tell people not to package this.
3017
b9c85d5c
PE
3018 * bootstrap: Don't assume $(...) works; use `...` instead.
3019 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
3020 gettext better.
3021
4bfd5e4e
PE
3022 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
3023 put into the -d output file, and mention what to do if YYSTYPE is
3024 defined as a macro.
3025
6a36ff94
PE
30262004-05-24 Paul Eggert <eggert@cs.ucla.edu>
3027
6712933e
PE
3028 Undo change made earlier today: it caused autopoint to not bring
3029 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
3030 autopoint's.
3031
3032 * bootstrap: Check that gettext version matches what's in
3033 configure.ac. Warn users to ignore robots.txt ERROR 404.
3034 * bootstrap: Undo today's earlier change (logged below).
3035 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 3036
6a36ff94
PE
3037 The gettext version checking is causing more trouble than it's
3038 curing; remove it. Problem reported by Paul Hilfinger.
3039
3040 * bootstrap: Issue a warning that one can expect a message
3041 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
3042 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
3043
209ea708
PE
30442004-05-23 Paul Eggert <eggert@cs.ucla.edu>
3045
3046 Ensure that the C++ compiler used for testing actually works on a
3047 simple test program; if not, skip the C++-related tests. Problem
3048 reported by Vin Shelton in:
161a71f3 3049 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
3050
3051 * m4/cxx.m4: New file.
3052 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
3053 * tests/atlocal.in (BISON_CXX_WORKS): Add.
3054 * tests/local.at (AT_COMPILE_CXX): Use it.
3055
41ca2549
PE
30562004-05-21 Paul Eggert <eggert@cs.ucla.edu>
3057
383e69dc
PE
3058 * data/glr.c (yylloc): Output this macro even if locations are not
3059 being generated, as the GLR parser needs it even in that case.
3060 Problem reported by Troy A. Johnson
3061 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
3062
41ca2549
PE
3063 * configure.ac (AC_INIT): Update to 1.875e.
3064
e476c87d
PE
30652004-05-21 Paul Eggert <eggert@cs.ucla.edu>
3066
3067 * NEWS: Version 1.875d.
3068 * configure.ac (AC_INIT): Likewise.
3069 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
3070
3071 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
3072 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
3073 lalr1.cc runs afoul of the first, and the last two are no longer
3074 supported by GCC 3.4.0.
3075 * README: Mention GNU m4 1.4 or later; mention m4 patches.
3076 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
3077
233a88ad
PE
30782004-05-06 Paul Eggert <eggert@cs.ucla.edu>
3079
3080 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
3081 unsigned int, for compatibility with latest gnulib hash module.
3082 * src/state.c (state_hash, state_hasher): Likewise.
3083 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
3084 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 3085
12ffdd28
PE
30862004-05-03 Paul Eggert <eggert@cs.ucla.edu>
3087
3088 * NEWS: Unescaped newlines are no longer allowed in char & strings.
3089
3090 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
3091 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
3092 character and string literals.
3093 (unexpected_end): New function.
3094 (unexpected_eof): Use it.
3095 (unexpected_newline): New function.
3096 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
3097 actions.
e476c87d 3098
12ffdd28
PE
3099 * NEWS: Document %expect-rr.
3100
3101 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
3102 Fix typo by replacing $1 with $option.
3103 Remove more 'intl'-related files.
9668e2be 3104 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
3105
3106 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
3107 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
3108 strtoul.c.
3109 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
3110 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
3111 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
3112 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
3113 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
3114 * src/.cvsignore: Add *.output.
3115
3116 * src/parse-gram.y: Put copyright notice inside %{ %} so it
3117 gets copied to the output file.
e476c87d 3118
1f65350a
PE
31192004-04-28 Paul Eggert <eggert@twinsun.com>
3120
3121 Get files from the gnulib and po repositories, instead of relying
3122 on them being in our CVS. Upgrade to latest versions of gnulib
3123 and Automake.
3124
3125 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
3126 * bootstrap: Bootstrap from gnulib and po repositories.
3127 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
3128 * README-cvs: Document these changes. Remove version numbers from
3129 mentions of build tools, since they change so often. Mention Flex.
3130
3131 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
3132 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
3133 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
3134 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 3135 does this for us.
12ffdd28
PE
3136 (AC_ISC_POSIX): Remove; we no longer support this
3137 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
3138 (AC_HEADER_STDC): Remove: we now assume C89 or better.
3139 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
3140 Do not check for C89 headers, except for locale.h which is used
3141 by the Yacc library and must port to K&R hosts.
3142 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
3143 Do not check for C89 functions, except for setlocale which is
3144 used by the Yacc library.
3145 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
3146 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
3147 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
3148 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
3149 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
3150 AM_GNU_GETTEXT): Remove; now done by:
3151 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
3152 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
3153 for us.
3154
3155 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
3156 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
3157 Define to empty, as gnulib.mk will do the rest for us.
3158 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
3159 for us.
3160 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
3161 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
3162
3163 * src/files.c: Include gnulib's xstrndup.h.
3164
3165 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
3166 (REALLOC): Use xnrealloc, for likewise.
3167 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
3168 (strnlen, memrchr): Remove decls; functions no longer used.
3169 Include <stpcpy.h>.
3170
3171 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
3172 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
3173 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
3174 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
3175 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
3176 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
3177 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
3178 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
3179 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
3180 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
3181 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
3182 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
3183 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
3184 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
3185 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
3186 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
3187 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
3188 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
3189 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
3190 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
3191 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
3192 Remove, as these files are now generated automatically
3193 by bootstrap or automake.
3194
3195 * po/ChangeLog: Remove: all but one entry was a duplicate
3196 of this file, and I moved that 2000-11-02 entry here.
3197
3198 * config/.cvsignore: Add Makefile, depcomp, install-sh.
3199 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
3200 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
3201 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
3202 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
3203 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
3204 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
3205 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
3206 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
3207 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
3208 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
3209 xstrndup.h.
3210 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
3211 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
3212 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
3213 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
3214 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
3215 * src/.cvsignore: Remove *_.c.
3216
3217
3218 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
3219 support it. (The latest stable gzip doesn't.)
3220
32212004-04-27 Paul Eggert <eggert@twinsun.com>
3222
3223 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
3224 case, as stos_ is now used by destructors due to the 2004-02-09
3225 change.
3226
3227 Remove more K&R C support.
3228 * lib/libiberty.y (PARAMS): Remove. All uses removed.
3229 * lib/subpipe.c (errno): Remove decl.
3230 Include <stdlib.h> unconditionally.
3231 (EXIT_FAILURE): Remove macro.
3232 * src/complain.c (vfprintf, strerror): Remove.
3233 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
3234 unconditionally.
3235 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
3236 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
3237 (strchr, strspn, memchr): Remove decls.
3238 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
3239 unconditionally. Do not declare perror.
3240 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
3241 unconditionally.
3242
3243 * src/complain.c (_): Remove useless defn, as system.h defines this.
3244
3245 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
3246 with latest obstack.h.
3247 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
3248 to procedure types, as obstack.h now does that for us.
3249 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
3250
3251 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
3252 so that this include file can stand alone.
3253 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
3254 does this now. Include subpipe.h first after config.h, to
3255 test whether it can stand alone.
3256
3257 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
3258 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
3259 unused declaration.
3260
3261 * tests/synclines.at (%union synch line): Put a dummy member in
3262 the union, because empty unions aren't allowed in C. Caught
3263 by GCC 3.4.0.
3264
4f16766c
PE
32652004-04-13 Jim Meyering <jim@meyering.net>
3266
3267 * src/conflicts.c (conflicts_print): Correct format string typo:
3268 use `%%' to produce literal `%'. (trivial change)
3269
779e7ceb
PE
32702004-03-30 Paul Eggert <eggert@twinsun.com>
3271
3272 * src/getargs.c (version): Update copyright year to 2004.
3273
3274 * data/c.m4 (b4_int_type): Use 'short int' rather than
3275 'short', and similarly for 'long', 'unsigned', etc.
3276 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
3277 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
3278 yy_yypstack, yydumpstack): Likewise.
3279 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
3280 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
3281 Likewise.
3282 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
3283 yy_stack_print, yyparse): Likewise.
3284 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
3285 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
3286 * lib/bitset.c (bitset_print): Likewise.
3287 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
3288 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3289 * lib/bitsetv.c (bitsetv_dump): Likewise.
3290 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
3291 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
3292 Likewise.
3293 * src/LR0.c (allocate_itemsets): Likewise.
3294 * src/gram.h (rule_number, rule): Likewise.
3295 * src/lalr.h (goto_number): Likewise.
3296 * src/nullable.c (nullable_compute): Likewise.
3297 * src/output.c (prepare_rules): Likewise.
3298 * src/relation.c (relation_print, relation_digraph): Likewise.
3299 * src/relation.h (relation_node): Likewise.
3300 * src/state.h (state_number, transitions, errs, reductions,
3301 struct state): Likewise.
3302 * src/symtab.h (symbol_number, struct symbol): Likewise.
3303 * src/tables.c (vector_number, tally, action_number,
3304 default_goto, goto_actions): Likewise.
3305 * tests/existing.at (GNU Cim Grammar): Likewise.
3306 * tests/regression.at (Web2c Actions): Likewise.
3307
3308 * src/output.c (muscle_insert_short_int_table): Renamed from
3309 muscle_insert_short_table. All uses changed.
3310
d6328241
PH
33112004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3312
3313 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
3314 (declaration): Replace expected_conflicts with expected_sr_conflicts.
3315 Add %expect-rr rule.
4f16766c 3316
d6328241
PH
3317 * src/scan-gram.l: Recognize %expect-rr.
3318
4f16766c 3319 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 3320 expected_conflicts.
4f16766c 3321 (expected_rr_conflicts): Declare.
d6328241
PH
3322
3323 * src/conflicts.c (expected_sr_conflicts): Rename from
3324 expected_conflicts.
3325 (expected_rr_conflicts): Define.
3326 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
3327 for GLR parsers.
3328 Use expected_sr_conflicts in place of expected_conflicts.
3329 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 3330
d6328241 3331 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 3332
1452af69
PE
33332004-03-08 Paul Eggert <eggert@gnu.org>
3334
3335 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 3336 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
3337
3338 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
3339 in lalr1.cc.
3340 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
3341 * src/scan-gram.l (scan_integer): New function.
3342 ({int}): Use it.
3343 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
3344 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
3345 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
3346 Say "long int", not "long", for uniformity with GNU style.
3347
006d217d
PE
33482004-02-25 Paul Eggert <eggert@twinsun.com>
3349
3350 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
3351 compilers. This fixes a problem with Intel's C++ compiler being
3352 chatty, reported by Guido Trentalancia in
161a71f3 3353 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 3354
c2729758
ADL
33552004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
3356
3357 Support %destructor and merge error locations in lalr1.cc.
3358
3359 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
3360 (Parser::stos_): Define unconditionally.
3361 (Parser::destruct_): New method. Generate its body with
3362 b4_yydestruct_generate.
3363 (Parser::error_start_): New attribute.
3364 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
3365 token which are discarded.
3366 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
3367 error_start_ when erroneous token are discarded.
3368 (Parser::parse) <yyerrlab1>: Compute the location of the error
3369 token so that it covers all the discarded tokens.
3370 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
3371 it can be called with `%skeleton "lalr1.cc"', and do that.
3372
dd0e0635
PE
33732004-02-02 Paul Eggert <eggert@twinsun.com>
3374
3375 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
3376 $(top_srcdir)/lib and ../lib. This fixes a bug reported
3377 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
3378 There's no need to mention top_builddir since Automake does that
3379 for us.
3380 (INCLUDES): Remove, as Automake says it's obsolescent.
3381 Contents migrated into AM_CPPFLAGS as described above.
3382 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
3383
33842004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3385
3386 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
3387 (yyreportSyntaxError): Handle case where lookahead token is
3388 YYEMPTY.
3389
be16239b
PH
33902004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3391
3392 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
3393 resulting parsers are compilable with C++.
3394
5fa90832
PE
33952003-12-23 Paul Eggert <eggert@twinsun.com>
3396
3397 * config/depcomp, config/install-sh: Sync with Automake 1.8.
3398 * src/output.c (output_skeleton): Rename local var.
3399 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
3400 Bison tokens, as this runs afoul of the 2003-10-07 change that
3401 disallowed NUL bytes in character constants or string literals.
3402
3403 * tests/local.at: Require Autoconf 2.59's Autotest.
3404 * tests/testsuite.at: Don't include local.at, since we now assume
3405 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
3406 including it.
3407 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
3408 multiple inclusion warnings.
dd0e0635 3409
b165c324
AD
34102003-12-02 Akim Demaille <akim@epita.fr>
3411
3412 * doc/bison.texinfo (How Can I Reset the Parser): More about start
3413 conditions.
3414 From Bruno Haible.
3415
26e06a21
ADL
34162003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
3417
3418 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
3419
92ac3705
PE
34202003-10-07 Paul Eggert <eggert@twinsun.com>
3421
6a5ecb38
PE
3422 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
3423 if testsuite doesn't exist.
3424
92ac3705
PE
3425 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
3426 literals, unfortunately.
3427 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
3428 Complain about NUL bytes in character constants or string literals.
3429
91d2c560
PE
34302003-10-05 Paul Eggert <eggert@twinsun.com>
3431
3432 * NEWS: Don't document %no-default-prec, as it's still
3433 too experimental.
3434 * doc/bison.texinfo: Document %no-default-prec only if
3435 the defaultprec flag is set. Normally it's not.
3436
0cc3da3a
PE
34372003-10-04 Paul Eggert <eggert@twinsun.com>
3438
3439 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
3440 non-modifiable lvalue, instead of a modifiable one.
3441 * doc/bison.texinfo (Actions): Document that $$ can
3442 be assigned to. Do not claim that $$ and $N are
3443 array element references: user code should not rely on this.
3444
22fccf95
PE
34452003-10-01 Paul Eggert <eggert@twinsun.com>
3446
3447 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
3448 (grammar_declaration): Use it.
3449 * src/scan-gram.l: New token %no-default-prec.
3450 * tests/conflicts.at: Revamp tests to use %no-default-prec.
3451 * NEWS, doc/bison.texinfo: Document the above.
3452
fc8f2965
AD
34532003-10-01 Akim Demaille <akim@epita.fr>
3454
3455 VCG no longer supports long_straight_phase.
3456
3457 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
3458 * src/print_graph.c (print_graph): Adjust.
3459
39a06c25
PE
34602003-09-30 Frank Heckenbach <frank@g-n-u.de>
3461 and Paul Eggert <eggert@twinsun.com>
3462
3463 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
3464 Table of Symbols): Document %default-prec.
3465 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
3466 (grammar_declaration): Set default_prec on %default-prec.
3467 * src/scan-gram.l (%default-prec): New token.
3468 * src/reader.h (default_prec): New flag.
3469 * src/reader.c: Likewise.
3470 (packgram): Handle it.
3471 * tests/conflicts.at (%default-prec without %prec,
3472 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 3473
39a06c25
PE
34742003-09-30 Paul Eggert <eggert@twinsun.com>
3475
3476 * tests/testsuite.at: Include local.at, not input.at, fixing
3477 a typo in the 2003-08-25 patch.
3478
62b6aef9
AD
34792003-08-27 Akim Demaille <akim@epita.fr>
3480
3481 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
3482 GCC warnings.
3483
89e1cc61
AD
34842003-08-26 Akim Demaille <akim@epita.fr>
3485
3486 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
3487 "<\#" to avoid magic from Gnus when posting parts of this script.
3488
a08460b0
AD
34892003-08-26 Akim Demaille <akim@epita.fr>
3490
3491 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
3492 (Parser::parse): here.
3493 Adjust: nerrs and errstatus is now replaced by...
3494 (Parser::nerrs_, Parser::errstatus_): New.
3495
603f1cfd
AD
34962003-08-25 Akim Demaille <akim@epita.fr>
3497
3498 * config/announce-gen, Makefile.cfg: New.
3499 * Makefile.am: Adjust.
3500 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
3501 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
3502
cd3684cf
AD
35032003-08-25 Akim Demaille <akim@epita.fr>
3504
3505 When reducing initial empty rules, Bison parser read an initial
3506 location that is not defined. This results in garbage, and that
3507 affects Bison's own parser. Therefore we need (i) to extend Bison
3508 to support a means to initialize this location, and (ii) to use
3509 this CVS Bison to fix CVS Bison's parser.
3510
3511 * src/reader.h, reader.c (epilogue_augment): Remove, replace
3512 with...
3513 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
3514 * src/parse-gram.y: Adjust.
3515 (%initial-action): New.
3516 (%error-verbose): Since we require CVS Bison, there is no reason
3517 not to use it.
3518 * src/scan-gram.l: Adjust.
3519 * src/Makefile.am (YACC): New, to make sure we use our own parser.
3520 * data/yacc.c (yyparse): Use b4_initial_action.
3521
4e03e201
AD
35222003-08-25 Akim Demaille <akim@epita.fr>
3523
3524 * doc/bison.texinfo: Don't promote stdout for error messages.
3525
8c182d05
AD
35262003-08-25 Akim Demaille <akim@epita.fr>
3527
3528 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
3529 From Alexandre Duret-Lutz.
3530
6a60c4cf
PE
35312003-08-25 Akim Demaille <akim@epita.fr>
3532
3533 Version 1.875c.
3534
25f66e1a
AD
35352003-08-25 Akim Demaille <akim@epita.fr>
3536
3537 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
3538 Use them.
3539
5348bfbe
AD
35402003-08-25 Akim Demaille <akim@epita.fr>
3541
3542 * data/lalr1.cc (Parser::reduce_print_): New.
3543 Use it.
3544
47301314
AD
35452003-08-25 Akim Demaille <akim@epita.fr>
3546
3547 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
3548 error recovery loops. This patch is based on
161a71f3 3549 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
3550 Also, augment the similarity between lalr1.cc and yacc.c.
3551 Note: the locations of error recovery rules are not correct yet.
3552
3553 * data/lalr1.cc: Comment changes to augment the similarity between
3554 lalr1.cc and yacc.c.
3555 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
3556 (yyerrlab1): Remove, but where it used to be (now the bottom part of
3557 yyerrlab), when hitting EOF, pop the whole stack here instead of
3558 merely falling thru the default error handling mechanism.
3559 (yyerrorlab): New label, with the old contents of YYERROR,
3560 plus the following change: pop the stack of rhs corresponding
3561 to the production that invoked YYERROR. That is how Yacc
3562 behaves (required by POSIX).
3563 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
3564 fail.
3565
1f7a61ff
AD
35662003-08-25 Akim Demaille <akim@epita.fr>
3567
3568 Tune local.at so that people can "autom4te -l autotest calc.at -o
3569 calc" for instance, to extract a sub test suite.
3570
3571 * tests/testsuite.at: Move the initialization, Autotest version
3572 requirement, and AT_TESTED invocation into...
3573 * tests/local.at: here.
3574 * tests/testsuite.at: Include it for compatibility with Autoconf
3575 2.57.
3576 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
3577 be ignore.
3578
327b5b56
PE
35792003-08-04 Paul Eggert <eggert@twinsun.com>
3580
3581 Rework code slightly to avoid gcc -Wtraditional warnings.
3582 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
3583 The returned value is now stored in *YY0. All callers changed.
3584 * src/output.c (merge_output): Adjust to the above change.
3585
0051e3ed
PE
35862003-07-26 Paul Eggert <eggert@twinsun.com>
3587
3588 * data/glr.c (YYASSERT): New macro.
3589 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
3590 yyresolveStates, yyprocessOneStack):
3591 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
3592 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 3593
137437c6
PE
35942003-07-25 Paul Eggert <eggert@twinsun.com>
3595
5b620e06
PE
3596 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
3597 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 3598 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
3599 by Frank Heckenbach, though I have omitted the structure-initialization
3600 part of his glr-knr.diff patch since I recall that the Portable
3601 C Compiler didn't require that change.
3602
137437c6
PE
3603 Let the user specify how to allocate and free memory.
3604 Derived from a suggestion by Frank Heckenbach in
161a71f3 3605 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
3606 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
3607 All uses of free, malloc, realloc changed to use these macros,
3608 and unnecessary casts removed.
3609 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
3610
ddb85ca5
PE
36112003-07-06 Matthias Mann <MatthiasMann@gmx.de>
3612
3613 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
3614 use s.empty() rather than s == "" to test for empty string; see
161a71f3 3615 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
3616 (trivial change)
3617
39910e09
AD
36182003-06-25 Akim Demaille <akim@epita.fr>
3619
3620 * config/depcomp, config/install-sh: Update from masters.
3621
0ae99356
PE
36222003-06-20 Paul Eggert <eggert@twinsun.com>
3623
3624 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
3625 and return properly parenthesized result.
3626 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
3627 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
3628 Remove unnecessary parentheses from uses.
3629 * doc/bison.texinfo (Location Default Action): Describe the
3630 conventions for parentheses.
3631
cd05d13c
PE
36322003-06-19 Paul Eggert <eggert@twinsun.com>
3633
81fd08ca
PE
3634 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
3635 yyreportTree): Do not assume that size_t is the same width as int,
3636 when printing sizes. Print sizes using an unsigned format.
3637 Problem reported by Frank Heckenbach in
161a71f3 3638 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 3639
cd05d13c
PE
3640 Port to Forte Developer 7 C compiler.
3641 * data/glr.c (struct YYLTYPE): If locations are not being used,
3642 declare a single dummy member, as empty structs do not conform
3643 to the C standard.
3644 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
3645 the Forte Developer 7 C compiler complains that end-of-loop
3646 code is not reached.
3647
4dcf140b
PE
36482003-06-17 Paul Eggert <eggert@twinsun.com>
3649
3650 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
3651 avoid warnings from picky compilers about redefinition of PARAMS.
3652
8dd76bee
PE
36532003-06-17 Paul Eggert <eggert@twinsun.com>
3654
3655 Version 1.875b.
3656
3657 * NEWS: Document 1.875b.
3658
3659 * lib/bbitset.h: Do not include config.h; that's the includer's job.
3660 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
3661 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
3662 Don't use 'index' in comments, as it's a builtin fn on some hosts.
3663 * lib/bitset_stats.c: Include gettext.h unconditionally, as
3664 per recent gettext manual's suggestion.
3665 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
3666 Use prototypes, not old-style definitions.
3667 * lib/lbitset.c (lbitset_unused_clear): Likewise.
3668 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
3669 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
3670 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
3671 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
3672 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
3673 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
3674 vbitset_or_and_cmp, vbitset_copy): Likewise.
3675
3676 * lib/libiberty.h: Do not include config.h; that's the includer's job.
3677 Do not include <stdlib.h>.
3678 (PARAMS): Define unconditionally for C89.
3679 (ATTRIBUTE_NORETURN): Remove.
3680 (ATTRIBUTE_UNUSED): Define unconditionally.
3681
3682 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 3683 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
3684 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
3685 * lib/vbitset.c, lib/vbitset.h: New files.
3686 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
3687 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
3688 from libbitset.
3689
3690 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
3691 `How Can I Reset @code{yyparse}', since texinfo does not allow
3692 arbitrary @ in node names.
3693
3694 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
3695 shouldn't be needed according to the gettext 0.12.1 documentation
3696 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 3697 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 3698 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 3699 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 3700
8dd76bee
PE
3701 * lib/.cvsignore: Add stdbool.h.
3702 * m4/.cvsignore: Add nls.m4, po.m4.
3703
3704 Upgrade to CVS gnulib.
3705 * stdbool_.h: File renamed from stdbool.h.in.
3706 * configure.ac (AM_STDBOOL_H): Invoke this instead of
3707 AC_HEADER_STDBOOL.
3708 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
3709 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
3710 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
3711 (MOSTLYCLEANFILES): New var.
3712 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
3713 (stdbool.h): New rule.
3714 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
3715 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
3716 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
3717 m4/quote.m4: Upgrade to today's gnulib.
3718
3719 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
3720 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
3721 the tests right now.
3722 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
3723 yyerror are declared before use; C99 requires this.
3724
25005f6a
PH
37252003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3726
3727 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
3728 first.
3729 (yyrecoverSyntaxError): Correct the logic for setting and testing
3730 yyerrState.
3731 Correct comment on handling EOF.
3732 Allow states with only a default reduction, rather than failing
8dd76bee 3733 (I can't quite reconstruct why these were not allowed before).
25005f6a 3734
137437c6 3735 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 3736 buffer overruns, corrupting state.
8dd76bee
PE
3737
3738 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
3739 definition.
3740 * src/reader.h (max_left_semantic_context): New variable declaration.
3741 * src/scan-gram.l (max_left_semantic_context): Define.
3742 (handle_action_dollar): Update max_left_semantic_context.
3743 * data/glr.c (YYMAXLEFT): New definition.
3744 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
3745 (yyresolveAction): Ditto.
3746
3747 Fixes to problems with location handling in GLR parsers reported by
3748 Frank Heckenbach (2003/06/05).
3749
3750 * data/glr.c (YYLTYPE): Make trivial if locations not used.
3751 (YYRHSLOC): Add parentheses, and define only if locations used.
3752 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
3753 locations not used.
3754 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
3755 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 3756
25005f6a
PH
3757 * tests/cxx-type.at: Exercise location information; update tests
3758 to differentiate output with and without locations.
8dd76bee 3759 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
3760 because default YYLTYPE not yet defined.
3761 Change semantic actions to compute strings, rather than printing
3762 them directly (to test proper passing of semantics values). Change
3763 output to prefix notation and update test data and expected results.
3764 (yylex): Track locations.
3765 (stmtMerge): Return value rather than printing, and include arguments
3766 in value.
8dd76bee 3767
711f40b7
PE
37682003-06-03 Paul Eggert <eggert@twinsun.com>
3769
3770 Avoid warnings generated by GCC 2.95.4 when Bison is
3771 configured with --enable-gcc-warnings.
3772 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
3773 yy::]b4_parser_class_name[::translate_,
3774 yy::Stack::operator[] (unsigned),
3775 yy::Stack::operator[] (unsigned) const,
3776 yy::Slice::operator[] (unsigned),
3777 yy::Slice::operator[] (unsigned) const):
3778 Rename local vars to avoid warnings.
3779 * tests/glr-regression.at (Improper handling of embedded actions
3780 and $-N in GLR parsers): Remove unused local variable from yylex.
3781 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
3782 (void) as arg when not pure, since we now assume C89 when building
3783 Bison. Pacify GCC by using parameter.
3784
ac695f7d
PE
37852003-06-02 Paul Eggert <eggert@twinsun.com>
3786
3787 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
3788 yy::Location::lines, yy::Location::columns): Rename arguments
3789 to avoid shadowing; this removes a warning generated by GCC 3.3.
3790
26ec81e0
PE
37912003-06-01 Paul Eggert <eggert@twinsun.com>
3792
3793 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
3794 to g++, as GCC 3.3 complains if you do it.
3795 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
3796 everything that WARNING_CFLAGS has, except omit warnings
3797 not suitable for C++.
3798 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
3799 * tests/atlocal.in (CXXFLAGS): New var.
3800 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
3801
3802 Fix a GLR parser bug I reported in February; see
161a71f3 3803 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
3804 The problem was that GLR parsers did not conform to the C standard,
3805 because actions like { $1 = $2 + $3; } expanded to expressions
3806 that invoked YYFILL in separate subexpressions, and YYFILL assigned
3807 to a local variable. The C standard says that expressions
3808 like (var = f ()) + (var = f ()) have undefined behavior.
3809 Another problem was that GCC sometimes issues warnings that
3810 yyfill and its parameters are unused.
3811
3812 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
3813 as possibly unused.
3814 (yyfill): New function.
3815 (YYFILL): Use it.
3816 (yyuserAction): Change type of yynormal to bool, so that it matches
3817 the new yyfill signature. Mark it as possibly unused.
3818
3819
3820 Follow up on a bug I reported in February, where a Bison-generated
3821 parser can loop. Provide a test case and a fix for yacc.c. I
3822 don't have a fix for lalr1.cc or for glr.c, unfortunately.
3823 The original bug report is in:
161a71f3 3824 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
3825
3826 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
3827 macro's size was becoming unwieldy.
3828 (yyerrlab): Do not discard an empty lookahead symbol, as this
3829 might destroy garbage.
3830 (yyerrorlab): New label, with the old contents of YYERROR,
3831 plus the following change: pop the stack of rhs corresponding
3832 to the production that invoked YYERROR. That is how Yacc
3833 behaves, and POSIX requires this behavior.
3834 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
3835 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
3836 Define 'alarm' to do nothing if unistd.h is not available.
3837 Add a new rule "exp: '-' error;" to test the above change to
3838 data/yacc.c. Use 'alarm' to abort any test taking longer than
3839 10 seconds, as it's probably looping.
3840 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
3841 Also, the new yacc.c generates two fewer diagnostics for an
3842 existing test.
3843
d0829076
PE
38442003-05-24 Paul Eggert <eggert@twinsun.com>
3845
c6ae27df
PE
3846 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
3847 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
3848 This fixes a problem reported by John Bowman when the Compaq/HP
3849 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
3850 -ansi -Wall -gall).
3851 * data/yacc.c (union yyalloc): Likewise.
3852 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 3853
d0829076
PE
3854 Switch from 'int' to 'bool' where that makes sense.
3855
3856 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
3857 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
3858 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
3859 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
3860 Return or accept bool, not int. All callers changed.
3861 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
3862 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
3863 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
3864 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
3865 bitset_or_and_cmp_): Likewise.
3866 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
3867 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
3868 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
3869 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
3870 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
3871 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
3872 bitset_stats_or_and_cmp): Likewise.
3873 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
3874 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
3875 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
3876 ebitset_xor_cmp): Likewise.
3877 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
3878 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
3879 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
3880 lbitset_xor_cmp): Likewise.
3881 * lib/bbitset.h: Include <stdbool.h>.
3882 (struct bitset_vtable): The following members now return bool, not
3883 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
3884 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
3885 or_and_cmp).
3886 * src/conflicts.c (count_rr_conflicts): Likewise.
3887 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
3888 All uses changed.
3889 * lib/ebitset.c (ebitset_obstack_init): Likewise.
3890 * lib/lbitset.c (lbitset_obstack_init): Likewise.
3891 * src/getargs.c (debug_flag, defines_flag, locations_flag,
3892 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
3893 graph_flag): Likewise.
3894 * src/getargs.h (debug_flag, defines_flag, locations_flag,
3895 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
3896 graph_flag): Likewise.
3897 * src/output.c (error_verbose): Likewise.
3898 * src/output.h (error_verbose): Likewise.
3899 * src/reader.c (start_flag, typed): Likewise.
3900 * src/reader.h (typed): Likewise.
3901 * src/getargs.c (LOCATIONS_OPTION): New constant.
3902 (long_options, getargs): Use it.
3903 * src/lalr.c (build_relations): Use bool, not int.
3904 * src/nullable.c (nullable_compute): Likewise.
3905 * src/print.c (print_reductions): Likewise.
3906 * src/tables.c (action_row, pack_vector): Likewise.
3907 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
3908 * src/output.c (prepare): Use it.
3909 * src/output.c (token_definitions_output,
3910 symbol_destructors_output, symbol_destructors_output): Use string,
3911 not boolean integer, to keep track of whether to output separator.
3912 * src/print_graph.c (print_core): Likewise.
3913 * src/state.c (state_rule_lookaheads_print): Likewise.
3914
3915 * config/install-sh: Sync from automake 1.7.5.
3916
6b2584b7
PE
39172003-05-14 Paul Eggert <eggert@twinsun.com>
3918
3919 * src/parse-gram.y (rules_or_grammar_declaration): Require a
3920 semicolon after a grammar declaration, in the interest of possible
3921 future changes to the Bison input language.
3922 Do not allow a stray semicolon at the start of the grammar.
3923 (rhses.1): Allow one or more semicolons after any rule, including
3924 just before "|" as required by POSIX.
3925 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
3926 grammar.
3927
caf37a36
ADL
39282003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
3929
3930 %parse-param support for lalr1.cc.
3931
3932 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
3933 b4_cc_constructor_calls, b4_cc_constructor_call,
3934 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
3935 definitions.
3936 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
3937 parse-param arguments.
3938 (yy::b4_parser_class_name): Declare instance variables to
3939 hold parse-param arguments.
3940 * tests/calc.at: s/value/semantic_value/ because value clashes
3941 with a member of yy::b4_parser_class_name. Adjust C++ code
3942 to handle %parse-param. Enable %parse-param test in C++.
3943
3ab37077
PE
39442003-05-12 Paul Eggert <eggert@twinsun.com>
3945
3946 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
3947 English a bit. Fix fclose typo. Change "const char" to "char
3948 const", and use ANSI C rather than K&R for "main". Suggest
3949 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
3950 and suggest yy_switch_to_buffer.
3951
39522003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
3953
3954 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
3955 C89. This avoids a diagnostic on compilers that define __STDC__
3956 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 3957 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 3958
e743727f
PE
39592003-05-03 Paul Eggert <eggert@twinsun.com>
3960
3961 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
3962 Do not overrun array bounds.
3963 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 3964 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 3965
916708d5
AD
39662003-04-29 Akim Demaille <akim@epita.fr>
3967
3968 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
3969 * src/getargs.c, src/getargs.h: here, as bool, not int.
3970 (nondeterministic_parser): New.
3971 * src/parse-gram.y, src/scan-gram.l: Support
3972 %nondeterministic-parser.
3973 * src/output.c (prepare): Use nondeterministic_parser instead
3974 of glr_parser where appropriate.
3975 * src/tables.c (conflict_row, action_row, save_row)
3976 (token_actions, token_actions, pack_vector): Ditto.
3977
a06ea4aa
AD
39782003-04-29 Akim Demaille <akim@epita.fr>
3979
3980 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
3981
211074ca
AD
39822003-04-29 Akim Demaille <akim@epita.fr>
3983
3984 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
3985 with %pure-parser and %locations to exercise the patch from Yakov
3986 Markovitch below.
3987
6175ffe3
PE
39882003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
3989
3990 * data/yacc.c: (b4_lex_param): Corrected for the case where
3991 %lex-param is provided and %pure-parser isn't.
3992
b1e95857
PE
39932003-04-27 Paul Eggert <eggert@twinsun.com>
3994
3995 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 3996 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
3997 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
3998 if it is not defined.
3999 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
4000
acda9df6
PE
40012003-04-26 Paul Eggert <eggert@twinsun.com>
4002
3470c57b
PE
4003 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
4004 Declare to be of type suitable for the ninf value itself, not of
4005 type suitable for the corresponding table, since the latter might
4006 be unsigned but the ninf value might be negative. This fixes a
4007 bug reported by Alexandre Duret-Lutz in
161a71f3 4008 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 4009
acda9df6
PE
4010 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
4011 invokes it. We shouldn't invoke it twice because it will attempt
4012 to put error.o in the archive twice. This fixes a glitch reported
4013 by Martin Mokrejs in
161a71f3 4014 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 4015
b5250f26
PE
40162003-04-21 Paul Eggert <eggert@twinsun.com>
4017
4018 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
4019 to gnulib.
4020
089ac0f1
PE
40212003-04-21 Yakov Markovitch <Markovitch@iso.ru>
4022
4023 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
4024 Fix obvious typo that results in uncompilable GLR parsers
4025 when both %pure-parser and %locations are used. (trivial change)
4026
5ededac6
PE
40272003-04-17 Paul Eggert <eggert@twinsun.com>
4028
1b8f2fff
PE
4029 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
4030 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
4031 Do not insert the expected token via unput, as this runs afoul
4032 of a POSIX-compatibility bug in flex 2.5.31.
4033 All uses changed to BEGIN the parent state,
4034 since we no longer insert the expected token via unput.
4035 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
4036 that is no longer emitted after the above change.
4037
5ededac6
PE
4038 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
4039 the first one. This change is from Paul Hilfinger, and it fixes
4040 regression reported by Werner Lemberg in
161a71f3 4041 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
4042
4043 (resolve_sr_conflict): Don't invoke state_errs_set
4044 unless one or more tokens have been explicitly made errors.
4045 Otherwise, the above change causes Bison to abort.
4046
4047 * tests/existing.at (GNU pic Grammar): New test case, taken from
4048 Lemberg's email.
4049
b8be9132
AD
40502003-03-31 Akim Demaille <akim@epita.fr>
4051
4052 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
4053
d423d460
AD
40542003-03-31 Akim Demaille <akim@epita.fr>
4055
4056 * src/output.c (prepare_symbols): Avoid trailing spaces in the
4057 output.
4058
c7e441b4
AD
40592003-03-31 Akim Demaille <akim@epita.fr>
4060
4061 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
4062 From Paul Hilfinger.
4063
231897ad
AD
40642003-03-29 Akim Demaille <akim@epita.fr>
4065
4066 * m4/error.m4: Do not put under dynamic conditions some code which
4067 expansion is under static control.
4068
5b066063
AD
40692003-03-29 Akim Demaille <akim@epita.fr>
4070
4071 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
4072
22a74fec
AD
40732003-03-29 Akim Demaille <akim@epita.fr>
4074
4075 * doc/bison.texinfo (Strings are Destroyed): New.
4076
0eee27e7
PE
40772003-03-13 Paul Eggert <eggert@twinsun.com>
4078
4079 * .cvsignore: Add configure.lineno.
4080 * src/.cvsignore: Add yacc.
4081 * tests/.cvsignore: Add testsuite.log.
4082 * doc/fdl.texi: Sync with latest FSF version.
4083
f61aad93
PE
40842003-03-12 Paul Eggert <eggert@twinsun.com>
4085
537636c7
PE
4086 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
4087 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
4088 cursor, instead of leaving it undefined. This fixes a bug
4089 reported by Tim Van Holder in
161a71f3 4090 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
4091 * tests/input.at (Torturing the Scanner): Test the scanner on
4092 an empty input file, which was Tim Van Holder's test case.
4093
4094 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
4095 <sys/resource.h> can be included, include sys/time.h and
4096 sys/times.h first, if available. This works around the SunOS
4097 4.1.4 porting bug reported by Bruce Becker in
161a71f3 4098 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
4099
4100 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
4101 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
4102 AC_HEADER_SYS_WAIT.
4103
f61aad93
PE
4104 Merge changes from gnulib. This was prompted because the CVS
4105 snapshot didn't build on Solaris 7 due to strnlen problems.
4106
4107 These changes need to be merged back into gnulib:
4108 * lib/hash.c: Include <stdbool.h> unconditionally.
4109 * m4/onceonly.m4 (m4_quote): New macro.
4110 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
4111 Quote AC_FOREACH variable-expansions properly.
4112 The 2003-01-03 obstack.h change also needs merging.
4113 {end of changes requiring merging}
5b066063 4114
f61aad93
PE
4115 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
4116 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
4117 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
4118 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
4119 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
4120 New files, imported from gnulib.
4121 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
4122 above.
4123
4124 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
4125 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
4126 gnulib sources.
4127
4128 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
4129 Add.
4130 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
4131 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
4132 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
4133 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
4134 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
4135 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
4136 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
4137 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
4138 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
4139 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
4140 (jm_PREREQ_ARGMATCH): Remove.
4141 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
4142 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
4143
4144 * src/system.h: Include <stdbool.h> unconditionally.
4145
4146 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
4147 assuming at least C89 in the bitset code for some time now.
4148
d2ffe116
AD
41492003-03-03 Akim Demaille <akim@epita.fr>
4150
4151 * ro.po: New.
4152
052826fd
AD
41532003-03-02 Akim Demaille <akim@epita.fr>
4154
4155 * doc/bison.texinfo (Table of Symbols): Reactivate the
4156 documentation for %lex-param, and %parse-param.
4157
c4749565
AD
41582003-03-02 Akim Demaille <akim@epita.fr>
4159
4160 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
4161 generate verbose error messages.
4162 Use the number of tokens as an upper bound in yytname, as it
4163 cannot be a non terminal.
4164
d5286af1
AD
41652003-03-02 Akim Demaille <akim@epita.fr>
4166
4167 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
4168 message.
4169
22e304a6
AD
41702003-03-02 Akim Demaille <akim@epita.fr>
4171
22e304a6
AD
4172 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
4173 Use them to exercise yycheck overrun.
4174 Based on Andrew Suffield's grammar.
4175
67a25fed
AD
41762003-03-02 Akim Demaille <akim@epita.fr>
4177
4178 Create tests/local.at for Bison generic testing macros.
4179
4180 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
4181 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
4182 This new file.
4183 * tests/calc.at (AT_CHECK_CALC): Adjust.
4184 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
4185 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
4186 * tests/local.at: here.
4187 (AT_COMPILE_CXX): Tags the tests using it as c++.
4188 Ignore the test if CXX is not functional.
4189
9c2b381f
PE
41902003-03-01 Paul Eggert <eggert@twinsun.com>
4191
4192 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
4193 not loc->end, since loc->end might contain garbage and this leads
4194 to undefined behavior on some platforms.
4195 (id_loc, token_start): Use (IF_LINTed) initial values that do not
4196 depend on *loc, so that the reader doesn't give the the false
4197 impression that *loc is initialized.
4198 (<INITIAL>"%%"): Do not bother setting code_start, since its value
4199 does not survive the return.
4200
0433ba88
AD
42012003-03-01 Akim Demaille <akim@epita.fr>
4202
4203 * src/scan-gram.l (code_start): Always initialize it when entering
4204 into yylex, as SC_EPILOGUE is activated *before* the corresponding
4205 yylex invocation. An alternative would be making it static, but
4206 then it starts with the second %%'s beginning, instead of its end.
4207
b305ea69
PE
42082003-02-28 Paul Eggert <eggert@twinsun.com>
4209
4210 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
4211 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 4212 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 4213
c3d25e01
PE
42142003-02-26 Paul Eggert <eggert@twinsun.com>
4215
4216 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
4217 Remove Sequent/Pyramid discussion (nobody uses them any more).
4218 Merge VMS and MS-DOS discussion; these ports may well be dead
4219 but let's keep mentioning them for now. Put <> around email
4220 addresses. Add copyright notice.
4221
c267ffbc
PE
42222003-02-24 Paul Eggert <eggert@twinsun.com>
4223
4224 * data/glr.c (yy_reduce_print): yylineno -> yylno,
4225 to avoid collision with flex use of yylineno.
4226 Problem reported by Bruce Lilly in
161a71f3 4227 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
4228 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
4229 * data/yacc.c (yy_reduce_print): Likewise.
4230
4231 * config/depcomp: Sync with Automake 1.7.3.
4232
f939fc12
AD
42332003-02-21 Akim Demaille <akim@epita.fr>
4234
4235 * data/lalr1.cc: Use temporary variables instead of casts to
4236 change integer types.
4237 Suggested by Paul Eggert.
4238
95923bd6
AD
42392003-02-21 Akim Demaille <akim@epita.fr>
4240
4241 * doc/bison.texinfo: Use "location" consistently to refer to @n,
4242 to avoid confusions with lalr1.cc's notion of Position.
4243 Suggested by Paul Eggert.
4244
2cdc240e
AD
42452003-02-20 Akim Demaille <akim@epita.fr>
4246
4247 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
4248 before initial_columns.
4249 (location.hh): Use consistent variable names when defining the
4250 operator<<.
4251 Use "last" so that we subtract from Positions, not from unsigned.
4252
5d003116
AD
42532003-02-20 Akim Demaille <akim@epita.fr>
4254
4255 * data/lalr1.cc (position.hh): New subfile, including the extended
4256 and Doxygen'ed documentation of class Position.
4257 (location.hh): Use it.
4258 Document a` la Doxygen.
ba1ecc07 4259 With the help of Benoit Perrot.
5d003116 4260
d02b25f9
AD
42612003-02-20 Akim Demaille <akim@epita.fr>
4262
4263 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
4264 AT_YACC_IF.
4265 Redefine AT_YYERROR_SEES_LOC_IF using it.
4266 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
4267 not defined.
4268 Don't use the location in yy::Parser::error_ and
4269 yy::Parser::print_ when not %locations.
4270 Activate more lalr1.cc tests.
4271
0d1c3a04
AD
42722003-02-19 Akim Demaille <akim@epita.fr>
4273
4274 * data/lalr1.cc: When displaying a line number, be sure to make it
4275 an int.
4276
60a777aa
AD
42772003-02-19 Akim Demaille <akim@epita.fr>
4278
4279 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
4280 Remove, useless.
4281 (YYABORT, YYACCEPT, YYERROR): New.
4282 * tests/calc.at: Renable the lalr1.cc test.
4283
0b86fc41
AD
42842003-02-19 Akim Demaille <akim@epita.fr>
4285
4286 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
4287 error recovery, mixing with/without pops and discarding of the
4288 lookahead.
4289 Exercise YYERROR.
4290 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
4291
da99a5dc
PE
42922003-02-17 Paul Eggert <eggert@twinsun.com>
4293
4294 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
4295 * tests/testsuite.at (AT_COMPILE): Use them.
4296 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 4297 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 4298
93b8c255
PE
42992003-02-12 Paul Eggert <eggert@twinsun.com>
4300
4301 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
4302 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 4303 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
4304 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
4305 Check for malloc failure, for consistency with yacc.c.
4306 (yytname_size): Remove, for consistency with yacc.c.
4307
4308 The bug still remains in data/lalr1.cc, as I didn't have time
4309 to fix it there.
4310
7548fed2
AD
43112003-02-06 Akim Demaille <akim@epita.fr>
4312
4313 * configure.ac (GXX): Rename as...
4314 (CXX): this, to keep the original Autoconf semantics.
4315 Require 2.57.
4316 * data/lalr1.cc: Fix b4_copyright invocations.
4317 If YYDEBUG is not defined, don't depend upon name_ being defined.
4318 (location.hh): Include string and iostream.
4319 (Position::filename): New member.
4320 (Position::Position ()): New.
4321 (operator<< (Position)): New.
4322 (operator- (Position, int)): New.
4323 (Location::first, Location::last): Rename as...
4324 (Location::begin, Location::end): these, to mock the conventional
4325 iterator names.
4326 (operator<< (Location)): New.
4327 * tests/atlocal.in (CXX): New.
4328 * tests/testsuite.at (AT_COMPILE_CXX): New.
4329 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
4330 locations in a more synthetic way.
4331 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
4332 lalr1.cc is used.
4333 Adjust the C locations to match those from Emacs: first column is
4334 column 0.
4335 Change all the expected results.
4336 Conform to the GCS: simplify the locations when applicable.
4337 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
4338 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
4339 these CPP macros with the m4 macros new defined by...
4340 (AT_CHECK_PUSHDEFS): this, i.e.:
4341 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 4342 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
4343 New macros.
4344 (AT_CHECK_POPDEFS): Undefine them.
4345 (AT_CHECK_CALC_LALR1_CC): New.
4346 Use it for the first lalr1.cc test.
4347
43a176ef
AD
43482003-02-04 Akim Demaille <akim@epita.fr>
4349
4350 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
4351 Location as is defined.
4352
fc049e9c
AD
43532003-02-04 Akim Demaille <akim@epita.fr>
4354
4355 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
4356 name_ being defined.
4357
a737b216
PE
43582003-02-03 Paul Eggert <eggert@twinsun.com>
4359
4360 * src/gram.h (start_symbol): Remove unused decl.
4361
4362 Use more-consistent naming conventions for local vars.
4363
4364 * src/derives.c (derives_compute): Change type of local var from
4365 int to rule_number.
4366 * src/gram.c (grammar_rules_partial_print): Likewise.
4367 * src/print.c (print_core): Likewise.
4368 * src/reduce.c (reduce_grammar_tables): Likewise.
4369
4370 * src/gram.c (grammar_dump): Change name of item_number *
4371 local var from r to rp.
4372 * src/nullable.c (nullable_compute): Likewise.
4373
4374 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
4375
4376 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
4377 for symbol or symbol_number var.
4378 * src/reader.c (grammar_start_symbol_set): Likewise.
4379 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
4380 Likewise.
4381 * src/state.c (transitions_to): Likewise.
4382 * src/state.h: Likewise.
4383 * src/tables.c (symbol_number_to_vector_number): Likewise.
4384
4385 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
4386 char * var.
4387
4388 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
4389 var.
4390
4391 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
4392 var.
4393
4394 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
4395 Use str, not s, for char * var. Use ch, not c, for character var.
4396 Use size for size var.
4397
4398 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
4399 char * var.
4400 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
4401 uniqstr var.
4402 * src/uniqstr.h: Likewise.
4403
4404 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
4405 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
4406 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
4407 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
4408 param to have same name as that of enum, so that we don't use
4409 "s" to stand for a non-state.
4410
68e93ad5
AD
44112003-02-02 Akim Demaille <akim@epita.fr>
4412
4413 * src/scan-skel.l: Scan more than one inert character per yylex
4414 invocation.
4415
92898986
PE
44162003-02-01 Paul Eggert <eggert@twinsun.com>
4417
4418 Version 1.875a.
4419
1d9d5d71
PE
4420 * po/LINGUAS: Add ms.
4421
0435d061
AD
44222003-01-30 Akim Demaille <akim@epita.fr>
4423
4424 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
4425
6029a57f
PH
44262003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4427
4428 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
4429 of $1.
0435d061
AD
4430
4431 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 4432 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 4433 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 4434
6029a57f
PH
4435 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
4436 (b4_rhs_location): Ditto.
0435d061 4437 (yyfill): New function to copy from stack tree into array
6029a57f 4438 incrementally.
0435d061
AD
4439 (yyuserAction): Modify to allow incremental move of semantic values
4440 to rhs array when in GLR mode.
4441 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
4442 as needed.
4443 Remove dummy use of yystack, as there is now a guaranteed use.
4444 (yydoAction): Modify to allow incremental move of semantic values
4445 to rhs array when in GLR mode.
4446 (yyresolveAction): Ditto.
4447 (yyglrShiftDefer): Update comment.
0435d061 4448 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
4449 (yyglrReduce): Ditto.
4450 (yydoAction): Ditto
0435d061 4451
6029a57f
PH
4452 * tests/glr-regr1.at: Rename to ...
4453 * tests/glr-regression.at: Add new regression test for the problems
4454 described above (adapted from S. Eken).
4455 Update copyright notice.
4456 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
4457 * tests/Makefile.am: Ditto.
4458
6cee6297
PE
44592003-01-28 Paul Eggert <eggert@twinsun.com>
4460
4461 * data/lalr1.cc: Do not use @output_header_name@ unless
4462 b4_defines_flag is set. This fixes two bugs reported by
4463 Tim Van Holder in
161a71f3
PE
4464 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
4465 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 4466
b2a836b5
PE
44672003-01-21 Paul Eggert <eggert@twinsun.com>
4468
4469 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
4470 we don't need to worry about yyerrlab1 being reported as an
4471 "unused label" by non-GCC C compilers. The downside is that if
4472 locations are used then a couple of statements are duplicated each
4473 time YYERROR is invoked, but the upside is that the warnings
4474 should vanish.
4475 (yyerrlab1): Move code to YERROR.
4476 (yyerrlab2): Remove. Change uses back to yyerrlab1.
4477 This reverts some of the 2002-12-27 change.
4478
4196b931
PE
44792003-01-17 Paul Eggert <eggert@twinsun.com>
4480
4481 * src/output.c (symbol_printers_output): Fix typo that led
4482 to core dump. Problem reported by Antonio Rus in
161a71f3 4483 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 4484
3ae831b4
AD
44852003-01-13 Akim Demaille <akim@epita.fr>,
4486 Quoc Peyrot <chojin@lrde.epita.fr>,
4487 Robert Anisko <anisko_r@lrde.epita.fr>
4488
4489 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
4490 when the stacks contain one element, as the loop would otherwise
4491 free the last state, and then use the top state (the one we just
4492 popped). This means that the initial elements will not be freed
4493 explicitly, as is the case in yacc.c; it is not a problem, as
4494 these elements have fake values.
4495
e3aa65c5
PE
44962003-01-11 Paul Eggert <eggert@twinsun.com>
4497
4498 * NEWS: %expect-violations are now just warnings, reverting
4499 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
4500 bootstrapping problem reported by Matthias Klose; see
161a71f3 4501 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
4502 * src/conflicts.c (conflicts_print): Likewise.
4503 * tests/conflicts.at (%expect not enough, %expect too much,
4504 %expect with reduce conflicts): Likewise.
4505 * doc/bison.texinfo (Expect Decl): Document this. Also mention
4506 that the warning is enabled if the number of conflicts changes
4507 (not necessarily increases).
4508
4509 * src/getargs.c (version): Update copyright year.
4510
f0057011
AD
45112003-01-09 Akim Demaille <akim@epita.fr>
4512
4513 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
4514
1ee6d2a0
PE
45152003-01-08 Paul Eggert <eggert@twinsun.com>
4516
4517 * Makefile.maint (WGETFLAGS):
4518 New macro, containing "-C off" to disable proxy caches.
4519 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
4520 (rel-check): Use $(WGET) instead of wget.
4521
d4fd77c4
PE
45222003-01-06 Paul Eggert <eggert@twinsun.com>
4523
4524 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
4525 the GLR paper of Scott, Johnstone and Hussain.
4526
464c6927
PE
45272003-01-04 Paul Eggert <eggert@twinsun.com>
4528
d600ee67
PE
4529 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
4530 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
4531 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
4532 (EXTRA_LIBRARIES): New var, for liby.a.
4533 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
4534 (EXTRA_SCRIPTS): New var, for yacc.
4535
464c6927
PE
4536 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
4537 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
4538 Problem reported by Nelson H. F. Beebe.
4539
45402003-01-03 Paul Eggert <eggert@twinsun.com>
4541
4542 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
4543 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
4544 when compiling Bison 1.875's `bitset bset = obstack_alloc
4545 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
4546
4547 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
4548 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
4549 grow to a huge size with typical invocation.
d600ee67 4550
464c6927
PE
4551 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
4552 Use the pattern recommended by Autoconf 2.57, except also protect
4553 against double-definition.
4554 * src/system.h: Likewise.
4555 Portability issues reported by Nelson H. F. Beebe.
d600ee67 4556
464c6927
PE
4557 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
4558 All uses changed. Provide a definition in both C and C++.
4559 (yytrue, yyfalse): Define even if defined (__cplusplus).
4560
4561 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
4562 Reported by Nelson H. F. Beebe.
d600ee67 4563
464c6927
PE
4564 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
4565
0f42c7d5
PE
45662003-01-02 Paul Eggert <eggert@twinsun.com>
4567
4568 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
4569 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
4570 Bug reported by Nelson H. F. Beebe.
4571
dc546b0f
PE
45722003-01-01 Paul Eggert <eggert@twinsun.com>
4573
4574 * Version 1.875.
4575
2c09b6a7
PE
45762002-12-30 Paul Eggert <eggert@twinsun.com>
4577
4578 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
4579 Moved here from...
4580 (<INITIAL>","): Here. This causes stray "," to be treated
4581 more uniformly.
4582
dc546b0f 4583 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
4584 last brace in braced code when not in Yacc mode, for compatibility
4585 with Bison 1.35. This resurrects the 2001-12-15 patch to
4586 src/reader.c.
4587
4588 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
4589 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
4590
535c0f63
PE
45912002-12-28 Paul Eggert <eggert@twinsun.com>
4592
4593 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
4594 that of SYM's type. This fixes Debian bug 168069, reported by
4595 Thomas Olsson.
d600ee67 4596
963fcc17
PE
45972002-12-28 Paul Eggert <eggert@twinsun.com>
4598
4599 Version 1.75f.
4600
4601 Switch back to the Yacc style of conflict reports, undoing some
4602 of the 2002-07-30 change.
4603 * doc/bison.texinfo (Understanding): Use Yacc style for
4604 conflict reports. Also, use new way of locating rules.
4605 * src/conflicts.c (conflict_report):
4606 Renamed from conflict_report_yacc, removing the old
4607 'conflict_report'. Translate the entire conflict report at once,
4608 so that we don't assume that "," has the same interpretation in
4609 all languages.
4610 (conflicts_output): Use Yacc-style conflict report for each state,
4611 instead of our more-complicated style.
4612 (conflicts_print): Use Yacc-style conflict report, except print
4613 the input file name when not emulating Yacc.
4614 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
4615 Conflicted Reduction, %expect not enough, %expect too much,
4616 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
4617 * tests/existing.at (GNU Cim Grammar): Likewise.
4618 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
4619
4620 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
4621 fatal): Don't invoke fflush; it's not needed and it might even be
4622 harmful for stdout, as stdout might not be open.
4623 * src/reduce.c (reduce_print): Likewise.
4624
b1efe548
PE
46252002-12-27 Paul Eggert <eggert@twinsun.com>
4626
4627 Fix a bug where error locations were not being recorded correctly.
4628 This problem was originally reported by Paul Hilfinger in
161a71f3 4629 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
4630
4631 * data/yacc.c (yyparse): New local var yylerrsp, to record the
4632 top of the location stack's error locations.
4633 (yyerrlab): Set it. When discarding a token, push its location
4634 onto yylerrsp so that we don't lose track of the error's end.
4635 (yyerrlab1): Now is only the target of YYERROR, so that we can
4636 properly record the location of the action that failed. For GCC
4637 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
4638 GCC warning about yyerrlab1 being unused if YYERROR is unused.
4639 (yyerrlab2): New label, which yyerrlab now falls through to.
4640 Compute the error's location by applying YYLLOC_DEFAULT to
4641 the locations of all the symbols that went into the error.
4642 * doc/bison.texinfo (Location Default Action): Mention that
4643 YYLLOC_DEFAULT is also invoked for syntax errors.
4644 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
4645 Error locations include the locations of all the tokens that were
4646 discarded, not just the last token.
d600ee67 4647
983c5c2c
PE
46482002-12-26 Paul Eggert <eggert@twinsun.com>
4649
b1efe548
PE
4650 * src/files.c: Include quote.h.
4651 (compute_output_file_names): Warn if we detect conflicting
4652 outputs to the same file. This should catch the misunderstanding
4653 exemplified by Debian Bug 165349, reported by Bruce Stephens..
4654
4655 * src/conflicts.c (conflicts_print): If the user specifies
4656 "%expect N", report an error if there are any reduce/reduce
4657 conflicts. This is what the manual says should happen.
4658 This fixes Debian bug 130890, reported by Anthony DeRobertis.
4659 * tests/conflicts.at (%expect with reduce conflicts): New test.
4660
983c5c2c
PE
4661 Don't use m4_include on relative file names, as it doesn't work as
4662 desired if there happens to be a file with that name under ".".
d600ee67 4663
983c5c2c
PE
4664 * m4sugar/version.m4: Remove; it was included but it wasn't used.
4665 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
4666 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
4667 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
4668 * src/output.c (output_skeleton): Use full path names when
4669 specifying a file to include; don't rely on include path, as
4670 it's unreliable when the working file contains a file with
4671 that name.
d600ee67 4672
983c5c2c
PE
46732002-12-25 Paul Eggert <eggert@twinsun.com>
4674
4675 Remove obsolete references to bison.simple and bison.hairy.
4676 Problem mentioned by Aubin Mahe in
161a71f3 4677 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
4678 * data/glr.c: Comment fix.
4679 * doc/bison.1: Remove references. Also, mention "yacc".
4680
4681 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
4682 with -g option.
4683
4684 * src/parse-gram.y (declaration): Use enum "report_states" rather
4685 than its numeric value 1.
4686
4687 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
4688 opening a new one. This fixes Debian bug 165349, reported by
4689 Bruce Stephens.
4690
23f2d9dc
PE
46912002-12-24 Paul Eggert <eggert@twinsun.com>
4692
4693 Version 1.75e.
4694
4695 * Makefile.maint (cvs-update): Don't assume that the shell
4696 supports $(...), as Solaris sh doesn't.
4697
4698 * src/parse-gram.y (lloc_default): Remove test for empty
4699 nonterminals at the end, since it didn't change the result.
4700
47012002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
4702
4703 If the user does not define YYSTYPE as a macro, Bison now declares it
4704 using typedef instead of defining it as a macro. POSIX requires this.
4705 For consistency, YYLTYPE is also declared instead of defined.
4706
4707 %union directives can now have a tag before the `{', e.g., the
4708 directive `%union foo {...}' now generates the C code
4709 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
4710 The default union tag is `YYSTYPE', for compatibility with Solaris 9
4711 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
4712 instead of `yyltype'.
4713
4714 `yystype' and `yyltype' are now obsolescent macros instead of being
4715 typedefs or tags; they are no longer documented and will be
4716 withdrawn in a future release.
4717
4718 * data/glr.c (b4_location_type): Remove.
4719 (YYSTYPE): Renamed from yystype.
4720 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
4721 (struct YYLTYPE): Renamed from struct yyltype.
4722 (YYLTYPE): Renamed from yyltype.
4723 (yyltype, yystype): New (and obsolescent) macros,
4724 for backward compatibility.
4725 * data/yacc.c: Likewise.
4726
4727 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
4728 does not specify a union tag. This is for compatibility with
4729 Solaris 9 yacc.
4730
4731 * src/parse-gram.y (add_param): 2nd arg is now char * not char
4732 const *, since it is now modified by stripping surrounding { }.
4733 (current_braced_code): Remove.
4734 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
4735 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
4736 trailing " {...}". Now of type <chars>.
4737 (grammar_declaration): Adjust to bundled tokens.
4738 (code_content): Remove; stripping is now done by add_param.
4739 (print_token_value): Print contents of bundled tokens.
4740 (token_name): New function.
4741
4742 * src/reader.h (braced_code, current_braced_code): Remove.
4743 (token_name): New decl.
4744
4745 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
4746 token_type, not braced_code code_kind. All uses changed.
4747 (SC_PRE_CODE): New state, for scanning after a keyword that
4748 has (or usually has) an immediately-following braced code.
4749 (token_type): New local var, to keep track of which token type
4750 to return when scanning braced code.
4751 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 4752 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
4753 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
4754 instead of returning a token type immediately.
4755 (<INITIAL>"{"): Set token type.
4756 (<SC_BRACED_CODE>"}"): Use it.
4757 (handle_action_dollar, handle_action_at): Now returns bool
4758 indicating success. Fail if ! current_rule; this prevents a core dump.
4759 (handle_symbol_code_dollar, handle_symbol_code_at):
4760 Remove; merge body into caller.
4761 (handle_dollar, handle_at): Complain in invalid contexts.
4762
4763 * NEWS, doc/bison.texinfo: Document the above.
4764 * NEWS: Fix years and program names in copyright notice.
4765
879ca4f8
PE
47662002-12-17 Paul Eggert <eggert@twinsun.com>
4767
4768 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
4769 Reporting, Table of Symbols): Omit mentions of %lex-param and
4770 %parse-param from the documentation for now.
4771
1c5fe69d
PE
47722002-12-15 Paul Eggert <eggert@twinsun.com>
4773
4774 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
4775 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
4776 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
4777 disagreed with the Bison documentation. Bug
4778 reported by Andrew Walrond.
d600ee67 4779
1c5fe69d
PE
4780 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
4781 as the caller now does that.
4782 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
4783 (YYEMPTY): Parenthesize right hand side, since others use it.
4784 (yyparse): Don't assume that our generated code is the only code
4785 that sets yychar.
4786
d1de5372
PE
47872002-12-13 Paul Eggert <eggert@twinsun.com>
4788
4789 Version 1.75d.
4790
4791 POSIX requires a "yacc" command.
4792 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
4793 (MOSTLYCLEANFILES): Add yacc.
4794 (yacc): New rule.
1c5fe69d 4795 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
4796 as an alias for bison y.
4797
4798 * po/LINGUAS: Add da.
d600ee67 4799
d1de5372
PE
4800 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
4801 problem with latest <getopt.h>.
4802 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
4803
4804 * doc/fdl.texi: Upgrade to 1.2.
4805 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
4806 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
4807 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
4808 gnulib.
4809 * config/install-sh: Sync with autotools.
4810
4811 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 4812 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
4813 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
4814 locations are requested.
4815 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
4816 locations are requested.
4817
d0f3fe23
PE
48182002-12-12 Paul Eggert <eggert@twinsun.com>
4819
4820 Remove unportable casts and storage allocation tricks.
4821 While we're at it, remove almost all casts, since they
4822 usually aren't needed and are a sign of trouble.
4823
4824 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
4825
4826 * src/derives.c (derives_compute): Do not subtract NTOKENS from
4827 the pointer DSET returned by malloc; this isn't portable.
4828 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
4829 Similarly for DERIVES.
4830 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
4831 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
4832 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
4833
4834 * src/derives.c (derives_compute): Do not bother invoking
4835 int_of_rule_number, since rule numbers are integers.
4836
4837 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
4838 rather than XMALLOC (char, N).
4839
4840 * src/files.c (filename_split): Rewrite to avoid cast.
4841
4842 * src/gram.h (symbol_number_as_item_number,
4843 item_number_as_symbol_number, rule_number_as_item_number,
4844 item_number_as_rule_number):
4845 Now inline functions rather than macros, to avoid casts.
4846 * src/state.h (state_number_as_int): Likewise.
4847 * src/tables.c (state_number_to_vector_number,
4848 symbol_number_to_vector_number): Likewise.
4849
4850 * src/gram.h (int_of_rule_number): Remove; no longer used.
4851
4852 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
4853 since the resulting storage is always stored into.
4854
4855 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
4856 where it's needed.
4857
4858 * src/muscle_tab.c (muscle_m4_output):
4859 Now inline. Return bool, not int.
4860 * src/state.c (state_compare): Likewise.
4861 * src/symtab.c (symbol_check_defined,
4862 symbol_check_alias_consistency, symbol_pack, symbol_translation,
4863 hash_compare_symbol, hash_symbol):
4864 Likewise.
4865 * src/uniqstr.c (uniqstr_print): Likewise.
4866 * src/muscle_tab.c (muscle_m4_output_processor):
4867 New function, to avoid casts.
4868 * src/state.c (state_comparator, stage_hasher): Likewise.
4869 * src/symtab.c (symbol_check_defined_processor,
4870 symbol_check_alias_consistency_processor, symbol_pack_processor,
4871 symbol_translation_processor, hash_symbol_comparator,
4872 hash_symbol_hasher): Likewise.
4873 * src/uniqstr.c (uniqstr_print_processor): Likewise.
4874 * src/muscle_tab.c (muscles_m4_output):
4875 Use new functions instead of casting old functions unportably.
4876 * src/state.c (state_hash_new): Likewise.
4877 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
4878 symbols_token_translations_init):
4879 Likewise.
4880 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
4881
4882 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
4883 var instead of casting to long, to avoid casts.
4884 (prepare_states): Use MALLOC rather than alloca, so that we don't
4885 have to worry about alloca.
4886 * src/state.c (state_hash_lookup): Likewise.
4887
4888 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
4889 local var instead of casting to unsigned char, to avoid casts.
4890
4891 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
4892 STATE_ALLOC): Remove.
4893 (transitions_new, errs_new, reductions_new, state_new): Use malloc
4894 rather than calloc, and use offsetof to avoid allocating slightly
4895 too much storage.
4896 (state_new): Initialize all members.
4897
4898 * src/state.c (state_hash): Use unsigned accumulator, not signed.
4899
4900 * src/symtab.c (symbol_free): Remove; unused.
4901 (symbol_get): Remove cast in lhs of assignment.
4902 (symbols_do): Now static. Accept generic arguments, not
4903 hashing-related ones.
4904
4905 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
4906 (symbol_processor): Remove.
4907 (symbols_do): Remove decl; now static.
4908
4909 * src/system.h (alloca): Remove; decl no longer needed.
4910 (<stddef.h>): Include, for offsetof.
4911 (<inttypes.>, <stdint.h>): Include if available.
4912 (uintptr_t): New type, if system lacks it.
4913 (CALLOC, MALLOC, REALLOC): New macros.
4914 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
4915 new macros.
4916
4917 * src/tables.c (table_size): Now int, to pacify GCC.
4918 (table_grow, table_ninf_remap): Use signed table size.
4919 (save_row): Don't bother initializing locals when not needed.
4920 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
4921 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
4922
4923 * src/vcg.h: Correct misspellings.
4924
4925 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
4926
4927
4928 * src/getargs.c (getargs): Don't assume EOF == -1.
4929
26b4a969
PE
49302002-12-09 Paul Eggert <eggert@twinsun.com>
4931
4932 Change identifier spellings to avoid collisions with names
4933 that are reserved by POSIX.
4934
4935 Don't use names ending in _t, since POSIX reserves them.
4936 For consistency, remove _e and _s endings -- they're weren't
4937 needed to remove ambiguity. All uses changed.
4938 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
4939 turn was just renamed from struniq_t.
4940 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
4941 which in turn was just renamed from struniq_processor_t.
4942 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
4943 in turn was renamed from hash_compare_struniq_t.
4944 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
4945 (state_list): Renamed from state_list_t.
4946 * src/assoc.h (assoc): Renamed from assoc_t.
4947 * src/conflicts.c (enum conflict_resolution): Renamed from
4948 enum conflict_resolution_e.
4949 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
4950 (rule_list): Renamed from rule_list_t.
4951 * src/getargs.h (enum trace): Renamed from enum trace_e.
4952 (enum report): Renamed from enum report_e.
4953 * src/gram.h (item_number): Renamed from item_number_t.
4954 (rule_number): Renamed from rule_number_t.
4955 (struct rule_s): Remove the "rule_s" part; not used.
4956 (rule): Renamed from rule_t.
4957 (rule_filter): Renamed from rule_filter_t.
4958 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
4959 (goto_list): Renamed from goto_list_t.
4960 * src/lalr.h (goto_number): Renamed from goto_number_t.
4961 * src/location.h (location): Renamed from location_t.
4962 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
4963 and moved here from:
4964 * src/muscle_tab.h (muscle_entry_t): here.
4965 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
4966 (rule_list): Renamed from rule_list_t.
4967 * src/print_graph.c (static_graph): Renamed from graph.
4968 * src/reader.h (braced_code): Renamed from braced_code_t.
4969 Remove brace_code_e tag.
4970 * src/relation.h (relation_node): Renamed from relation_node_t.
4971 (relation_nodes): Renamed from relation_nodes_t.
4972 (relation): Renamed from relation_t.
4973 * src/state.h (state_number): Renamed from state_number_t.
4974 (struct state): Renamed from struct state_s.
4975 (state): Renamed from state_t.
4976 (transitions): Renamed from transitions_t. Unused (and
4977 misspelled) transtion_s tag removed.
4978 (errs): Renamed from errs_t. Unused errs_s tag removed.
4979 (reductions): Renamed from reductions_t. Unused tag
4980 reductions_s removed.
4981 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
4982 (struct symbol_list): Renamed from struct symbol_list_s.
4983 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
4984 (struct symbol): Renamed from struct symbol_s.
4985 (symbol): Renamed from symbol_t.
4986 * src/tables.c (vector_number): Renamed from vector_number_t.
4987 (action_number): Renamed from action_t.
4988 * src/tables.h (base_number): Renamed from base_t.
4989 * src/vcg.h (enum color): Renamed from enum color_e.
4990 (enum textmode): Renamed from enum textmode_e.
4991 (enum shape): Renamed from enum shape_e.
4992 (struct colorentry): Renamed from struct colorentry_s.
4993 (struct classname): Renamed from struct classname_s.
4994 (struct infoname): Renamed from struct infoname_s.
4995 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
4996 (enum decision): Renamed from enum decision_e.
4997 (enum orientation): Renamed from enum orientation_e.
4998 (enum alignment): Renamed from enum alignment_e.
4999 (enum arrow_mode): Renamed from enum arrow_mode_e.
5000 (enum crossing_type): Renamed from enum crossing_type_e.
5001 (enum view): Renamed from enum view_e.
5002 (struct node): Renamed from struct node_s.
5003 (node): Renamed from node_t.
5004 (enum linestyle): Renamed from enum linestyle_e.
5005 (enum arrowstyle): Renamed from enum arrowstyle_e.
5006 (struct edge): Renamed from struct edge.
5007 (edge): Renamed from edge_t.
5008 (struct graph): Renamed from struct graph_s.
5009 (graph): Renamed from graph_t.
5010 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
5011 Rename value_t -> value.
5012 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
5013 value_t_as_yystype -> value_as_yystype.
5014
5015 Don't include <errno.h> in the mainstream code, since it
5016 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
5017 * lib/get-errno.c, lib/get-errno.h: New files.
5018 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
5019 get-errno.c.
5020 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
5021 * src/output.c (output_skeleton): Likewise.
5022 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
5023 instead of errno.
5024 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
5025 Likewise.
5026 (handle_action_dollar, handle_action_at): Likewise.
5027 * src/system.h: Do not include <errno.h>.
5028 (TAB_EXT): Renamed from EXT_TAB.
5029 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
5030
5031 Avoid str[a-z]*, since <string.h> reserves that name space.
5032 Change all instances of "struniq" in names to "uniqstr", and
5033 likewise for "STRUNIQ" and "UNIQSTR".
5034 * src/uniqstr.c: Renamed from src/struniq.c.
5035 * src/uniqstr.h: Renamed from src/struniq.h.
5036 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
5037 * src/files.c (strsuffix): Remove; unused.
5038 (concat2): Renamed from stringappend. Now static.
5039 * src/files.h (strsuffix, stringappend): Remove; unused.
5040 * src/parse-gram.y (<chars>): Renamed from <string>.
5041 (<uniqstr>): Renamed from <struniq>.
5042 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
5043 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
5044 (struct graph_s.expand): Renamed from struct graph_s.stretch.
5045 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
5046 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
5047 (N_EXPAND): Renamed from N_STRETCH.
5048
5049 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
5050 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
5051 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
5052 Remove; unused.
5053 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
5054 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
5055 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
5056 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
5057 (BASE_MAXIMUM): Renamed from BASE_MAX.
5058 (BASE_MINIMUM): Renamed from BASE_MIN.
5059 (ACTION_MAX): Remove; unused.
5060 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
5061 Unnecessary casts removed from above defines.
5062
5063
5064 Fix misspelling in names.
5065 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
5066 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
5067 G_NODE_ALIGNEMENT.
5068
5069
5070 * lib/timevar.c (timevar_report): Renamed from time_report,
5071 for consistency with other names.
5072 * lib/timevar.h (timevar_report): New decl.
5073 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
5074
5075
5076 Sort include-file uses.
5077
5078 Reorder all include files under src to be in the order "system.h".
5079 then the ../lib include files in angle brackets (alphabetized),
5080 then the . include files in double-quotes (alphabetized). Fix
5081 dependency breakages encountered in this process, as follows:
5082 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
5083 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
5084 * src/state.h: Include "symtab.h".
5085
996b1c7e
PE
50862002-12-08 Paul Eggert <eggert@twinsun.com>
5087
5088 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
5089 since this causes problems when __file__ contains character
5090 sequences like "@" that are treated specially by src/scan-skel.l.
5091 Instead, just use the file's basename. This fixes the bug
5092 reported by Martin Mokrejs in
161a71f3 5093 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 5094
e19c4e5d
PE
50952002-12-06 Paul Eggert <eggert@twinsun.com>
5096
5097 Add support for rules that do not have trailing semicolons, as
5098 POSIX requires. Improve the quality of locations in Bison
5099 diagnostics.
26b4a969 5100
e19c4e5d
PE
5101 * src/location.c: Include <quotearg.h>.
5102 (empty_location): Now const.
5103 (location_print): New function. Follow the recommendation of the
5104 GNU Coding Standards for locations that span file boundaries.
5105 * src/location.h: Do not include <quotearg.h>; no longer needed.
5106 (boundary): New type.
5107 (location_t): Use it. This allows locations to span file boundaries.
5108 All member uses changed: file -> start.file or end.file (as needed),
5109 first_line -> start.line, first_column -> start.column,
5110 last_line -> end.line, last_column -> end.column.
5111 (equal_boundaries): New function.
5112 (LOCATION_RESET, LOCATION_STEP): Remove.
5113 (LOCATION_PRINT): Remove. All callers changed to use location_print.
5114 (empty_location): Now const.
5115 (location_print): New decl.
5116 * src/parse-gram.y (lloc_default): New function, which handles
5117 empty locations more accurately.
5118 (YYLLOC_DEFAULT): Use it.
5119 (%token COLON): Remove.
5120 (%token ID_COLON): New token.
26b4a969 5121 (rules): Use it.
e19c4e5d
PE
5122 (declarations, rules): Remove trailing semicolon.
5123 (declaration, rules_or_grammar_declaration):
5124 Allow empty (";") declaration.
5125 (symbol_def): Remove empty actions; no longer needed.
5126 (rules_or_grammar_declaration): Remove trailing semicolon.
5127 (semi_colon.opt): Remove.
5128 * src/reader.h: Include location.h.
5129 (scanner_cursor): New decl.
5130 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
5131 rolling our own.
5132 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
5133 of *loc.
5134 (STEP): Remove. No longer needed, now that adjust_location does
5135 the work. All uses removed.
5136 (scanner_cursor): New var.
5137 (adjust_location): Renamed from extend_location. It now sets
5138 *loc and adjusts the scanner cursor. All uses changed.
5139 Don't bother testing for CR.
5140 (handle_syncline): Remove location arg; now updates scanner cursor.
5141 All callers changed.
5142 (unexpected_end_of_file): Now accepts start boundary of token or
5143 comment, not location. All callers changed. Update scanner cursor,
5144 not the location.
5145 (SC_AFTER_IDENTIFIER): New state.
5146 (context_state): Renamed from c_context. All uses changed.
5147 (id_loc, code_start, token_start): New local vars.
5148 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
5149 processing of Yacc white space and equivalents here.
5150 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
5151 instead of returning ID immediately, since we need to search for
5152 a subsequent colon.
5153 (<INITIAL>"'", "\""): Save token_start.
5154 (<INITIAL>"%{", "{", "%%"): Save code_start.
5155 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
5156 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
5157 BEGIN context_state at end, not INITIAL.
5158 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
5159 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
5160 Return correct token start.
5161 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
5162 the start of a character, string or multiline comment is found.
5163 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
5164 Reduction): Adjust reported locations to match the more-precise
5165 results now expected.
5166 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
5167 * tests/reduce.at (Useless Rules, Reduced Automaton,
5168 Underivable Rules): Likewise.
5169 * tests/regression.at (Invalid inputs): No longer `expecting ";"
5170 or "|"' now that so many other tokens are allowed by the new grammar.
5171
5172 * src/complain.h (current_file): Remove duplicate decl;
5173 current_file is now owned by files.h.
5174 * src/complain.c, src/scan-gram.l: Include files.h.
5175
51762002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 5177
e19c4e5d
PE
5178 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
5179 promotes to int; it might be unsigned int.
5180 * data/yacc.c (yy_reduce_print): Likewise.
5181
5182 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
5183 be #defined in the prologue, not in the Bison declarations.
5184 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 5185
b64755e3
PE
51862002-12-02 Paul Eggert <eggert@twinsun.com>
5187
5188 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
5189 * lib/strtoul.c: New file, from gnulib.
5190 This fixes a porting bug reported by Peter Klein in
161a71f3 5191 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 5192
6e746484
PE
51932002-11-30 Paul Eggert <eggert@twinsun.com>
5194
b64755e3
PE
5195 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
5196 and put only a forward declaration in the prologue. This is for
5197 consistency with the other scanner helper functions.
5198
6ba55592
PE
5199 Type clashes now generate warnings, not errors, since it
5200 appears that POSIX may allow some grammars with type clashes.
5201 * src/reader.c (grammar_current_rule_check): Warn about
5202 type clashes instead of complaining.
5203 * tests/input.at (Type Clashes): Expect warnings, not complaints.
5204
6e746484
PE
5205 Add Yacc library, since POSIX requires it.
5206 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
5207 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
5208 * lib/main.c, lib/yyerror.c: New files.
5209
5210 gram_error can be static; it need not be extern.
5211 * src/reader.h (gram_error): Remove decl.
5212 * src/parse-gram.y (gram_error): Now static. Add static decl.
5213 (print_token_value): Omit parameter names from forward decl,
5214 for consistency.
5215
88510f9c
PE
52162002-11-29 Paul Eggert <eggert@twinsun.com>
5217
6e746484
PE
5218 * doc/bison.texinfo: Emphasize that yylex and yyerror must
5219 be declared before being used. E.g., one should typically
5220 declare them in the prologue. Use GNU coding style in examples.
5221 Put "const" consistently after the type it modifies. Mention
5222 that C99 supports "inline". Mention that yyerror traditionally
5223 returns "int".
5224
88510f9c
PE
5225 %parse-param and %lex-param now take just one argument, the
5226 declaration; the argument name is deduced from the declaration.
5227
5228 * doc/bison.texinfo (Parser Function, Pure Calling, Error
5229 Reporting, Table of Symbols): Document this.
5230 * src/parse-gram.y (add_param): New function.
5231 (COMMA): Remove.
5232 (declaration): Implement new rule for %parse-param and %lex-param.
5233 * src/scan-gram.l: "," now elicits a warning, rather than being
5234 a token; this is more compatible with byacc.
5235 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
5236
bb92250c
PE
52372002-11-27 Paul Eggert <eggert@twinsun.com>
5238
5239 Rename identifiers to avoid real and potential collisions.
5240
5241 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
5242 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 5243 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
5244 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
5245 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
5246 * src/parse-gram.y (print_token_value): Renamed from yyprint.
5247 All uses changed.
5248 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
5249 The name "yycontrol" violates the name space rules, and this stuff
5250 wasn't being used anyway.
5251 (input): Remove action; this stuff wasn't being used.
5252 (gram_error): Rename local variable yylloc -> loc.
5253 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
5254 (YY_DECL): Don't use "yy" at start of local variables.
5255 All uses changed, e.g., yylloc -> loc.
5256 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
5257 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
5258 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
5259 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
5260
5261 * src/parse-gram.y (gram_error): loc is now const *.
5262 * src/reader.h (gram_error): Likewise.
5263
3af4feb2
PE
52642002-11-24 Paul Eggert <eggert@twinsun.com>
5265
5266 Version 1.75c.
5267
5268 * tests/actions.at (Actions after errors): Use an output format
5269 more similar to that of the Printers and Destructors test.
5270 Test the position of the ';' token too.
5271 (Printers and Destructors): Likewise.
5272 (Printers and Destructors: %glr-parser): Remove for now, to avoid
5273 unnecessarily alarming people when the test fails.
5274
5275 * data/yacc.c (yyerrlab1): Move this label down, so that the
5276 parser does not discard the lookahead token if the user code
5277 invokes YYERROR. This change is required for POSIX conformance.
5278
5279 * lib/error.c: Sync with gnulib.
5280
52812002-11-22 Paul Eggert <eggert@twinsun.com>
5282
5283 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
5284 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
5285 * lib/xmalloc.c: Likewise.
26b4a969 5286
58004308
PE
52872002-11-20 Paul Eggert <eggert@twinsun.com>
5288
5289 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
5290
52912002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 5292
58004308
PE
5293 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
5294 should use `if (! x) abort ();' rather than `assert (x);', and
5295 anyway it's one less thing to worry about configuring.
5296
5297 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
5298 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
5299 and replace all instances of assert with abort.
5300 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
5301 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
5302
5303 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
5304 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
5305 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
5306 hash_find_entry, hash_rehash, hash_insert): Likewise.
5307 * src/conflicts.c (resolve_sr_conflict): Likewise.
5308 * src/lalr.c (set_goto_map, map_goto): Likewise.
5309 * src/nullable.c (nullable_compute): Likewise.
5310 * src/output.c (prepare_rules, token_definitions_output): Likewise.
5311 * src/reader.c (packgram, reader): Likewise.
5312 * src/state.c (state_new, state_free, state_transitions_set,
5313 state_reduction_find): Likewise.
5314 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
5315 symbol_pack): Likewise.
5316 * src/tables.c (conflict_row, pack_vector): Likewise.
5317 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
5318 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
5319 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
5320 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
5321
5322 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
5323 (ARGMATCH_CONSTRAINT): New macro.
5324 (ARGMATCH_ASSERT): Use it.
5325
5326 * src/system.h (verify): New macro.
5327 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
5328 rather than assert.
5329 * src/tables.c (tables_generate): Likewise.
5330
5331 * src/struniq.c (struniq_assert): Now returns void, and aborts
5332 if the assertion is false.
5333 (struniq_assert_p): Remove.
5334 * src/struniq.h: Likewise.
5335
76ae8198
PE
53362002-11-18 Paul Eggert <eggert@twinsun.com>
5337
5338 * data/glr.c (yygetLRActions): Replace `yyindex' with
5339 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
5340 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 5341 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 5342
d3c4e709
AD
53432002-11-18 Akim Demaille <akim@epita.fr>
5344
5345 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
5346 space.
5347 From Tim Van Holder.
5348
8d8a7238
PE
53492002-11-17 Paul Eggert <eggert@twinsun.com>
5350
5351 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
5352 to "SyntaxError" for consistency with my 2002-11-15 change.
5353
5354 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
5355 not define to {}, since this breaks the common use of `YYDPRINTF
5356 ((...));' if a single statement is desired (e.g. before `else').
5357 Work around GCC warnings by surrounding corresponding calls with
5358 {} if needed.
5359 (yyhasResolvedValue): Remove unused function.
5360 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
5361 loop body.
5362 (yyreportSyntaxError): Renamed from yyreportParseError.
5363 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
5364 All uses changed.
5365 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
5366 extern when possible. Remove unused initializations.
5367
b0937b22
AD
53682002-11-16 Akim Demaille <akim@epita.fr>
5369
5370 Augment the similarity between GLR and LALR traces.
5371
5372 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
5373 (YY_REDUCE_PRINT): New.
5374 (yyparse): Use them.
5375 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
5376 YYDPRINT here.
5377 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
5378 state reached after the reduction/recovery, since...
5379 (yyparse, yyprocessOneStack): Report the state we are entering in.
5380
c5e3e510
AD
53812002-11-16 Akim Demaille <akim@epita.fr>
5382
5383 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
5384 Add support for --trace=skeleton.
5385 * src/scan-skel.l: %option debug.
5386 Scan strings of non-@ or \n instead of character by character.
5387 (scan_skel): Handle trace_skeleton.
5388 (QPUTS): New.
5389 (@output_parser_name@, @output_header_name@): ``Restore'' their
5390 support (used to be M4 macros).
5391 * data/yacc.c: Quote larger chunks, a la glr.c.
5392 * data/lalr1.cc: Likewise.
5393 The header guards are no longer available, so use some other
5394 string than `YYLSP_NEEDED'.
5395
4c6cc1db
AD
53962002-11-16 Akim Demaille <akim@epita.fr>
5397
5398 Make the ``Printers and Destructors'' test more verbose, taking
5399 `yacc.c''s behavior as (possibly wrong) reference.
5400
5401 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
5402 instead of fprint on stdout.
5403 Set and report the last_line of the symbols.
5404 Consistently display values and locations.
5405
6d9e8019
PE
54062002-11-16 Paul Eggert <eggert@twinsun.com>
5407
5408 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
5409
6e649e65
PE
54102002-11-15 Paul Eggert <eggert@twinsun.com>
5411
b25d88f6
PE
5412 * tests/actions.at (Actions after errors): New test case.
5413
6e649e65
PE
5414 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
5415 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
5416 tests/action.at, tests/calc.at, tests/conflicts.at,
5417 tests/cxx-type.at, tests/regression.at:
5418 "parse error" -> "syntax error" for POSIX compatibility.
5419 "parsing stack overflow..." -> "parser stack overflow" so
5420 that code matches Bison documentation.
5421
0f39aab9
AD
54222002-11-15 Akim Demaille <akim@epita.fr>
5423
5424 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
5425 take two BRACED_CODE, not two string_content.
5426 Free the scanner's obstack when we are done.
5427 (code_content): New.
5428 * tests/calc.at: Adjust.
5429 * doc/bison.texinfo: Adjust.
5430 Also, make sure to include the `,' for these declarations.
5431
761c1926
AD
54322002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
5433
5434 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
5435 definition; avoids potential autoreconf problems.
5436
b0f98b10
AD
54372002-11-15 Akim Demaille <akim@epita.fr>
5438
5439 Always check the value returned by yyparse.
5440
5441 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
5442 returned by yyparse.
5443 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
5444 Adjust calls.
5445 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
5446 returned by yyparse.
5447
970785f1
PH
54482002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5449
5450 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
5451 on input.at test.
5452
8fcc7db1
PE
54532002-11-14 Paul Eggert <eggert@twinsun.com>
5454
7ec1b48e
PE
5455 * src/output.c (output_skeleton): Call xfopen instead of
5456 duplicating xfopen's body.
5457
cfff7583 5458 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 5459 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 5460
8fcc7db1
PE
5461 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
5462 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
5463 Group compiler. Instead, use "$CC -E bar.c". Include the .h
5464 file twice in the grammar, as an extra check.
5465
5466 * tests/input.at (Torturing the Scanner): Surround the
5467 backslash-newline tests with "#if 0", to make it less likely that
5468 we'll run into compiler bugs. Bring back solitary \ inside
5469 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 5470 test backslash-newline in C character constant.
8fcc7db1 5471
4e8d992c
AD
54722002-11-14 Akim Demaille <akim@epita.fr>
5473
5474 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
5475 status of the compiler.
f32b346d 5476 Calling `exit 1' is no longer needed.
4e8d992c
AD
5477 Reported by Nelson H. F. Beebe.
5478
9501dc6e
AD
54792002-11-14 Akim Demaille <akim@epita.fr>
5480
5481 * tests/atlocal.in (CPPFLAGS): We have config.h.
5482 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
5483 New.
5484 * tests/actions.at, tests/calc.at, tests/conflicts.at,
5485 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
5486 * tests/regression.at, tests/torture.at: Use them for all the
5487 grammars that are to be compiled.
5488 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
5489 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
5490 * doc/bison.texinfo (GLR Parsers): Document `inline'.
5491
18b519c0
AD
54922002-11-14 Akim Demaille <akim@epita.fr>
5493
5494 * doc/bison.texinfo: Various formatting changes (alignments in
5495 samples, additional @group/@end group, GCS in samples.
5496 Use @deffn instead of simple @table to define the directives,
5497 macros, variables etc.
5498
9a86cdb9
PE
54992002-11-13 Paul Eggert <eggert@twinsun.com>
5500
daa33def 5501 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 5502 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 5503
daa33def 5504 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 5505 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
5506 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
5507 * tests/headers.at (export YYLTYPE): Likewise.
5508
5509 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 5510 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 5511
9a86cdb9
PE
5512 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
5513 comments, since they're not portable. Use GNU coding style.
5514
9c1e26bd
AD
55152002-11-13 Akim Demaille <akim@epita.fr>
5516
5517 * data/yacc.c: Leave bigger chunks of quoted text.
5518 (YYDSYMPRINTF): New.
5519 Use it to report symbol activities.
5520 * data/glr.c (YYDSYMPRINTF): New.
5521 Use it.
5522
87f721cc
PE
55232002-11-12 Paul Eggert <eggert@twinsun.com>
5524
5525 Version 1.75b.
5526
5527 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
5528 (yyglrReduce): Return yyok, not 0.
5529 This should avoid the enumerated-type warnings reported
464c6927 5530 by Nelson H. F. Beebe in
161a71f3 5531 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
5532
5533 * lib/bbitset.h (BITSET_INLINE): Remove.
5534 * lib/bitset.h [! BITSET_INLINE]: Remove.
5535 (bitset_set, bitset_reset, bitset_test): Rename local vars
5536 to avoid shadowing warnings by GCC.
5537
5538 * data/glr.c (inline): Remove #define. It's the user's
5539 responsibility to #define it away, just like 'const'.
464c6927 5540 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 5541 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 5542
87f721cc
PE
5543 * Makefile.maint (po-check): Scan .l and .y files instead of the
5544 .c and the .h files that they generate. This fixes the bug
5545 reported by Tim Van Holder in:
161a71f3 5546 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
5547 Look for N_ as well as for _. Try to avoid matching #define for
5548 N_ and _.
5549 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
5550 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
5551 * src/scan-gram.l: Revamp regular expressions so that " and '
5552 do not confuse xgettext.
5553
5554 * src/struniq.h (struniq_new): Do not declare the return type
5555 to be 'const'; this violates the C standard.
5556 * src/struniq.c (struniq_new): Likewise.
5557
be14ade5
AD
55582002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
5559
5560 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
5561 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
5562 linker.
5563
05291fbc
AD
55642002-11-12 Akim Demaille <akim@epita.fr>
5565
5566 * Makefile.maint: Sync with Autoconf:
5567 (local_updates): New.
5568
1f5fd52e
AD
55692002-11-12 Akim Demaille <akim@epita.fr>
5570
5571 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
5572
283f1e64
AD
55732002-11-12 Akim Demaille <akim@epita.fr>
5574
5575 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
5576 locations.
5577
886b69d1
AD
55782002-11-12 Akim Demaille <akim@epita.fr>
5579
5580 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
5581 not yyvalue.
5582
3df37415
AD
55832002-11-12 Akim Demaille <akim@epita.fr>
5584
5585 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
5586 Use it to test the GLR parser.
5587
7bd6c77e
AD
55882002-11-12 Akim Demaille <akim@epita.fr>
5589
5590 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
5591 defines it.
5592 * data/glr.c (yystos): New.
5593 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
5594 (YYDSYMPRINT): New.
5595 (yyval): Don't define it, it is handled via M4.
5596 (yyrecoverParseError): Free verbosely the discarded symbols.
5597 * data/yacc.c (yysymprint): Remove, rather...
5598 (b4_yysymprint_generate): invoke.
5599 * data/c.m4 (b4_yysymprint_generate): New.
5600 Accept pointers as arguments, as opposed to the version from
5601 yacc.c.
5602 (b4_yydestruct_generate): Likewise.
5603 * tests/cations.at (Printers and Destructors): Use Bison directives
5604 instead of CPP macros.
5605 Don't rely on internal details.
5606
b0400cc6
AD
56072002-11-12 Akim Demaille <akim@epita.fr>
5608
5609 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
5610 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
5611 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
5612 it against YYEMPTY and so forth), work on yytoken (i.e., set
5613 it to YYEMPTY etc.).
5614 (yydestruct): Replace with a b4_yydestruct_generate invocation.
5615 (b4_symbol_actions): Remove.
5616 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
5617 for 0, end-of-input.
5618
72f889cc
AD
56192002-11-12 Akim Demaille <akim@epita.fr>
5620
5621 * doc/bison.texinfo (Destructor Decl): New.
5622
b1ae9233
AD
56232002-11-12 Akim Demaille <akim@epita.fr>
5624
5625 * src/tables.c (tables_generate): Use free for pointers that
5626 cannot be NULL, not XFREE.
5627 (pack_vector): Use assert, not fatal, for bound violations.
5628 * src/state.c (state_new): Likewise.
5629 * src/reader.c (reader): Likewise.
5630 * src/lalr.c (set_goto_map): Likewise.
72f889cc 5631 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
5632 the file name.
5633
7ec2d4cd
AD
56342002-11-12 Akim Demaille <akim@epita.fr>
5635
5636 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
5637 Restore.
5638 * src/scan-gram.l (last_string): Is global to the file, not to
5639 yylex.
5640 * src/parse-gram.y (input): Don't append the epilogue here,
5641 (epilogue.opt): do it here, and free the scanner's obstack.
5642 * src/reader.c (epilogue_set): Rename as...
5643 (epilogue_augment): this.
5644 * data/c.m4 (b4_epilogue): Defaults to empty.
5645
573a6cd3
AD
56462002-11-12 Akim Demaille <akim@epita.fr>
5647
5648 * src/getargs.c (long_options): Remove duplicates.
5649 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
5650 Remove.
5651 * doc/bison.rnh: Remove.
5652 * doc/bison.texinfo (VMS Invocation): Remove.
5653
95612cfa
AD
56542002-11-12 Akim Demaille <akim@epita.fr>
5655
5656 * src/struniq.h, src/struniq.c (struniq_t): Is const.
5657 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
5658
5659 Use struniq for symbols.
5660
5661 * src/symtab.h (symbol_t): The tag member is a struniq.
5662 (symbol_type_set): Adjust.
5663 * src/symtab.c (symbol_new): Takes a struniq.
5664 (symbol_free): Don't free the tag member.
5665 (hash_compare_symbol_t, hash_symbol_t): Rename as...
5666 (hash_compare_symbol, hash_symbol): these.
5667 Use the fact that tags as struniqs.
5668 (symbol_get): Use struniq_new.
5669 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
5670 Returns a strniq.
5671 * src/reader.h (merger_list, grammar_currentmerge_set): The name
5672 and type members are struniqs.
5673 * src/reader.c (get_merge_function)
5674 (grammar_current_rule_merge_set): Adjust.
5675 (TYPE, current_type): Are struniq.
5676
5677 Use struniq for file names.
5678
5679 * src/files.h, src/files.c (infile): Split into...
5680 (grammar_file, current_file): these.
5681 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
5682 * src/reduce.c (reduce_print): Likewise.
5683 * src/getargs.c (getargs): Likewise.
5684 * src/complain.h, src/complain.c: Likewise.
5685 * src/main.c (main): Call struniqs_new early enough to use it for
5686 file names.
5687 Don't free the input file name.
5688
3e6656f9
AD
56892002-11-12 Akim Demaille <akim@epita.fr>
5690
5691 * src/symtab.c (symbol_free): Remove dead deactivated code:
5692 type_name are properly removed.
5693 Don't use XFREE to free items that cannot be NULL.
5694 * src/struniq.h, src/struniq.c: New.
5695 * src/main.c (main): Initialize/free struniqs.
5696 * src/parse-gram.y (%union): Add astruniq member.
5697 (yyprint): Adjust.
5698 * src/scan-gram.l (<{tag}>): Return a struniq.
5699 Free the obstack bit that used to store it.
5700 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
5701
7672019c
PE
57022002-11-11 Paul Eggert <eggert@twinsun.com>
5703
5704 Revamp to fix many (but not all) of the C- and M4-related quoting
5705 problems. Among other things, this fixes the Bison bug reported
5706 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 5707 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
5708
5709 Use new @ escapes consistently. Represent brackets with @{ and @}
5710 rather than @<:@ and @:>@, since this works a bit better with dumb
5711 editors like vi. Represent @ with @@, since @ is now consistently
5712 an escape. Use @oline@ and @ofile@ rather than __oline__ and
5713 __ofile__, to avoid unexpected expansions. Similarly, use @output
5714 rather than #output.
5715
5716 * data/c.m4 (b4_copyright): Omit file name from comment, since
5717 the file name could contain "*/".
5718 (b4_synclines_flag): Don't quote the 2nd argument; it should already
5719 be quoted. All uses changed.
5720
5721 * data/glr.c: Use new @ escapes consistently.
5722 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
5723 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
5724 Remove, since they couldn't handle arbitrary characters in file
5725 names.
5726 * data/lalr1.cc: Likewise.
5727 * data/yacc.c: Likewise.
5728
5729 * src/files.c (output_infix): Remove; all uses removed.
5730 * src/files.h: Likewise.
5731
5732 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
5733 mishandled funny characters in file names, and anyway it isn't
5734 needed any more.
5735 * data/yacc.c: Likewise.
5736 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
5737
5738 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
5739 * data/yacc.c: Likewise.
5740
5741 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
5742 strings now.
5743 (muscle_init): Quote filename as a C string.
5744 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
5745 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
5746 * src/output.c (escaped_file_name_output): New function.
5747 (prepare_symbols): Quote tokens for M4.
5748 (prepare): Don't insert output_infix, output_prefix,
5749 output_parser_name, output_header_name; this is now down by scan-skel.
5750 Insert skeleton as a C string.
5751
5752 * src/output.c (user_actions_output, symbol_destructors_output,
5753 symbol_printers_output): Quote filenames for C and M4.
5754 * src/reader.c (prologue_augment, epilogue_set): Likewise.
5755
5756 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
5757 escapes other than \\ and \'; this simplifies the code.
5758 (<SC_STRING>): Likewise, for \\ and \".
5759 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
5760 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
5761 Use new escapes @{ and @} for [ and ].
5762
5763 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
5764 them with auto vars.
5765 Switch to new escape scheme, where @ is the escape character uniformly.
5766 Abort if a stray escape character is found. Avoid unbounded input
5767 buffer when parsing non-escaped text.
5768
5769 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
5770 __oline__, #output, $@, and @{ do not have unintended meanings.
5771
acea4f3b
PE
57722002-11-09 Paul Eggert <eggert@twinsun.com>
5773
5774 Fix the test failure due to GCC warnings described in
161a71f3 5775 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
5776 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
5777 evaluate to 0 if it's impossible for NINF to be in the respective
5778 table.
5779 (yygetLRActions, yyrecoverParseError): Use them.
5780
5781 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
5782 counted in the token inserted at end of file. Now takes
5783 location_t *, not location_t, so that the location can be
5784 adjusted. All uses changed.
5785
5786 * tests/regression.at (Invalid inputs): Adjust wording in
5787 diagnostic to match the new behavior.
5788
5789 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
5790 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
5791 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
5792 abort ();'. This reduces the runtime of the "Many lookaheads"
5793 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
5794 GCC 3.2.
5795
20ef1ad5
PE
57962002-11-07 Paul Eggert <eggert@twinsun.com>
5797
5798 * src/parse-gram.y (CHARACTER): Remove unused token.
5799 All uses removed.
5800
5801 * src/scan-gram.l: Remove stack option. We no longer use the
5802 stack, since the stack was never deeper than 1; instead, use the
5803 new auto var c_context to record the stacked value.
5804
5805 Remove nounput option. At an unexpected end of file, we now unput
5806 the minimal input necessary to end cleanly; this simplifies the
5807 code.
5808
5809 Avoid unbounded token sizes where this is easy.
5810
5811 (unexpected_end_of_file): New function.
5812 Use it to systematize the error message on unexpected EOF.
5813 (last-string): Now auto, not static.
5814 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
5815 (scanner_last_string_free): Remove; not used.
5816 (percent_percent_count): Move decl to just before use.
5817 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
5818 not the (never otherwised-used) CHARACTER.
5819
93724f13
AD
58202002-11-07 Akim Demaille <akim@epita.fr>
5821
5822 Let yyerror always receive the msg as last argument, so that
5823 yyerror can be variadic.
5824
5825 * data/yacc.c (b4_yyerror_args): New.
5826 Use it when calling yyerror.
5827 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
5828 Use it when calling yyerror.
5829 * doc/bison.texinfo (Error Reporting): Adjust.
5830 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
5831 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
5832
6e40b4eb
AD
58332002-11-06 Akim Demaille <akim@epita.fr>
5834
5835 #line should have quoted strings.
5836 Ideally, this should be done by m4_quotearg.
5837
5838 * src/scan-skel.l: Include quotearg.h.
5839 Quote __ofile__.
5840 * src/output.c (symbol_printers_output)
5841 (symbol_destructors_output): Quote the file name.
5842
2dfbfc12
AD
58432002-11-06 Akim Demaille <akim@epita.fr>
5844
5845 * tests/regression.at (Invalid inputs): Adjust to the recent
5846 messages.
5847
437c2d80
AD
58482002-11-06 Akim Demaille <akim@epita.fr>
5849
5850 Restore --no-lines.
5851 Reported by Jim Kent.
5852
5853 * data/c.m4 (b4_syncline): New.
5854 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
5855 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
5856 * src/output.c (user_actions_output): Likewise.
5857 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 5858 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 5859
900c5db5
AD
58602002-11-06 Akim Demaille <akim@epita.fr>
5861
5862 * src/main.c (main): Free `infile'.
5863 * src/scan-gram.l (handle_syncline): New.
5864 Recognize `#line'.
5865 * src/output.c (user_actions_output, symbol_destructors_output)
5866 (symbol_printers_output): Use the location's file name, not
5867 infile.
5868 * src/reader.c (prologue_augment, epilogue_set): Likewise.
5869
e183b123 58702002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 5871
e183b123 5872 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 5873 either has GLR conflict entries.
e183b123 5874
193eb6b7
PE
58752002-11-05 Paul Eggert <eggert@twinsun.com>
5876
e183b123
PE
5877 * src/scan-gram.l: Use more accurate diagnostics, e.g.
5878 "integer out of range" rather than "invalid value".
5879 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
5880 accordingly.
5881
193eb6b7
PE
5882 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
5883 Also, remove one static variable in the scanner.
5884
5885 * src/scan-gram.l (braces_level): Now auto, not static.
5886 Initialize to zero if the compiler is being picky.
5887 (INITIAL): Clear braces_level instead of incrementing it.
5888 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
5889 as POSIX 1003.1-2001 requires.
5890 * src/system.h (IF_LINT): New macro, taken from coreutils.
5891 * configure.ac: Define "lint" if --enable-gcc-warnings.
5892
29c01725
AD
58932002-11-05 Akim Demaille <akim@epita.fr>
5894
5895 * src/scan-gram.l: When it starts with `%', complain about the
5896 whole directive, not just that `invalid character: %'.
5897
8aeac3ca
AD
58982002-11-04 Akim Demaille <akim@epita.fr>
5899
5900 * Makefile.maint: Update from Autoconf.
5901 (update, cvs-update, po-update, do-po-update): New.
5902
793a58bb
AD
59032002-11-04 Akim Demaille <akim@epita.fr>
5904
5905 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
5906 and yyerror.
5907 Have yyerror `use' its arguments.
5908 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
5909 returns true when location & yacc & pure & parse-param.
5910 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
5911
c4d720cd
AD
59122002-11-04 Akim Demaille <akim@epita.fr>
5913
5914 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
5915 clashes.
5916 * src/scan-gram.l: Use [\'] instead of ['] to pacify
5917 font-lock-mode.
5918 Use complain_at.
5919 Use quote, not quote_n since LOCATION_PRINT no longer uses the
5920 slot 0.
5921
613a0dc5
PE
59222002-11-03 Paul Eggert <eggert@twinsun.com>
5923
5924 * src/reader.c (get_merge_function, grammar_current_rule_check):
5925 Use consistent diagnostics for reporting type name clashes.
5926 Quote the types with <>, for consistency with Yacc.
5927 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
5928
2a8d363a
AD
59292002-11-03 Akim Demaille <akim@epita.fr>
5930
5931 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
5932 New.
5933 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
5934 (b4_parse_param): Remove.
5935 Use b4_identification.
5936 Propagate b4_pure_args where needed to pass them to yyerror.
5937 * data/glr.m4 (b4_parse_param): Remove.
5938 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
5939 (b4_lpure_formals): New.
5940 Use b4_identification.
5941 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
5942 b4_user_formals and b4_user_args.
5943 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
5944 (yyreportAmbiguity): When using a pure parser, also need
5945 the location, and the parse-params.
5946 Adjust callers.
5947 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
5948 When using a pure parser, also need the parse-params.
5949 Adjust callers.
5950 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
5951 (%pure-parser + %parse-param) LALR and GLR parsers.
5952 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
5953 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
5954 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
5955 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
5956 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
5957 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
5958 * doc/bison.texinfo: Untabify the whole file.
5959 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
5960 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
5961 (Error Reporting): Adjust to these new directives.
5962 Document %error-verbose, deprecate YYERROR_VERBOSE.
5963
9e32add8
AD
59642002-11-03 Akim Demaille <akim@epita.fr>
5965
5966 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
5967 AT_CHECK_CALC_GLR invocations to use % directives, instead of
5968 command line options.
5969 * tests/cxx-type.at: Formatting changes.
5970
b02d90a5
PE
59712002-11-03 Paul Eggert <eggert@twinsun.com>
5972
5973 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
5974 to count columns correctly, and to check for invalid inputs.
9e32add8 5975
b02d90a5
PE
5976 Use mbsnwidth to count columns correctly. Account for tabs, too.
5977 Include mbswidth.h.
5978 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
5979 (extend_location): New function.
5980 (YY_LINES): Remove.
5981
5982 Handle CRLF in C code rather than in Lex code.
5983 (YY_INPUT): New macro.
5984 (no_cr_read): New function.
5985
5986 Scan UCNs, even though we don't fully handle them yet.
5987 (convert_ucn_to_byte): New function.
5988
5989 Handle backslash-newline correctly in C code.
5990 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
5991 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
5992 all uses changed.
5993 (tag, splice): New EREs. Do not allow NUL or newline in tags.
5994 Use {splice} wherever C allows backslash-newline.
5995 YY_STEP after space, newline, vertical-tab.
5996 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 5997
b02d90a5
PE
5998 (letter, id): Don't assume ASCII; e.g., spell out a-z.
5999
6000 ({int}, handle_action_dollar, handle_action_at): Check for integer
6001 overflow.
9e32add8 6002
b02d90a5
PE
6003 (YY_STEP): Omit trailing semicolon, so that it's more like C.
6004
6005 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
6006 as well as \000. Check for UCHAR_MAX, not 255.
6007 Allow \x with an arbitrary positive number of digits, as in C.
6008 Check for overflow here.
6009 Allow \? and UCNs, for compatibility with C.
6010
6011 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
6012 with quote slot used by complain_at.
6013
6014 * tests/input.at: Add tests for backslash-newline, m4 quotes
6015 in symbols, long literals, and funny escapes in strings.
6016
6017 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
6018 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
6019 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
6020 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
6021 * m4/mbswidth.m4: New file, from GNU coreutils.
6022
6023 * doc/bison.texinfo (Grammar Outline): Document // comments.
6024 (Symbols): Document that trigraphs have no special meaning in Bison,
6025 nor is backslash-newline allowed.
6026 (Actions): Document that trigraphs have no special meaning.
6027
6028 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
6029 no longer used.
6030
60312002-11-02 Paul Eggert <eggert@twinsun.com>
6032
6033 * src/reader.c: Don't include quote.h; not needed.
6034 (get_merge_function): Reword warning to be consistent with
6035 type clash diagnostic in grammar_current_rule_check.
6036
6037 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
6038 bug in trigraph handling.
6039
6040 * src/output.c (prepare_symbols): When printing token names,
6041 escape "[" as "@<:@" and likewise for "]".
6042
6043 * src/system.h (errno): Remove declaration, as we are now
6044 assuming C89 or better, and C89 guarantees errno.
6045
762b212b
PE
60462002-10-30 Paul Eggert <eggert@twinsun.com>
6047
6048 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
6049 Check for close failures.
6050 * src/files.h (xfclose): Return void, not int, since it always
6051 returned zero.
6052 * src/files.c (xfclose): Likewise. Report I/O error if ferror
6053 indicates one.
6054 * src/output.c (output_skeleton): Use xfclose rather than fclose
6055 and ferror. xfclose now checks ferror.
6056
6057 * data/glr.c (YYLEFTMOST_STATE): Remove.
6058 (yyreportTree): Use a stack-based leftmost state. This avoids
6059 our continuing battles with bogus warnings about initializers.
6060
56100c60
AD
60612002-10-30 Akim Demaille <akim@epita.fr>
6062
6063 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
6064 #if.
6065
51b4a04c
PH
60662002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6067
6068 * tests/glr-regr1.at: New test for reported regressions.
6069 * tests/testsuite.at: Add glr-regr1.at test.
6070 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 6071
bf1ebda2
PE
60722002-10-24 Paul Eggert <eggert@twinsun.com>
6073
5c16c6b1
PE
6074 Version 1.75a.
6075
bf1ebda2
PE
6076 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
6077 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
6078 we use malloc. Don't assume 'A' through 'Z' are contiguous.
6079 Don't assume strdup exists; POSIX says its an XSI extension.
6080 Check for buffer overflow on input.
6081
b526ee61
AD
60822002-10-24 Akim Demaille <akim@epita.fr>
6083
6084 * src/output.c (output_skeleton): Don't disable M4sugar comments
6085 too soon: it results in comments being expanded.
6086 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
6087 first output.
6088
f1886bb2
AD
60892002-10-24 Akim Demaille <akim@epita.fr>
6090
6091 * data/yacc.c (m4_int_type): New.
6092 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
6093 char' as only yacc.c wants K&R portability.
6094 * data/glr.c (yysigned_char): Remove.
6095 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
6096 Reported by Quoc Peyrot.
6097
c5576256
PE
60982002-10-23 Paul Eggert <eggert@twinsun.com>
6099
6100 * src/main.c (main): With --trace=time, report times even if a
6101 non-fatal error occurs. Formerly, the times were reported in some
6102 such cases but not in others.
6103 * src/reader.c (reader): Just return if a complaint has been issued,
6104 instead of exiting, so that 'main' can report times.
6105
27b0ffea
AD
61062002-10-22 Akim Demaille <akim@epita.fr>
6107
6108 * src/system.h: Include sys/types.
6109 Reported by Bert Deknuydt.
6110
223a7883
PE
61112002-10-23 Paul Eggert <eggert@twinsun.com>
6112
6113 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
6114 Suggested by Art Haas.
6115
61162002-10-22 Paul Eggert <eggert@twinsun.com>
6117
6118 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
6119 decl; not needed any more.
6120 * src/main.c (main): Use return to exit, undoing yesterday's change.
6121 The last OS that we could find where this wouldn't work is
6122 SunOS 3.5, and that's too old to worry about now.
6123
6124 * data/glr.c (struct yyltype): Define members even when not
6125 doing locations. This is more consistent with yacc.c, and it
6126 works around the following bug reports:
161a71f3
PE
6127 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
6128 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 6129
223a7883
PE
6130 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
6131 @acronym consistently. Standardize on "Yacc" instead of "YACC",
6132 "Algol" instead of "ALGOL". Give a bit more history about BNF.
6133
8b76775a
AD
61342002-10-22 Akim Demaille <akim@epita.fr>
6135
6136 * data/README: New.
6137
6db10d14
PE
61382002-10-21 Paul Eggert <eggert@twinsun.com>
6139
6140 Be consistent about 'bool'; the old code used an enum in one
6141 module and an int in another, and this violates the C standard.
6142 * m4/stdbool.m4: New file, from coreutils 4.5.3.
6143 * configure.ac (AC_HEADER_STDBOOL): Add.
6144 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
6145 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
6146 * src/symtab.c (hash_compare_symbol_t): Likewise.
6147 * src/system.h (bool, false, true): Use a definition consistent
6148 with ../lib/hash.c. All uses changed.
6149
6150 * src/complain.c (warning_issued): Renamed from warn_message_count,
6151 so that we needn't worry about integer overflow (!).
6152 Now of type bool. All uses changed.
6153 (complaint_issued): Renamed from complain_message_count; likewise.
6154
6155 * src/main.c (main): Use exit to exit with failure.
27b0ffea 6156
6db10d14
PE
6157 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
6158 rather than 1 and 0.
6159 * src/main.c (main): Likewise.
6160 * src/getargs.c (getargs): Likewise.
6161 * src/reader.c (reader): Likewise.
6162
6163 * src/getarg.c (getargs): Remove duplicate code for
6164 "Try `bison --help'".
6165
6166 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
6167 What was that "2" for?
6168
6169 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
6170 * src/getargs.c (usage): Likewise.
6171
6172 * src/getargs.c (getargs): When there are too few operands, report
6173 the last one. When there are too many, report the first extra
6174 one. This is how diffutils does it.
6175
92a060fd
PE
61762002-10-20 Paul Eggert <eggert@twinsun.com>
6177
6178 Remove K&R vestiges.
6179 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
6180 * src/complain.c (VA_START): Remove. Assume prototypes.
6181 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
6182 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
6183 fatal): Assume prototypes.
6184 * src/complain.h: Assume prototypes.
6185 * src/system.h (PARAMS): Remove.
6186 Include <limits.h> unconditionally, since it's guaranteeed even
6187 for a freestanding C89 compiler.
6188 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
6189 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 6190
e7cb57c0
AD
61912002-10-20 Akim Demaille <akim@epita.fr>
6192
6193 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
6194 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
6195 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
6196 (yyresolveStates, yyresolveAction, yyresolveStack)
6197 (yyprocessOneStack): Use them.
6198 (yy_reduce_print): New.
6199 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
6200
0245f82d
AD
62012002-10-20 Akim Demaille <akim@epita.fr>
6202
6203 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
6204 arguments and output `void'.
6205 (b4_c_function): Rename as...
6206 (b4_c_function_def): this.
6207 (b4_c_function_decl, b4_c_ansi_function_def)
6208 (b4_c_ansi_function_decl): New.
6209 Change the interpretation of the arguments: before `int, foo', now
6210 `int foo, foo'.
6211 * data/yacc.c (yyparse): Prototype and define thanks to these.
6212 Adjust b4_c_function_def uses.
6213 * data/glr.c (yyparse): Likewise, but ANSI only.
6214
39912f52
AD
62152002-10-20 Akim Demaille <akim@epita.fr>
6216
6217 * src/output.c (prepare): Move the definition of `tokens_number',
6218 `nterms_number', `undef_token_number', `user_token_number_max'
6219 to...
6220 (prepare_tokens): Here.
6221 (prepare_tokens): Rename as...
6222 (prepare_symbols): this.
6223 (prepare): Move the definition of `rules_number' to...
6224 (prepare_rules): here.
6225 (prepare): Move the definition of `last', `final_state_number',
6226 `states_number' to...
6227 (prepare_states): here.
6228 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
6229
20c1e2ad
AD
62302002-10-20 Akim Demaille <akim@epita.fr>
6231
6232 * src/tables.h, src/tables.c, src/output.c: Comment changes.
6233
21964f43
AD
62342002-10-20 Akim Demaille <akim@epita.fr>
6235
6236 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
6237 * data/c.m4: here.
6238
66d30cd4
AD
62392002-10-20 Akim Demaille <akim@epita.fr>
6240
6241 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
6242 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
6243 `pair'.
6244 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
6245 `name' to...
6246 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
6247 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
6248 These.
6249
95f2c9fe
PE
62502002-10-19 Paul Eggert <eggert@twinsun.com>
6251
6252 Do not create a temporary file, as that involves security and
6253 cleanup headaches. Instead, use a pair of pipes.
6254 Derived from a suggestion by Florian Krohm.
6255 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
6256 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
6257 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
6258 (BISON_PREREQ_SUBPIPE): Add.
6259 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
6260 Add subpipe.h, subpipe.c.
6261 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
6262 * po/POTFILES.in: Add lib/subpipe.c.
6263 * src/output.c: Include "subpipe.h".
6264 (m4_invoke): Remove decl.
6265 (scan_skel): New decl.
6266 (output_skeleton): Use pipe rather than temporary file for m4 input.
6267 Check that m4sugar.m4 is readable, to avoid deadlock.
6268 Check for pipe I/O error.
6269 * src/scan-skel.l (readpipe): Remove decl.
6270 (scan_skel): New function, to be used in place of m4_invoke.
6271 Read from stream rather than file.
66d30cd4 6272
95f2c9fe
PE
6273 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
6274 float, as this generates a warning on Solaris 8 + GCC 3.2 with
6275 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
6276 this generates a more-accurate value anyway.
6277
6278 * lib/timevar.c (timervar_accumulate): Rename locals to
6279 avoid confusion with similarly-named more-global.
6280 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
6281
6282 * src/output.c (prepare): Use xstrdup to convert char const *
6283 to char *, to avoid GCC warning.
6284
c19988b7
AD
62852002-10-19 Akim Demaille <akim@epita.fr>
6286
6287 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
6288 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
6289 Use them to have `calc.y' ready for %pure-parser.
6290 * data/yacc.c (YYLEX): Pass a yylex return type to
6291 b4_c_function_call.
6292
ae7453f2
AD
62932002-10-19 Akim Demaille <akim@epita.fr>
6294
6295 Prototype support of %lex-param and %parse-param.
6296
6297 * src/parse-gram.y: Add the definition of the %lex-param and
6298 %parse-param tokens, plus their rules.
6299 Drop the `_' version of %glr-parser.
6300 Add the "," token.
6301 * src/scan-gram.l (INITIAL): Scan them.
6302 * src/muscle_tab.c: Comment changes.
6303 (muscle_insert, muscle_find): Rename `pair' as `probe'.
6304 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
6305 (muscle_entry_s): The `value' member is no longer const.
6306 Adjust all dependencies.
6307 * src/muscle_tab.c (muscle_init): Adjust: use
6308 MUSCLE_INSERT_STRING.
6309 Initialize the obstack earlier.
6310 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
6311 (muscle_pair_list_grow): New.
6312 * data/c.m4 (b4_c_function_call, b4_c_args): New.
6313 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
6314 * tests/calc.at: Use %locations, not --locations.
6315 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
6316
0e575721
AD
63172002-10-19 Akim Demaille <akim@epita.fr>
6318
6319 * src/getargs.c (usage): Take status as argument and exit
6320 accordingly.
6321 Report the traditional `Try ... --help' message when status != 0.
6322 (usage, version): Don't take a FILE * as arg, it is pointless.
6323 (getargs): When there is an incorrect number of arguments, make it
6324 an error, and report it GNUlically thanks to `usage ()'.
6325
724ce7f5
PE
63262002-10-18 Paul Eggert <eggert@twinsun.com>
6327
3a781eb2
PE
6328 * data/glr.c (yyreportParseError): Don't assume that sprintf
6329 yields the length of the printed string, as this is not true
6330 on SunOS 4.1.4. Reported by Peter Klein.
6331
724ce7f5
PE
6332 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
6333 * tests/conflicts.at (%nonassoc and eof): Likewise.
6334 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
6335
473d0a75
AD
63362002-10-17 Akim Demaille <akim@epita.fr>
6337
6338 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
6339 * src/getargs.c (trace_types, trace_args): Adjust.
6340 * src/reader.c (grammar_current_rule_prec_set)
6341 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
6342 Standardize error messages.
6343 And s/@prec/%prec/!
6344 (reader): Use trace_flag to enable scanner/parser debugging,
6345 instead of an adhoc scheme.
6346 * src/scan-gram.l: Remove trailing debugging code.
6347
e76d2469
PE
63482002-10-16 Paul Eggert <eggert@twinsun.com>
6349
93e2236a
PE
6350 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
6351 MUSCLE_TAB_H.
6352
e76d2469
PE
6353 * NEWS: Officially drop support for building Bison with K&R C,
6354 since it didn't work anyway and it's not worth worrying about.
6355 * Makefile.maint (wget_files): Remove ansi2knr.c.
6356 (ansi2knr.c-url_prefix): Remove.
6357 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
6358 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
6359 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
6360
5bd1c419
PE
63612002-10-15 Paul Eggert <eggert@twinsun.com>
6362
6363 Stop using the "enum_" trick for K&R-style function definitions;
6364 it confused me, and I was the author! Instead, assume that people
6365 who want to use K&R C compilers (when using these modules in GCC,
6366 perhaps?) will run ansi2knr.
6367
6368 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
6369 All uses of "enum_" changed to "enum ".
6370 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
6371 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 6372
5bd1c419
PE
6373 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
6374 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
6375 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
6376 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
6377 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
6378 abitset_not, abitset_ones, abitset_or, abitset_or_and,
6379 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
6380 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
6381 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
6382 Use function prototypes; this removes the need for declaring
6383 static functions simply to provide their prototypes.
6384 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
6385 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
6386 bitset_count_, bitset_create, bitset_dump, bitset_first,
6387 bitset_free, bitset_init, bitset_last, bitset_next,
6388 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
6389 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
6390 bitset_print, bitset_release_memory, bitset_toggle_,
6391 bitset_type_choose, bitset_type_get, bitset_type_name_get,
6392 debug_bitset): Likewise.
6393 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
6394 * lib/bitset_stats.c (bitset_log_histogram_print,
6395 bitset_percent_histogram_print, bitset_stats_and,
6396 bitset_stats_and_cmp, bitset_stats_and_or,
6397 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
6398 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
6399 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
6400 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
6401 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
6402 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
6403 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
6404 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
6405 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
6406 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
6407 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
6408 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
6409 bitset_stats_zero): Likewise.
6410 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
6411 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
6412 bitsetv_dump, debug_bitsetv): Likewise.
6413 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
6414 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
6415 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
6416 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
6417 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
6418 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
6419 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
6420 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
6421 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
6422 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
6423 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
6424 Likewise.
6425 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
6426 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
6427 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
6428 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
6429 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
6430 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
6431 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
6432 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
6433 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
6434 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
6435 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 6436
ae26e1f0
AD
64372002-10-14 Akim Demaille <akim@epita.fr>
6438
6439 Version 1.75.
6440
d43baf71
AD
64412002-10-14 Akim Demaille <akim@epita.fr>
6442
6443 * tests/Makefile.am (maintainer-check-posix): New.
6444
7ebc83e3
AD
64452002-10-14 Akim Demaille <akim@epita.fr>
6446
6447 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
6448 member.
6449
05846dae
AD
64502002-10-14 Akim Demaille <akim@epita.fr>
6451
6452 * src/tables.c (table_ninf_remap): base -> tab.
6453 Reported by Matt Rosing.
6454
1318e37d
PE
64552002-10-14 Paul Eggert <eggert@twinsun.com>
6456
447fbb17
PE
6457 * tests/action.at, tests/calc.at, tests/conflicts.at,
6458 tests/cxx-type.at, tests/headers.at, tests/input.at,
6459 tests/regression.at, tests/synclines.at, tests/torture.at:
6460 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
6461 so that the tests still work even if POSIXLY_CORRECT is set.
6462 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 6463
1318e37d
PE
6464 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
6465 for portability to K&R hosts. Fix typo: signed char is guaranteed
6466 only to 127, not to 128.
6467 * data/glr.c (yysigned_char): New type.
6468 * data/yacc.c (yysigned_char): Likewise.
6469 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
6470
cc0f0794
PE
64712002-10-13 Paul Eggert <eggert@twinsun.com>
6472
5038f418
PE
6473 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
6474 true due to limited range of data type" warning from GCC.
6475
cc0f0794
PE
6476 * data/c.m4 (b4_token_defines): Protect against double-inclusion
6477 by wrapping enum yytokentype's definition inside #ifndef
6478 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
6479
6fed0802
AD
64802002-10-13 Akim Demaille <akim@epita.fr>
6481
6482 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
6483 Un yy- yyrhs to avoid the name clash with the global YYRHS.
6484
32f0598d
AD
64852002-10-13 Akim Demaille <akim@epita.fr>
6486
6487 * Makefile.maint: Update from Autoconf 2.54.
6488 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
6489
7ea9a33f
AD
64902002-10-13 Akim Demaille <akim@epita.fr>
6491
6492 * src/print.c (print_state): Separate the list of solved conflicts
6493 from the other items.
6494 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
6495
ea99527d
AD
64962002-10-13 Akim Demaille <akim@epita.fr>
6497
6498 Let nondeterministic skeletons be usable with deterministic
6499 tables.
6500
6501 With the patch, GAWK compiled by GCC without -O2 passes its test
6502 suite using a GLR parser driven by LALR tables. It fails with -O2
6503 because `struct stat' gives two different answers on my machine:
6504 88 (definition of an auto var) and later 96 (memset on this var).
6505 Hence the stack is badly corrumpted. The headers inclusion is to
6506 blame: if I move the awk.h inclusion before GLR's system header
6507 inclusion, the two struct stat have the same size.
6508
6509 * src/tables.c (pack_table): Always create conflict_table.
6510 (token_actions): Always create conflict_list.
6511 * data/glr.c (YYFLAG): Remove, unused.
6512
f377f69f
AD
65132002-10-13 Akim Demaille <akim@epita.fr>
6514
6515 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
6516 (O0FLAGS): New.
6517 (VALGRIND, GXX): New.
6518 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
6519 * tests/bison.in: Run $PREBISON a pre-command.
6520 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
6521 (maintainer-check-g++): New.
6522 * Makefile.am (maintainer-check): New.
6523
2a1fe6ed
AD
65242002-10-13 Akim Demaille <akim@epita.fr>
6525
6526 * data/glr.c: Formatting changes.
6527 Tweak some trace messages to match yacc.c's.
6528
f50adbbd
AD
65292002-10-13 Akim Demaille <akim@epita.fr>
6530
6531 GLR parsers sometimes raise parse errors instead of performing the
6532 default reduction.
6533 Reported by Charles-Henry de Boysson.
6534
6535 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 6536 check the length of the traces when %glr.
f50adbbd
AD
6537 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
6538 GLR's traces.
6539 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
6540 Test GLR parsers.
6541 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
6542 (yyltype): Remove the yy prefix from the member names.
6543 (yytable): Complete its comment.
6544 (yygetLRActions): Map error action number from YYTABLE from
6545 YYTABLE_NINF to 0.
6546 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
6547 (which was a bug: it should have been YYTABEL_NINF, and yet it was
6548 not satisfying as we could compare an YYACTION computed from
6549 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
6550 only value for error actions.
6551 (yyreportParseError): In verbose parse error messages, don't issue
6552 `error' in the list of expected tokens.
6553 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
6554 next action to perform to match glr.c's decoding.
6555 (yytable): Complete its comment.
6556
bcbad5b9
PE
65572002-10-13 Paul Eggert <eggert@twinsun.com>
6558
6559 Fix problem reported by Henrik Grubbstroem in
161a71f3 6560 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
6561 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
6562 because the Bison parser reads the second action before reducing
6563 the first one.
6564 * src/scan-gram.l (rule_length): New static var.
6565 Use it to keep track of the rule length in the scanner, since
6566 we can't expect the parser to be in lock-step sync with the scanner.
6567 (handle_action_dollar, handle_action_at): Use this var.
6568 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 6569
14904b89
PE
65702002-10-12 Paul Eggert <eggert@twinsun.com>
6571
1fe611e5
PE
6572 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
6573 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
6574 Include <sys/time.h> when checking for clock_t and struct tms.
6575 Use same include order as source.
6576 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 6577 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 6578
1fe611e5
PE
6579 * lib/timevar.c: Update copyright date and clarify comments.
6580 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 6581
1fe611e5
PE
6582 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
6583 GCC version as of today, then merge Bison's changes.
6584 Change "GCC" to "Bison" in copyright notice. timevar.def's
6585 author is Akim, so change that too.
6586
98194095
PE
6587 * src/reader.c (grammar_current_rule_check):
6588 Don't worry about the default action if $$ is untyped.
6589 Prevents bogus warnings reported by Jim Gifford in
161a71f3 6590 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 6591
14904b89
PE
6592 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
6593 * data/glr.c, data/lalr1.cc, data/yacc.c:
6594 Output token definitions before the first part of user declarations.
6595 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 6596 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 6597
ff6dca18
PE
65982002-10-11 Paul Eggert <eggert@twinsun.com>
6599
6600 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
6601 (yyparse): here. This undoes some of the 2002-07-25 change.
6602 Compatibility problem reported by Ralf S. Engelschall with
6603 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
6604
eb714592
AD
66052002-10-11 Akim Demaille <akim@epita.fr>
6606
6607 * tests/regression.at Characters Escapes): New.
6608 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
6609 characters.
6610 Reported by Jan Nieuwenhuizen.
6611
b7195100
AD
66122002-10-11 Akim Demaille <akim@epita.fr>
6613
6614 * po/id.po: New.
6615
f28a0f2d
PE
66162002-10-10 Paul Eggert <eggert@twinsun.com>
6617
6618 Portability fixes for bitsets; this also avoids several GCC
6619 warnings.
6620
6621 * lib/abitset.c: Include <stddef.h>, for offsetof.
6622 * lib/lbitset.c: Likewise.
6623
6624 * lib/abitset.c (abitset_bytes): Return a size that is aligned
6625 properly for vectors of objects. Do not assume that adding a
6626 header size to a multiple of a word size yields a value that is
6627 properly aligned for the whole union.
6628 * lib/bitsetv.c (bitsetv_alloc): Likewise.
6629
6630 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
6631 unique names for structures.
6632 * lib/ebitset.c (ebitset_bytes): Likewise.
6633 * lib/lbitset.c (lbitset_bytes): Likewise.
6634
6635 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
6636 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
6637 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
6638 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
6639 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
6640 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
6641 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
6642 to improve the type-checking that GCC can do.
6643 * lib/bitset.c (bitset_op4_cmp): Likewise.
6644 * lib/bitset_stats.c (bitset_stats_count,
6645 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
6646 bitset_stats_copy, bitset_stats_disjoint_p,
6647 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
6648 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
6649 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
6650 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
6651 bitset_stats_and_or_cmp, bitset_stats_andn_or,
6652 bitset_stats_andn_or_cmp, bitset_stats_or_and,
6653 bitset_stats_or_and_cmp): Likewise.
6654 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
6655 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
6656 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
6657 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
6658
6659 * lib/abitset.h: Include bitset.h, not bbitset.h.
6660 * lib/ebitset.h: Likewise.
6661 * lib/lbitset.h: Likewise.
6662
6663 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
6664 All instances of parameters of type enum bitset_opts are now of
6665 type enum_bitset_opts, to conform to the C Standard, and similarly
6666 for enum_bitset_type.
6667 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
6668 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
6669
6670 Do not use "struct bitset_struct" to mean different things in
6671 different modules. Not only is this confusing, it violates
6672 the C Standard, which requires that structure types in different
6673 modules must be compatible if one is to be passed to the other.
6674 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
6675 All instances of "struct bitset_struct *" replaced with "bitset".
6676 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
6677 (union bitset_union, struct abitset_struct, struct ebitset_struct,
6678 struct lbitset_struct, struct bitset_stats_struct): New types.
6679 All uses of struct bitset_struct changed to union bitset_union,
6680 etc.
ba0fe3c7 6681 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
6682 struct bitset_struct): Remove.
6683 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
6684 struct bitset_struct): Remove.
6685 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
6686 bitset_struct): Remove.
6687 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
6688 Likewise.
6689
6690 Do not call a function of type T using a call that assumes the
6691 function is of a different type U. Standard C requires that a
6692 function must be called with a type that is compatible with its
6693 definition.
6694 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
6695 New decls.
6696 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
6697 New functions.
6698 * lib/ebitset.c (PFV): Remove.
6699 * lib/lbitset.c (PFV): Likewise.
6700 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
6701 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
6702 decls.
6703 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
6704 (ebitset_vtable): Use them.
6705 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
6706 lbitset_xor): New functions.
6707 (lbitset_vtable): Use them.
6708
6709 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
6710 Declare.
6711
6712 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
6713 GCC warning.
6714 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
6715 Use offsetof, for simplicity.
6716
6fbe4984
PE
67172002-10-06 Paul Eggert <eggert@twinsun.com>
6718
6719 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
6720 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 6721 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
6722 which was inadvertently undone by the 2002-09-30 patch.
6723 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
6724 the same width as int.
6725
420f93c8
PE
67262002-10-04 Paul Eggert <eggert@twinsun.com>
6727
6728 Version 1.50.
6729
6730 * configure.ac (AC_INIT), NEWS: Increment version number.
6731
6732 * doc/bison.texinfo: Minor spelling, grammar, and white space
6733 fixes.
6734 (Symbols): Mention that any negative value returned from yylex
6735 signifies end-of-input. Warn about negative chars. Mention
6736 the portable Standard C character set.
6737
6738 The GNU coding standard says CFLAGS and YFLAGS are reserved
6739 for the installer to set.
6740 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
6741 * src/Makefile.am (AM_CFLAGS): Likewise.
6742 (AM_YFLAGS): Renamed from YFLAGS.
6743
6744 Fix some MAX and MIN problems.
6745 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
6746 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
6747 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
6748 * src/reader.c (reader): Use it.
6749
6750 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
6751 POSIX 1003.1-2001 has removed fgrep.
6752
67532002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
6754
6755 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
6756 interpreted as signed.
6757 * lib/ebitset.c (ebitset_list): Fix bug.
6758
ff68026d
PE
67592002-10-01 Paul Eggert <eggert@twinsun.com>
6760
6761 More fixes for 64-bit hosts and large bitsets.
6762
6763 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
6764 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
6765 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
6766 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
6767 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
6768 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
6769 bitset_count_): Likewise.
6770 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
6771 bitset_first, bitset_last): Likewise.
6772 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
6773 bitset_stats_list_reverse, bitset_stats_size,
6774 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
6775 Likewise.
6776 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6777 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
6778 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
6779 bitsetv_reflexive_transitive_closure): Likewise.
6780 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
6781 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
6782 Likewise.
6783 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
6784 Likewise.
420f93c8 6785
ff68026d
PE
6786 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
6787 Use size_t, not unsigned int, to count bytes.
6788 * lib/abitset.h (abitset_bytes): Likewise.
6789 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
6790 Likewise.
6791 * lib/bitset.h (bitset_bytes): Likewise.
6792 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
6793 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
6794 * lib/bitsetv.c (bitsetv_alloc): Likewise.
6795 * lib/ebitset.c (ebitset_bytes): Likewise.
6796 * lib/ebitset.h (ebitset_bytes): Likewise.
6797 * lib/lbitset.c (lbitset_bytes): Likewise.
6798 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 6799
ff68026d
PE
6800 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
6801 abitset_subset_p, abitset_disjoint_p, abitset_and,
6802 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
6803 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
6804 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
6805 abitset_or_and, abitset_or_and_cmp):
6806 Use bitset_windex instead of unsigned int.
6807 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
6808 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
6809 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
6810 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
6811 Likewise.
6812 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 6813
ff68026d
PE
6814 * lib/bitset.c (bitset_print):
6815 Use proper printf formats for widths of integer types.
6816 * lib/bitset_stats.c (bitset_percent_histogram_print,
6817 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
6818 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
6819 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
6820 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 6821
ff68026d
PE
6822 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
6823 BITSET_SIZE_MAX): New macros.
6824 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
6825 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
6826 to BITSET_WINDEX_MAX.
6827
6828 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
6829 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
6830 since we now return the bitset_bindex type (not int).
6831
6832 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
6833 when computing sizes.
6834 * lib/ebitset.c (ebitset_elts_grow): Likewise.
6835
6836 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
6837 and avoid cast to unsigned.
6838
6aa452a6
AD
68392002-09-30 Akim Demaille <akim@epita.fr>
6840
6841 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
6842 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
6843 Updates from Michael Hayes.
6844
927f7817
AD
68452002-09-30 Art Haas <ahaas@neosoft.com>
6846
6847 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
6848 invocations.
6849 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
6850 defined.
6851
9738f41e
AD
68522002-09-27 Akim Demaille <akim@epita.fr>
6853
6854 Version 1.49c.
6855
a5c75d7f
AD
68562002-09-27 Akim Demaille <akim@epita.fr>
6857
6858 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
6859 (Because of AC_LIBSOURCE).
6860
8280e179
AD
68612002-09-27 Akim Demaille <akim@epita.fr>
6862
6863 Playing with Autoscan.
6864
6865 * configure.ac: Remove the old LIBOBJ tweaks.
6866 (AC_REPLACE_FUNCS): Add strrchr and strtol.
6867 * lib/strrchr.c: New.
6868 * lib/strtol.c: New, from the Coreutils 4.5.1.
6869
ae64af35
AD
68702002-09-27 Akim Demaille <akim@epita.fr>
6871
6872 Playing with Autoscan.
6873
6874 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
6875 * lib/Makefile.am (libbison_a_SOURCES): No longer include
6876 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
6877 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
6878 Coreutils 4.5.1.
6879
d1a1114f
AD
68802002-09-24 Akim Demaille <akim@epita.fr>
6881
6882 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
6883 (Frequently Asked Questions, Parser Stack Overflow): New.
6884
b906441c
AD
68852002-09-13 Akim Demaille <akim@epita.fr>
6886
6887 Playing with autoscan.
6888
6889 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
6890 * src/files.c (skeleton_find): Remove, unused.
6891 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
6892 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
6893
bd701811
AD
68942002-09-13 Akim Demaille <akim@epita.fr>
6895
6896 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
6897 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
6898
e0a13e7b
AD
68992002-09-13 Akim Demaille <akim@epita.fr>
6900
6901 * configure.ac: Require 2.54.
6902 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
6903 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
6904 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
6905 Remove, provided by Autoconf macros.
6906
c97011bf
AD
69072002-09-12 Akim Demaille <akim@epita.fr>
6908
6909 * m4/prereq.m4: Update, from Coreutils 4.5.1.
6910
d862b1be
AD
69112002-09-12 Akim Demaille <akim@epita.fr>
6912
6913 * m4/prereq.m4: Update, from Fileutils 4.1.5.
6914 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
6915 Reported by Martin Mokrejs.
6916
3d38c03a
AD
69172002-09-10 Akim Demaille <akim@epita.fr>
6918
6919 * src/parse-gram.y: Associate a human readable string to each
6920 token type.
6921 * tests/regression.at (Invalid inputs): Adjust.
6922
b6347355
AD
69232002-09-10 Gary V. Vaughan <gary@gnu.org>
6924
6925 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
6926 with an Autoconf-2.5x style configure.ac.
6927
09ba4ab2
PE
69282002-09-06 Paul Eggert <eggert@twinsun.com>
6929
6930 * doc/bison.texinfo (Conditions): Make explicit that the GPL
6931 exception applies only to yacc.c. This is a modification of a
6932 patch originally suggested by Akim Demaille.
6933
21846f69
AD
69342002-09-06 Akim Demaille <akim@epita.fr>
6935
09ba4ab2
PE
6936 * data/c.m4 (b4_copyright): Move the GPL exception comment from
6937 here to...
6938 * data/yacc.c: here.
6939
21846f69
AD
6940 * data/lalr1.cc (struct yyltype): Don't define it, since we use
6941 LocationType.
6942 (b4_ltype): Default to yy::Location from location.hh.
6943
c0ad8bf3
AD
69442002-09-04 Jim Meyering <jim@meyering.net>
6945
6946 * data/yacc.c: Guard the declaration of yytoknum also with
6947 `#ifdef YYPRINT', so it is declared only when used.
6948
3a93251e
AD
69492002-09-04 Akim Demaille <akim@epita.fr>
6950
6951 * configure.in: Rename as...
6952 * configure.ac: this.
6953 Bump to 1.49c.
6954
427c0dda
AD
69552002-09-04 Akim Demaille <akim@epita.fr>
6956
6957 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
6958 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
6959 translate maintainer only messages.
6960
6a254321
PE
69612002-08-12 Paul Eggert <eggert@twinsun.com>
6962
645e30d1
PE
6963 Version 1.49b.
6964
6a254321
PE
6965 * Makefile.am (SUBDIRS): Remove intl.
6966 (DISTCLEANFILES): Remove.
6967 * NEWS: Mention that GNU M4 is now required. Clarify what is
6968 meant by "larger grammars". Mention the pt_BR translation.
6969 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
6970 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
6971 Bump version from 0.11.2 to 0.11.5.
6972 (BISON_PREREQ_STAGE): Remove.
6973 (AM_GNU_GETTEXT): Use external gettext.
6974 (AC_OUTPUT): Remove intl/Makefile.
6975
6976 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
6977
6978 * data/glr.c: Include string.h, for strlen.
6979 (yyreportParseError): Use size_t for yysize.
6980 (yy_yypstack): No longer nested inside yypstates, as nested
6981 functions are not portable. Do not assume size_t is the
6982 same width as int.
6983 (yypstates): Do not assume that ptrdiff_t is the same width
6984 as int, and similarly for yyposn and YYINDEX.
6985
6986 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
6987
6988 * lib/Makefile.am (INCLUDES): Do not include from the intl
6989 directory, which has been removed.
6990 * src/Makefile.am (INCLUDES): Likewise.
6991
6992 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
6993 (bitsets_sources, additional_bitsets_sources, timevars_sources):
6994 New vars.
6995
6996 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
6997 * tests/Makefile.am (EXTRA_DIST): Likewise.
6998
6999 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
7000 Do not assume that bitset_windex is the same width as unsigned.
7001
7002 * lib/abitset.c (abitset_unused_clear): Do not assume that
7003 bitset_word is the same width as int.
7004 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
7005 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
7006 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
7007 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
7008 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
7009
7010 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
7011 portability to one's complement hosts!).
7012 * lib/ebitset.c (ebitset_op1): Likewise.
7013 * lib/lbitset.c (lbitset_op1): Likewise.
7014
7015 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
7016 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
7017 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
7018 Sync with fileutils.
7019 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
7020 lib/gettext.h: Sync with diffutils.
7021
7022 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
7023 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
7024
7025 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
7026 PROTOTYPES to check for prototypes, and "defined __STDC__" to
7027 check for void *.
7028
7029 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
7030 size_t; the old version tried to do this but casted improperly.
7031 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
7032 (bitset_test): Now returns int, not unsigned long.
7033
7034 * lib/bitset_stats.c: Include "gettext.h".
7035 (_): New macro.
7036 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
7037 name locals "index", as it generates unnecessary warnings on some
7038 hosts that have an "index" function.
7039
7040 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
7041 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
7042 they need translation.
7043 * src/LR0.c (state_list_append, new_itemsets, get_state,
7044 append_states, generate_states): Likewise.
7045 * src/assoc.c (assoc_to_string): Likewise.
7046 * src/closure.c (print_closure, set_firsts, closure): Likewise.
7047 * src/gram.c (grammar_dump): Likewise.
7048 * src/injections.c (injections_compute): Likewise.
7049 * src/lalr.c (lookaheads_print): Likewise.
7050 * src/relation.c (relation_transpose): Likewise.
7051 * src/scan-gram.l: Likewise.
7052 * src/tables.c (table_grow, pack_vector): Likewise.
7053
7054 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
7055 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
7056 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
7057 * m4/mbstate_t.m4: Sync with fileutils.
7058 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
7059
7060 * po/LINGUAS: Add pt_BR.
7061 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
7062 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
7063 lib/timevar.c.
7064 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
7065 manual recommends.
7066 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
7067
7068 * src/complain.c (strerror_r): Remove decl; not needed.
7069 (strerror): Use same pattern as ../lib/error.c.
7070
7071 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
7072
7073 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
7074
7075 * src/main.c (main): Cast result of bindtextdomain and textdomain
7076 to void, to avoid a GCC warning when --disable-nls is in effect.
7077
7078 * src/scan-gram.l: Use strings rather than escapes when possible,
7079 to minimize the number of warnings from xgettext.
7080 (handle_action_dollar, handle_action_at): Don't use isdigit,
7081 as it mishandles negative chars and it may not work as expected
7082 outside the C locale.
7083
7084 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
7085 this is a GCC extension and is not portable to other compilers.
7086
7087 * src/system.h (alloca): Use same pattern as ../lib/error.c.
7088 Do not include <ctype.h>; no longer needed.
7089 Do not include <malloc.h>; no longer needed (and generates
7090 warnings on OpenBSD 3.0).
7091
7092 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
7093 it's not portable.
7094
7095 * tests/regression.at: Do not use 'cc -c input.c -o input';
7096 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
7097
7098 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
7099 exit status as failure, not just exit status 1. Sun C exits
7100 with status 2 sometimes.
7101
7102 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
7103 Use it for the two large tests.
7104
c8f002c7
AD
71052002-08-02 Akim Demaille <akim@epita.fr>
7106
7107 * src/conflicts.c (conflicts_output): Don't output rules never
7108 reduced here, since anyway that computation doesn't work.
7109 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
7110 (rule_useless_p, rule_never_reduced_p): New.
7111 (grammar_rules_partial_print): Use a filter instead of a range.
7112 Display the title only if needed.
7113 (grammar_rules_print): Adjust.
7114 (grammar_rules_never_reduced_report): New.
7115 * src/tables.c (action_row): Move the computation of rules never
7116 reduced to...
7117 (token_actions): here.
7118 * src/main.c (main): Make the parser before making the report, so
7119 that rules never reduced are computed.
7120 Call grammar_rules_never_reduced_report.
7121 * src/print.c (print_results): Report rules never reduced.
7122 * tests/conflicts.at, tests/reduce.at: Adjust.
7123
cd08e51e
AD
71242002-08-01 Akim Demaille <akim@epita.fr>
7125
7126 Instead of attaching lookaheads and duplicating the rules being
7127 reduced by a state, attach the lookaheads to the reductions.
7128
7129 * src/state.h (state_t): Remove the `lookaheads',
7130 `lookaheads_rule' member.
7131 (reductions_t): Add a `lookaheads' member.
7132 Use a regular array for the `rules'.
7133 * src/state.c (reductions_new): Initialize the lookaheads member
7134 to 0.
7135 (state_rule_lookaheads_print): Adjust.
7136 * src/state.h, src/state.c (state_reductions_find): New.
7137 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
7138 (count_rr_conflicts): Adjust.
7139 * src/lalr.c (LArule): Remove.
7140 (add_lookback_edge): Adjust.
7141 (state_lookaheads_count): New.
7142 (states_lookaheads_initialize): Merge into...
7143 (initialize_LA): this.
7144 (lalr_free): Adjust.
7145 * src/main.c (main): Don't free nullable and derives too early: it
7146 is used by --verbose.
7147 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
7148
bb0027a9
AD
71492002-08-01 Akim Demaille <akim@epita.fr>
7150
7151 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
7152 `rule_number_t**'.
7153 (set_derives, free_derives): Rename as...
7154 (derives_compute, derives_free): this.
7155 Adjust all dependencies.
7156 * src/nullable.c (set_nullable, free_nullable): Rename as...
7157 (nullable_compute, nullable_free): these.
7158 (rule_list_t): Store rule_t *, not rule_number_t.
7159 * src/state.c (state_rule_lookaheads_print): Directly compare rule
7160 pointers, instead of their numbers.
7161 * src/main.c (main): Call nullable_free, and derives_free earlier,
7162 as they were lo longer used.
7163
3325ddc4
AD
71642002-08-01 Akim Demaille <akim@epita.fr>
7165
7166 * lib/timevar.c (get_time): Include children time.
7167 * src/lalr.h (LA, LArule): Don't export them: used with the
7168 state_t.
7169 * src/lalr.c (LA, LArule): Static.
7170 * src/lalr.h, src/lalr.c (lalr_free): New.
7171 * src/main.c (main): Call it.
7172 * src/tables.c (pack_vector): Check whether loc is >= to the
7173 table_size, not >.
7174 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
7175 (tables_generate): do it, since that's also it which allocates
7176 them.
7177 Don't free LA and LArule, main does.
7178
c6f1a33c
AD
71792002-07-31 Akim Demaille <akim@epita.fr>
7180
7181 Separate parser tables computation and output.
7182
7183 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
7184 (conflict_list, conflict_list_cnt, table, check, table_ninf)
7185 (yydefgoto, yydefact, high): Move to...
7186 * src/tables.h, src/tables.c: here.
7187 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
7188 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
7189 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
7190 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
7191 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
7192 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
7193 (action_row, save_row, token_actions, save_column, default_goto)
7194 (goto_actions, sort_actions, matching_state, pack_vector)
7195 (table_ninf_remap, pack_table, prepare_actions): Move to...
7196 * src/tables.c: here.
7197 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
7198 * src/output.c (token_actions, output_base, output_conflicts)
7199 (output_check): Merge into...
7200 (prepare_actions): this.
7201 (actions_output): Rename as...
7202 (user_actions_output): this.
7203 * src/main.c (main): Call tables_generate and tables_free.
7204
1509d42f
AD
72052002-07-31 Akim Demaille <akim@epita.fr>
7206
7207 Steal GCC's --time-report support.
7208
7209 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
7210 stolen/adjusted from GCC.
7211 * m4/stage.m4: Remove time related checks.
7212 * m4/timevar.m4: New.
7213 * configure.in: Adjust.
7214 * src/system.h: Adjust to using timevar.h.
7215 * src/getargs.h, src/getargs.c: Support trace_time for
7216 --trace=time.
7217 * src/main.c (stage): Remove.
7218 (main): Replace `stage' invocations with timevar calls.
7219 * src/output.c: Insert pertinent timevar calls.
7220
273a74fa
AD
72212002-07-31 Akim Demaille <akim@epita.fr>
7222
7223 Let --trace have arguments.
7224
7225 * src/getargs.h (enum trace_e): New.
7226 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
7227 (long_options, short_options): --trace/-T takes an optional
7228 argument.
7229 Change all the uses of trace_flag to reflect the new flags.
7230 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
7231
7232 Strengthen `stage' portability.
7233
7234 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
7235 * configure.in: Use it.
7236 Don't check for malloc.h and sys/times.h.
7237 * src/system.h: Include them when appropriate.
7238 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
7239 times and struct tms are available.
7240
217598da
AD
72412002-07-30 Akim Demaille <akim@epita.fr>
7242
7243 In verbose parse error message, don't report `error' as an
7244 expected token.
7245 * tests/actions.at (Printers and Destructors): Adjust.
7246 * tests/calc.at (Calculator $1): Adjust.
7247 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
7248 error message, do not report the parser accepts the error token in
7249 that state.
7250
52489d44
AD
72512002-07-30 Akim Demaille <akim@epita.fr>
7252
7253 Normalize conflict related messages.
7254
7255 * src/complain.h, src/complain.c (warn, complain): New.
7256 * src/conflicts.c (conflicts_print): Use them.
7257 (conflict_report_yacc): New, extracted from...
7258 (conflicts_print): here.
7259 * tests/conflicts.at, tests/existing.at: Adjust.
7260
e8832397
AD
72612002-07-30 Akim Demaille <akim@epita.fr>
7262
7263 Report rules which are never reduced by the parser: those hidden
7264 by conflicts.
7265
7266 * src/LR0.c (save_reductions): Don't make the final state too
7267 different: save its reduction (accept) instead of having a state
7268 without any action (no shift or goto, no reduce).
7269 Note: the final state is now a ``regular'' state, i.e., the
7270 parsers now contain `reduce 0' as default reduction.
7271 Nevertheless, since they decide to `accept' when yystate =
7272 final_state, they still will not reduce rule 0.
7273 * src/print.c (print_actions, print_reduction): Adjust.
7274 * src/output.c (action_row): Track reduced rules.
7275 (token_actions): Report rules never reduced.
7276 * tests/conflicts.at, tests/regression.at: Adjust.
7277
caf23d24
AD
72782002-07-30 Akim Demaille <akim@epita.fr>
7279
7280 `stage' was accidently included in a previous patch.
7281 Initiate its autoconfiscation.
7282
7283 * configure.in: Look for malloc.h and sys/times.h.
7284 * src/main.c (stage): Adjust.
7285 Report only when trace_flag.
7286
640748ee
AD
72872002-07-29 Akim Demaille <akim@epita.fr>
7288
7289 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
7290 state_number_t.
7291 (errs_t): symbol_t*, not symbol_number_t.
7292 (reductions_t): rule_t*, not rule_number_t.
7293 (FOR_EACH_SHIFT): New.
7294 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
7295 * src/print.c, src/print_graph.c: Adjust.
7296
88bce5a2
AD
72972002-07-29 Akim Demaille <akim@epita.fr>
7298
7299 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
7300
7301 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
7302 (endtoken, accept): these.
7303 * src/reader.c (reader): Set endtoken's default tag to "$end".
7304 Set undeftoken's tag to "$undefined" instead of "$undefined.".
7305 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
7306 Adjust.
7307
1bfb97db
AD
73082002-07-29 Akim Demaille <akim@epita.fr>
7309
7310 * src/reduce.c (reduce_grammar): When the language is empty,
7311 complain about the start symbol, not the axiom.
7312 Use its location.
7313 * tests/reduce.at (Empty Language): New.
7314
fc5734fe
AD
73152002-07-26 Akim Demaille <akim@epita.fr>
7316
7317 * src/reader.h, src/reader.c (gram_error): ... can't get
7318 yycontrol without making too strong assumptions on the parser
7319 itself.
7320 * src/output.c (prepare_tokens): Use the real 0th value of
7321 token_translations instead of `0'.
7322 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
7323 visible here.
7324 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
7325 for the time being: %locations ought to provide it to yyerror.
7326
3650b4b8
AD
73272002-07-25 Akim Demaille <akim@epita.fr>
7328
7329 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
7330 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
7331 * tests/regression.at (Web2c Actions): Adjust.
7332
4b3d3a8e
AD
73332002-07-25 Akim Demaille <akim@epita.fr>
7334
7335 Stop storing rules from 1 to nrules + 1.
7336
7337 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
7338 * src/nullable.c, src/output.c, src/print.c, src/reader.c
7339 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
7340 Iterate from 0 to nrules.
7341 Use rule_number_as_item_number and item_number_as_rule_number.
7342 Adjust to `derive' now containing possibly 0.
7343 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
7344 Handle the `- 1' part in rule numbers from/to item numbers.
7345 * src/conflicts.c (log_resolution): Fix the message which reversed
7346 shift and reduce.
7347 * src/output.c (action_row): Initialize default_rule to -1.
7348 (token_actions): Adjust.
7349 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
7350 expected output.
7351 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
7352
4a2a22f4
AD
73532002-07-25 Akim Demaille <akim@epita.fr>
7354
7355 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
7356 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
7357 (b4_c_knr_arg_decl): New.
7358 * data/yacc.c: Use it to define yysymprint, yydestruct, and
7359 yyreport_parse_error.
7360
b8df3223
AD
73612002-07-25 Akim Demaille <akim@epita.fr>
7362
7363 * data/yacc.c (yyreport_parse_error): New, extracted from...
7364 (yyparse): here.
7365 (yydestruct, yysymprint): Move above yyparse.
7366 Be K&R compliant.
7367
a762e609
AD
73682002-07-25 Akim Demaille <akim@epita.fr>
7369
7370 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
7371 replace...
7372 (b4_sint_type, b4_uint_type): these.
7373 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
7374 * tests/regression.at (Web2c Actions): Adjust.
7375
12b0043a
AD
73762002-07-25 Akim Demaille <akim@epita.fr>
7377
7378 * src/gram.h (TIEM_NUMBER_MAX): New.
7379 (item_number_of_rule_number, rule_number_of_item_number): Rename
7380 as...
7381 (rule_number_as_item_number, item_number_as_rule_number): these.
7382 Adjust dependencies.
7383 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
7384 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
7385 (symbol_number_to_vector_number): New.
7386 (order): Of vector_number_t* type.
7387 (base_t, BASE_MAX, BASE_MIN): New.
7388 (froms, tos, width, pos, check): Of base_t type.
7389 (action_number_t, ACTION_MIN, ACTION_MAX): New.
7390 (actrow): Of action_number_t type.
7391 (conflrow): Of unsigned int type.
7392 (table_ninf, base_ninf): New.
7393 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
7394 (muscle_insert_int_table, muscle_insert_base_table)
7395 (muscle_insert_rule_number_table): New.
7396 (prepare_tokens): Output `toknum' as int_table.
7397 (action_row): Returns a rule_number_t.
7398 Use ACTION_MIN, not SHRT_MIN.
7399 (token_actions): yydefact is rule_number_t*.
7400 (table_ninf_remap): New.
7401 (pack_table): Use it for `base' and `table'.
7402 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
7403 replaced with...
7404 (YYPACT_NINF, YYTABLE_NINF): these.
7405 (yypact, yytable): Compute their types instead of hard-coded
7406 `short'.
7407 * tests/regression.at (Web2c Actions): Adjust.
7408
5dde258a
AD
74092002-07-19 Akim Demaille <akim@epita.fr>
7410
7411 * src/scan-gram.l (id): Can start with an underscore.
7412
a945ec39
AD
74132002-07-16 Akim Demaille <akim@epita.fr>
7414
7415 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
7416 Adjust all former `associativity' dependencies.
7417 * src/symtab.c (symbol_new): Default associativity is `undef', not
7418 `right'.
7419 (symbol_check_alias_consistence): Adjust.
7420
fae437e8
AD
74212002-07-09 Akim Demaille <akim@epita.fr>
7422
7423 * doc/bison.texinfo: Properly set the ``header'' part.
7424 Use @dircategory ``GNU programming tools'' as per Texinfo's
7425 documentation.
7426 Use @copying.
7427
1a715ef2
AD
74282002-07-09 Akim Demaille <akim@epita.fr>
7429
7430 * lib/quotearg.h: Protect against multiple inclusions.
7431 * src/location.h (location_t): Add a `file' member.
7432 (LOCATION_RESET, LOCATION_PRINT): Adjust.
7433 * src/complain.c (warn_at, complain_at, fatal_at): Drop
7434 `error_one_per_line' support.
7435
a5d50994
AD
74362002-07-09 Akim Demaille <akim@epita.fr>
7437
7438 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
7439 * src/reader.c (lineno): Remove.
7440 Adjust all dependencies.
7441 (get_merge_function): Take a location and use complain_at.
7442 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
7443 * tests/regression.at (Invalid inputs, Mixing %token styles):
7444 Adjust.
7445
b275314e
AD
74462002-07-09 Akim Demaille <akim@epita.fr>
7447
7448 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
7449 recovery rule, and forbid extensions when --yacc.
7450 (gram_error): Use complain_at.
7451 * src/reader.c (reader): Exit if there were parse errors.
7452
865b9df1
AD
74532002-07-09 Akim Demaille <akim@epita.fr>
7454
7455 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
7456 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
7457 Reported by R Blake <blakers@mac.com>.
7458
c76e14da
AD
74592002-07-09 Akim Demaille <akim@epita.fr>
7460
7461 * data/yacc.c: Output the copyright notive in the header.
7462
7db2ed2d
AD
74632002-07-03 Akim Demaille <akim@epita.fr>
7464
7465 * src/output.c (froms, tos): Are state_number_t.
7466 (save_column): sp, sp1, and sp2 are state_number_t.
7467 (prepare): Rename `final' as `final_state_number', `nnts' as
7468 `nterms_number', `nrules' as `rules_number', `nstates' as
7469 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
7470 unused.
7471 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
7472 * data/lalr1.cc (nsym_): Remove, unused.
7473
e68e0410
AD
74742002-07-03 Akim Demaille <akim@epita.fr>
7475
7476 * src/lalr.h, src/lalr.c (goto_number_t): New.
7477 * src/lalr.c (goto_list_t): New.
7478 Propagate them.
7479 * src/nullable.c (rule_list_t): New.
7480 Propagate.
7481 * src/types.h: Remove.
7482
e1a4f3a4
AD
74832002-07-03 Akim Demaille <akim@epita.fr>
7484
7485 * src/closure.c (print_fderives): Use rule_rhs_print.
7486 * src/derives.c (print_derives): Use rule_rhs_print.
7487 (rule_list_t): New, replaces `shorts'.
7488 (set_derives): Add comments.
7489 * tests/sets.at (Nullable, Firsts): Adjust.
7490
536545f3
AD
74912002-07-03 Akim Demaille <akim@epita.fr>
7492
7493 * src/output.c (prepare_actions): Free `tally' and `width'.
7494 (prepare_actions): Allocate and free `order'.
7495 * src/symtab.c (symbols_free): Free `symbols'.
7496 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
7497 * src/output.c (m4_invoke): Move to...
7498 * src/scan-skel.l: here.
7499 (<<EOF>>): Close yyout, and free its name.
7500
8b752b00
AD
75012002-07-03 Akim Demaille <akim@epita.fr>
7502
7503 Fix some memory leaks, and fix a bug: state 0 was examined twice.
7504
7505 * src/LR0.c (new_state): Merge into...
7506 (state_list_append): this.
7507 (new_states): Merge into...
7508 (generate_states): here.
7509 (set_states): Don't ensure a proper `errs' state member here, do it...
7510 * src/conflicts.c (conflicts_solve): here.
7511 * src/state.h, src/state.c: Comment changes.
7512 (state_t): Rename member `shifts' as `transitions'.
7513 Adjust all dependencies.
7514 (errs_new): For consistency, also take the values as argument.
7515 (errs_dup): Remove.
7516 (state_errs_set): New.
7517 (state_reductions_set, state_transitions_set): Assert that no
7518 previous value was assigned.
7519 (state_free): New.
7520 (states_free): Use it.
7521 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
7522 temporary storage: use `errs' and `nerrs' as elsewhere.
7523 (set_conflicts): Allocate and free this `errs'.
7524
613f5e1a
AD
75252002-07-02 Akim Demaille <akim@epita.fr>
7526
7527 * lib/libiberty.h: New.
7528 * lib: Update the bitset implementation from upstream.
7529 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
7530 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
7531 * src/main.c: Adjust bitset stats calls.
7532
26e0cadc
PE
75332002-07-01 Paul Eggert <eggert@twinsun.com>
7534
7535 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
7536 char, so that negative chars don't collide with $.
7537
1154cced
AD
75382002-06-30 Akim Demaille <akim@epita.fr>
7539
7540 Have the GLR tests be `warning' checked, and fix the warnings.
7541
7542 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
7543 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
7544 (yyremoveDeletes): `yyi' and `yyj' are size_t.
7545 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
7546 (yyaddDeferredAction): static.
7547 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
7548 (yyreportParseError): yyprefix is const.
7549 yytokenp is used only when verbose.
7550 (yy__GNUC__): Replace with __GNUC__.
7551 (yypdumpstack): yyi is size_t.
7552 (yypreference): Un-yy local variables and arguments, to avoid
7553 clashes with `yyr1'. Anyway, we are not in the user name space.
7554 (yytname_size): be an int, as is compared with ints.
7555 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
7556 Use them.
7557 * tests/cxx-gram.at: Use quotation to protect $1.
7558 Use AT_COMPILE to enable warnings hunts.
7559 Prototype yylex and yyerror.
7560 `Use' argc.
7561 Include `string.h', not `strings.h'.
7562 Produce and prototype stmtMerge only when used.
7563 yylex takes a location.
7564
97650f4e
AD
75652002-06-30 Akim Demaille <akim@epita.fr>
7566
7567 We spend a lot of time in quotearg, in particular when --verbose.
7568
7569 * src/symtab.c (symbol_get): Store a quoted version of the key.
7570 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
7571 Adjust all callers.
7572
d2576365
AD
75732002-06-30 Akim Demaille <akim@epita.fr>
7574
7575 * src/state.h (reductions_t): Rename member `nreds' as num.
7576 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
7577 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
7578
ccaf65bc
AD
75792002-06-30 Akim Demaille <akim@epita.fr>
7580
7581 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
7582 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
7583 (shifts_to): Rename as...
7584 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
7585 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
7586 (TRANSITION_IS_DISABLED, transitions_to): these.
7587
87675353
AD
75882002-06-30 Akim Demaille <akim@epita.fr>
7589
7590 * src/print.c (print_shifts, print_gotos): Merge into...
7591 (print_transitions): this.
7592 (print_transitions, print_errs, print_reductions): Align the
7593 lookaheads columns.
7594 (print_core, print_transitions, print_errs, print_state,
7595 print_grammar): Output empty lines separator before, not after.
7596 (state_default_rule_compute): Rename as...
7597 (state_default_rule): this.
7598 * tests/conflicts.at (Defaulted Conflicted Reduction),
7599 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
7600 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
7601
ce4ccb4b
AD
76022002-06-30 Akim Demaille <akim@epita.fr>
7603
7604 Display items as we display rules.
7605
7606 * src/gram.h, src/gram.c (rule_lhs_print): New.
7607 * src/gram.c (grammar_rules_partial_print): Use it.
7608 * src/print.c (print_core): Likewise.
7609 * tests/conflicts.at (Defaulted Conflicted Reduction),
7610 (Unresolved SR Conflicts): Adjust.
7611 (Unresolved SR Conflicts): Adjust and rename as...
7612 (Resolved SR Conflicts): this, as was meant.
7613 * tests/regression.at (Web2c Report): Adjust.
7614
bc933ef1
AD
76152002-06-30 Akim Demaille <akim@epita.fr>
7616
7617 * src/print.c (state_default_rule_compute): New, extracted from...
7618 (print_reductions): here.
7619 Pessimize, but clarify the code.
7620 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
7621
53d4308d
AD
76222002-06-30 Akim Demaille <akim@epita.fr>
7623
7624 * src/output.c (action_row): Let default_rule be always a rule
7625 number.
7626
574fb2d5
AD
76272002-06-30 Akim Demaille <akim@epita.fr>
7628
7629 * src/closure.c (print_firsts, print_fderives, closure):
7630 Use BITSET_EXECUTE.
7631 * src/lalr.c (lookaheads_print): Likewise.
7632 * src/state.c (state_rule_lookaheads_print): Likewise.
7633 * src/print_graph.c (print_core): Likewise.
7634 * src/print.c (print_reductions): Likewise.
7635 * src/output.c (action_row): Likewise.
7636 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
7637
05811fd7
AD
76382002-06-30 Akim Demaille <akim@epita.fr>
7639
7640 * src/print_graph.c: Use report_flag.
7641
0e4d5753
AD
76422002-06-30 Akim Demaille <akim@epita.fr>
7643
7644 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
7645 to...
7646 * src/relation.h, src/relation.c (traverse, relation_digraph)
7647 (relation_print, relation_transpose): New.
7648
24c7d800
AD
76492002-06-30 Akim Demaille <akim@epita.fr>
7650
7651 * src/state.h, src/state.c (shifts_to): New.
7652 * src/lalr.c (build_relations): Use it.
7653
9222837b
AD
76542002-06-30 Akim Demaille <akim@epita.fr>
7655
7656 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
7657 (item_number_of_rule_number, rule_number_of_item_number): New.
7658 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
7659 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7660 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
7661 Propagate their use.
7662 Much remains to be done, in particular wrt `shorts' from types.h.
7663
260008e5
AD
76642002-06-30 Akim Demaille <akim@epita.fr>
7665
7666 * src/symtab.c (symbol_new): Initialize the `printer' member.
7667
8a731ca8
AD
76682002-06-30 Akim Demaille <akim@epita.fr>
7669
7670 * src/LR0.c (save_reductions): Remove, replaced by...
7671 * src/state.h, src/state.c (state_reductions_set): New.
7672 (reductions, errs): Rename as...
7673 (reductions_t, errs_t): these.
7674 Adjust all dependencies.
7675
32e1e0a4
AD
76762002-06-30 Akim Demaille <akim@epita.fr>
7677
7678 * src/LR0.c (state_list_t, state_list_append): New.
7679 (first_state, last_state): Now symbol_list_t.
7680 (this_state): Remove.
7681 (new_itemsets, append_states, save_reductions): Take a state_t as
7682 argument.
7683 (set_states, generate_states): Adjust.
7684 (save_shifts): Remove, replaced by...
7685 * src/state.h, src/state.c (state_shifts_set): New.
7686 (shifts): Rename as...
7687 (shifts_t): this.
7688 Adjust all dependencies.
7689 * src/state.h (state_t): Remove the `next' member.
7690
e5fb6710
AD
76912002-06-30 Akim Demaille <akim@epita.fr>
7692
7693 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
7694 escaped in slot 0.
7695
c7ca99d4
AD
76962002-06-30 Akim Demaille <akim@epita.fr>
7697
7698 Use hash.h for the state hash table.
7699
7700 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
7701 (allocate_storage): Use state_hash_new.
7702 (free_storage): Use state_hash_free.
7703 (new_state, get_state): Adjust.
7704 * src/lalr.h, src/lalr.c (states): Move to...
7705 * src/states.h (state_t): Remove the `link' member, no longer
7706 used.
7707 * src/states.h, src/states.c: here.
7708 (state_hash_new, state_hash_free, state_hash_lookup)
7709 (state_hash_insert, states_free): New.
7710 * src/states.c (state_table, state_compare, state_hash): New.
7711 * src/output.c (output_actions): Do not free states now, since we
7712 still need to know the final_state number in `prepare', called
7713 afterwards. Do it...
7714 * src/main.c (main): here: call states_free after `output'.
7715
df0e7316
AD
77162002-06-30 Akim Demaille <akim@epita.fr>
7717
7718 * src/state.h, src/state.c (state_new): New, extracted from...
7719 * src/LR0.c (new_state): here.
7720 * src/state.h (STATE_ALLOC): Move to...
7721 * src/state.c: here.
7722 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
7723 * src/state.h, src/state.c: here.
7724
39f41916
AD
77252002-06-30 Akim Demaille <akim@epita.fr>
7726
7727 * src/reader.c (gensym): Rename as...
7728 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
7729 (getsym): Rename as...
7730 (symbol_get): this.
7731
d57650a5
AD
77322002-06-30 Akim Demaille <akim@epita.fr>
7733
7734 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
7735 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
7736 * src/output.c, src/print.c, src/print_graph.c: Propagate.
7737 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
7738
5a08f1ce
AD
77392002-06-30 Akim Demaille <akim@epita.fr>
7740
7741 Make the test suite pass with warnings checked.
7742
7743 * tests/actions.at (Printers and Destructors): Improve.
7744 Avoid unsigned vs. signed issues.
7745 * tests/calc.at: Don't exercise the scanner here, do it...
7746 * tests/input.at (Torturing the Scanner): here.
7747
720623af
PH
77482002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7749
88e7e941 7750 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
7751 reorganize first lines parallel to yacc.c.
7752
fb8135fa
AD
77532002-06-28 Akim Demaille <akim@epita.fr>
7754
7755 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
7756 (b4_token_enum, b4_token_defines): New, factored from...
7757 * data/lalr1.cc, data/yacc.c, glr.c: here.
7758
41442480
AD
77592002-06-28 Akim Demaille <akim@epita.fr>
7760
7761 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
7762 unused variables.
7763 * src/output.c (merger_output): static.
7764
e0e5bf84
AD
77652002-06-28 Akim Demaille <akim@epita.fr>
7766
ba0fe3c7 7767 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
7768 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
7769 pacify GCC.
7770 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 7771
676385e2
PH
77722002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7773
7774 Accumulated changelog for new GLR parsing features.
7775
6a254321 7776 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
7777 conflicts_total_count.
7778 * src/conflicts.h: Ditto.
7779 * src/output.c (token_actions): Use the new name.
7780 (output_conflicts): Change conflp => conflict_list_heads, and
7781 confl => conflict_list for better readability.
7782 * data/glr.c: Use the new names.
7783 * NEWS: Add self to GLR announcement.
e0e5bf84 7784
676385e2
PH
7785 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
7786
7787 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
7788 Akim Demaille.
7789
7790 * data/bison.glr: Change name to glr.c
7791 * data/glr.c: Renamed from bison.glr.
7792 * data/Makefile.am: Add glr.c
e0e5bf84
AD
7793
7794 * src/getargs.c:
7795
676385e2 7796 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 7797 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 7798
676385e2
PH
7799 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7800
7801 * data/bison.glr: Be sure to restore the
7802 current #line when returning to the skeleton contents after having
7803 exposed the input file's #line.
7804
7805 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7806
7807 * data/bison.glr: Bring up to date with changes to bison.simple.
7808
7809 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7810
7811 * data/bison.glr: Correct definitions that use b4_prefix.
7812 Various reformatting.
7813 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
7814 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
7815 yytokenp argument; now part of stack.
7816 (yychar): Define to behave as documented.
7817 (yyclearin): Ditto.
e0e5bf84 7818
676385e2
PH
7819 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7820
7821 * src/reader.h: Add declaration for free_merger_functions.
7822
7823 * src/reader.c (merge_functions): New variable.
7824 (get_merge_function): New function.
7825 (free_merger_functions): New function.
7826 (readgram): Check for %prec that is not followed by a symbol.
7827 Handle %dprec and %merge declarations.
7828 (packgram): Initialize dprec and merger fields in rules array.
7829
7830 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
7831 conflict_list_cnt, conflict_list_free): New variables.
7832 (table_grow): Also grow conflict_table.
e0e5bf84 7833 (prepare_rules): Output dprec and merger tables.
676385e2 7834 (conflict_row): New function.
e0e5bf84 7835 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
7836 default reduction in conflicted states for GLR parser so that there
7837 are spaces for the conflict lists.
7838 (save_row): Also save conflict information.
7839 (token_actions): Allocate conflict list.
7840 (merger_output): New function.
7841 (pack_vector): Pack conflict table, too.
7842 (output_conflicts): New function to output yyconflp and yyconfl.
7843 (output_check): Allocate conflict_tos.
7844 (output_actions): Output conflict tables, also.
7845 (output_skeleton): Output b4_mergers definition.
7846 (prepare): Output b4_max_rhs_length definition.
7847 Use 'bison.glr' as default skeleton for GLR parsers.
7848
7849 * src/gram.c (glr_parser): New flag.
7850 (grammar_free): Call free_merger_functions.
7851
7852 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
7853 all pairs of conflicting reductions, rather than just all tokens
7854 causing conflicts. Needed to size conflict tables.
e0e5bf84 7855 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
7856 interface.
7857 (conflicts_print): Ditto.
7858 (count_total_conflicts): New function.
7859
7860 * src/reader.h (merger_list): New type.
7861 (merge_functions): New variable.
7862
7863 * src/lex.h (tok_dprec, tok_merge): New token types.
7864
7865 * src/gram.h (rule_s): Add dprec and merger fields.
7866 (glr_parser): New flag.
7867
7868 * src/conflicts.h (count_total_conflicts): New function.
7869
7870 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
7871
7872 * doc/bison.texinfo (Generalized LR Parsing): New section.
7873 (GLR Parsers): New section.
7874 (Language and Grammar): Mention GLR parsing.
7875 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
7876 Correct typo ("tge" -> "the").
7877
7878 * data/bison.glr: New skeleton for GLR parsing.
7879
7880 * tests/cxx-gram.at: New tests for GLR parsing.
7881
7882 * tests/testsuite.at: Include cxx-gram.at.
7883
7884 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 7885
676385e2
PH
7886 * src/parse-gram.y:
7887
7888 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
7889
7890 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 7891
b5480d74 78922002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
7893
7894 * src/options.h, src/options.c: Remove.
7895 * src/getargs.c (short_options, long_options): New.
7896
60491a94
AD
78972002-06-27 Akim Demaille <akim@epita.fr>
7898
7899 * data/bison.simple, data/bison.c++: Rename as...
7900 * data/yacc.c, data/lalr1.cc: these.
7901 * doc/bison.texinfo (Environment Variables): Remove.
7902
9be0c25b
AD
79032002-06-25 Raja R Harinath <harinath@cs.umn.edu>
7904
7905 * src/getargs.c (report_argmatch): Initialize strtok().
7906
1ae72863
AD
79072002-06-20 Akim Demaille <akim@epita.fr>
7908
7909 * data/bison.simple (b4_symbol_actions): New, replaces...
7910 (b4_symbol_destructor, b4_symbol_printer): these.
7911 (yysymprint): Be sure to call YYPRINT only for tokens, and using
7912 user token numbers.
7913
87542d29
AD
79142002-06-20 Akim Demaille <akim@epita.fr>
7915
7916 * data/bison.simple (yydestructor): Rename as...
7917 (yydestruct): this.
7918
1a31ed21
AD
79192002-06-20 Akim Demaille <akim@epita.fr>
7920
7921 * src/symtab.h, src/symtab.c (symbol_type_set)
7922 (symbol_destructor_set, symbol_precedence_set): The location is
7923 the last argument.
7924 Adjust all callers.
7925
e776192e
AD
79262002-06-20 Akim Demaille <akim@epita.fr>
7927
7928 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
7929 internals.
7930 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
7931 Takes a location.
7932 * src/symtab.h, src/symtab.c (symbol_class_set)
7933 (symbol_user_token_number_set): Likewise.
7934 Adjust all callers.
7935 Promote complain_at.
7936 * tests/input.at (Type Clashes): Adjust.
7937
5c1180b3
AD
79382002-06-20 Akim Demaille <akim@epita.fr>
7939
7940 * data/bison.simple (YYLEX): Fix the declaration when
7941 %pure-parser.
7942
e3170060
AD
79432002-06-20 Akim Demaille <akim@epita.fr>
7944
7945 * data/bison.simple (yysymprint): Don't print the token number,
7946 just its name.
7947 * tests/actions.at (Destructors): Rename as...
7948 (Printers and Destructors): this.
7949 Also exercise %printer.
7950
253862fd
AD
79512002-06-20 Akim Demaille <akim@epita.fr>
7952
7953 * data/bison.simple (YYDSYMPRINT): New.
7954 Use it to remove many of the #if YYDEBUG/if (yydebug).
7955
366eea36
AD
79562002-06-20 Akim Demaille <akim@epita.fr>
7957
7958 * src/symtab.h, src/symtab.c (symbol_t): printer and
7959 printer_location are new members.
7960 (symbol_printer_set): New.
7961 * src/parse-gram.y (PERCENT_PRINTER): New token.
7962 Handle its associated rule.
7963 * src/scan-gram.l: Adjust.
7964 (handle_destructor_at, handle_destructor_dollar): Rename as...
7965 (handle_symbol_code_at, handle_symbol_code_dollar): these.
7966 * src/output.c (symbol_printers_output): New.
7967 (output_skeleton): Call it.
7968 * data/bison.simple (yysymprint): New. Cannot be named yyprint
7969 since there are already many grammar files with a user `yyprint'.
7970 Replace the calls to YYPRINT to calls to yysymprint.
7971 * tests/calc.at: Adjust.
7972 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
7973 taking advantage of parser very internal details (stack size!).
7974
4f25ebb0
AD
79752002-06-20 Akim Demaille <akim@epita.fr>
7976
7977 * src/scan-gram.l: Complete the scanner with the missing patterns
7978 to pacify Flex.
7979 Use `quote' and `symbol_tag_get' where appropriate.
7980
93b68a0e
AD
79812002-06-19 Akim Demaille <akim@epita.fr>
7982
7983 * tests/actions.at (Destructors): Augment to test locations.
7984 * data/bison.simple (yydestructor): Pass it the current location
7985 if locations are enabled.
7986 Prototype only when __STDC__ or C++.
7987 Change the argument names to move into the yy name space: there is
7988 user code here.
7989
58612f1d
AD
79902002-06-19 Akim Demaille <akim@epita.fr>
7991
74310291
AD
7992 * data/bison.simple (b4_pure_if): New.
7993 Use it instead of #ifdef YYPURE.
7994
79952002-06-19 Akim Demaille <akim@epita.fr>
7996
7997 * data/bison.simple (b4_location_if): New.
58612f1d
AD
7998 Use it instead of #ifdef YYLSP_NEEDED.
7999
f25bfb75
AD
80002002-06-19 Akim Demaille <akim@epita.fr>
8001
8002 Prepare @$ in %destructor, but currently don't bind it in the
8003 skeleton, as %location use is not cleaned up yet.
8004
8005 * src/scan-gram.l (handle_dollar, handle_destructor_at)
8006 (handle_action_at): New.
8007 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
8008 a braced_code_t and a location as additional arguments.
8009 (handle_destructor_dollar): Instead of requiring `b4_eval', just
8010 unquote one when outputting `b4_dollar_dollar'.
8011 Adjust callers.
8012 * data/bison.simple (b4_eval): Remove.
8013 (b4_symbol_destructor): Adjust.
8014 * tests/input.at (Invalid @n): Adjust.
8015
c732d2c6
AD
80162002-06-19 Zack Weinberg <zack@codesourcery.com>
8017
8018 * doc/bison.texinfo: Document ability to have multiple
8019 prologue sections.
8020
8c165d89
AD
80212002-06-18 Akim Demaille <akim@epita.fr>
8022
8023 * src/files.c (compute_base_names): When computing the output file
8024 names from the input file name, strip the directory part.
8025
ca98bf57
AD
80262002-06-18 Akim Demaille <akim@epita.fr>
8027
8028 * data/bison.simple.new: Comment changes.
8029 Reported by Andreas Schwab.
8030
0bfb02ff
AD
80312002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
8032
8033 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
8034 there are no `label `yyoverflowlab' defined but not used' warnings
8035 when yyoverflow is defined.
8036
24c0aad7
AD
80372002-06-18 Akim Demaille <akim@epita.fr>
8038
8039 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
8040 new member.
8041 (symbol_destructor_set): Adjust.
8042 * src/output.c (symbol_destructors_output): Output the destructor
8043 locations.
8044 Output the symbol name.
8045 * data/bison.simple (b4_symbol_destructor): Adjust.
8046
5719c109
AD
80472002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
8048 and Akim Demaille <akim@epita.fr>
8049
8050 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
8051 what's left on the stack when the error recovery hits EOF.
8052 * tests/actions.at (Destructors): Complete to exercise this case.
8053
9280d3ef
AD
80542002-06-17 Akim Demaille <akim@epita.fr>
8055
8056 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
8057 arguments is really empty, not only equal to `[]'.
8058 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
8059 member.
8060 (symbol_destructor_set): New.
8061 * src/output.c (symbol_destructors_output): New.
8062 * src/reader.h (brace_code_t, current_braced_code): New.
8063 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
8064 (handle_dollar): Rename as...
8065 (handle_action_dollar): this.
8066 (handle_destructor_dollar): New.
8067 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
8068 (grammar_declaration): Use it.
8069 * data/bison.simple (yystos): Is always defined.
8070 (yydestructor): New.
8071 * tests/actions.at (Destructors): New.
8072 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
8073
dafdc66f
AD
80742002-06-17 Akim Demaille <akim@epita.fr>
8075
8076 * src/symlist.h, src/symlist.c (symbol_list_length): New.
8077 * src/scan-gram.l (handle_dollar, handle_at): Compute the
8078 rule_length only when needed.
8079 * src/output.c (actions_output, token_definitions_output): Output
8080 the full M4 block.
8081 * src/symtab.c: Don't access directly to the symbol tag, use
8082 symbol_tag_get.
8083 * src/parse-gram.y: Use symbol_list_free.
8084
56c47203
AD
80852002-06-17 Akim Demaille <akim@epita.fr>
8086
8087 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
8088 (symbol_list_prepend, get_type_name): Move to...
8089 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
8090 (symbol_list_prepend, symbol_list_n_type_name_get): here.
8091 Adjust all callers.
8092 (symbol_list_free): New.
8093 * src/scan-gram.l (handle_dollar): Takes a location.
8094 * tests/input.at (Invalid $n): Adjust.
8095
1e0bab92
AD
80962002-06-17 Akim Demaille <akim@epita.fr>
8097
8098 * src/reader.h, src/reader.c (symbol_list_new): Export it.
8099 (symbol_list_prepend): New.
8100 * src/parse-gram.y (%union): `list' is a new member.
8101 (symbols.1): New, replaces...
8102 (terms_to_prec.1, nterms_to_type.1): these.
8103 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
8104 Take a location as additional argument.
8105 Adjust all callers.
8106
04e60654
AD
81072002-06-15 Akim Demaille <akim@epita.fr>
8108
8109 * src/parse-gram.y: Move %token in the declaration section so that
8110 we don't depend upon CVS Bison.
8111
10e5b8bd
AD
81122002-06-15 Akim Demaille <akim@epita.fr>
8113
8114 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
8115 * src/print.c (print_core): Use it.
8116
9801d40c
AD
81172002-06-15 Akim Demaille <akim@epita.fr>
8118
8119 * src/conflicts.c (log_resolution): Accept the rule involved in
8120 the sr conflicts instead of the lookahead number that points to
8121 that rule.
8122 (flush_reduce): Accept the current lookahead vector as argument,
8123 instead of the index in LA.
8124 (resolve_sr_conflict): Accept the current number of lookahead
8125 bitset to consider for the STATE, instead of the index in LA.
8126 (set_conflicts): Adjust.
8127 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
8128
c0263492
AD
81292002-06-15 Akim Demaille <akim@epita.fr>
8130
8131 * src/state.h (state_t): Replace the `lookaheadsp' member, a
8132 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
8133 Adjust all dependencies.
8134 * src/lalr.c (initialize_lookaheads): Split into...
8135 (states_lookaheads_count, states_lookaheads_initialize): these.
8136 (lalr): Adjust.
8137
9757c359
AD
81382002-06-15 Akim Demaille <akim@epita.fr>
8139
8140 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
8141 out of...
8142 (grammar_rules_print): here.
8143 * src/reduce.c (reduce_output): Use it.
8144 * tests/reduce.at (Useless Rules, Reduced Automaton)
8145 (Underivable Rules): Adjust.
8146
6b98e4b5
AD
81472002-06-15 Akim Demaille <akim@epita.fr>
8148
8149 Copy BYacc's nice way to report the grammar.
8150
8151 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
8152 New.
8153 Don't print the rules' location, it is confusing and useless.
8154 (rule_print): Use grammar_rhs_print.
8155 * src/print.c (print_grammar): Use grammar_rules_print.
8156
6b98e4b5
AD
81572002-06-15 Akim Demaille <akim@epita.fr>
8158
8159 Complete and rationalize `useless thing' warnings.
8160
8161 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
8162 (symbol_tag_print): New.
8163 Use them everywhere in place of accessing directly the tag member.
8164 * src/gram.h, src/gram.c (rule_print): New.
8165 Use it where a rule used to be printed `by hand'.
8166 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
8167 (reduce_grammar_tables): Report the useless rules.
8168 (reduce_print): Useless things are a warning, not an error.
8169 Report it as such.
8170 * tests/reduce.at (Useless Nonterminals, Useless Rules):
8171 (Reduced Automaton, Underivable Rules): Adjust.
8172 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
8173 * tests/conflicts.at (Unresolved SR Conflicts)
8174 (Solved SR Conflicts): Adjust.
8175
ee000ba4
AD
81762002-06-15 Akim Demaille <akim@epita.fr>
8177
8178 Let symbols have a location.
8179
8180 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
8181 (getsym): Adjust.
8182 Adjust all callers.
8183 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
8184 Use location_t, not int.
8185 * src/symtab.c (symbol_check_defined): Take advantage of the
8186 location.
8187 * tests/regression.at (Invalid inputs): Adjust.
8188
8efe435c
AD
81892002-06-15 Akim Demaille <akim@epita.fr>
8190
8191 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
8192 (input): Don't try to initialize yylloc here, do it in the
8193 scanner.
8194 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
8195 * src/gram.h (rule_t): Change line and action_line into location
8196 and action_location, of location_t type.
8197 Adjust all dependencies.
8198 * src/location.h, src/location.c (empty_location): New.
8199 * src/reader.h, src/reader.c (grammar_start_symbol_set)
8200 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
8201 (grammar_current_rule_symbol_append)
8202 (grammar_current_rule_action_append): Expect a location as argument.
8203 * src/reader.c (grammar_midrule_action): Adjust to attach an
8204 action's location as dummy symbol location.
8205 * src/symtab.h, src/symtab.c (startsymbol_location): New.
8206 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
8207 the line numbers.
8208
1921f1d7
AD
82092002-06-14 Akim Demaille <akim@epita.fr>
8210
8211 Grammar declarations may be found in the grammar section.
8212
8213 * src/parse-gram.y (rules_or_grammar_declaration): New.
8214 (declarations): Each declaration may end with a semicolon, not
8215 just...
8216 (grammar_declaration): `"%union"'.
8217 (grammar): Branch to rules_or_grammar_declaration.
8218
4515534c
AD
82192002-06-14 Akim Demaille <akim@epita.fr>
8220
8221 * src/main.c (main): Invoke scanner_free.
8222
f958596b
AD
82232002-06-14 Akim Demaille <akim@epita.fr>
8224
8225 * src/output.c (m4_invoke): Extracted from...
8226 (output_skeleton): here.
8227 Free tempfile.
8228
2c569025
AD
82292002-06-14 Akim Demaille <akim@epita.fr>
8230
8231 * src/parse-gram.y (directives, directive, gram)
8232 (grammar_directives, precedence_directives, precedence_directive):
8233 Rename as...
8234 (declarations, declaration, grammar, grammar_declaration)
8235 (precedence_declaration, precedence_declarator): these.
8236 (symbol_declaration): New.
8237
592e8d4d
AD
82382002-06-14 Akim Demaille <akim@epita.fr>
8239
8240 * src/files.c (action_obstack): Remove, unused.
8241 (output_obstack): Remove it, and all its dependencies, as it is no
8242 longer needed.
8243 * src/reader.c (epilogue_set): Build the epilogue in the
8244 muscle_obstack.
8245 * src/output.h, src/output.c (muscle_obstack): Move to...
8246 * src/muscle_tab.h, src/muscle_tab.h: here.
8247 (muscle_init): Initialize muscle_obstack.
8248 (muscle_free): New.
8249 * src/main.c (main): Call it.
8250
0c15323d
AD
82512002-06-14 Akim Demaille <akim@epita.fr>
8252
8253 * src/location.h: New, extracted from...
8254 * src/reader.h: here.
8255 * src/Makefile.am (noinst_HEADERS): Merge into
8256 (bison_SOURCES): this.
8257 Add location.h.
8258 * src/parse-gram.y: Use location_t instead of Bison's.
8259 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
8260 Use location_t instead of ints.
8261
e96c9728
AD
82622002-06-14 Akim Demaille <akim@epita.fr>
8263
8264 * data/bison.simple, data/bison.c++: Be sure to restore the
8265 current #line when returning to the skeleton contents after having
8266 exposed the input file's #line.
8267
75d1fe16
AD
82682002-06-12 Akim Demaille <akim@epita.fr>
8269
8270 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
8271 eager.
8272 * tests/actions.at (Exotic Dollars): New.
8273
6c35d22c
AD
82742002-06-12 Akim Demaille <akim@epita.fr>
8275
8276 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
8277 ['"/] too eagerly.
8278 * tests/input.at (Torturing the Scanner): New.
8279
1d6412ad
AD
82802002-06-11 Akim Demaille <akim@epita.fr>
8281
8282 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
8283 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
8284 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
8285 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
8286 * src/reader.c (reader): Use it.
8287
4cdb01db
AD
82882002-06-11 Akim Demaille <akim@epita.fr>
8289
8290 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
8291 Adjust all callers.
8292 (scanner_last_string_free): New.
8293
44995b2e
AD
82942002-06-11 Akim Demaille <akim@epita.fr>
8295
8296 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
8297 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
8298 (last_string, YY_OBS_FREE): New.
8299 Use them when returning an ID.
8300
e9955c83
AD
83012002-06-11 Akim Demaille <akim@epita.fr>
8302
8303 Have Bison grammars parsed by a Bison grammar.
8304
8305 * src/reader.c, src/reader.h (prologue_augment): New.
8306 * src/reader.c (copy_definition): Remove.
8307
8308 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
8309 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
8310 (grammar_current_rule_prec_set, grammar_current_rule_check)
8311 (grammar_current_rule_symbol_append)
8312 (grammar_current_rule_action_append): Export.
8313 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
8314 (symbol_list_action_append): Remove.
8315 Hook the routines from reader.
8316 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
8317 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
8318
8319 * src/reader.c (read_declarations): Remove, unused.
8320
8321 * src/parse-gram.y: Handle the epilogue.
8322 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
8323 (grammar_start_symbol_set): this.
8324 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
8325 * src/reader.c (readgram): Remove, unused.
8326 (reader): Adjust to insert eoftoken and axiom where appropriate.
8327
8328 * src/reader.c (copy_dollar): Replace with...
8329 * src/scan-gram.h (handle_dollar): this.
8330 * src/parse-gram.y: Remove `%thong'.
8331
8332 * src/reader.c (copy_at): Replace with...
8333 * src/scan-gram.h (handle_at): this.
8334
8335 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
8336 New.
8337
8338 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
8339 time being.
8340
8341 * src/reader.h, src/reader.c (grammar_rule_end): New.
8342
8343 * src/parse.y (current_type, current_class): New.
8344 Implement `%nterm', `%token' support.
8345 Merge `%term' into `%token'.
8346 (string_as_id): New.
8347 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
8348 type name.
8349
8350 * src/parse-gram.y: Be sure to handle properly the beginning of
8351 rules.
8352
8353 * src/parse-gram.y: Handle %type.
8354 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
8355
8356 * src/parse-gram.y: More directives support.
8357 * src/options.c: No longer handle source directives.
8358
8359 * src/parse-gram.y: Fix %output.
8360
8361 * src/parse-gram.y: Handle %union.
8362 Use the prologue locations.
8363 * src/reader.c (parse_union_decl): Remove.
8364
8365 * src/reader.h, src/reader.c (epilogue_set): New.
8366 * src/parse-gram.y: Use it.
8367
8368 * data/bison.simple, data/bison.c++: b4_stype is now either not
8369 defined, then default to int, or to the contents of %union,
8370 without `union' itself.
8371 Adjust.
8372 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
8373
8374 * src/output.c (actions_output): Don't output braces, as they are
8375 already handled by the scanner.
8376
8377 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
8378 characters to themselves.
8379
8380 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
8381 that the epilogue has a proper #line.
8382
8383 * src/parse-gram.y: Handle precedence/associativity.
8384
8385 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
8386 a terminal.
8387 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
8388 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
8389 at all to define terminals that cannot be emitted.
8390
8391 * src/scan-gram.l: Escape M4 characters.
8392
8393 * src/scan-gram.l: Working properly with escapes in user
8394 strings/characters.
8395
8396 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
8397 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
8398 grammar.
8399 Use more modest sizes, as for the time being the parser does not
8400 release memory, and therefore the process swallows a huge amount
8401 of memory.
8402
8403 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
8404 stricter %token grammar.
8405
8406 * src/symtab.h (associativity): Add `undef_assoc'.
8407 (symbol_precedence_set): Do nothing when passed an undef_assoc.
8408 * src/symtab.c (symbol_check_alias_consistence): Adjust.
8409
8410 * tests/regression.at (Invalid %directive): Remove, as it is now
8411 meaningless.
8412 (Invalid inputs): Adjust to the new error messages.
8413 (Token definitions): The new grammar doesn't allow too many
8414 eccentricities.
8415
8416 * src/lex.h, src/lex.c: Remove.
8417 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
8418 (copy_character, copy_string2, copy_string, copy_identifier)
8419 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
8420 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
8421 (parse_action): Remove.
8422 * po/POTFILES.in: Adjust.
8423
2e047461
AD
84242002-06-11 Akim Demaille <akim@epita.fr>
8425
cd05d13c 8426 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
8427 rule's action member: return the action as a string.
8428 Don't require `rule_length' as an argument: compute it.
8429 (grammar_current_rule_symbol_append)
8430 (grammar_current_rule_action_append): New, eved out from
8431 (readgram): here.
8432 Remove `action_flag', `rulelength', unused now.
8433
9af3fbce
AD
84342002-06-11 Akim Demaille <akim@epita.fr>
8435
8436 * src/reader.c (grammar_current_rule_prec_set).
8437 (grammar_current_rule_check): New, eved out from...
8438 (readgram): here.
8439 Remove `xaction', `first_rhs': useless.
8440 * tests/input.at (Type clashes): New.
8441 * tests/existing.at (GNU Cim Grammar): Adjust.
8442
1485e106
AD
84432002-06-11 Akim Demaille <akim@epita.fr>
8444
8445 * src/reader.c (grammar_midrule_action): New, Eved out from
8446 (readgram): here.
8447
da4160c3
AD
84482002-06-11 Akim Demaille <akim@epita.fr>
8449
8450 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
8451 New.
8452 (readgram): Use them as replacement of inlined code, crule and
8453 crule1.
8454
f6d0f937
AD
84552002-06-11 Akim Demaille <akim@epita.fr>
8456
8457 * src/reader.c (grammar_end, grammar_symbol_append): New.
8458 (readgram): Use them.
8459 Make the use of `p' as local as possible.
8460
69078d4b
AD
84612002-06-10 Akim Demaille <akim@epita.fr>
8462
8463 GCJ's parser requires the tokens to be defined before the prologue.
8464
8465 * data/bison.simple: Output the token definition before the user's
8466 prologue.
8467 * tests/regression.at (Braces parsing, Duplicate string)
8468 (Mixing %token styles): Check the output from bison.
8469 (Early token definitions): New.
8470
5e424082
AD
84712002-06-10 Akim Demaille <akim@epita.fr>
8472
8473 * src/symtab.c (symbol_user_token_number_set): Don't complain when
8474 assigning twice the same user number to a token, so that we can
8475 use it in...
8476 * src/lex.c (lex): here.
8477 Also use `symbol_class_set' instead of hand written code.
8478 * src/reader.c (parse_assoc_decl): Likewise.
8479
44536b35
AD
84802002-06-10 Akim Demaille <akim@epita.fr>
8481
8482 * src/symtab.c, src/symtab.c (symbol_class_set)
8483 (symbol_user_token_number_set): New.
8484 * src/reader.c (parse_token_decl): Use them.
8485 Use a switch instead of ifs.
8486 Use a single argument.
8487
8b9f2372
AD
84882002-06-10 Akim Demaille <akim@epita.fr>
8489
8490 Remove `%thong' support as it is undocumented, unused, duplicates
8491 `%token's job, and creates useless e-mail traffic with people who
8492 want to know what it is, why it is undocumented, unused, and
8493 duplicates `%token's job.
8494
8495 * src/reader.c (parse_thong_decl): Remove.
8496 * src/options.c (option_table): Remove "thong".
8497 * src/lex.h (tok_thong): Remove.
8498
3ae2b51f
AD
84992002-06-10 Akim Demaille <akim@epita.fr>
8500
8501 * src/symtab.c, src/symtab.c (symbol_type_set)
8502 (symbol_precedence_set): New.
8503 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
8504 (value_components_used): Remove, unused.
8505
2f1afb73
AD
85062002-06-09 Akim Demaille <akim@epita.fr>
8507
8508 Move symbols handling code out of the reader.
8509
8510 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
8511 (axiom): Move to...
8512 * src/symtab.h, src/symtab.c: here.
8513
8514 * src/gram.c (start_symbol): Remove: use startsymbol->number.
8515 * src/reader.c (startval): Rename as...
8516 * src/symtab.h, src/symtab.c (startsymbol): this.
8517 * src/reader.c: Adjust.
8518
8519 * src/reader.c (symbol_check_defined, symbol_make_alias)
8520 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
8521 (token_translations_init)
8522 Move to...
8523 * src/symtab.c: here.
8524 * src/reader.c (packsymbols): Move to...
8525 * src/symtab.h, src/symtab.c (symbols_pack): here.
8526 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
8527 argument.
8528
e9bca3ad
AD
85292002-06-03 Akim Demaille <akim@epita.fr>
8530
8531 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
8532 then statements.
8533
86eff183
AD
85342002-06-03 Akim Demaille <akim@epita.fr>
8535
8536 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
8537 structs with non literals.
8538 * src/scan-skel.l: never-interactive.
8539 * src/conflicts.c (enum conflict_resolution_e): No trailing
8540 comma.
8541 * src/getargs.c (usage): Split long literal strings.
8542 Reported by Hans Aberg.
8543
717be197
AD
85442002-05-28 Akim Demaille <akim@epita.fr>
8545
8546 * data/bison.c++: Use C++ ostreams.
8547 (cdebug_): New member.
8548
670ddffd
AD
85492002-05-28 Akim Demaille <akim@epita.fr>
8550
8551 * src/output.c (output_skeleton): Be sure to allocate enough room
8552 for `/' _and_ for `\0' in full_skeleton.
8553
769b430f
AD
85542002-05-28 Akim Demaille <akim@epita.fr>
8555
8556 * data/bison.c++: Catch up with bison.simple:
8557 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8558 and Paul Eggert <eggert@twinsun.com>: `error' handing.
8559 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
8560 and popping traces.
8561
7067cb36
PH
85622002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8563
8564 * src/output.c (output_skeleton): Put an explicit path in front of
8565 the skeleton file name, rather than relying on the -I directory,
8566 to partially alleviate effects of having a skeleton file lying around
8567 in the current directory.
769b430f 8568
4a713ec2
PH
85692002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8570
769b430f 8571 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
8572 obstack_printf should be obstack_fgrow1.
8573
b408954b
AD
85742002-05-26 Akim Demaille <akim@epita.fr>
8575
8576 * src/state.h (state_t): `solved_conflicts' is a new member.
8577 * src/LR0.c (new_state): Set it to 0.
8578 * src/conflicts.h, src/conflicts.c (print_conflicts)
8579 (free_conflicts, solve_conflicts): Rename as...
8580 (conflicts_print, conflicts_free, conflicts_solve): these.
8581 Adjust callers.
8582 * src/conflicts.c (enum conflict_resolution_e)
8583 (solved_conflicts_obstack): New, used by...
8584 (log_resolution): this.
8585 Adjust to attach the conflict resolution to each state.
8586 Complete the description with the precedence/associativity
8587 information.
8588 (resolve_sr_conflict): Adjust.
8589 * src/print.c (print_state): Output its solved_conflicts.
8590 * tests/conflicts.at (Unresolved SR Conflicts)
8591 (Solved SR Conflicts): Exercise --report=all.
8592
a49aecd5
AD
85932002-05-26 Akim Demaille <akim@epita.fr>
8594
8595 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
8596 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
8597 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
8598 (token_number_t, item_number_as_token_number)
8599 (token_number_as_item_number, muscle_insert_token_number_table):
8600 Rename as...
8601 (symbol_number_t, item_number_as_symbol_number)
8602 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
8603 these, since it is more appropriate.
8604
5504898e
AD
86052002-05-26 Akim Demaille <akim@epita.fr>
8606
8607 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
8608 `Error:' lines.
8609 * data/bison.simple (yystos) [YYDEBUG]: New.
8610 (yyparse) [YYDEBUG]: Display the symbols which are popped during
8611 error recovery.
8612 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
8613
ec3bc396
AD
86142002-05-25 Akim Demaille <akim@epita.fr>
8615
8616 * doc/bison.texinfo (Debugging): Split into...
8617 (Tracing): this new section, its former contents, and...
8618 (Understanding): this new section.
8619 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
8620 by...
8621 (report_flag): this.
8622 Adjust all dependencies.
8623 (report_args, report_types, report_argmatch): New.
8624 (usage, getargs): Report/support -r, --report.
8625 * src/options.h
8626 (struct option_table_struct): Rename as..,
8627 (struct option_table_s): this.
8628 Rename the `set_flag' member to `flag' to match with getopt_long's
8629 struct.
8630 * src/options.c (option_table): Split verbose into an entry for
8631 %verbose, and another for --verbose.
8632 Support --report/-r, so remove -r from the obsolete --raw.
8633 * src/print.c: Attach full item sets and lookaheads reports to
8634 report_flag instead of trace_flag.
8635 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
8636
78df8250
PE
86372002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8638 and Paul Eggert <eggert@twinsun.com>
769b430f 8639
78df8250
PE
8640 * data/bison.simple (yyparse): Correct error handling to conform to
8641 POSIX and yacc. Specifically, after syntax error is discovered,
8642 do not reduce further before shifting the error token.
8643 Clean up the code a bit by removing the labels yyerrdefault,
8644 yyerrhandle, yyerrpop.
8645 * NEWS: Document the above.
8646
c0c9ea05
PH
86472002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8648
8649 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
8650 type; it isn't always big enough, since it doesn't necessarily
8651 include non-terminals.
769b430f 8652 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
8653 the latter can be removed.
8654 (yy_token_number_type): Remove, only one use.
8655 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
8656 don't use TokenNumberType as element type.
769b430f 8657
c0c9ea05
PH
8658 * tests/regression.at: Modify expected output to agree with change
8659 to yyr1 and yytranslate.
769b430f 8660
6390a83f
FK
86612002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
8662
8663 * src/reader.c (parse_action): Use copy_character instead of
8664 obstack_1grow.
8665
db7c8e9a
AD
86662002-05-13 Akim Demaille <akim@epita.fr>
8667
8668 * tests/regression.at (Token definitions): Prototype yylex and
8669 yyerror.
8670
fcc61800
PH
86712002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8672
158c687b 8673 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
8674 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
8675 32-bit arithmetic.
8676 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
8677
5683e9b2
AD
86782002-05-07 Akim Demaille <akim@epita.fr>
8679
8680 * tests/synclines.at: Be sure to prototype yylex and yyerror to
8681 avoid GCC warnings.
8682
0c2d3f4c
AD
86832002-05-07 Akim Demaille <akim@epita.fr>
8684
8685 Kill GCC warnings.
8686
8687 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
8688 over the RHS of each rule.
8689 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
8690 * src/state.h (state_t): Member `nitems' is unsigned short.
8691 * src/LR0.c (get_state): Adjust.
8692 * src/reader.c (packgram): Likewise.
8693 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
8694 `Type'.
8695 (muscle_insert_int_table): Remove, unused.
8696 (prepare_rules): Remove `max'.
8697
1565b720
AD
86982002-05-06 Akim Demaille <akim@epita.fr>
8699
8700 * src/closure.c (print_firsts): Display of the symbol tags.
8701 (bitmatrix_print): Move to...
8702 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
8703 here.
8704 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
8705
cfaee611
AD
87062002-05-06 Akim Demaille <akim@epita.fr>
8707
8708 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
8709 hash_do_for_each.
8710
458be8e0
AD
87112002-05-06 Akim Demaille <akim@epita.fr>
8712
8713 * src/LR0.c (new_state, get_state): Instead of using the global
8714 `kernel_size' and `kernel_base', have two new arguments:
8715 `core_size' and `core'.
8716 Adjust callers.
8717
a900a624
AD
87182002-05-06 Akim Demaille <akim@epita.fr>
8719
8720 * src/reader.c (packgram): No longer end `ritem' with a 0
8721 sentinel: it is not used.
8722
d4e7d3a1
AD
87232002-05-05 Akim Demaille <akim@epita.fr>
8724
8725 New experimental feature: display the lookaheads in the report and
8726 graph.
8727
8728 * src/print (print_core): When --trace-flag, display the rules
8729 lookaheads.
8730 * src/print_graph.c (print_core): Likewise.
8731 Swap the arguments.
8732 Adjust caller.
8733
39ceb25b
AD
87342002-05-05 Akim Demaille <akim@epita.fr>
8735
8736 * tests/torture.at (Many lookaheads): New test.
8737
5372019f
AD
87382002-05-05 Akim Demaille <akim@epita.fr>
8739
8740 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
8741 (GENERATE_MUSCLE_INSERT_TABLE): this.
8742 (output_int_table, output_unsigned_int_table, output_short_table)
8743 (output_token_number_table, output_item_number_table): Replace with...
8744 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
8745 (muscle_insert_short_table, muscle_insert_token_number_table)
8746 (muscle_insert_item_number_table): these.
8747 Adjust all callers.
8748 (prepare_tokens): Don't free `translations', since...
8749 * src/reader.h, src/reader.c (grammar_free): do it.
8750 Move to...
8751 * src/gram.h, src/gram.c (grammar_free): here.
8752 * data/bison.simple, data/bison.c++: b4_token_number_max is now
8753 b4_translate_max.
8754
5df5f6d5
AD
87552002-05-05 Akim Demaille <akim@epita.fr>
8756
8757 * src/output.c (output_unsigned_int_table): New.
8758 (prepare_rules): `i' is unsigned.
8759 `prhs', `rline', `r2' are unsigned int.
8760 Rename muscle `rhs_number_max' as `rhs_max'.
8761 Output muscles `prhs_max', `rline_max', and `r2_max'.
8762 Free rline and r1.
8763 * data/bison.simple, data/bison.c++: Adjust to use these muscles
8764 to compute types instead of constant types.
8765 * tests/regression.at (Web2c Actions): Adjust.
8766
b87f8b21
AD
87672002-05-04 Akim Demaille <akim@epita.fr>
8768
8769 * src/symtab.h (SALIAS, SUNDEF): Rename as...
8770 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
8771 Adjust dependencies.
8772 * src/output.c (token_definitions_output): Be sure not to output a
8773 `#define 'a'' when fed with `%token 'a' "a"'.
8774 * tests/regression.at (Token definitions): New.
8775
8bb936e4
PE
87762002-05-03 Paul Eggert <eggert@twinsun.com>
8777
8778 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
8779 for K&R C.
8780
87812002-05-03 gettextize <bug-gnu-gettext@gnu.org>
8782
8783 * Makefile.am (SUBDIRS): Remove intl.
8784 (EXTRA_DIST): Add config/config.rpath.
8785
53c71a12
AD
87862002-05-03 Akim Demaille <akim@epita.fr>
8787
8788 * data/bison.simple (m4_if): Don't output empty enums.
8789 And actually, output valid enum definitions :(.
8790
289dd0cf
AD
87912002-05-03 Akim Demaille <akim@epita.fr>
8792
8793 * configure.bat: Remove, completely obsolete.
8794 * Makefile.am (EXTRA_DIST): Adjust.
8795 Don't distribute config.rpath...
8796 * config/Makefile.am (EXTRA_DIST): Do it.
8797
db85e524
AD
87982002-05-03 Akim Demaille <akim@epita.fr>
8799
8800 * configure.in (GETTEXT_VERSION): New.
8801 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
8802
83ccf991
AD
88032002-05-03 Akim Demaille <akim@epita.fr>
8804
8805 * data/bison.simple (b4_token_enum): New.
8806 (b4_token_defines): Use it to output tokens both as #define and
8807 enums.
8808 Suggested by Paul Eggert.
8809 * src/output.c (token_definitions_output): Don't output spurious
8810 white spaces.
8811
1f418995
AD
88122002-05-03 Akim Demaille <akim@epita.fr>
8813
8814 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
8815
45119f04
RA
88162002-05-02 Robert Anisko <robert@lrde.epita.fr>
8817
8818 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
8819 Update the stack class, give a try to deque as the default container.
8820
b2d52318
AD
88212002-05-02 Akim Demaille <akim@epita.fr>
8822
8823 * data/bison.simple (yyparse): Do not implement @$ = @1.
8824 (YYLLOC_DEFAULT): Adjust to do it.
8825 * doc/bison.texinfo (Location Default Action): Fix.
8826
3a8b4109
AD
88272002-05-02 Akim Demaille <akim@epita.fr>
8828
8829 * src/reader.c (parse_braces): Merge into...
8830 (parse_action): this.
8831
84614e13
AD
88322002-05-02 Akim Demaille <akim@epita.fr>
8833
8834 * configure.in (ALL_LINGUAS): Remove.
8835 * po/LINGUAS, hr.po: New.
8836
fdbcd8e2
AD
88372002-05-02 Akim Demaille <akim@epita.fr>
8838
8839 Remove the so called hairy (semantic) parsers.
8840
8841 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
8842 * src/gram.h, src/gram.c (semantic_parser): Remove.
8843 (rule_t): Remove the guard and guard_line members.
8844 * src/lex.h (token_t): remove tok_guard.
8845 * src/options.c (option_table): Remove %guard and %semantic_parser
8846 support.
8847 * src/output.c, src/output.h (guards_output): Remove.
8848 (prepare): Adjust.
8849 (token_definitions_output): Don't output the `T'
8850 tokens (???).
8851 (output_skeleton): Don't output the guards.
8852 * src/files.c, src/files.c (attrsfile): Remove.
8853 * src/reader.c (symbol_list): Remove the guard and guard_line
8854 members.
8855 Adjust dependencies.
8856 (parse_guard): Remove.
8857 * data/bison.hairy: Remove.
8858 * doc/bison.texinfo (Environment Variables): Remove occurrences of
8859 BISON_HAIRY.
8860
82b6cb3f
AD
88612002-05-02 Akim Demaille <akim@epita.fr>
8862
8863 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
8864 (parse_guard): Rename the formal argument `stack_offset' as
8865 `rule_length', which is more readable.
8866 Adjust callers.
8867 (copy_at, copy_dollar): Instead of outputting the hard coded
8868 values of $$, $n and so forth, output invocation to b4_lhs_value,
8869 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
8870 Note: this patch partially drops `semantic-parser' support: it
8871 always does `rule_length - n', where semantic parsers ought to
8872 always use `-n'.
82b6cb3f
AD
8873 * data/bison.simple, data/bison.c++ (b4_lhs_value)
8874 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
8875
6cbfbcc5
AD
88762002-05-02 Akim Demaille <akim@epita.fr>
8877
8878 * configure.in (AC_INIT): Bump to 1.49b.
8879 (AM_INIT_AUTOMAKE): Short invocation.
8880
b8548114
AD
88812002-05-02 Akim Demaille <akim@epita.fr>
8882
8883 Version 1.49a.
8884
c20cd1fa
AD
88852002-05-01 Akim Demaille <akim@epita.fr>
8886
8887 * src/skeleton.h: Remove.
8888
8a9566d4
AD
88892002-05-01 Akim Demaille <akim@epita.fr>
8890
8891 * src/skeleton.h: Fix the #endif.
8892 Reported by Magnus Fromreide.
8893
8c6d399a
PE
88942002-04-26 Paul Eggert <eggert@twinsun.com>
8895
8896 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
8897 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 8898 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 8899
2b7ed18a
RA
89002002-04-25 Robert Anisko <robert@lrde.epita.fr>
8901
8902 * src/scan-skel.l: Postprocess quadrigraphs.
8903
8904 * src/reader.c (copy_character): New function, used to output
8905 single characters while replacing `[' and `]' with quadrigraphs, to
8906 avoid troubles with M4 quotes.
8907 (copy_comment): Output characters with copy_character.
8908 (read_additionnal_code): Likewise.
8909 (copy_string2): Likewise.
8910 (copy_definition): Likewise.
8911
8912 * tests/calc.at: Exercise M4 quoting.
8913
34a89c50
AD
89142002-04-25 Akim Demaille <akim@epita.fr>
8915
8916 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
8917 between `!' and the command.
8918 Reported by Paul Eggert.
8919
0dd1580a
RA
89202002-04-24 Robert Anisko <robert@lrde.epita.fr>
8921
8922 * tests/calc.at: Exercise prologue splitting.
8923
8924 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
8925 `b4_post_prologue' instead of `b4_prologue'.
8926
8927 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
8928 muscles.
8929 (output): Free pre_prologue_obstack and post_prologue_obstack.
8930 * src/files.h, src/files.c (attrs_obstack): Remove.
8931 (pre_prologue_obstack, post_prologue_obstack): New.
8932 * src/reader.c (copy_definition): Add a parameter to specify the
8933 obstack to fill, instead of using attrs_obstack unconditionally.
8934 (read_declarations): Pass pre_prologue_obstack to copy_definition if
8935 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
8936
83c1796f
PE
89372002-04-23 Paul Eggert <eggert@twinsun.com>
8938
8939 * data/bison.simple: Remove unnecessary commentary and white
8940 space differences from 1_29-branch.
8941 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
8942
8943 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
8944 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
8945 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
8946 constructors or destructors.
8947
8948 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
8949
1207eeac
AD
89502002-04-23 Akim Demaille <akim@epita.fr>
8951
8952 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
8953 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
8954 location with columns.
8955 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
8956 All reported by Paul Eggert.
8957
78ab8f67
AD
89582002-04-22 Akim Demaille <akim@epita.fr>
8959
8960 * src/reduce.c (dump_grammar): Move to...
8961 * src/gram.h, src/gram.c (grammar_dump): here.
8962 Be sure to separate long item numbers.
8963 Don't read the members of a rule's prec if its nil.
8964
133c20e2
AD
89652002-04-22 Akim Demaille <akim@epita.fr>
8966
8967 * src/output.c (table_size, table_grow): New.
8968 (MAXTABLE): Remove, replace uses with table_size.
8969 (pack_vector): Instead of dying when the table is too big, grow it.
8970
9515e8a7
AD
89712002-04-22 Akim Demaille <akim@epita.fr>
8972
8973 * data/bison.simple (yyr1): Its type is that of a token number.
8974 * data/bison.c++ (r1_): Likewise.
8975 * tests/regression.at (Web2c Actions): Adjust.
8976
23c5a174
AD
89772002-04-22 Akim Demaille <akim@epita.fr>
8978
8979 * src/reader.c (token_translations_init): 256 is now the default
8980 value for the error token, i.e., it will be assigned another
8981 number if the user assigned 256 to one of her tokens.
8982 (reader): Don't force 256 to error.
8983 * doc/bison.texinfo (Symbols): Adjust.
8984 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
8985 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
8986 etc. instead of 10, 20, 30 (which was used to `jump' over error
8987 (256) and undefined (2)).
8988
5fbb0954
AD
89892002-04-22 Akim Demaille <akim@epita.fr>
8990
8991 Propagate more token_number_t.
8992
8993 * src/gram.h (token_number_as_item_number)
8994 (item_number_as_token_number): New.
8995 * src/output.c (GENERATE_OUTPUT_TABLE): New.
8996 Use it to create output_item_number_table and
8997 output_token_number_table.
8998 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
8999 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
9000 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
9001 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
9002
4f940944
AD
90032002-04-22 Akim Demaille <akim@epita.fr>
9004
9005 * src/output.h, src/output.c (get_lines_number): Remove.
9006
3ded9a63
AD
90072002-04-19 Akim Demaille <akim@epita.fr>
9008
9009 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
9010 as Lex/Flex'.
9011 (Debugging): More details about enabling the debugging features.
9012 (Table of Symbols): Describe $$, $n, @$, and @n.
9013 Suggested by Tim Josling.
9014
e0c471a9
AD
90152002-04-19 Akim Demaille <akim@epita.fr>
9016
9017 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
9018
fecc10cd
AD
90192002-04-10 Akim Demaille <akim@epita.fr>
9020
9021 * src/system.h: Rely on HAVE_LIMITS_H.
9022 Suggested by Paul Eggert.
9023
51dec47b
AD
90242002-04-09 Akim Demaille <akim@epita.fr>
9025
9026 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
9027 full stderr, and strip it according to the bison options, instead
9028 of composing the error message from different bits.
9029 This makes it easier to check for several error messages.
9030 Adjust all the invocations.
9031 Add an invocation exercising the error token.
9032 Add an invocation demonstrating a stupid error message.
9033 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
9034 Adjust the tests.
9035 Error message are for stderr, not stdout.
9036
007a50a4
AD
90372002-04-09 Akim Demaille <akim@epita.fr>
9038
9039 * src/gram.h, src/gram.c (error_token_number): Remove, use
9040 errtoken->number.
9041 * src/reader.c (reader): Don't specify the user token number (2)
9042 for $undefined, as it uselessly prevents using it.
9043 * src/gram.h (token_number_t): Move to...
9044 * src/symtab.h: here.
9045 (state_t.number): Is a token_number_t.
9046 * src/print.c, src/reader.c: Use undeftoken->number instead of
9047 hard coded 2.
9048 (Even though this 2 is not the same as above: the number of the
9049 undeftoken remains being 2, it is its user token number which
9050 might not be 2).
9051 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
9052 `user_token_number_max'.
9053 Output `undef_token_number'.
9054 * data/bison.simple, data/bison.c++: Use them.
9055 Be sure to map invalid yylex return values to
9056 `undef_token_number'. This saves us from gratuitous SEGV.
9057
9058 * tests/conflicts.at (Solved SR Conflicts)
9059 (Unresolved SR Conflicts): Adjust.
9060 * tests/regression.at (Web2c Actions): Adjust.
9061
06446ccf
AD
90622002-04-08 Akim Demaille <akim@epita.fr>
9063
9064 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
9065 Adding #line.
9066 Remove the duplicate `typedefs'.
9067 (RhsNumberType): Fix the declaration and various other typos.
9068 Use __ofile__.
9069 * data/bison.simple: Use __ofile__.
9070 * src/scan-skel.l: Handle __ofile__.
9071
62a3e4f0
AD
90722002-04-08 Akim Demaille <akim@epita.fr>
9073
9074 * src/gram.h (item_number_t): New, the type of item numbers in
9075 RITEM. Note that it must be able to code symbol numbers as
9076 positive number, and the negation of rule numbers as negative
9077 numbers.
9078 Adjust all dependencies (pretty many).
9079 * src/reduce.c (rule): Remove this `short *' pointer: use
9080 item_number_t.
9081 * src/system.h (MINSHORT, MAXSHORT): Remove.
9082 Include `limits.h'.
9083 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
9084 (shortcpy): Remove.
9085 (MAXTABLE): Move to...
9086 * src/output.c (MAXTABLE): here.
9087 (prepare_rules): Use output_int_table to output rhs.
9088 * data/bison.simple, data/bison.c++: Adjust.
9089 * tests/torture.at (Big triangle): Move the limit from 254 to
9090 500.
9091 * tests/regression.at (Web2c Actions): Ajust.
9092
9093 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
9094 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
9095 passes, but produces negative #line number, once fixed, GCC is
9096 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
9097 C), it passes.
9098 * src/state.h (state_h): Code input lines on ints, not shorts.
9099
bb88b0fc
AD
91002002-04-08 Akim Demaille <akim@epita.fr>
9101
9102 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
9103 and then the grammar.
9104
9a636f47
AD
91052002-04-08 Akim Demaille <akim@epita.fr>
9106
9107 * src/system.h: No longer using strndup.
9108
680e8701
AD
91092002-04-07 Akim Demaille <akim@epita.fr>
9110
9111 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
9112 * src/output.c (output_table_data): Return the longest number.
9113 (prepare_tokens): Output `token_number_max').
9114 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
9115 New.
9116 Use them to define yy_token_number_type/TokenNumberType.
9117 Use this type for yytranslate.
9118 * tests/torture.at (Big triangle): Push the limit from 124 to
9119 253.
9120 * tests/regression.at (Web2c Actions): Adjust.
9121
817e9f41
AD
91222002-04-07 Akim Demaille <akim@epita.fr>
9123
9124 * tests/torture.at (Big triangle): New.
9125 (GNU AWK Grammar, GNU Cim Grammar): Move to...
9126 * tests/existing.at: here.
9127
5123689b
AD
91282002-04-07 Akim Demaille <akim@epita.fr>
9129
9130 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
9131 nritems.
9132 Adjust dependencies.
9133
f3849179
AD
91342002-04-07 Akim Demaille <akim@epita.fr>
9135
9136 * src/reader.c: Normalize increments to prefix form.
9137
bd02036a
AD
91382002-04-07 Akim Demaille <akim@epita.fr>
9139
9140 * src/reader.c, symtab.c: Remove debugging code.
9141
db8837cb
AD
91422002-04-07 Akim Demaille <akim@epita.fr>
9143
9144 Rename all the `bucket's as `symbol_t'.
9145
9146 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
9147 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
9148 * src/symtab.c, src/symtab.h (bucket): Rename as...
9149 (symbol_t): this.
9150 (symbol_list_new, bucket_check_defined, bucket_make_alias)
9151 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
9152 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
9153 (buckets_new, buckets_free, buckets_do): Rename as...
9154 (symbol_list_new, symbol_check_defined, symbol_make_alias)
9155 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
9156 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
9157 (symbols_new, symbols_free, symbols_do): these.
9158
72a23c97
AD
91592002-04-07 Akim Demaille <akim@epita.fr>
9160
9161 Use lib/hash for the symbol table.
9162
9163 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
9164 EOF.
9165 * src/lex.c (lex): Set the `number' member of new terminals.
9166 * src/reader.c (bucket_check_defined, bucket_make_alias)
9167 (bucket_check_alias_consistence, bucket_translation): New.
9168 (reader, grammar_free, readgram, token_translations_init)
9169 (packsymbols): Adjust.
9170 (reader): Number the predefined tokens.
9171 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
9172 for predefined tokens.
9173 * src/symtab.h (bucket): Remove all the hash table related
9174 members.
9175 * src/symtab.c (symtab): Replace by...
9176 (bucket_table): this.
9177 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
9178 (buckets_new, buckets_do): New.
9179
280a38c3
AD
91802002-04-07 Akim Demaille <akim@epita.fr>
9181
9182 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
9183 (start_symbol, max_user_token_number, semantic_parser)
9184 (error_token_number): Initialize.
9185 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
9186 Initialize.
9187 (reader): Don't.
9188 (errtoken, eoftoken, undeftoken, axiom): Extern.
9189
03b31c0c
AD
91902002-04-07 Akim Demaille <akim@epita.fr>
9191
9192 * src/gram.h (rule_s): prec and precsym are now pointers
9193 to the bucket giving the priority/associativity.
9194 Member `associativity' removed: useless.
9195 * src/reduce.c, src/conflicts.c: Adjust.
9196
8b3df748
AD
91972002-04-07 Akim Demaille <akim@epita.fr>
9198
9199 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
9200 Properly escape the symbols' TAG when outputting them.
9201
e601aa1d
AD
92022002-04-07 Akim Demaille <akim@epita.fr>
9203
9204 * src/lalr.h (LA): Is a bitsetv, not bitset*.
9205
b0299a2e
AD
92062002-04-07 Akim Demaille <akim@epita.fr>
9207
9208 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
9209 (LArule): this, which is an array to rule_t*.
9210 * src/print.c, src/conflicts.c: Adjust.
9211
d7e1f00c
AD
92122002-04-07 Akim Demaille <akim@epita.fr>
9213
9214 * src/gram.h (rule_t): Rename `number' as `user_number'.
9215 `number' is a new member.
9216 Adjust dependencies.
9217 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
9218
cc9305dd
AD
92192002-04-07 Akim Demaille <akim@epita.fr>
9220
9221 As a result of the previous patch, it is no longer needed
9222 to reorder ritem itself.
9223
9224 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
9225
b0940840
AD
92262002-04-07 Akim Demaille <akim@epita.fr>
9227
9228 Be sure never to walk through RITEMS, but use only data related to
9229 the rules themselves. RITEMS should be banished.
9230
9231 * src/output.c (output_token_translations): Rename as...
9232 (prepare_tokens): this.
9233 In addition to `translate', prepare the muscles `tname' and
9234 `toknum', which were handled by...
9235 (output_rule_data): this.
9236 Remove, and move the remainder of its outputs into...
9237 (prepare_rules): this new routines, which also merges content from
9238 (output_gram): this.
9239 (prepare_rules): Be sure never to walk through RITEMS.
9240 (output_stos): Rename as...
9241 (prepare_stos): this.
9242 (output): Always invoke prepare_states, after all, just don't use it
9243 in the output if you don't need it.
9244
643a5994
AD
92452002-04-07 Akim Demaille <akim@epita.fr>
9246
9247 * src/LR0.c (new_state): Display `nstates' as the name of the
9248 newly created state.
9249 Adjust to initialize first_state and last_state if needed.
9250 Be sure to distinguish the initial from the final state.
9251 (new_states): Create the itemset of the initial state, and use
9252 new_state.
9253 * src/closure.c (closure): Now that the initial state has its
9254 items properly set, there is no need for a special case when
9255 creating `ruleset'.
9256
9257 As a result, now the rule 0, reducing to $axiom, is visible in the
9258 outputs. Adjust the test suite.
9259
9260 * tests/conflicts.at (Solved SR Conflicts)
9261 (Unresolved SR Conflicts): Adjust.
9262 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
9263 * tests/conflicts.at (S/R in initial): New.
9264
b4c4ccc2
AD
92652002-04-07 Akim Demaille <akim@epita.fr>
9266
9267 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
9268 the RHS of the rules.
9269 * src/output.c (output_gram): Likewise.
9270
bba97eb2
AD
92712002-04-07 Akim Demaille <akim@epita.fr>
9272
9273 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
9274 bucket.
9275 Adjust all dependencies.
9276 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
9277 `number' of the buckets too.
9278 * src/gram.h: Include `symtab.h'.
9279 (associativity): Move to...
9280 * src/symtab.h: here.
9281 No longer include `gram.h'.
9282
c3b407f4
AD
92832002-04-07 Akim Demaille <akim@epita.fr>
9284
9285 * src/gram.h, src/gram.c (rules_rhs_length): New.
9286 (ritem_longest_rhs): Use it.
9287 * src/gram.h (rule_t): `number' is a new member.
9288 * src/reader.c (packgram): Set it.
9289 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
9290 the end of `rules', and count them out of `nrules'.
9291 (reduce_output, dump_grammar): Adjust.
9292 * src/print.c (print_grammar): It is no longer needed to check for
9293 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
9294 * tests/reduce.at (Reduced Automaton): New test.
9295
11652ab3
AD
92962002-04-07 Akim Demaille <akim@epita.fr>
9297
9298 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
9299 lacking `+ 1' to nrules, Bison reported as useless a token if it
9300 was used solely to set the precedence of the last rule...
9301
26b23c1a
AD
93022002-04-07 Akim Demaille <akim@epita.fr>
9303
9304 * data/bison.c++, data/bison.simple: Don't output the current file
9305 name in #line, to avoid useless diffs between two identical
9306 outputs under different names.
9307
18bcecb0
AD
93082002-04-07 Akim Demaille <akim@epita.fr>
9309
9310 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
9311 Normalize loops to using `< nrules + 1', not `<= nrules'.
9312
fa770c86
AD
93132002-04-07 Akim Demaille <akim@epita.fr>
9314
9315 * TODO: Update.
9316
d9b739c3
AD
93172002-04-07 Akim Demaille <akim@epita.fr>
9318
9319 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
9320 bucket.value as bucket.number.
9321
99013900
AD
93222002-04-07 Akim Demaille <akim@epita.fr>
9323
9324 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
9325 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
9326 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
9327 RHS, instead of being an index in RITEMS.
9328
e966383b
PE
93292002-04-04 Paul Eggert <eggert@twinsun.com>
9330
9331 * doc/bison.texinfo: Update copyright date.
9332 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
9333 (Symbols): Warn about running Bison in one character set,
9334 but compiling and/or running in an incompatible one.
9335 Warn about character code 256, too.
9336
93372002-04-03 Paul Eggert <eggert@twinsun.com>
9338
9339 * src/bison.data (YYSTACK_ALLOC): Depend on whether
9340 YYERROR_VERBOSE is nonzero, not whether it is defined.
9341
9342 Merge changes from bison-1_29-branch.
c307773e 9343
8d6c48b9
PE
93442002-03-20 Paul Eggert <eggert@twinsun.com>
9345
9346 Merge fixes from Debian bison_1.34-1.diff.
9347
9348 * configure.in (AC_PREREQ): 2.53.
9349
e53c6322
AD
93502002-03-20 Akim Demaille <akim@epita.fr>
9351
9352 * src/conflicts.c (log_resolution): Argument `resolution' is const.
9353
9ffbeca7
PE
93542002-03-19 Paul Eggert <eggert@twinsun.com>
9355
21db0b2a
PE
9356 * src/bison.simple (YYCOPY): New macro.
9357 (YYSTACK_RELOCATE): Use it.
9358 Remove Type arg; no longer needed. All callers changed.
9359 (yymemcpy): Remove; no longer needed.
9360
9ffbeca7
PE
9361 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
9362 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
9363
642cb8f8
AD
93642002-03-19 Akim Demaille <akim@epita.fr>
9365
9366 Test and fix the #line outputs.
9367
9368 * tests/atlocal.at (GCC): New.
9369 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 9370 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
9371 (Action synch line, Epilogue synch line): New tests.
9372 * src/reader.c (parse_union_decl): Define the muscle stype_line.
9373 * data/bison.simple, data/bison.c++: Use it.
9374
3c31a486
AD
93752002-03-19 Akim Demaille <akim@epita.fr>
9376
9377 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
9378 (Solved SR Conflicts, %expect not enough, %expect right)
9379 (%expect too much): Move to...
9380 * tests/conflicts.at: this new file.
9381
0d8bed56
AD
93822002-03-19 Akim Demaille <akim@epita.fr>
9383
9384 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
9385 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
9386 that we can move to enums for instance.
9387 * src/output.c (token_definitions_output): Output a list of
9388 `token-name, token-number' instead of the #define.
9389 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
9390
9208d17f
AD
93912002-03-14 Akim Demaille <akim@epita.fr>
9392
9393 Use Gettext 0.11.1.
9394
af27eacb
RA
93952002-03-09 Robert Anisko <robert@lrde.epita.fr>
9396
9397 * data/bison.c++: Make the user able to add members to the generated
9398 parser by subclassing.
9399
9101a310
RA
94002002-03-05 Robert Anisko <robert@lrde.epita.fr>
9401
9402 * src/reader.c (read_additionnal_code): `c' should be an integer, not
9403 a character.
9404 Reported by Nicolas Tisserand and Nicolas Burrus.
9405
fff9bf0b
RA
94062002-03-04 Robert Anisko <robert@lrde.epita.fr>
9407
9408 * src/reader.c: Warn about lacking semi-colons, do not complain.
9409
64dba31e
RA
94102002-03-04 Robert Anisko <robert@lrde.epita.fr>
9411
9412 * data/bison.c++: Remove a debug line.
9413
374f5a14
RA
94142002-03-04 Robert Anisko <robert@lrde.epita.fr>
9415
9416 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
9417 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
9418 provide a default implementation.
9419
bfcf1f3a
AD
94202002-03-04 Akim Demaille <akim@epita.fr>
9421
9422 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
9423 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
9424 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
9425 * tests/semantic.at (Parsing Guards): Similarly.
9426 * src/reader.at (readgram): Complain if the last rule is not ended
9427 with a semi-colon.
9428
65ccf9fc
AD
94292002-03-04 Akim Demaille <akim@epita.fr>
9430
9431 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
9432 * src/closure.c: here.
9433 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
9434 RTC.
9435 * src/warshall.h, src/warshall.c: Remove.
9436 * tests/sets.at (Broken Closure): Adjust.
9437
d0039cbc
AD
94382002-03-04 Akim Demaille <akim@epita.fr>
9439
9440 * src/output.c (output_skeleton): tempdir is const.
9441 bytes_read is unused.
9442
345cea78
AD
94432002-03-04 Akim Demaille <akim@epita.fr>
9444
9445 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
9446 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
9447 Update.
9448 From Michael Hayes.
9449
564801f7
AD
94502002-03-04 Akim Demaille <akim@epita.fr>
9451
9452 * src/closure.c (closure): `r' is unused.
9453
e5352bc7
AD
94542002-03-04 Akim Demaille <akim@epita.fr>
9455
9456 * tests/sets.at (Broken Closure): Add the ending `;'.
9457 * src/reader.at (readgram): Complain if a rule is not ended with a
9458 semi-colon.
9459
914feea9
AD
94602002-03-04 Akim Demaille <akim@epita.fr>
9461
9462 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
9463 (count_sr_conflicts): Use bitset_count.
9464 * src/reduce.c (inaccessable_symbols): Ditto.
9465 (bits_size): Remove.
9466 * src/warshall.h, src/warshall.c: Convert to bitsetv.
9467
f0250de6
AD
94682002-03-04 Akim Demaille <akim@epita.fr>
9469
9470 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
9471 * src/reduce.c: Remove the `bitset_zero's following the
9472 `bitset_create's, as now it is performed by the latter.
9473
ef017502
AD
94742002-03-04 Akim Demaille <akim@epita.fr>
9475
9476 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
9477 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
9478 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
9479 latest sources from Michael.
9480
76514394
AD
94812002-03-04 Akim Demaille <akim@epita.fr>
9482
9483 * src/output.c (output): Don't free the grammar.
9484 * src/reader.c (grammar_free): New.
9485 * src/main.c (main): Call it and don't free symtab here.
9486
55024580
AD
94872002-03-04 Akim Demaille <akim@epita.fr>
9488
9489 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
9490 before returning.
9491 Reported by Benoit Perrot.
9492
f9abaa2c
AD
94932002-03-04 Akim Demaille <akim@epita.fr>
9494
9495 Use bitset operations when possible, not loops over bits.
9496
9497 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
9498 bitset_or.
9499 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
9500 * src/reduce.c (useless_nonterminals): Formatting changes.
9501 * src/warshall.c (TC): Use bitset_or.
9502
0e721e75
AD
95032002-03-04 Akim Demaille <akim@epita.fr>
9504
9505 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
9506 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
9507 Ditto.
9508
0fb1ffb1
AD
95092002-03-04 Akim Demaille <akim@epita.fr>
9510
9511 * src/lalr.c (F): Now a bitset*.
9512 Adjust all dependencies.
9513
b86796bf
AD
95142002-03-04 Akim Demaille <akim@epita.fr>
9515
9516 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
9517 Adjust all dependencies.
9518
602bbf31
AD
95192002-03-04 Akim Demaille <akim@epita.fr>
9520
9521 * src/L0.c, src/LR0.h (nstates): Be size_t.
9522 Adjust comparisons (signed vs unsigned).
9523 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
9524 bitset*.
9525 Adjust all dependencies.
9526
d8a0245c
AD
95272002-03-04 Akim Demaille <akim@epita.fr>
9528
9529 * src/closure.c (firsts): Now, also a bitset.
9530 Adjust all dependencies.
9531 (varsetsize): Remove, now unused.
9532 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
9533
34ba9743
AD
95342002-03-04 Akim Demaille <akim@epita.fr>
9535
9536 * src/print.c: Convert to use bitset.h, not hand coded iterations
9537 over ints.
9538
ed86e78c
AD
95392002-03-04 Akim Demaille <akim@epita.fr>
9540
9541 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
9542
dfdb1797
AD
95432002-03-04 Akim Demaille <akim@epita.fr>
9544
9545 * src/closure.c (ruleset): Be a bitset.
9546 (rulesetsize): Remove.
9547
7086e707
AD
95482002-03-04 Akim Demaille <akim@epita.fr>
9549
9550 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
9551 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
9552 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
9553 * src/closure.c (fderives): Be an array of bitsets.
9554
98254360
RA
95552002-02-28 Robert Anisko <robert@lrde.epita.fr>
9556
9557 * data/bison.c++: Merge the two generated headers. Insert a copyright
9558 notice in each output file.
9559
a75c057f
AD
95602002-02-28 Akim Demaille <akim@epita.fr>
9561
9562 * data/bison.c++: Copy the prologue of bison.simple to fetch
9563 useful M4 definitions, such as b4_header_guard.
9564
06b00abc
AD
95652002-02-25 Akim Demaille <akim@epita.fr>
9566
9567 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
9568 translator friendly scheme for the bgr
9569 copyright notice.
06b00abc 9570
70e7d534
AD
95712002-02-25 Akim Demaille <akim@epita.fr>
9572
9573 * src/output.c (header_output): Remove, now handled completely via
9574 M4.
9575
abe017f6
AD
95762002-02-25 Akim Demaille <akim@epita.fr>
9577
9578 * m4/m4.m4: New, from CVS Autoconf.
9579 * configure.in: Invoke it.
9580 * src/output.c (output_skeleton): Use its result instead of the
9581 hard coded name.
9582
381fb12e
AD
95832002-02-25 Akim Demaille <akim@epita.fr>
9584
9585 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
9586 Fileutils 4.1.5.
9587 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
9588 * src/output.c (output_skeleton): Use mkstemp to create a real
9589 temporary file.
9590 Move the filling of `skeleton' and its muscle to...
9591 (prepare): here.
9592 (output): Move the definition of the prologue muscle to...
9593 (prepare): here.
9594 * src/system.h (DEFAULT_TMPDIR): New.
9595
6f38107f
PE
95962002-02-14 Paul Eggert <eggert@twinsun.com>
9597
9598 Remove the support for C++ namespace cleanliness; it was
9599 causing more problems than it was curing, since it didn't work
9600 properly on some nonstandard C++ compilers. This can wait
9601 for a proper C++ parser.
9602
9603 * NEWS: Document this.
9604 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
9605 of C++, as it's treated like C now.
9606 * src/bison.simple (YYSTD): Remove.
9607 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
9608 Treat C++ just like Standard C instead of trying to support
9609 namespace cleanliness.
9610
80cce3da
AD
96112002-02-14 Akim Demaille <akim@epita.fr>
9612
9613 * tests/regression.at (else): Adjust to Andreas' change.
9614
842e8679
AD
96152002-02-14 Akim Demaille <akim@epita.fr>
9616
9617 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
9618
4bda3f10
AD
96192002-02-13 Andreas Schwab <schwab@suse.de>
9620
9621 * src/output.c (output_rule_data): Don't output NULL, it might
9622 not be defined yet.
9623
4162fa07 96242002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 9625
4162fa07
RA
9626 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
9627 (Copyright notice): Update.
b418ecd8 9628
bd16a5dc
AD
96292002-02-11 Akim Demaille <akim@epita.fr>
9630
9631 * tests/regression.at (%nonassoc and eof): Don't include
9632 nonportable headers.
9633
8d69a1a3
RA
96342002-02-08 Robert Anisko <robert@lrde.epita.fr>
9635
9636 * data/bison.c++: Correct error recovery. Make the user able to
9637 initialize the starting location.
9638
9b2d0677
AD
96392002-02-07 Akim Demaille <akim@epita.fr>
9640
9641 * tests/input.at: New.
9642
69e2658b
RA
96432002-02-07 Robert Anisko <robert@lrde.epita.fr>
9644
9645 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 9646 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
9647 directives around tables only needed for debugging.
9648
4aacc3a7
RA
96492002-02-07 Robert Anisko <robert@lrde.epita.fr>
9650
9651 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
9652 C++ parsers.
9653 (yy::b4_name::parse): Use print_.
9654
762a801e
RA
96552002-02-07 Robert Anisko <robert@lrde.epita.fr>
9656
9657 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
9658
4bb2bc3f
RA
96592002-02-07 Robert Anisko <robert@lrde.epita.fr>
9660
9661 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
9662 C++ parsers.
9663 (yy::b4_name::parse): Build verbose error messages, and use error_.
9664
6b45a3ca
RA
96652002-02-06 Robert Anisko <robert@lrde.epita.fr>
9666
9667 * data/bison.c++: Fix m4 quoting in comments.
9668
50997c6e
RA
96692002-02-06 Robert Anisko <robert@lrde.epita.fr>
9670
9671 * data/bison.c++: Adjust the parser code. Fix some muscles that were
9672 not expanded by m4.
9673
3f3eed27
AD
96742002-02-05 Akim Demaille <akim@epita.fr>
9675
9676 * data/bison.c++: Adjust to the M4 back end.
9677 More is certainly needed.
9678
be2a1a68
AD
96792002-02-05 Akim Demaille <akim@epita.fr>
9680
9681 Give a try to M4 as a back end.
9682
9683 * lib/readpipe.c: New, from wdiff.
9684 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
9685 BISON_HAIRY.
9686 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
9687 specific values. Now it is m4 that performs the lookup.
9688 * src/parse-skel.y: Remove.
9689 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
9690 * src/output.c (actions_output, guards_output)
9691 (token_definitions_output): No longer keeps track of the output
9692 line number, hence remove the second argument.
9693 (guards_output): Check against the guard member of a rule, not the
9694 action member.
9695 Adjust callers.
9696 (output_skeleton): Don't look for the skeleton location, let m4 do
9697 that.
9698 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
9699 file will be used.
9700 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
9701 (prepare): Given that for the time being changesyntax is not
9702 usable in M4, rename the muscles using `-' to `_'.
9703 Define `defines_flag', `output_parser_name' and `output_header_name'.
9704 * src/output.h (actions_output, guards_output)
9705 (token_definitions_output): Adjust prototypes.
9706 * src/scan-skel.l: Instead of scanning the skeletons, it now
9707 processes the output of m4: `__oline__' and `#output'.
9708 * data/bison.simple: Adjust to be used by M4(sugar).
9709 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
9710 to date.
9711 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
9712 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
9713 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
9714 shamelessly stolen from CVS Autoconf.
9715
beda758b
AD
97162002-02-05 Akim Demaille <akim@epita.fr>
9717
9718 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
9719 * configure.in: Check for the declarations of free and malloc.
9720 * src/muscle_tab.c: Adjust.
9721
5ece6d43
AD
97222002-02-05 Akim Demaille <akim@epita.fr>
9723
9724 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
9725 which have no values.
9726
5bb18f9a
AD
97272002-02-05 Akim Demaille <akim@epita.fr>
9728
9729 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
9730 * data/: here.
9731
894dd62e
PE
97322002-01-29 Paul Eggert <eggert@twinsun.com>
9733
9734 * src/bison.simple (YYSIZE_T): Do not define merely because
9735 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
9736 On some platforms, <alloca.h> does not declare YYSTD (size_t).
9737
82841af7
AD
97382002-01-27 Akim Demaille <akim@epita.fr>
9739
9740 Fix `%nonassoc and eof'.
9741
9742 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
9743 which were not properly copied! Replace
9744 memcpy (res->errs, src->errs, src->nerrs);
9745 with
9746 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
9747 !!!
9748 * tests/regression.at (%nonassoc and eof): Adjust to newest
9749 Autotest: `.' is not in the PATH.
9750
318b76e9
AD
97512002-01-27 Akim Demaille <akim@epita.fr>
9752
9753 * tests/sets.at (AT_EXTRACT_SETS): New.
9754 (Nullable): Use it.
9755 (Firsts): New.
9756
30d2f3d5
AD
97572002-01-26 Akim Demaille <akim@epita.fr>
9758
9759 * tests/actions.at, tests/calc.at, tests/headers.at,
9760 * tests/torture.at: Adjust to the newest Autotest which no longer
9761 forces `.' in the PATH.
9762
30f8c395
AD
97632002-01-25 Akim Demaille <akim@epita.fr>
9764
9765 * tests/regression.at (%nonassoc and eof): New.
9766 Suggested by Robert Anisko.
9767
29ae55f1
AD
97682002-01-24 Akim Demaille <akim@epita.fr>
9769
9770 Bison dumps core when trying to complain about broken input files.
9771 Reported by Cris van Pelt.
9772
9773 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
9774 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
9775 into...
9776 (Invalid inputs): Strengthen: exercise parse_percent_token.
9777
2b548aa6
RA
97782002-01-24 Robert Anisko <robert.anisko@epita.fr>
9779
9780 * src/Makefile.am: Add bison.c++.
9781 * src/bison.c++: New skeleton.
9782
bb0146c2
AD
97832002-01-21 Paolo Bonzini <bonzini@gnu.org>
9784
9785 * po/it.po: New.
9786
bec30531
AD
97872002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
9788
9789 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
9790
fc6edc45
MA
97912002-01-20 Marc Autret <marc@gnu.org>
9792
9793 * src/files.c (compute_output_file_names): Fix
9794
5e5d5415
MA
97952002-01-20 Marc Autret <marc@gnu.org>
9796
9797 * tests/output.at: New test.
9798 * src/files.c (compute_base_names): Don't map extensions when
9799 the YACC flag is set, use defaults.
9800 Reported by Evgeny Stambulchik.
9801
44ea3fbd
MA
98022002-01-20 Marc Autret <marc@gnu.org>
9803
ba0fe3c7
PE
9804 * src/system.h: Need to define __attribute__ away for non-GCC
9805 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
9806 Suggested by Albert Chin-A-Young.
9807
338963d1
TVH
98082002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
9809
9810 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
9811 canonical definition.
9812 * src/system.h: Use the canonical definition for PARAMS (avoids
9813 a conflict with the macro from lib/hash.h).
9814
c57b2479
AD
98152002-01-11 Akim Demaille <akim@epita.fr>
9816
9817 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 9818 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 9819
b85810ae
AD
98202002-01-09 Akim Demaille <akim@epita.fr>
9821
9822 * src/files.c, src/files.h (output_infix): New.
9823 (tab_extension): Remove.
9824 (compute_base_names): Compute the former, drop the latter.
9825 * src/output.c (prepare): Insert the muscles `output-infix', and
9826 `output-suffix'.
9827 * src/parse-skel.y (string, string.1): New.
9828 (section.header): Use it.
9829 (section.yacc): Remove.
9830 (prefix): Remove too.
9831 * src/scan-skel.l: Adjust.
9832 * src/bison.simple, src/bison.hairy: Adjust.
9833
cae60122
AD
98342002-01-09 Akim Demaille <akim@epita.fr>
9835
9836 * configure.in (WERROR_CFLAGS): Compute it.
9837 * src/Makefile.am (CFLAGS): Pass it.
9838 * tests/atlocal.in (CFLAGS): Idem.
9839 * src/files.c: Fix a few warnings.
9840 (get_extension_index): Remove, unused.
9841
ae404801
AD
98422002-01-08 Akim Demaille <akim@epita.fr>
9843
9844 * src/getargs.c (AS_FILE_NAME): New.
9845 (getargs): Use it to convert DOSish file names.
9846 * src/files.c (base_name): Rename as full_base_name to avoid
9847 clashes with `base_name ()'.
9848 (filename_split): New.
9849 (compute_base_names): N-th rewrite, using filename_split.
9850
22312b71
AD
98512002-01-08 Akim Demaille <akim@epita.fr>
9852
9853 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
9854 New, stolen from the Fileutils 4.1.
9855 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
9856 * configure.in: Check for the presence of memrchr, and of its
9857 prototype.
9858
a67cef01
TVH
98592002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
9860
9861 * lib/hash.h (__P): Added definition for this macro.
9862 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
9863 BUILT_SOURCES, to ensure they are generated first.
9864 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
9865 %error-verbose to allow bootstrapping with bison 1.30x.
9866
2b25d624
AD
98672002-01-06 Akim Demaille <akim@epita.fr>
9868
9869 * src/reader.c (parse_braces): Don't fetch the next char, the
9870 convention is to fetch on entry.
9871 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
9872 'switch' without a following semicolon.
9873 * tests/regression.at (braces parsing): New.
9874
3460813b
AD
98752002-01-06 Akim Demaille <akim@epita.fr>
9876
9877 Bison is dead wrong in its RR conflict reports.
9878
9879 * tests/torture.at (GNU Cim Grammar): New.
9880 * src/conflicts.c (count_rr_conflicts): Fix.
9881
73784c64
AD
98822002-01-06 Akim Demaille <akim@epita.fr>
9883
9884 Creating package.m4 from configure.ac causes too many problems.
9885
9886 * tests/Makefile.am (package.m4): Create it by hand,
9887 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
9888
25d81090
AD
98892002-01-06 Akim Demaille <akim@epita.fr>
9890
9891 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
9892 skeleton.h.
9893
a9b8959e
PE
98942002-01-04 Paul Eggert <eggert@twinsun.com>
9895
9896 * doc/bison.texinfo (Debugging):
9897 Remove YYSTDERR; it's no longer defined or used.
9898 Also, s/cstdio.h/cstdio/.
9899
25d81090
AD
99002002-01-03 Akim Demaille <akim@epita.fr>
9901
9902 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
9903
1109455c
AD
99042002-01-03 Akim Demaille <akim@epita.fr>
9905
9906 * src/parse-skel.y (process_skeleton): Don't bind the parser's
9907 tracing code to --trace, wait for a better --trace option, with
9908 args.
9909
7ea5e977
AD
99102002-01-03 Akim Demaille <akim@epita.fr>
9911
9912 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
9913 The ISO C++ standard is extremely clear about it: stderr is
9914 considered a macro, not a regular symbol (see table 94 `Header
9915 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
9916 Therefore std:: does not apply to it. It still does with fprintf.
9917 Also, s/cstdio.h/cstdio/.
9918
fab5b110
AD
99192002-01-03 Akim Demaille <akim@epita.fr>
9920
9921 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
9922 for non system headers.
9923
aed7fd9b
AD
99242002-01-02 Akim Demaille <akim@epita.fr>
9925
9926 Equip the skeleton chain with location tracking, runtime trace,
9927 pure parser and scanner.
9928
9929 * src/parse-skel.y: Request a pure parser, locations, and prefix
9930 renaming.
9931 (%union): Having several members with the same type does not help
9932 type mismatches, simplify.
9933 (YYPRINT, yyprint): New.
9934 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
9935 (skel_error): this.
9936 Handle locations.
9937 * src/scan-skel.l: Adjust to these changes.
9938 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
9939 (LOCATION_PRINT, skel_control_t): New.
9940
24fad99e
AD
99412001-12-30 Akim Demaille <akim@epita.fr>
9942
9943 * src/parse-skel.y: Get rid of the shift/reduce conflict:
9944 replace `gb' with BLANKS.
9945 * src/scan-skel.l: Adjust.
9946
a4b36db4
AD
99472001-12-30 Akim Demaille <akim@epita.fr>
9948
9949 * src/system.h: We don't need nor want bcopy.
9950 Throw away MS-DOS crap: we don't need getpid.
9951 * configure.in: We don't need strndup. It was even causing
9952 problems: because Flex includes the headers *before* us,
9953 _GNU_SOURCE is not defined by config.h, and therefore strndup was
9954 not visible.
9955 * lib/xstrndup.c: New.
9956 * src/scan-skel.l: Use it.
9957 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
9958 * src/parse-skel.y: Use %directives instead of #defines.
9959
1239777d
AD
99602001-12-30 Akim Demaille <akim@epita.fr>
9961
9962 * src/skeleton.h: New.
9963 * src/output.c (output_parser, output_master_parser): Remove, dead
9964 code.
9965 * src/output.h (get_lines_number, actions_output, guards_output)
9966 (token_definitions_output): Prototype them.
9967 * src/parse-skel.y: Add the license notice.
9968 Include output.h and skeleton.h.
9969 (process_skeleton): Returns void, and takes a single parameter.
9970 * src/scan-skel.l: Add the license notice.
9971 Include skeleton.h.
9972 Don't use %option yylineno: it seems that then Flex imagines
9973 REJECT has been used, and therefore it won't reallocate its
9974 buffers (which makes no other sense to me than a bug). It results
9975 in warnings for `unused: yy_flex_realloc'.
9976
9b3add5b
RA
99772001-12-30 Robert Anisko <robert.anisko@epita.fr>
9978
9979 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
9980 (MUSCLE_INSERT_PREFIX): ...to there.
9981 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
9982 (MUSCLE_INSERT_PREFIX): Move from here...
9983
9984 * src/bison.hairy: Add a section directive. Put braces around muscle
9985 names. This parser skeleton is still broken, but Bison should not
9986 choke on a bad muscle 'syntax'.
9987 * src/bison.simple: Add a section directive. Put braces around muscle
9988 names.
9989
9990 * src/files.h (strsuffix, stringappend): Add declarations.
9991 (tab_extension): Add declaration.
9992 (short_base_name): Add declaration.
9993
9994 * src/files.c (strsuffix, stringappend): No longer static. These
9995 functions are used in the skeleton parser.
9996 (tab_extension): New.
9997 (compute_base_names): Use the computations done in this function
fab5b110 9998 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
9999 names.
10000 (short_base_name): No longer static.
10001
10002 * src/output.c (output_skeleton): New.
10003 (output): Disable call to output_master_parser, and give a try to
10004 a new skeleton handling system.
10005 (guards_output, actions_output): No longer static.
10006 (token_definitions_output, get_lines_number): No longer static.
10007
10008 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
10009
fab5b110 10010 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
10011 parse-skel.y.
10012
10013 * src/parse-skel.y: New file.
10014 * src/scan-skel.l: New file.
10015
b5b61c61
AD
100162001-12-29 Akim Demaille <akim@epita.fr>
10017
10018 %name-prefix is broken.
10019
10020 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
10021 Adjust all dependencies.
10022 * tests/headers.at (export YYLTYPE): Strengthen this test: use
10023 %name-prefix.
10024
10025 Renaming yylval but not yylloc is not consistent. Now we do.
10026
10027 * src/bison.simple: Prefix yylloc if used.
10028 * doc/bison.texinfo (Decl Summary): Document that.
10029
8c9a50be
AD
100302001-12-29 Akim Demaille <akim@epita.fr>
10031
10032 * doc/bison.texinfo: Promote `%long-directive' over
10033 `%long_directive'.
10034 Remove all references to fixed-output-files, yacc is enough.
10035
d99361e6
AD
100362001-12-29 Akim Demaille <akim@epita.fr>
10037
10038 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
10039 user prologue. These are defaults.
10040 * tests/actions.at (Mid-rule actions): Make sure the user can
10041 define YYDEBUG and YYERROR_VERBOSE.
10042
b9cecb91
AD
100432001-12-29 Akim Demaille <akim@epita.fr>
10044
10045 * src/output.c (header_output): Don't forget to export YYLTYPE and
10046 yylloc.
10047 * tests/headers.at (export YYLTYPE): New, make sure it does.
10048 * tests/regression.at (%union and --defines, Invalid CPP headers):
10049 Move to...
10050 * tests/headers.at: here.
10051
aea13e97
AD
100522001-12-29 Akim Demaille <akim@epita.fr>
10053
10054 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
10055
931394cb
AD
100562001-12-29 Akim Demaille <akim@epita.fr>
10057
10058 * tests/actions.at (Mid-rule actions): Output on a single line
10059 instead of several.
10060
704a47c4
AD
100612001-12-29 Akim Demaille <akim@epita.fr>
10062
10063 * doc/bison.texinfo: Formatting changes.
10064
091e20bb
AD
100652001-12-29 Akim Demaille <akim@epita.fr>
10066
10067 Don't store the token defs in a muscle, just be ready to output it
10068 on command. Now possible via `symbols'. Fixes a memory leak.
10069
10070 * src/output.c (token_definitions_output): New.
10071 (output_parser, header_output): Use it.
10072 * src/reader.c (symbols_save): Remove.
10073
cce71710
AD
100742001-12-29 Akim Demaille <akim@epita.fr>
10075
10076 * src/bison.simple: Do not provide a default for YYSTYPE and
10077 YYLTYPE before the user's prologue. Otherwise it's hardly... a
10078 default.
10079
82c035a8
AD
100802001-12-29 Akim Demaille <akim@epita.fr>
10081
10082 Mid-rule actions are simply... ignored!
10083
10084 * src/reader.c (readgram): Be sure to attach mid-rule actions to
10085 the empty-rule associated to the dummy symbol, not to the host
10086 rule.
10087 * tests/actions.at (Mid-rule actions): New.
10088
8419d367
AD
100892001-12-29 Akim Demaille <akim@epita.fr>
10090
10091 Memory leak.
10092
10093 * src/reader.c (reader): Free grammar.
10094
375d5806
AD
100952001-12-29 Akim Demaille <akim@epita.fr>
10096
10097 Memory leak.
10098
10099 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
10100 since it allocates it for each state, although only one is needed.
10101 (allocate_storage): Do it here.
10102
f51cb8ff
AD
101032001-12-29 Akim Demaille <akim@epita.fr>
10104
10105 * src/options.h, src/options.c (create_long_option_table): Rename
10106 as...
10107 (long_option_table_new): this, with a clearer prototype.
10108 (percent_table): Remove, unused,
10109 * src/getargs.c (getargs): Adjust.
10110
29e88316
AD
101112001-12-29 Akim Demaille <akim@epita.fr>
10112
10113 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
10114 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
10115 as states.
10116
b9f71f19
AD
101172001-12-29 Akim Demaille <akim@epita.fr>
10118
10119 * src/lalr.c (build_relations): Rename `states' as `states1'.
10120 Sorry, I don't understand exactly what it is, no better name...
10121
1a2b5d37
AD
101222001-12-29 Akim Demaille <akim@epita.fr>
10123
10124 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
10125 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
10126 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
10127 as rules.
10128
1cca533e
AD
101292001-12-29 Akim Demaille <akim@epita.fr>
10130
10131 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
10132 ago.
10133
c03ae966
AD
101342001-12-29 Akim Demaille <akim@epita.fr>
10135
10136 * src/reader.c, src/reader.h (user_toknums): Remove.
10137 Adjust all users to use symbols[i]->user_token_number.
10138
5a670b1e
AD
101392001-12-29 Akim Demaille <akim@epita.fr>
10140
10141 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
10142 Adjust all users to use symbols[i]->prec or ->assoc.
10143
ad949da9
AD
101442001-12-29 Akim Demaille <akim@epita.fr>
10145
10146 * src/reader.c, src/reader.h (tags): Remove.
10147 Adjust all users to use symbols[i]->tag.
10148
0e78e603
AD
101492001-12-29 Akim Demaille <akim@epita.fr>
10150
10151 * src/gram.h, src/gram.c (symbols): New, similar to state_table
10152 and rule_table.
10153 * src/reader.c (packsymbols): Fill this table.
10154 Drop sprec.
10155 * src/conflicts.c (resolve_sr_conflict): Adjust.
10156 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
10157 single table.
10158 Use symbols[i]->tag instead of tags[i].
10159
213e640e
AD
101602001-12-29 Akim Demaille <akim@epita.fr>
10161
10162 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
10163 In addition, put a comment in there, to replace...
10164 * tests/regression.at (%union and C comments): Remove.
10165
e7b8bef1
AD
101662001-12-29 Akim Demaille <akim@epita.fr>
10167
10168 * tests/regression.at (Web2c Actions): Blindly move the actual
10169 output as expected output. The contents *seem* right to me, but I
10170 can't pretend reading perfectly parser tables... Nonetheless, all
10171 the other tests pass correctly, the table look OK, even though the
10172 presence of `$axiom' is to be noted: AFAICS it is useless (but
10173 harmless).
10174
b68e7744
AD
101752001-12-29 Akim Demaille <akim@epita.fr>
10176
10177 * src/reader.c (readgram): Don't add the rule 0 if there were no
10178 rules read. In other words, add it _after_ having performed
10179 grammar sanity checks.
10180 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
10181
78d5bae9
AD
101822001-12-29 Akim Demaille <akim@epita.fr>
10183
10184 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
10185 visible, and some states have now a different number.
10186
ff442794
AD
101872001-12-29 Akim Demaille <akim@epita.fr>
10188
10189 * src/reader.c (readgram): Bind the initial rule's lineno to that
10190 of the first rule.
10191 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
10192 (Solved SR Conflicts): Adjust rule 0's line number.
10193
610ab194
AD
101942001-12-29 Akim Demaille <akim@epita.fr>
10195
10196 Fix the `GAWK Grammar' failure.
10197
10198 * src/LR0.c (final_state): Initialize to -1 so that we do compute
10199 the reductions of the first state which was mistakenly confused
10200 with the final state because precisely final_state was initialized
10201 to 0.
10202 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
10203 now noticed by Bison.
10204 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
10205 have a reduction on $default.
10206
29d29c8f
AD
102072001-12-29 Akim Demaille <akim@epita.fr>
10208
10209 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
10210 rule line numbers.
10211 * src/closure.c (print_closure): Likewise.
10212 * src/derives.c (print_derives): Likewise.
10213 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
10214 now.
10215
7c6b64d0
AD
102162001-12-29 Akim Demaille <akim@epita.fr>
10217
10218 * src/lalr.c (lookaheads_print): New.
10219 (lalr): Call it when --trace-flag.
10220 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
10221 are dumped.
10222
3d4daee3
AD
102232001-12-29 Akim Demaille <akim@epita.fr>
10224
10225 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
10226 when walking through ritem, even via rule->rhs.
10227 * src/reduce.c (dump_grammar, useful_production, reduce_output)
10228 (useful_production, useless_nonterminals): Likewise.
10229 (reduce_grammar_tables): Likewise, plus update nritems.
10230 * src/nullable.c (set_nullable): Likewise.
10231 * src/lalr.c (build_relations): Likewise.
10232 * tests/sets.at (Nullable): Adjust.
10233 Fortunately, now, the $axiom is no longer nullable.
10234
9e7f6bbd
AD
102352001-12-29 Akim Demaille <akim@epita.fr>
10236
10237 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
10238 the 0-sentinel.
10239 * src/gram.c (ritem_longest_rhs): Likewise.
10240 * src/reduce.c (nonterminals_reduce): Likewise.
10241 * src/print_graph.c (print_graph): Likewise.
10242 * src/output.c (output_rule_data): Likewise.
10243 * src/nullable.c (set_nullable): Likewise.
10244
255ef638
AD
102452001-12-29 Akim Demaille <akim@epita.fr>
10246
10247 * src/output.c: Comment changes.
10248
0d8a7363
AD
102492001-12-27 Paul Eggert <eggert@twinsun.com>
10250
10251 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
10252 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
10253 Sparc, as they were causing more porting problems than the
10254 (minor) performance improvement was worth.
10255
10256 Also, catch up with 1.31's YYSTD.
10257
3db472b9
AD
102582001-12-27 Akim Demaille <akim@epita.fr>
10259
10260 * src/output.c (output_gram): Rely on nritems, not the
10261 0-sentinel. See below.
10262 Use -1 as separator, not 0.
10263 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
10264 Rely on -1 as separator in yyrhs, instead of 0.
10265 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
10266 twice `Now at end of input', therefore there are two lines less to
10267 expect.
10268
b365aa05
AD
102692001-12-27 Akim Demaille <akim@epita.fr>
10270
10271 * tests/regression.at (Unresolved SR Conflicts):
10272 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
10273 below.
10274
30171f79
AD
102752001-12-27 Akim Demaille <akim@epita.fr>
10276
10277 * src/LR0.c (new_state): Recognize the final state by the fact it
10278 is reached by eoftoken.
10279 (insert_start_shifting_state, insert_eof_shifting_state)
10280 (insert_accepting_state, augment_automaton): Remove, since now
10281 these states are automatically computed from the initial state.
10282 (generate_states): Adjust.
10283 * src/print.c: When reporting a rule number to the user, substract
10284 1, so that the axiom rule is rule 0, and the first user rule is 1.
10285 * src/reduce.c: Likewise.
10286 * src/print_graph.c (print_core): For the time being, just as for
10287 the report, depend upon --trace-flags to dump the full set of
10288 items.
10289 * src/reader.c (readgram): Once the grammar read, insert the rule
10290 0: `$axiom: START-SYMBOL $'.
10291 * tests/set.at: Adjust: rule 0 is now displayed, and since the
10292 number of the states has changed (the final state is no longer
10293 necessarily the last), catch up.
10294
75142d45
AD
102952001-12-27 Akim Demaille <akim@epita.fr>
10296
10297 Try to make the use of the eoftoken valid. Given that its value
10298 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
10299 is used instead of > 0 where appropriate, (ii), depend upon nritems
10300 instead of the 0-sentinel.
10301
10302 * src/gram.h, src/gram.c (nritems): New.
10303 Expected to be duplication of nitems, but for the time being...
10304 * src/reader.c (packgram): Assert nritems and nitems are equal.
10305 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
10306 * src/closure.c (print_closure, print_fderives): Likewise.
10307 * src/gram.c (ritem_print): Likewise.
10308 * src/print.c (print_core, print_grammar): Likewise.
10309 * src/print_graph.c: Likewise.
10310
b7c49edf
AD
103112001-12-27 Akim Demaille <akim@epita.fr>
10312
10313 * src/main.c (main): If there are complains after grammar
10314 reductions, then output the report anyway if requested, then die.
10315 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
10316 * src/reader.c (eoftoken): New.
10317 (parse_token_decl): If the token being defined has value `0', it
10318 is the eoftoken.
10319 (packsymbols): No longer hack `tags' to insert `$' by hand.
10320 Be sure to preserve the value of the eoftoken.
10321 (reader): Make sure eoftoken is defined.
10322 Initialize nsyms to 0: now eoftoken is created just like the others.
10323 * src/print.c (print_grammar): Don't special case the eof token.
10324 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
10325 lie anyway, albeit pleasant.
10326 * tests/calc.at: Exercise error messages with eoftoken.
10327 Change the grammar so that empty input is invalid.
10328 Adjust expectations.
10329 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
10330
ec2da99f
AD
103312001-12-27 Akim Demaille <akim@epita.fr>
10332
10333 * configure.in: Check the protos of strchr ans strspn.
10334 Replace strchr if needed.
10335 * src/system.h: Provide the protos of strchr, strspn and memchr if
10336 missing.
10337 * lib/strchr.c: New.
10338 * src/reader.c (symbols_save): Use strchr.
10339
8adfa272
AD
103402001-12-27 Akim Demaille <akim@epita.fr>
10341
10342 * src/print.c, src/print_graph.c (escape): New.
10343 Use it to quote the TAGS outputs.
10344 * src/print_graph.c (print_state): Now errors are in red, and
10345 reductions in green.
10346 Prefer high to wide: output the state number on a line of its own.
10347
80dac38c
AD
103482001-12-27 Akim Demaille <akim@epita.fr>
10349
10350 * src/state.h, src/state.c (reductions_new): New.
10351 * src/LR0.c (set_state_table): Let all the states have a
10352 `reductions', even if reduced to 0.
10353 (save_reductions): Adjust.
10354 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
10355 * src/print.c (print_reductions, print_actions): Adjust.
10356 * src/output.c (action_row): Adjust.
10357
2cec70b9
AD
103582001-12-27 Akim Demaille <akim@epita.fr>
10359
10360 * src/state.h, src/state.c (errs_new, errs_dup): New.
10361 * src/LR0.c (set_state_table): Let all the states have an errs,
10362 even if reduced to 0.
10363 * src/print.c (print_errs, print_reductions): Adjust.
10364 * src/output.c (output_actions, action_row): Adjust.
10365 * src/conflicts.c (resolve_sr_conflict): Adjust.
10366
13ca549a
AD
103672001-12-27 Akim Demaille <akim@epita.fr>
10368
10369 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
10370
5092aba5
AD
103712001-12-27 Akim Demaille <akim@epita.fr>
10372
10373 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
10374 * src/print.c: here.
10375 (lookaheadset, shiftset): New, used as additional storage by
10376 print_reductions.
10377 (print_results): Adjust.
10378 (print_shifts, print_gotos, print_errs): New, extracted from...
10379 (print_actions): here.
10380 * src/print_graph.c (print_actions): Remove dead code.
10381
11e2beca
AD
103822001-12-27 Akim Demaille <akim@epita.fr>
10383
10384 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
10385 `$n' and `@n'.
10386
dac3c910
AD
103872001-12-27 Akim Demaille <akim@epita.fr>
10388
10389 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
10390 (build_relations): Adjust.
10391
d0b0fefa
AD
103922001-12-27 Akim Demaille <akim@epita.fr>
10393
10394 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
10395 duplication.
10396
adc8c848
AD
103972001-12-27 Akim Demaille <akim@epita.fr>
10398
10399 * src/reader.c (packgram): Catch nitems overflows.
10400
14d293ac
AD
104012001-12-27 Akim Demaille <akim@epita.fr>
10402
10403 * src/files.c, src/files.h (guard_obstack): Remove.
10404 * src/output.c (output): Adjust.
10405 * src/reader.c (parse_braces): New, factoring...
10406 (copy_action, copy_guard): these two which are renamed as...
10407 (parse_action, parse_guard): these.
10408 As a voluntary consequence, using braces around guards is now
10409 mandatory.
10410
f499b062
AD
104112001-12-27 Akim Demaille <akim@epita.fr>
10412
10413 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
10414 * src/reader.c (symbol_list): `guard' and `guard_line' are new
10415 members.
10416 (symbol_list_new): Adjust.
10417 (copy_action): action_line is the first line, not the last.
10418 (copy_guard): Just as for actions, store the `action' only, not
10419 the switch/case/break flesh.
10420 Don't parse the user action that might follow the guard, let...
10421 (readgram): do it, i.e., now, there can be an action after a
10422 guard.
10423 In other words the guard is just explicitly optional.
10424 (packgram): Adjust.
10425 * src/output.c (guards_output): New.
10426 (output_parser): Call it when needed.
10427 (output): Also free the guard and attrs obstacks.
10428 * src/files.c, src/files.h (obstack_save): Remove.
10429 (output_files): Remove.
10430 As a result, if one needs the former `.act' file, using an
10431 appropriate skeleton which requires actions and guards is now
10432 required.
10433 * src/main.c (main): Adjust.
10434 * tests/semantic.at: New.
10435 * tests/regression.at: Use `input.y' as input file name.
10436 Avoid 8+3 problems by requiring input.c when the test needs the
10437 parser.
10438
d945f5cd
AD
104392001-12-27 Akim Demaille <akim@epita.fr>
10440
10441 * src/reader.c (symbol_list_new): Be sure to initialize all the
10442 fields.
10443
d200e455
AD
104442001-12-27 Akim Demaille <akim@epita.fr>
10445
10446 All the hacks using a final pseudo state are now useless.
10447
10448 * src/LR0.c (set_state_table): state_table holds exactly nstates.
10449 * src/lalr.c (nLA): New.
10450 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
10451 instead of lookaheadsp from the pseudo state (nstate + 1).
10452
f9507c28
AD
104532001-12-27 Akim Demaille <akim@epita.fr>
10454
10455 * src/output.c (action_row, token_actions): Use a state_t instead
10456 of a integer, and nlookaheads instead of the following state's
10457 lookaheadsp.
10458
065fbd27
AD
104592001-12-27 Akim Demaille <akim@epita.fr>
10460
10461 * src/conflicts.c (log_resolution, flush_shift)
10462 (resolve_sr_conflict, set_conflicts, solve_conflicts)
10463 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
10464 (conflicts_print, print_reductions): Use a state_t instead of an
10465 integer when referring to a state.
10466 As much as possible, depend upon nlookaheads, instead of the
10467 `lookaheadsp' member of the following state (since lookaheads of
10468 successive states are successive, the difference between state n + 1
10469 and n served as the number of lookaheads for state n).
10470 * src/lalr.c (add_lookback_edge): Likewise.
10471 * src/print.c (print_core, print_actions, print_state)
10472 (print_results): Likewise.
10473 * src/print_graph.c (print_core, print_actions, print_state)
10474 (print_graph): Likewise.
10475 * src/conflicts.h: Adjust.
10476
1b177bd7
AD
104772001-12-27 Akim Demaille <akim@epita.fr>
10478
10479 * src/bison.hairy: Formatting/comment changes.
10480 ANSIfy.
10481 Remove `register' indications.
10482 Add plenty of `static'.
10483
7742ddeb
AD
104842001-12-27 Akim Demaille <akim@epita.fr>
10485
10486 * src/output.c (prepare): Drop the muscle `ntbase' which
10487 duplicates ntokens.
10488 * src/bison.simple: Formatting/comment changes.
10489 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
10490 is an undocumented synonym.
10491
1fa14068
AD
104922001-12-22 Akim Demaille <akim@epita.fr>
10493
10494 * src/output.c (output_table_data): Change the prototype to use
10495 `int' for array ranges: some invocations do pass an int, not a
10496 short.
10497 Reported by Wayne Green.
10498
b9752825
AD
104992001-12-22 Akim Demaille <akim@epita.fr>
10500
10501 Some actions of web2c.y are improperly triggered.
10502 Reported by Mike Castle.
10503
10504 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
10505 * tests/regression.at (Web2c): Rename as...
10506 (Web2c Report): this.
10507 (Web2c Actions): New.
10508
776209d6
AD
105092001-12-22 Akim Demaille <akim@epita.fr>
10510
10511 Reductions in web2c.y are improperly reported.
10512 Reported by Mike Castle.
10513
10514 * src/conflicts.c (print_reductions): Fix.
10515 * tests/regression.at (Web2c): New.
10516
275fc3ad
AD
105172001-12-18 Akim Demaille <akim@epita.fr>
10518
10519 Some host fail on `assert (!"foo")', which expands to
10520 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
10521 Reported by Nelson Beebee.
10522
10523 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
10524 `#define it_succeeded 0' and `assert (it_succeeded)'.
10525
897668ee
MA
105262001-12-17 Marc Autret <autret_m@epita.fr>
10527
10528 * src/bison.simple: Don't hard code the skeleton line and filename.
10529 * src/output.c (output_parser): Rename 'line' as 'output_line'.
10530 New line counter 'skeleton_line' (skeleton-line muscle).
10531
ab3399e0
PE
105322001-12-17 Paul Eggert <eggert@twinsun.com>
10533
10534 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
10535 YYDEBUG must be defined to a nonzero value.
10536
10537 * src/bison.simple (yytname): Do not assume that the user defines
10538 YYDEBUG to a properly parenthesized expression.
10539
3877f72b
AD
105402001-12-17 Akim Demaille <akim@epita.fr>
10541
10542 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
10543 nlookaheads is a new member.
10544 Adjust all users.
10545 * src/lalr.h (nlookaheads): Remove this orphan declaration.
10546 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
10547 state.
776209d6 10548
331dbc1b
AD
105492001-12-17 Akim Demaille <akim@epita.fr>
10550
10551 * src/files.h, src/files.c (open_files, close_files): Remove.
10552 * src/main.c (main): Don't open/close files, nor invoke lex_free,
10553 let...
10554 * src/reader.c (reader): Do it.
776209d6 10555
be750e4c
AD
105562001-12-17 Akim Demaille <akim@epita.fr>
10557
10558 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 10559
709ae8c6
AD
105602001-12-17 Akim Demaille <akim@epita.fr>
10561
10562 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
10563 (flush_reduce): New.
10564 (resolve_sr_conflict): Adjust.
776209d6 10565
f87685c3
AD
105662001-12-17 Akim Demaille <akim@epita.fr>
10567
10568 * src/output.c (output_obstack): Be static and rename as...
10569 (format_obstack): this, to avoid any confusion with files.c's
10570 output_obstack.
10571 * src/reader.h (muscle_obstack): Move to...
10572 * src/output.h: here, since it's defined in output.c.
10573
837491d8
AD
105742001-12-17 Akim Demaille <akim@epita.fr>
10575
10576 * src/output.c (action_row, save_column, default_goto)
10577 (sort_actions, matching_state, pack_vector): Better variable
10578 locality.
10579
796d61fb
AD
105802001-12-17 Akim Demaille <akim@epita.fr>
10581
10582 * src/output.c: Various formatting changes.
776209d6 10583
64d15509
AD
105842001-12-17 Akim Demaille <akim@epita.fr>
10585
10586 * src/files.c (output_files): Free the output_obstack.
10587 * src/main.c (main): Call print and print_graph conditionally.
10588 * src/print.c (print): Work unconditionally.
10589 * src/print_graph.c (print_graph): Work unconditionally.
10590 * src/conflicts.c (log_resolution): Output only if verbose_flag.
10591
fbc8ecb7
MA
105922001-12-16 Marc Autret <autret_m@epita.fr>
10593
10594 * src/output.c (actions_output): Fix. When we use %no-lines,
10595 there is one less line per action.
10596
f0440388
MA
105972001-12-16 Marc Autret <autret_m@epita.fr>
10598
10599 * src/bison.simple: Remove a useless #line directive.
10600 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
10601 * src/output.c (get_lines_number): New.
776209d6 10602 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
10603 output muscles.
10604 Fix line numbering.
10605 (actions_output): Computes the number of lines taken by actions.
10606 (output_master_parser): Insert new skeleton which is the name of
10607 the output parser file name.
10608
a79986b8
MA
106092001-12-15 Marc Autret <autret_m@epita.fr>
10610
10611 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
10612
4ec8e00f
MA
106132001-12-15 Marc Autret <autret_m@epita.fr>
10614
10615 * src/output.c (output_gram): Keep track of the hairy one.
10616
1a4648ff
AD
106172001-12-15 Akim Demaille <akim@epita.fr>
10618
10619 Make `make distcheck' work.
10620
10621 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
10622 system.h which uses libgettext.h.
10623
9c2c67e6
AD
106242001-12-15 Akim Demaille <akim@epita.fr>
10625
10626 * src/nullable.c (set_nullable): Useless rules must be skipped,
10627 otherwise, since we range over their symbols, we might look at a
10628 nonterminal which no longer ``exists'', i.e., it is not counted in
10629 `nvars', hence we overflow our arrays.
10630
93ede233
AD
106312001-12-15 Akim Demaille <akim@epita.fr>
10632
10633 The header can also be produced directly, without any obstack!
10634 Yahoo!
10635
10636 * src/files.c, src/files.h (defines_obstack): Remove.
10637 (compute_header_macro): Global.
10638 (defines_obstack_save): Remove.
10639 * src/reader.c (parse_union_decl): No longer output to
10640 defines_obstack: its content can be found in the `stype' muscle
10641 anyway.
10642 (output_token_translations): Merge into...
10643 (symbols_output): this.
10644 Rename as...
10645 (symbols_save): this.
10646 (reader): Adjust.
10647 * src/output.c (header_output): New.
10648 (output): Call it.
10649
2666f928
AD
106502001-12-15 Akim Demaille <akim@epita.fr>
10651
10652 * src/reader.c (parse_union_decl): Instead of handling two obstack
10653 simultaneously, use one to define the `stype' muscle, and use the
10654 value of the latter to fill defines_obstack.
10655 (copy_comment): Remove.
10656 (copy_comment2): Work for a single obstack.
10657 Rename as...
10658 (copy_comment): this.
10659
428046f8
AD
106602001-12-15 Akim Demaille <akim@epita.fr>
10661
10662 * src/lex.c, src/lex.h (xgetc): No longer static.
10663 * src/reader.c (parse_union_decl): Revamp.
10664
ea52d706
AD
106652001-12-15 Akim Demaille <akim@epita.fr>
10666
10667 Still making progress in separating Bison into (i) input, (ii)
10668 process, (iii) output: now we can directly output the parser file
10669 without using table_obstack at all.
10670
10671 * src/files.c, src/files.h (table_obstack): Bye bye.
10672 (parser_file_name): New.
10673 * src/files.c (compute_output_file_names): Compute it.
10674 * src/output.c (actions_output, output_parser)
10675 (output_master_parser): To a file instead of an obstack.
10676
3f96f4dc
AD
106772001-12-15 Akim Demaille <akim@epita.fr>
10678
10679 Attach actions to rules, instead of pre-outputting them to
10680 actions_obstack.
10681
10682 * src/gram.h (rule_t): action and action_line are new members.
10683 * src/reader.c (symbol_list): Likewise.
10684 (copy_action): Save the actions within the rule.
10685 (packgram): Save them in rule_table.
10686 * src/output.c (actions_output): New.
10687 (output_parser): Use it on `%%actions'.
10688 (output_rule_data): Don't free rule_table.
10689 (output): Do it.
10690 (prepare): Don't save the `action' muscle.
10691 * src/bison.simple: s/%%action/%%actions/.
10692
51576fb3
AD
106932001-12-15 Akim Demaille <akim@epita.fr>
10694
10695 * src/reader.c (copy_action): When --yacc, don't append a `;'
10696 to the user action: let it fail if lacking.
dee049eb 10697 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 10698
2648a72d
AD
106992001-12-14 Akim Demaille <akim@epita.fr>
10700
10701 * src/lex.c (literalchar): Simply return the char you decoded, non
10702 longer mess around with obstacks and int pointers.
10703 Adjust all callers.
10704
92790e5b
AD
107052001-12-14 Akim Demaille <akim@epita.fr>
10706
10707 * src/lex.c (literalchar): Don't escape the special characters,
10708 just decode them, and keep them as char (before, eol was output as
10709 the 2 char string `\n' etc.).
10710 * src/output.c (output_rule_data): Use quotearg to output the
10711 token strings.
10712
927c1557
PE
107132001-12-13 Paul Eggert <eggert@twinsun.com>
10714
10715 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
10716 Do not infringe on the global user namespace when using C++.
10717 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
10718 All uses of `fprintf' and `stderr' changed.
10719
10720 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
10721
ed8e1f68
AD
107222001-12-13 Akim Demaille <akim@epita.fr>
10723
10724 The computation of nullable is broken: it doesn't handle empty
10725 RHS's properly.
10726
10727 * tests/torture.at (GNU AWK Grammar): New.
10728 * tests/sets.at (Nullable): New.
10729 * src/nullable.c (set_nullable): Instead of blindly looping over
10730 `ritems', loop over the rules, and then over their rhs's.
10731
10732 Work around Autotest bugs.
10733
10734 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
10735 frame, because Autotest understand lines starting with a `+' as
10736 traces from the shell. Then, they are not processed properly.
10737 Admittedly an Autotest bug, but we don't have time to wait for
10738 Autotest to catch up.
10739 * tests/regression.at (Broken Closure): Adjust to the new table
10740 frames.
10741 Move to...
10742 * tests/sets.at: here.
10743
cb581495
AD
107442001-12-13 Akim Demaille <akim@epita.fr>
10745
10746 * src/closure.c (closure): Use nrules instead of playing tricks
10747 with BITS_PER_WORD.
10748
2e729273
AD
107492001-12-13 Akim Demaille <akim@epita.fr>
10750
10751 * src/print.c (print_actions): Output the handling of `$' as the
10752 traces do: shifting the token EOF. Before EOF was treated as a
10753 nonterminal.
10754 * tests/regression.at: Adjust some tests.
10755 * src/print_graph.c (print_core): Complete the set of items via
10756 closure. The next-to-final and final states are still unsatisfying,
10757 but that's to be addressed elsewhere.
10758 No longer output the rule numbers, but do output the state number.
10759 A single loop for the shifts + gotos is enough, but picked a
10760 distinct color for each.
10761 (print_graph): Initialize and finalize closure.
10762
107f7dfb
AD
107632001-12-13 Akim Demaille <akim@epita.fr>
10764
10765 * src/reader.c (readgram): Remove dead code, an strip useless
10766 braces.
10767 (get_type): Remove, unused.
10768
9b53a24f
AD
107692001-12-12 Akim Demaille <akim@epita.fr>
10770
10771 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
10772 on that of lib/error.c.
10773
dbfb6dcd
AD
107742001-12-12 Akim Demaille <akim@epita.fr>
10775
10776 Some hosts don't like `/' in includes.
10777
10778 * src/system.h: Include libgettext.h without qualifying the path.
10779 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
10780 $(top_srcdir).
10781
c25fb648
MA
107822001-12-11 Marc Autret <autret_m@epita.fr>
10783
10784 * src/output.c (output_parser): Remove useless muscle.
10785
710ddc4f
MA
107862001-12-11 Marc Autret <autret_m@epita.fr>
10787
10788 * src/bison.simple: Remove #line just before %%epilogue. It
10789 is now handled in ...
10790 * src/reader.c (read_additionnal_code): Add the output of a
10791 #line for the epilogue.
10792
e83d80b8
MA
107932001-12-10 Marc Autret <autret_m@epita.fr>
10794
927c1557 10795 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
10796 replace precedent remove.
10797 * src/bison.simple: Remove #line before %%prologue because
10798 %%input-line is wrong at this time.
10799
971d5158
MA
108002001-12-10 Marc Autret <autret_m@epita.fr>
10801
10802 * src/reader.c (symbols_output): Clean up.
927c1557 10803 * src/output.c (output_gram, output): Clean up.
971d5158 10804
5edafffd
AD
108052001-12-10 Akim Demaille <akim@epita.fr>
10806
10807 * src/lalr.c (initialize_lookaheads): New. Extracted from...
10808 * src/LR0.c (set_state_table): here.
10809 * src/lalr.c (lalr): Call it.
10810
0279f8e9
AD
108112001-12-10 Akim Demaille <akim@epita.fr>
10812
10813 * src/state.h (shifts): Remove the `number' member: shifts are
10814 attached to state, hence no longer need to be labelled with a
10815 state number.
10816
190c4f5f
AD
108172001-12-10 Akim Demaille <akim@epita.fr>
10818
10819 Now that states have a complete set of members, the linked list of
10820 shifts is useless: just fill directly the state's shifts member.
10821
10822 * src/state.h (shifts): Remove the `next' member.
10823 * src/LR0.c (first_state, last_state): Remove.
10824 Adjust the callers.
10825 (augment_automaton): Don't look for the shifts that must be added
10826 a shift on EOF: it is those of the state we looked for! But now,
10827 since shifts are attached, it is no longer needed to looking
10828 merely by its id: its number.
10829
2a73b93d
AD
108302001-12-10 Akim Demaille <akim@epita.fr>
10831
10832 * src/LR0.c (augment_automaton): Better variable locality.
10833 Remove an impossible branch: if there is a state corresponding to
10834 the start symbol being shifted, then there is shift for the start
10835 symbol from the initial state.
10836
74392f6a
AD
108372001-12-10 Akim Demaille <akim@epita.fr>
10838
10839 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
10840 only when appropriate: when insert_start_shifting_state' is not
10841 invoked.
10842 * tests/regression.at (Rule Line Numbers): Adjust.
10843
37c82725
AD
108442001-12-10 Akim Demaille <akim@epita.fr>
10845
10846 * src/LR0.c (augment_automaton): Now that all states have shifts,
10847 merge the two cases addition shifts to the initial state.
10848
6a164e0c
AD
108492001-12-10 Akim Demaille <akim@epita.fr>
10850
10851 * src/lalr.c (set_state_table): Move to...
10852 * src/LR0.c: here.
10853 * src/lalr.c (lalr): Don't call it...
10854 * src/LR0.c (generate_states): do it.
10855 * src/LR0.h (first_state): Remove, only the table is used.
10856
7215de24
AD
108572001-12-10 Akim Demaille <akim@epita.fr>
10858
10859 * src/LR0.h (first_shift, first_reduction): Remove.
10860 * src/lalr.c: Don't use first_shift: find shifts through the
10861 states.
10862
80e25d4d
AD
108632001-12-10 Akim Demaille <akim@epita.fr>
10864
10865 * src/LR0.c: Attach shifts to states as soon as they are
10866 computed.
10867 * src/lalr.c (set_state_table): Instead of assigning shifts to
10868 state, just assert that the mapping was properly done.
10869
0ab3728b
AD
108702001-12-10 Akim Demaille <akim@epita.fr>
10871
10872 * src/LR0.c (insert_start_shift): Rename as...
10873 (insert_start_shifting_state): this.
10874 (insert_eof_shifting_state, insert_accepting_state): New.
10875 (augment_automaton): Adjust.
10876 Better locality of the variables.
10877 When looking if the start_symbol is shifted from the initial
10878 state, using `while (... symbol != start_symbol ...)' sounds
10879 better than `while (... symbol < start_symbol ...)': If fail
10880 to see how the order between symbols could be relevant!
10881
78af9bbc
AD
108822001-12-10 Akim Demaille <akim@epita.fr>
10883
10884 * src/getargs.h: Don't declare `spec_name_prefix' and
10885 `spec_file_prefix', declared by src/files.h.
10886 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
10887 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
10888 * src/output.c (prepare): Adjust.
10889 * src/reader.c (symbols_output): Likewise.
10890 * src/vmsgetargs.c: Vaguely adjust, but who cares?
10891
bdef2a41
AD
108922001-12-10 Akim Demaille <akim@epita.fr>
10893
10894 * src/muscle_tab.c (muscle_init): NULL is a better default than
10895 `"0"'.
10896
3735969c
AD
108972001-12-10 Akim Demaille <akim@epita.fr>
10898
10899 * src/reader.c (reader): Calling symbols_output once is enough.
10900
49701457
AD
109012001-12-10 Akim Demaille <akim@epita.fr>
10902
10903 Now that states have a complete set of members, the linked list of
10904 reductions is useless: just fill directly the state's reductions
10905 member.
10906
10907 * src/state.h (struct reductions): Remove member `number' and
10908 `next'.
10909 * src/LR0.c (first_reduction, last_reduction): Remove.
10910 (save_reductions): Don't link the new reductions, store them in
10911 this_state.
10912 * src/lalr.c (set_state_table): No need to attach reductions to
10913 states, it's already done.
10914 * src/output.c (output_actions): No longer free the shifts, then
10915 the reductions, then the states: free all the states and their
10916 members.
10917
0edad749
AD
109182001-12-10 Akim Demaille <akim@epita.fr>
10919
10920 * src/options.c (OPTN, DRTV, BOTH): New.
10921 (option_table): Use them.
10922
0edad749
AD
10923 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
10924 the job of system.h.
10925 * src/options.c: Don't include stdio.h and xalloc.h for the same
10926 reasons.
10927
5449dd0f
AD
109282001-12-10 Akim Demaille <akim@epita.fr>
10929
10930 * src/output.c (output, prepare): Make sure the values of the
10931 muscles `action' and `prologue' are 0-terminated.
10932
a870c567
AD
109332001-12-10 Akim Demaille <akim@epita.fr>
10934
10935 Clean up GCC warnings.
10936
10937 * src/reader.c (copy_action): `buf' is not used.
10938 (parse_skel_decl): Be static.
10939 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
10940 * src/options.h (create_long_option_table): Have a real prototype.
10941 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
10942 (hash_delete_at): Return const void *.
10943 Adjust casts to preserve the const.
10944
80df8768
AD
109452001-12-10 Akim Demaille <akim@epita.fr>
10946
10947 * configure.in: Require 2.52g.
10948 M4 is not needed, but AUTOM4TE is.
10949 * m4/m4.m4: Remove.
10950 * tests/Makefile.am: Adjust.
10951
f693ad14
AD
109522001-12-10 Akim Demaille <akim@epita.fr>
10953
10954 One structure for states is enough, even though theoretically
10955 there are LR(0) states and LALR(1) states.
10956
10957 * src/lalr.h (state_t): Remove.
10958 (state_table): Be state_t **, not state_t *.
10959 * src/state.h (core, CORE_ALLOC): Rename as...
10960 (state_t, STATE_ALLOC): this.
10961 Add the LALR(1) members: shifts, reductions, errs.
10962 * src/LR0.c (state_table): Rename as...
10963 (state_hash): this, to avoid name clashes with the global
10964 `state_table'.
10965 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
10966 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
10967
74ffbcb6
AD
109682001-12-10 Akim Demaille <akim@epita.fr>
10969
10970 Bison dumps core on bash.y.
10971 Reported by Pascal Bart.
10972
10973 * src/warshall.c (bitmatrix_print): New.
10974 (TC): Use it.
ba0fe3c7 10975 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
10976 j must be the outer loop.
10977 * tests/regression.at (Broken Closure): New.
10978
07708e19
AD
109792001-12-05 Akim Demaille <akim@epita.fr>
10980
10981 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
10982 its argument.
ba1ecc07 10983 Reported by Peter Hamorsky.
07708e19 10984
92b16366
AD
109852001-12-05 Akim Demaille <akim@epita.fr>
10986
10987 * src/conflicts.c (err_table): Remove.
10988 (resolve_sr_conflict): Adjust.
10989 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
10990 Rename as...
10991 (state_t.reductions, state_t.shifts): this.
10992
076ab033
AD
109932001-12-05 Akim Demaille <akim@epita.fr>
10994
10995 * src/reduce.c (reduce_grammar_tables): No longer disable the
10996 removal of useless rules via CPP but via `if (0)', so that the
10997 compiler still check the code is valid.
10998 For instance, it should have noticed `rline' no longer exists: use
10999 the `line' member of rule_t.
11000 * src/gram.c (dummy, rline): Remove, unused.
11001
3843c413
AD
110022001-12-05 Akim Demaille <akim@epita.fr>
11003
11004 * src/output.c (pack_vector): Use assert, not berror.
11005 * src/main.c (berror): Remove, unused.
11006
43168960
AD
110072001-12-05 Akim Demaille <akim@epita.fr>
11008
11009 New experimental feature: if --verbose --trace output all the
11010 items of a state, not only its kernel.
11011
11012 * src/print.c (print_core): If `trace_flag', then invoke closure
11013 before outputting the items of the state (print_core is no longer
11014 a correct name them).
11015 (print_results): Invoke new_closure/free_closure if needed.
11016
b2872512
AD
110172001-12-05 Akim Demaille <akim@epita.fr>
11018
11019 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
11020 * src/closure.c, src/closure.h (itemsetsize): Rename as...
11021 (nitemset): for consistency with the rest of the project.
11022
23cbcc6c
AD
110232001-12-05 Akim Demaille <akim@epita.fr>
11024
11025 * src/closure.c (print_closure): Improve.
11026 (closure): Use it for printing input and output.
11027
03ec521c
AD
110282001-12-05 Akim Demaille <akim@epita.fr>
11029
11030 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
11031 indexed by nonterminals.
11032
3a7456dd
AD
110332001-12-05 Akim Demaille <akim@epita.fr>
11034
11035 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
11036 what it was!).
11037 * src/warshall.h: Remove accidental duplication of the content.
11038
1cbcf2e7
AD
110392001-12-05 Akim Demaille <akim@epita.fr>
11040
11041 * src/closure.c (set_fderives): De-obfuscate.
11042
84182270
AD
110432001-12-05 Akim Demaille <akim@epita.fr>
11044
11045 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
11046
3f6f053c
AD
110472001-12-05 Akim Demaille <akim@epita.fr>
11048
11049 * src/closure.c (set_firsts): De-obfuscate.
11050
7a5350ba
AD
110512001-12-05 Akim Demaille <akim@epita.fr>
11052
11053 * src/output.c (action_row): De-obfuscate
11054 using the good o' techniques: arrays not pointers, variable
11055 locality, BITISSET, RESETBIT etc.
11056
d954473d
AD
110572001-12-05 Akim Demaille <akim@epita.fr>
11058
11059 Pessimize the code to simplify it: from now on, all the states
11060 have a valid SHIFTS, which NSHIFTS is possibly 0.
11061
11062 * src/LR0.c (shifts_new): Be global and move to..
11063 * src/state.c, src/state.h: here.
11064 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
11065 * src/print_graph: Adjust.
11066
9839bbe5
AD
110672001-12-05 Akim Demaille <akim@epita.fr>
11068
11069 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
11070 * src/conflicts.c: Use it.
11071 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
11072 incorrectly ``simplified''.
11073
9f136c07
AD
110742001-12-05 Akim Demaille <akim@epita.fr>
11075
11076 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
11077 using the good o' techniques: arrays not pointers, variable
11078 locality, BITISSET, RESETBIT etc.
11079
b608206e
AD
110802001-12-05 Akim Demaille <akim@epita.fr>
11081
11082 * src/state.h (SHIFT_SYMBOL): New.
11083 * src/conflicts.c: Use it to deobfuscate.
11084
52afa962
AD
110852001-12-05 Akim Demaille <akim@epita.fr>
11086
11087 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
11088 (print_reductions): De-obfuscate using the good o' techniques:
11089 arrays not pointers, variable locality, BITISSET.
11090
e74dc321
AD
110912001-12-05 Akim Demaille <akim@epita.fr>
11092
11093 * src/conflicts.c (print_reductions): Arrays, not pointers.
11094 Use BITISSET.
11095
768fca83
AD
110962001-12-05 Akim Demaille <akim@epita.fr>
11097
11098 * src/conflicts.c (print_reductions): Pessimize, but clarify.
11099
a17e599f
AD
111002001-12-05 Akim Demaille <akim@epita.fr>
11101
11102 * src/conflicts.c (print_reductions): Improve variable locality.
11103
a04bc341
AD
111042001-12-05 Akim Demaille <akim@epita.fr>
11105
11106 * src/conflicts.c (print_reductions): Pessimize, but clarify.
11107
c8ea038e
AD
111082001-12-05 Akim Demaille <akim@epita.fr>
11109
11110 * src/conflicts.c (print_reductions): Improve variable locality.
11111
aa2aab3c
AD
111122001-12-05 Akim Demaille <akim@epita.fr>
11113
11114 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
11115 * src/lalr.c: Use them.
11116
b178c8cc
AD
111172001-12-05 Akim Demaille <akim@epita.fr>
11118
11119 * src/LR0.c (augment_automaton): Formatting changes.
11120 Better variable locality.
11121
f67d13aa
AD
111222001-12-05 Akim Demaille <akim@epita.fr>
11123
11124 * src/lalr.c (matrix_print): New.
11125 (transpose): Use it.
11126 Use arrays instead of pointers.
11127
c2713865
AD
111282001-12-05 Akim Demaille <akim@epita.fr>
11129
11130 * src/lalr.c (maxrhs): Move to...
11131 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
11132 * src/lalr.c (build_relations): Adjust.
11133
9887c18a
AD
111342001-12-05 Akim Demaille <akim@epita.fr>
11135
11136 * src/lalr.c (transpose): Free the memory allocated to the
11137 argument, as it is replaced by the results by the unique caller.
11138 (build_relations): Merely invoke transpose: it handles the memory
11139 deallocation.
11140 Improve variable locality.
11141 Avoid variables used as mere abbreviations.
11142 (compute_lookaheads): Use arrays instead of pointers.
11143
4d4f699c
AD
111442001-12-05 Akim Demaille <akim@epita.fr>
11145
11146 * src/lalr.c (initialize_F): Improve variable locality.
11147 Avoid variables used as mere abbreviations.
11148
80a69750
AD
111492001-12-05 Akim Demaille <akim@epita.fr>
11150
11151 * src/derives.c (print_derives): Display the ruleno.
11152 * src/lalr.c (initialize_F, transpose): Better variable locality
11153 to improve readability.
11154 Avoid variables used as mere abbreviations.
11155
fe961097
AD
111562001-12-05 Akim Demaille <akim@epita.fr>
11157
11158 * src/lalr.c (traverse): Use arrays instead of pointers.
11159
e3e4e814
AD
111602001-12-05 Akim Demaille <akim@epita.fr>
11161
11162 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
11163 the handling of squeue.
11164 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
11165
630e182b
AD
111662001-12-05 Akim Demaille <akim@epita.fr>
11167
11168 Because useless nonterminals are now kept alive (instead of being
11169 `destroyed'), we now sometimes examine them, and store information
11170 related to them. Hence we need to know their number, and adjust
11171 memory allocations.
11172
11173 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
11174 static.
11175 * src/LR0.c (allocate_itemsets): The memory allocated to
11176 `symbol_count' was used for two different purpose: once to count
11177 the number of occurrences of each symbol, and later reassigned to
11178 `shift_symbol', containing the symbol that can be shifted from a
11179 given state.
11180 Deobfuscate, i.e., allocate, use and free `symbol_count' here
11181 only, and...
11182 (new_itemsets): Allocate `shift_symbol' here.
11183 (allocate_itemsets): symbol_count includes useless nonterminals.
11184 Make room for them.
11185 (free_storage): Use `free', not `XFREE', for pointers that cannot
11186 be null.
11187
81b51460
AD
111882001-12-05 Akim Demaille <akim@epita.fr>
11189
11190 * src/nullable.c (set_nullable): Deobfuscate the handling of
11191 ritem.
11192 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
11193
3067fbef
AD
111942001-12-05 Akim Demaille <akim@epita.fr>
11195
11196 * src/gram.c, src/gram.h (ritem_print): New.
11197 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
11198 (This useless function was defined only to work around VMS linkers
11199 that can't handle compilation units with variables only).
11200 * src/reduce.c (dump_grammar): Use it to trace the construction of
11201 ritem.
11202
c2bea5f9
PE
112032001-12-04 Paul Eggert <eggert@twinsun.com>
11204
7d27c823
PE
11205 * src/bison.simple (union yyalloc): Change member names
11206 to be the same as the stack names.
11207 (yyparse): yyptr is now union yyalloc *, not char *.
11208 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
11209 and may generate better code on some machines.
c2bea5f9
PE
11210 (yystpcpy): Use prototype if __STDC__ is defined, not just
11211 if __cplusplus is defined.
35687a9d 11212
2c8a9dfa
AD
112132001-11-30 Akim Demaille <akim@epita.fr>
11214
11215 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
11216 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
11217 Gettext doesn't compile cleanly, and dies with -Werror.
11218 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
11219 Include WARNING_CFLAGS here.
11220 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
11221 before being defined.
11222
f4e421e6
AD
112232001-11-27 Paul Eggert <eggert@twinsun.com>
11224
11225 * lib/quotearg.h (quotearg_n, quotearg_n_style):
11226 First arg is int, not unsigned.
11227 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
11228 (SIZE_MAX, UINT_MAX): New macros.
11229 (quotearg_n_options): Abort if N is negative.
11230 Avoid overflow check on hosts where size_t is 64 bits and int
11231 is 32 bits, as overflow is impossible there.
11232 Fix off-by-one typo that caused unnecessary reallocation.
11233
7093d0f5
AD
112342001-11-29 Paul Eggert <eggert@twinsun.com>
11235
11236 Name space cleanup in generated parser.
11237
11238 * doc/bison.texinfo (Bison Parser): Discuss system headers
11239 and their effect on the user name space.
11240
11241 * src/bison.simple:
11242 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
11243 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
11244 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
11245
11246 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
11247 on user names when possible.
11248
11249 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
11250 Simplify test for whather <alloca.h> exists.
11251
11252 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
11253
11254 (<stdio.h>): Include if YYDEBUG.
11255
11256 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
11257 ! defined (yyoverflow) && ! defined (yymemcpy).
11258
11259 (yymemcpy, yyparse): Rename local variables as needed so that
11260 they all begin with 'yy'.
11261
11262 (yystrlen, yystpcpy): New functions.
11263
11264 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
11265 All uses changed.
11266
11267 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
11268 instead of relying on string.h functions. Use YYSTACK_ALLOC
11269 and YYSTACK_FREE instead of malloc and free.
11270
fd51e5ff
AD
112712001-11-30 Akim Demaille <akim@epita.fr>
11272
11273 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
11274 before their first uses.
11275 (YYBISON, YYPURE): Move to the top of the output.
11276
7d13ff5f
AD
112772001-11-30 Akim Demaille <akim@epita.fr>
11278
11279 * tests/reduce.at (Useless Nonterminals): Fix.
11280
892a3995
AD
112812001-11-30 Akim Demaille <akim@epita.fr>
11282
11283 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
11284 if body instead of `;' to pacify GCC's warnings.
11285
68f1e3ed
AD
112862001-11-30 Akim Demaille <akim@epita.fr>
11287
11288 Instead of mapping the LHS of unused rules to -1, keep the LHS
11289 valid, but flag the rules as invalid.
11290
11291 * src/gram.h (rule_t): `useful' is a new member.
11292 * src/print.c (print_grammar): Adjust.
11293 * src/derives.c (set_derives): Likewise.
11294 * src/reader.c (packgram, reduce_output): Likewise.
11295 * src/reduce.c (reduce_grammar_tables): Likewise.
11296 * tests/reduce.at (Underivable Rules, Useless Rules): New.
11297
d2d1b42b
AD
112982001-11-30 Akim Demaille <akim@epita.fr>
11299
11300 * src/reduce.c (reduce_output): Formatting changes.
11301 * src/print.c (print_results, print_grammar): Likewise.
11302 * tests/regression.at (Rule Line Numbers)
11303 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
11304
760b53a8
AD
113052001-11-30 Akim Demaille <akim@epita.fr>
11306
11307 * src/reduce.c (nonterminals_reduce): Instead of throwing away
11308 useless nonterminals, move them at the end of the symbol arrays.
11309 (reduce_output): Adjust.
11310 * tests/reduce.at (Useless Nonterminals): Adjust.
11311
00238958
AD
113122001-11-30 Akim Demaille <akim@epita.fr>
11313
11314 * src/reduce.c: Various comment/formatting changes.
11315 (nonterminals_reduce): New, extracted from...
11316 (reduce_grammar_tables): here.
11317 (reduce_grammar): Call nonterminals_reduce.
11318
396452de
PE
113192001-11-29 Paul Eggert <eggert@twinsun.com>
11320
11321 * src/bison.simple (YYSTACK_REALLOC): Remove.
11322 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
11323 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
11324 New macros.
11325 (union yyalloc): New type.
11326 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
11327 an arbitrary restriction on hosts where size_t is wider than int.
11328
11329 (yyparse): Don't dump core if alloca or malloc fails; instead, report
11330 a parser stack overflow. Allocate just one block of memory for all
11331 three stacks, instead of allocating three blocks; this typically is
11332 faster and reduces fragmentation.
11333
11334 Do not limit the number of items in the stack to a value that fits
11335 in 'int', as this is an arbitrary limit on hosts with 64-bit
11336 size_t and 32-bit int.
11337
147e184c
MA
113382001-11-29 Marc Autret <autret_m@epita.fr>
11339
11340 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
11341 of defining YYERROR_VERBOSE.
11342 [AT_DATA]: $4 is now out of C declarations in the prologue.
11343
426cf563
MA
113442001-11-28 Marc Autret <autret_m@epita.fr>
11345
11346 * src/reader.c (parse_dquoted_param): New.
11347 (parse_skel_decl): Use it.
11348 * src/lex.h: Add its prototype.
11349 * src/lex.c (literalchar): Become not static.
11350
c7925b99
MA
113512001-11-28 Marc Autret <autret_m@epita.fr>
11352
11353 * src/output.h: And put its extern declaration here.
11354 * src/output.c (error_verbose): Define here.
11355 (prepare): Echo name modification.
11356 * src/getargs.h: Clean its extern declaration.
11357 * src/getargs.c (error_verbose_flag): Remove.
11358 (getargs): Remove case 'e'.
11359 * src/options.c (option_table): 'error-verbose' is now seen as simple
11360 percent option.
11361 Include output.h.
11362
11363 * src/reader.c (read_declarations): Remove case tok_include.
11364 (parse_include_decl): Remove.
11365 * src/lex.h (token_t): Remove tok_include.
11366 * src/options.c (option_table): 'include' is now a simple command line
11367 option.
11368
5b5d1929
MA
113692001-11-28 Marc Autret <autret_m@epita.fr>
11370
11371 * src/bison.simple: Adjust muscle names.
11372 * src/muscle_tab.c (muscle_init): Also rename the muscles.
11373 * src/output.c (prepare): s/_/-/ for the muscles names.
11374 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
11375
8850be4b
MA
113762001-11-28 Marc Autret <autret_m@epita.fr>
11377
11378 * src/bison.simple: Fix debug.
11379 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
11380
4a38e613
AD
113812001-11-28 Akim Demaille <akim@epita.fr>
11382
11383 * src/LR0.c (shifts_new): New.
11384 (save_shifts, insert_start_shift, augment_automaton): Use it.
11385
4b35e1c1
AD
113862001-11-28 Akim Demaille <akim@epita.fr>
11387
11388 * src/closure.c (closure): `b' and `ruleno' denote the same value:
11389 keep ruleno only.
11390
d2b04478
AD
113912001-11-28 Akim Demaille <akim@epita.fr>
11392
11393 * src/closure.c (closure): Instead of looping over word in array
11394 then bits in words, loop over bits in array.
11395
2c4c30aa
AD
113962001-11-28 Akim Demaille <akim@epita.fr>
11397
11398 * src/closure.c (closure): No longer optimize the special case
11399 where all the bits of `ruleset[r]' are set to 0, to make the code
11400 clearer.
11401
576890b7
AD
114022001-11-28 Akim Demaille <akim@epita.fr>
11403
11404 * src/closure.c (closure): `r' and `c' are new variables, used to
11405 de-obfuscate accesses to RULESET and CORE.
11406
cb487d7d
AD
114072001-11-28 Akim Demaille <akim@epita.fr>
11408
11409 * src/reduce.c (reduce_print): Use ngettext.
11410 (dump_grammar): Improve the trace accuracy.
11411
6013d43f
AD
114122001-11-28 Akim Demaille <akim@epita.fr>
11413
11414 * src/reduce.c (dump_grammar): Don't translate trace messages.
11415
cb4956ee
AD
114162001-11-28 Akim Demaille <akim@epita.fr>
11417
11418 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
11419 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
11420 as all tags are free'ed afterwards.
11421 From Enrico Scholz.
11422
648185ab
PE
114232001-11-27 Paul Eggert <eggert@twinsun.com>
11424
11425 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
11426 use alloca when we didn't want to, and vice versa.
11427
68254a03
MA
114282001-11-27 Marc Autret <autret_m@epita.fr>
11429
9113b58f
AD
11430 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
11431 initialization.
68254a03
MA
11432 * src/output.c (prepare): Remove its update.
11433
04d843a2
MA
114342001-11-27 Marc Autret <autret_m@epita.fr>
11435
11436 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
11437 Use %error-verbose.
11438
d2079671 114392001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
11440
11441 * src/bison.simple: Remove YYERROR_VERBOSE using.
11442 Use %%error_verbose.
11443 (yyparse): Likewise.
11444 * src/output.c (prepare): Give its final value.
11445 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
11446 * src/getargs.h: Add its extern declaration.
11447 * src/getargs.c (error_verbose_flag): New int.
11448 (getargs): Update to catch new case.
11449 * src/options.c (option_table): 'error-verbose' is a new option.
11450 (shortopts): Update.
11451
e0327bc8
AD
114522001-11-27 Akim Demaille <akim@epita.fr>
11453
11454 * src/system.h: Use intl/libgettext.h.
11455 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
11456
000f1a3c
AD
114572001-11-27 Akim Demaille <akim@epita.fr>
11458
11459 * tests/torture.at (Exploding the Stack Size with Malloc):
11460 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
11461
26cfe0be
AD
114622001-11-27 Akim Demaille <akim@epita.fr>
11463
11464 * src/files.c: Include error.h.
11465 Reported by Hans Aberg.
11466
f6bd5427
MA
114672001-11-26 Marc Autret <autret_m@epita.fr>
11468
d2079671 11469 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
11470 (read_declarations): Add case tok_include.
11471 * src/getargs.h (include): Add its extern definition.
11472 * src/getargs.c (include): New const char *.
11473 (getargs): Add case '-I'.
11474 * src/options.c (option_table): Add include as command line and
11475 percent option.
11476 * src/lex.h (token_t): Add tok_include.
11477
2ca209c1
AD
114782001-11-26 Akim Demaille <akim@epita.fr>
11479
11480 * src/reader.c (readgram): Make sure rules for mid-rule actions
11481 have a lineno equal to that of their host rule.
11482 Reported by Hans Aberg.
11483 * tests/regression.at (Rule Line Numbers): New.
11484
0e41b407
AD
114852001-11-26 Akim Demaille <akim@epita.fr>
11486
11487 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
11488 size_ts.
11489
114902001-11-26 Akim Demaille <akim@epita.fr>
11491
11492 * src/complain.c, src/complain.h (error): Remove, provided by
11493 lib/error.[ch].
11494
e0c40012
AD
114952001-11-26 Akim Demaille <akim@epita.fr>
11496
11497 * src/reader.c (read_declarations): Don't abort on tok_illegal,
11498 issue an error message.
11499 * tests/regression.at (Invalid %directive): New.
11500 Reported by Hans Aberg.
11501
5e147124
AD
115022001-11-26 Akim Demaille <akim@epita.fr>
11503
11504 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
11505 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
11506
a034c8b8
AD
115072001-11-26 Akim Demaille <akim@epita.fr>
11508
11509 * src/conflicts.c (conflicts_print): Don't complain at all when
11510 there are no reduce/reduce conflicts, and as many shift/reduce
11511 conflicts as expected.
11512 * tests/regression.at (%expect right): Adjust.
11513
c64a20f3
AD
115142001-11-23 Akim Demaille <akim@epita.fr>
11515
11516 * lib/alloca.c: Update, from fileutils.
11517
5b0d29bb
AD
115182001-11-23 Akim Demaille <akim@epita.fr>
11519
11520 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
11521
722c4bfe
AD
115222001-11-23 Akim Demaille <akim@epita.fr>
11523
11524 * src/system.h: Include alloca.h.
11525 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
11526
6255b435
AD
115272001-11-23 Akim Demaille <akim@epita.fr>
11528
11529 * src/print_graph.c (print_actions): Remove `rule', unused.
11530 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
11531 pacify GCC's signed < unsigned warnings.
11532 * src/closure.c (itemsetsize): Likewise.
11533 * src/reader.c (symbol_list_new): Static.
11534
b29b2ed5
AD
115352001-11-23 Akim Demaille <akim@epita.fr>
11536
11537 Attaching lineno to buckets is stupid, since only one copy of each
11538 symbol is kept, only the line of the first occurrence is kept too.
11539
11540 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
11541 * src/reader.c (rline_allocated): Remove, unused.
11542 (symbol_list): Have a `line' member.
11543 (symbol_list_new): New.
11544 (readgram): Use it.
11545 * src/print.c (print_grammar): Output the rule line numbers.
11546 * tests/regression.at (Solved SR Conflicts)
11547 (Unresolved SR Conflicts): Adjust.
11548 Reported by Hans Aberg.
11549
a81b1d4a
MA
115502001-11-22 Marc Autret <autret_m@epita.fr>
11551
11552 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
11553
c1ecb3c1
MA
115542001-11-22 Marc Autret <autret_m@epita.fr>
11555
11556 * src/muscle_tab.c (muscle_init): Remove initialization of
11557 skeleton muscle.
11558 * src/output.c (output_master_parser): Do it here.
11559
fbe01355
AD
115602001-11-20 Akim Demaille <akim@epita.fr>
11561
11562 * po/sv.po: New.
11563 * configure.in (ALL_LINGUAS): Adjust.
11564 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
11565 longer contains strings to translate.
11566
81e895c0
AD
115672001-11-19 Akim Demaille <akim@epita.fr>
11568
11569 * src/conflicts.c (conflicts_print): Add a missing \n.
11570
6bb1878b
AD
115712001-11-19 Akim Demaille <akim@epita.fr>
11572
11573 * src/nullable.c (nullable_print): New.
11574 (set_nullable): Call it when tracing.
11575 Better locality of variables.
11576
d9ec2d07
AD
115772001-11-19 Akim Demaille <akim@epita.fr>
11578
11579 * src/print.c (print_actions): Better locality of variables.
11580
720e5c1b
AD
115812001-11-19 Akim Demaille <akim@epita.fr>
11582
11583 * src/derives.c (print_derives): Fix and enrich.
11584 * src/closure.c (print_fderives): Likewise.
11585
fb908786
AD
115862001-11-19 Akim Demaille <akim@epita.fr>
11587
11588 * src/closure.c (itemsetend): Remove, replaced with...
11589 (itemsetsize): new.
11590
125ecb56
AD
115912001-11-19 Akim Demaille <akim@epita.fr>
11592
11593 * src/LR0.c (kernel_end): Remove, replaced with...
11594 (kernel_size): new.
11595
d8cf039f
AD
115962001-11-19 Akim Demaille <akim@epita.fr>
11597
11598 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
11599 to clarify.
11600
7bec0760
AD
116012001-11-19 Akim Demaille <akim@epita.fr>
11602
11603 * src/closure.c (closure): Use arrays instead of pointers to clarify.
11604
c87d4863
AD
116052001-11-19 Akim Demaille <akim@epita.fr>
11606
11607 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
11608 trace messages.
11609 * src/LR0.c: Likewise.
11610 (allocate_itemsets): Use arrays instead of pointers to clarify.
11611
9bfe901c
AD
116122001-11-19 Akim Demaille <akim@epita.fr>
11613
11614 * src/getargs.c (statistics_flag): Replace with...
11615 (trace_flag): New.
11616 (longopts): Accept --trace instead of --statistics.
11617 * src/getargs.h, src/options.c: Adjust.
11618 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
11619 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
11620
97db7bd4
AD
116212001-11-19 Akim Demaille <akim@epita.fr>
11622
cc72668c 11623 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
11624 pointers to clarify the code.
11625 (save_reductions, save_shifts): Factor common parts of alternatives.
11626
2c5f66ed
AD
116272001-11-19 Akim Demaille <akim@epita.fr>
11628
11629 * src/LR0.c (new_state, get_state): Complete TRACE code.
11630 * src/closure.c: Include `reader.h' to get `tags', needed by the
11631 trace code.
11632 Rename the conditional DEBUG as TRACE.
11633 Output consistently TRACEs to stderr, not stdout.
11634 * src/derives.c: Likewise.
11635 * src/reduce.c: (inaccessable_symbols): Using if is better style
11636 than goto.
11637 Use `#if TRACE' instead of `#if 0' for tracing code.
11638
300f275f
AD
116392001-11-19 Akim Demaille <akim@epita.fr>
11640
11641 * src/system.h (LIST_FREE, shortcpy): New.
11642 * src/LR0.c: Use them.
11643 * src/output.c (free_itemsets, free_reductions, free_shifts):
11644 Remove, replaced by LIST_FREE.
11645
f59c437a
AD
116462001-11-19 Akim Demaille <akim@epita.fr>
11647
11648 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
11649 (REDUCTIONS_ALLOC): New.
11650 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
11651 allocation.
11652
6986fd9e
AD
116532001-11-19 Akim Demaille <akim@epita.fr>
11654
11655 * src/LR0.c (new_state): Complete trace code.
11656 * src/nullable.c (set_nullable): Don't translate traces.
11657
4bc30f78
AD
116582001-11-19 Akim Demaille <akim@epita.fr>
11659
11660 * src/print_graph.c (print_core): Better locality of variables.
11661 * src/print.c (print_core): Likewise.
11662
08a946e0
AD
116632001-11-19 Akim Demaille <akim@epita.fr>
11664
11665 * src/vcg.c: You do the output, so you are responsible of the
11666 handling of VCG syntax, in particular: use quotearg.
11667 * src/print_graph.c: Don't.
11668 (print_actions): Don't output the actions as part of the nodes,
11669 since that's the job of the edges.
11670 (print_state): Don't output by hand: fill the node description,
9bfe901c 11671 and ask for its output.
08a946e0 11672
f0473484
AD
116732001-11-19 Akim Demaille <akim@epita.fr>
11674
cc72668c
AD
11675 * src/bison.simple (yyparse): When verbosely reporting an error,
11676 no longer put additional quotes around token names.
f0473484
AD
11677 * tests/calc.at: Adjust.
11678
e41dc700
AD
116792001-11-19 Akim Demaille <akim@epita.fr>
11680
11681 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
11682 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
11683 * src/output.c: Adjust.
11684
652a871c
AD
116852001-11-19 Akim Demaille <akim@epita.fr>
11686
11687 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
11688 (rule_t): this.
11689 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
11690
b2ed6e58
AD
116912001-11-19 Akim Demaille <akim@epita.fr>
11692
11693 * src/gram.h (rule_t): New.
11694 (rule_table): New.
11695 (rrhs, rlhs): Remove, part of state_t.
11696 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
11697 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
11698 * src/reader.c, src/reduce.c: Adjust.
11699
edad7067
AD
117002001-11-19 Akim Demaille <akim@epita.fr>
11701
11702 * src/reader.c (symbols_output): New, extracted from...
11703 (packsymbols): Here.
11704 (reader): Call it.
11705
3feec034
AD
117062001-11-19 Akim Demaille <akim@epita.fr>
11707
11708 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
11709 (maxrhs): this new function.
11710
ddcd5fdf
AD
117112001-11-19 Akim Demaille <akim@epita.fr>
11712
cc72668c 11713 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
11714 Adjust.
11715
bb527fc2
AD
117162001-11-19 Akim Demaille <akim@epita.fr>
11717
cc72668c 11718 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
11719 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11720 * src/lalr.c: Adjust.
11721
a845a697
AD
117222001-11-19 Akim Demaille <akim@epita.fr>
11723
11724 * src/lalr.c (initialize_LA): Only initialize LA. Let...
11725 (set_state_table): handle the `lookaheads' members.
11726
f004bf6a
AD
117272001-11-19 Akim Demaille <akim@epita.fr>
11728
cc72668c
AD
11729 * src/lalr.h (lookaheads): Removed array, whose contents is now
11730 a member of...
f004bf6a
AD
11731 (state_t): this structure.
11732 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11733 Adjust.
11734
de326cc0
AD
117352001-11-19 Akim Demaille <akim@epita.fr>
11736
cc72668c
AD
11737 * src/lalr.h (consistent): Removed array, whose contents is now
11738 a member of...
de326cc0
AD
11739 (state_t): this structure.
11740 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11741 Adjust.
11742
90b4416b
AD
117432001-11-19 Akim Demaille <akim@epita.fr>
11744
cc72668c
AD
11745 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
11746 contents are now members of...
90b4416b
AD
11747 (state_t): this structure.
11748 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
11749 Adjust.
11750
9703cc49
AD
117512001-11-19 Akim Demaille <akim@epita.fr>
11752
11753 * src/lalr.h (state_t): New.
11754 (state_table): Be a state_t * instead of a core **.
11755 (accessing_symbol): Remove, part of state_t.
11756 * src/lalr.c: Adjust.
11757 (set_accessing_symbol): Merge into...
11758 (set_state_table): this.
11759 * src/print_graph.c, src/conflicts.c: Adjust.
11760
d803322e
AD
117612001-11-14 Akim Demaille <akim@epita.fr>
11762
11763 * tests/calc.at, tests/output.at, tests/regression.at,
11764 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
11765 now the tests are run in private dirs, therefore AC_CLEANUP and
11766 family can be simplified to 0-ary.
11767 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
11768 use abs. path to find config.h.
11769 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
11770 stderr, there can be way too much random noise.
11771 Instead pass -Werror to GCC and rely on the exit status.
11772 Reported by Wolfram Wagner.
11773
3d76b07d
AD
117742001-11-14 Akim Demaille <akim@epita.fr>
11775
11776 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
11777 defined only if yyoverflow is defined, to avoid `warning: unused
11778 variable `yyvs1''.
11779 Reported by The Test Suite.
11780
09b503c8
AD
117812001-11-14 Akim Demaille <akim@epita.fr>
11782
11783 * src/print.c: Include reduce.h.
11784 Reported by Hans Aberg.
11785
117862001-11-14 Akim Demaille <akim@epita.fr>
11787
11788 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
11789 Revert a previous patch: these are really const.
11790 * src/conflicts.c (conflict_report): Additional useless pair of
11791 braces to pacify GCC's warnings for `if () if () {} else {}'.
11792 * src/lex.c (parse_percent_token): Replace equal_offset with
11793 arg_offset.
11794 arg is const.
11795 Be sure to strdup `arg' when used, since there is no reason for
11796 token_buffer not to change.
11797
0f37a994
AD
117982001-11-14 Akim Demaille <akim@epita.fr>
11799
11800 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
11801 definition.
11802 * src/main.c (main): Use them.
11803 Suggested by Hans Aberg.
11804
d39d93b8
AD
118052001-11-12 Akim Demaille <akim@epita.fr>
11806
11807 * src/system.h (ngettext): Now that we use ngettext, be sure to
11808 provide a default definition when NLS are not used.
11809
9edcd895
AD
118102001-11-12 Akim Demaille <akim@epita.fr>
11811
11812 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
11813 Use @kbd to denote user input.
11814 (Language and Grammar): ANSIfy the example.
11815 Adjust its layout for info/notinfo.
11816 (Location Tracking Calc): Output error messages to stderr.
11817 Output locations in a more GNUtically correct way.
11818 Fix a couple of Englishos.
11819 Adjust @group/@end group pairs.
11820
7da99ede
AD
118212001-11-12 Akim Demaille <akim@epita.fr>
11822
e3aa65c5 11823 %expect was not functioning at all.
7da99ede
AD
11824
11825 * src/conflicts.c (expected_conflicts): Set to -1.
11826 (conflict_report): Use ngettext.
11827 (conflicts_print): Check %expect and make its violation an error.
11828 * doc/bison.texinfo (Expect Decl): Adjust.
11829 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
11830 * tests/regression.at (%expect not enough, %expect right)
11831 (%expect too much): New.
11832
ba9dda1a
AD
118332001-11-12 Akim Demaille <akim@epita.fr>
11834
11835 * tests/regression.at (Conflicts): Rename as...
11836 (Unresolved SR Conflicts): this.
11837 (Solved SR Conflicts): New.
11838
337c5bd1
AD
118392001-11-12 Akim Demaille <akim@epita.fr>
11840
11841 * src/reduce.c (print_results): Rename as...
11842 (reduce_output): This.
11843 Output to OUT, passed as argument, instead of output_obstack.
11844 (dump_grammar): Likewise.
11845 (reduce_free): New.
11846 Also free V1.
11847 (reduce_grammar): No longer call reduce_output, since...
11848 * src/print.c (print_results): do it.
11849 * src/main.c (main): Call reduce_free;
11850
c73a41af
AD
118512001-11-12 Akim Demaille <akim@epita.fr>
11852
11853 * src/conflicts.c (print_reductions): Accept OUT as argument.
11854 Output to it, not to output_obstack.
11855 * src/print.c (print_actions): Adjust.
11856
0df87bb6
AD
118572001-11-12 Akim Demaille <akim@epita.fr>
11858
11859 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
11860 the result instead of using...
11861 (src_total, rrc_total, src_count, rrc_count): Remove.
11862 (any_conflicts): Remove.
11863 (print_conflicts): Split into...
11864 (conflicts_print, conflicts_output): New.
11865 * src/conflicts.h: Adjust.
11866 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 11867 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
11868 * tests/regression.at (Conflicts): New.
11869 Reported by Tom Lane.
11870
e4d3d4de
AD
118712001-11-12 Akim Demaille <akim@epita.fr>
11872
11873 * tests/regression.at (Invalid input): Remove, duplicate with
11874 ``Invalid input: 1''.
11875
6d7d248e
AD
118762001-11-12 Akim Demaille <akim@epita.fr>
11877
11878 * tests/torture.at (AT_DATA_STACK_TORTURE)
11879 (Exploding the Stack Size with Alloca)
11880 (Exploding the Stack Size with Malloc): New.
11881
e9e4c321
AD
118822001-11-12 Akim Demaille <akim@epita.fr>
11883
11884 * src/bison.simple (YYSTACK_REALLOC): New.
11885 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 11886 Reported by Per Allansson.
e9e4c321 11887
5f7e0832
AD
118882001-11-12 Pascal Bart <pascal.bart@epita.fr>
11889
11890 * src/bison.simple: Define type yystype instead of YYSTYPE, and
11891 define CPP macro, which substitute YYSTYPE by yystype.
11892 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
11893 with yyltype/YYLTYPE. This allows inclusion of the generated
11894 header within the parser if the compiler, such as GGC, accepts
11895 multiple equivalent #defines.
11896 From Akim.
11897
e3f1699f
AD
118982001-11-05 Akim Demaille <akim@epita.fr>
11899
11900 * src/reader.c (symbols_output): New, extracted from...
11901 (packsymbols): here.
11902 (reader): Adjust.
11903
65be0866
AD
119042001-11-05 Akim Demaille <akim@epita.fr>
11905
11906 * src/lex.c (parse_percent_token): s/quotearg/quote/.
11907
e4d910bf
AD
119082001-11-05 Akim Demaille <akim@epita.fr>
11909
11910 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
11911 pattern.
11912
951366c1
AD
119132001-11-05 Akim Demaille <akim@epita.fr>
11914
11915 * src/options.h (struct option_table_struct): set_flags is void*.
11916 * src/options.c (longopts): Support `--output' and `%output'.
11917 (usage): Adjust.
11918 * src/lex.h (tok_setopt): Remove, replaced with...
11919 (tok_intopt, tok_stropt): these new guys.
11920 * src/lex.c (getopt.h): Not needed.
11921 (token_buffer, unlexed_token_buffer): Not const.
11922 (percent_table): Promote `-' over `_' in directive names.
11923 Active `%name-prefix', `file-prefix', and `output'.
11924 (parse_percent_token): Accept possible arguments to directives.
11925 Promote `-' over `_' in directive names.
11926
d8988b2f
AD
119272001-11-04 Akim Demaille <akim@epita.fr>
11928
11929 * doc/bison.texinfo (Decl Summary): Split the list into
11930 `directives for grammars' and `directives for bison'.
11931 Sort'em.
11932 Add description of `%name-prefix', `file-prefix', and `output'.
11933 Promote `-' over `_' in directive names.
11934 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
11935 Simplify the description of `--name-prefix'.
11936 Promote `-' over `_' in directive names.
11937 Promote `--output' over `--output-file'.
11938 Fix the description of `--defines'.
11939 * tests/output.at: Exercise %file-prefix and %output.
11940
6468d18e
AD
119412001-11-02 Akim Demaille <akim@epita.fr>
11942
11943 * doc/refcard.tex: Update.
11944
6b7e85b9
AD
119452001-11-02 Akim Demaille <akim@epita.fr>
11946
11947 * src/symtab.h (SUNDEF): New.
11948 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
11949 stand for `uninitialized', instead of 0.
11950 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
11951 * src/lex.c (lex): Adjust.
11952
11953 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
11954 Number it 0.
11955 Let yylex return it instead of a plain 0.
11956 Reported by Dick Streefland.
11957
cd5aafcf
AD
119582001-11-02 Akim Demaille <akim@epita.fr>
11959
11960 * tests/regression.at (Mixing %token styles): New test.
11961
037ca2f1
AD
119622001-11-02 Akim Demaille <akim@epita.fr>
11963
11964 * src/reader.c (parse_thong_decl): Formatting changes.
11965 (token_translations_init): New, extracted from...
11966 (packsymbols): Here.
11967 Adjust.
11968
270a173c
AD
119692001-11-01 Akim Demaille <akim@epita.fr>
11970
11971 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
11972 Check that `9foo.y' produces correct cpp guards.
11973 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
11974 guards.
11975 Reported by Wwp.
11976
561f9a30
AD
119772001-11-01 Akim Demaille <akim@epita.fr>
11978
11979 * tests/regression.at (Invalid input: 2): New.
11980 * src/lex.c (unlexed_token_buffer): New.
11981 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
11982 too.
11983 Reported by Wwp.
11984
f987e9d2
AD
119852001-11-01 Akim Demaille <akim@epita.fr>
11986
11987 * tests/calc.at: Catch up with 1.30.
11988 * configure.in: Bump to 1.49a.
11989 Adjust to newer Autotest.
11990
0846f581
PB
119912001-10-19 Pascal Bart <pascal.bart@epita.fr>
11992
11993 * src/conflicts.c: Move global variables rrc_total and src_total ...
11994 (print_conflicts): here.
11995 * src/output.c (output): Free global variable user_toknums.
11996 * src/lex.c (token_obstack): Become static.
11997
3c1a79b3
AD
119982001-10-18 Akim Demaille <akim@epita.fr>
11999
12000 * tests/atlocal.in (GCC): Add.
12001 * tests/calc.at: s/m4_match/m4_bmatch/.
12002 s/m4_patsubst/m4_bpatsubst/.
12003 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
12004 * configure.in: AC_SUBST(GCC).
12005
5d52e7d0
MA
120062001-10-14 Marc Autret <autret_m@epita.fr>
12007
12008 * src/options.c (create_long_option_table): Fix.
12009
631aa1d3
AD
120102001-10-10 Akim Demaille <akim@epita.fr>
12011
12012 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
12013
f6ec6d13
AD
120142001-10-04 Akim Demaille <akim@epita.fr>
12015
12016 * src/reader.c (parse_union_decl): Push the caracters in
12017 union_obstack, not attrs_obstack.
12018
342b8b6e
AD
120192001-10-04 Akim Demaille <akim@epita.fr>
12020
12021 Merge in the branch 1.29.
12022
12023 * src/reader.c (packsymbols): Use a temporary obstack for
12024 `%%tokendef', since output_stack is already used elsewhere.
12025
12026 2001-10-02 Akim Demaille <akim@epita.fr>
12027
12028 Bump 1.29d.
12029
12030 2001-10-02 Akim Demaille <akim@epita.fr>
12031
12032 Version 1.29c.
12033
12034 2001-10-02 Akim Demaille <akim@epita.fr>
12035
12036 * tests/regression.at (Invalid CPP headers): New.
12037 From Alexander Belopolsky.
12038 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
12039
12040 2001-10-02 Akim Demaille <akim@epita.fr>
12041
12042 * tests/regression.at (Invalid input): New.
12043 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
12044 Reported by Shura.
12045
12046 2001-10-02 Akim Demaille <akim@epita.fr>
12047
12048 * tests/calc.at: Now that --debug works, the tests must be adjusted.
12049
12050 2001-10-02 Akim Demaille <akim@epita.fr>
12051
12052 * src/output.c (output_parser): Assert `skeleton'.
12053 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
12054 systems.
12055 From Shura.
12056
12057 2001-10-01 Marc Autret <autret_m@epita.fr>
12058
12059 * src/lex.h: Echo modifications.
12060 * src/lex.c (unlex): Parameter is now token_t.
12061 From Hans Aberg.
12062
12063 2001-10-01 Marc Autret <autret_m@epita.fr>
12064
12065 * src/main.c: Include lex.h.
12066 From Hans Aberg.
12067
12068 2001-09-29 Akim Demaille <akim@epita.fr>
12069
12070 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
12071
12072 2001-09-28 Akim Demaille <akim@epita.fr>
12073
12074 * tests/testsuite.at: Update to newer Autotest.
12075 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
12076
12077 2001-09-27 Akim Demaille <akim@epita.fr>
12078
12079 Position independent wrapper.
12080
12081 * tests/bison: Remove.
12082 * tests/bison.in: New.
12083 * configure.in: Adjust.
12084
12085 2001-09-27 Paul Eggert <eggert@twinsun.com>
12086
12087 Port quotearg fixes from tar 1.13.24.
12088
12089 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
12090 tm to be declared.
12091 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
12092 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
12093
12094 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
12095 * m4/mbrtowc.m4: New file.
12096 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
12097 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
12098
12099 2001-09-27 Akim Demaille <akim@epita.fr>
12100
12101 Bump to 1.29c.
12102
12103 2001-09-27 Akim Demaille <akim@epita.fr>
12104
12105 Version 1.29b.
12106
12107 2001-09-25 Akim Demaille <akim@epita.fr>
12108
12109 * src/system.h: Include `xalloc.h'.
12110 Remove it from the C files.
12111 * src/files.c (output_files): Free the obstacks.
12112 * src/lex.c (init_lex): Rename as...
12113 (lex_init): this.
12114 (lex_free): New.
12115 * src/main.c (main): Use it.
12116
12117 2001-09-24 Marc Autret <autret_m@epita.fr>
12118
12119 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
12120 to output informations in fout (FILE*).
12121 (open_graph, close_graph): Likewise.
12122 (output_graph, output_edge, output_node): Likewise.
12123 * src/vcg.h: Update function prototypes.
12124 * src/print_graph.c (print_graph): Open output graph file.
12125 (print_actions): Adjust.
12126 * src/files.h: Remove extern declaration.
12127 * src/files.c: Remove graph_obstack declaration.
12128 (open_files): Remove graph_obstack initialization.
12129 (output_files): Remove graph_obstack saving.
12130
12131 2001-09-24 Marc Autret <autret_m@epita.fr>
12132
12133 * src/files.c (compute_output_file_names): Fix.
12134
12135 2001-09-24 Marc Autret <autret_m@epita.fr>,
12136 Akim Demaille <akim@epita.fr>
12137
12138 * src/reader.c (reader): Remove call to free_symtab ().
12139 * src/main.c (main): Call it here.
12140 Include symtab.h.
12141 * src/conflicts.c (initialize_conflicts): Rename as...
12142 (solve_conflicts): this.
12143 * src/print.c (print_core, print_actions, print_state)
12144 (print_grammar): Dump to a file instead a `output_obstack'.
12145 (print_results): Dump `output_obstack', and then proceed with the
12146 FILE *.
12147 * src/files.c (compute_output_file_names, close_files): New.
12148 (output_files): Adjust.
12149 * src/main.c (main): Adjust.
12150
12151 2001-09-23 Marc Autret <autret_m@epita.fr>
12152
12153 * src/files.c (compute_header_macro): Computes header macro name
12154 from spec_defines_file when given.
12155
12156 2001-09-23 Marc Autret <autret_m@epita.fr>
12157
12158 * src/files.c (output_files): Add default extensions.
12159
12160 2001-09-22 Akim Demaille <akim@epita.fr>
12161
12162 * src/conflicts.c (finalize_conflicts): Rename as...
12163 (free_conflicts): this.
12164
12165 2001-09-22 Akim Demaille <akim@epita.fr>
12166
12167 * src/gram.c (gram_free): Rename back as...
12168 (dummy): this.
12169 (output_token_translations): Free `token_translations'.
12170 * src/symtab.c (free_symtab): Free the tag field.
12171
12172 2001-09-22 Akim Demaille <akim@epita.fr>
12173
12174 Remove `translations' as it is always set to true.
12175
12176 * src/gram.h: Adjust.
12177 * src/reader.c (packsymbols, parse_token_decl): Adjust
12178 * src/print.c (print_grammar): Adjust.
12179 * src/output.c (output_token_translations): Adjust.
12180 * src/lex.c (lex): Adjust.
12181 * src/gram.c: Be sure the set pointers to NULL.
12182 (dummy): Rename as...
12183 (gram_free): this.
12184
12185 2001-09-22 Akim Demaille <akim@epita.fr>
12186
12187 * configure.in: Invoke AM_LIB_DMALLOC.
12188 * src/system.h: Use dmalloc.
12189 * src/LR0.c: Be sure to have pointers initialized to NULL.
12190 (allocate_itemsets): Allocate kernel_items only if needed.
12191
12192 2001-09-22 Akim Demaille <akim@epita.fr>
12193
12194 * configure.in: Bump to 1.29b.
12195 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
12196 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
12197 need xmalloc.c in calc.y.
12198 From Pascal Bart.
12199
12200 2001-09-21 Akim Demaille <akim@epita.fr>
12201
12202 Version 1.29a.
12203 * Makefile.maint, config/config.guess, config/config.sub,
12204 * config/missing: Update from masters.
12205 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
12206 upon package.m4.
12207 * configure.in (ALL_LINGUAS): Add `tr'.
12208
12209 2001-09-21 Akim Demaille <akim@epita.fr>
12210
12211 * tests/Makefile.am (package.m4): Move to...
12212 ($(srcdir)/$(TESTSUITE)): here.
12213
12214 2001-09-20 Akim Demaille <akim@epita.fr>
12215
12216 * src/complain.c: No longer try to be standalone: use system.h.
12217 Don't assume __STDC__ is defined to 1. Just test if it is defined.
12218 * src/complain.h: Likewise.
12219 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
12220 Remove the unused variable `n'.
12221 From Albert Chin-A-Young.
12222
12223 2001-09-18 Marc Autret <autret_m@epita.fr>
12224
12225 * doc/bison.1: Update.
12226 * doc/bison.texinfo (Bison Options): Update --defines and --graph
12227 descriptions.
12228 (Option Cross Key): Update.
12229 Add --graph.
12230
12231 2001-09-18 Marc Autret <autret_m@epita.fr>
12232
12233 * tests/regression.at: New test (comment in %union).
12234
12235 2001-09-18 Marc Autret <autret_m@epita.fr>
12236
12237 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
12238 do that.
12239 Reported by Keith Browne.
12240
12241 2001-09-18 Marc Autret <autret_m@epita.fr>
12242
12243 * tests/output.at: Add tests for --defines and --graph.
12244
12245 2001-09-18 Marc Autret <autret_m@epita.fr>
12246
12247 * tests/output.at: Removes tests of %{header,src}_extension features.
12248
12249 2001-09-18 Akim Demaille <akim@epita.fr>
12250
12251 * tests/Makefile.am (package.m4): New.
12252 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
12253 (_AT_CHECK_CALC_ERROR): Likewise.
12254 Factor the `, ' part of verbose error messages.
12255
12256 2001-09-18 Marc Autret <autret_m@epita.fr>
12257
12258 * src/getargs.c (longopts): Declare --defines and --graph as options
12259 with optional arguments.
12260 * src/files.h: Add extern declarations.
12261 * src/files.c (spec_graph_file, spec_defines_file): New.
12262 (output_files): Update.
12263 Remove CPP-outed code.
12264
12265 2001-09-18 Marc Autret <autret_m@epita.fr>
12266
12267 Turn off %{source,header}_extension feature.
12268
12269 * src/files.c (compute_exts_from_gf): Update.
12270 (compute_exts_from_src): Update.
12271 (output_files): CPP-out useless code.
12272 * src/files.h: Remove {header,source}_extension extern declarations.
12273 * src/reader.c (parse_dquoted_param): CPP-out.
12274 (parse_header_extension_decl): Remove.
12275 (parse_source_extension_decl): Remove.
12276 (read_declarations): Remove cases tok_{hdrext,srcext}.
12277 * src/lex.c (percent_table): Remove {header,source}_extension entries.
12278 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
12279
12280 2001-09-10 Akim Demaille <akim@epita.fr>
12281
12282 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
12283 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
12284 (AT_CHECK_OUTPUT): this.
12285 Merely check ls' exit status, its output is useless.
12286
12287 2001-09-10 Akim Demaille <akim@epita.fr>
12288
12289 * tests/calc.at: Use m4_match.
12290 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
12291
12292 2001-09-10 Marc Autret <autret_m@epita.fr>,
12293 Akim Demaille <akim@epita.fr>
12294
12295 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
12296 enum color_e.
12297 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
12298 to `normal'.
12299 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
12300 * src/lex.h: Adjust prototype.
12301 (token_t): Add `tok_undef'.
12302 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
12303 (parse_percent_token): Now returns token_t.
12304 Add default statement in switch.
12305 (lex): Separate `c' as an input variable, from the token_t result
12306 part.
12307 (unlexed): Is a token_t.
12308
12309 2001-09-10 Akim Demaille <akim@epita.fr>
12310
12311 * configure.in: Bump to 1.29a.
12312
12313 2001-09-07 Akim Demaille <akim@epita.fr>
12314
12315 Version 1.29.
12316
12317 2001-08-30 Akim Demaille <akim@epita.fr>
12318
12319 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
12320 * m4/atconfig.m4: Remove.
12321 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
12322 * tests/bison: New.
12323 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
12324 m4_if, m4_patsubst, and m4_regexp.
12325 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
12326 `input' file instead of echo.
12327
12328 2001-08-29 Akim Demaille <akim@epita.fr>
12329
12330 Bump to 1.28e.
12331
12332 2001-08-29 Akim Demaille <akim@epita.fr>
12333
12334 Version 1.28d.
12335
12336 2001-08-29 Paul Eggert <eggert@twinsun.com>
12337
12338 * src/bison.simple (yyparse): Don't take the address of an
12339 item before the start of an array, as that doesn't conform to
12340 the C Standard.
12341
12342 2001-08-29 Robert Anisko <anisko_r@epita.fr>
12343
12344 * doc/bison.texinfo (Location Tracking Calc): New node.
12345
12346 2001-08-29 Paul Eggert <eggert@twinsun.com>
12347
12348 * src/output.c (output): Do not define const, as this now
12349 causes more problems than it cures.
12350
12351 2001-08-29 Akim Demaille <akim@epita.fr>
12352
12353 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
12354 the nodes.
12355 Be sure to tag the `detailmenu'.
12356
12357 2001-08-29 Akim Demaille <akim@epita.fr>
12358
12359 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
12360 download in a tmp dir.
12361
12362 2001-08-28 Marc Autret <autret_m@epita.fr>
12363
12364 * config/depcomp: New file.
12365
12366 2001-08-28 Marc Autret <autret_m@epita.fr>
12367
12368 * doc/bison.1 (mandoc): Adjust.
12369 From Juan Manuel Guerrero.
12370
12371 2001-08-28 Marc Autret <autret_m@epita.fr>
12372
12373 * src/print_graph.c (print_state): Fix.
12374
12375 2001-08-27 Marc Autret <autret_m@epita.fr>
12376
12377 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
12378 char * members.
12379 Echo modifications to the functions prototypes.
12380 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
12381
12382 2001-08-27 Marc Autret <autret_m@epita.fr>
12383
12384 * src/vcg.c: Include `xalloc.h'.
12385 (add_colorentry): New.
12386 (add_classname): New.
12387 (add_infoname): New.
12388 * src/vcg.h: Add new prototypes.
12389
12390 2001-08-27 Akim Demaille <akim@epita.fr>
12391
12392 * Makefile.maint: Sync. again with CVS Autoconf.
12393
12394 2001-08-27 Akim Demaille <akim@epita.fr>
12395
12396 * Makefile.maint: Formatting changes.
12397 (po-update, cvs-update, update): New targets.
12398 (AMTAR): Remove.
12399
12400 2001-08-27 Akim Demaille <akim@epita.fr>
12401
12402 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
12403 * Makefile.maint: Sync. with CVS Autoconf.
12404
12405 2001-08-27 Marc Autret <autret_m@epita.fr>
12406
12407 * src/vcg.h (struct infoname_s): New.
12408 (struct colorentry_s): New.
12409 (graph_s): New fields {vertical,horizontal}_order in structure.
12410 Add `infoname' field.
12411 Add `colorentry' field;
12412 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
12413 (G_HORIZONTAL_ORDER): New.
12414 (G_INFONAME): New.
12415 (G_COLORENTRY): New.
12416 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
12417 Add output of `infoname'.
12418 Add output of `colorentry'.
12419
12420 2001-08-27 Marc Autret <autret_m@epita.fr>
12421
12422 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
12423 This one shadowed a global parameter.
12424
12425 2001-08-24 Marc Autret <autret_m@epita.fr>
12426
12427 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
12428 instead of `unsigned'.
12429 (print_state): Do not call obstack_object_size () in obstack_grow ()
12430 to avoid macro variables shadowing.
12431
12432 2001-08-23 Marc Autret <autret_m@epita.fr>
12433
12434 * src/lex.c (percent_table): Typo: s/naem/name/.
12435 Add graph option.
12436 Normalize new options declarations.
12437
12438 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
12439
12440 * tests/suite.at: Exercise %header_extension and %source_extension.
12441
12442 2001-08-16 Marc Autret <autret_m@epita.fr>
12443
12444 * src/reader.c (parse_dquoted_param): New.
12445 (parse_header_extension_decl): Use it.
12446 (parse_source_extension_decl): Likewise.
12447
12448 2001-08-16 Marc Autret <autret_m@epita.fr>
12449
12450 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
12451 (get_xxxx_str): Use assert () instead of complain ().
12452 Remove return invokations in default cases.
12453 (get_decision_str): Modify default behaviour. Remove second argument.
12454 Echo modifications on calls.
12455 (output_graph): Fix.
12456
12457 2001-08-16 Marc Autret <autret_m@epita.fr>
12458
12459 * src/getargs.c (usage): Update with ``-g, --graph''.
12460
12461 2001-08-16 Marc Autret <autret_m@epita.fr>
12462
12463 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
12464 (Option Cross Key): Likewise.
12465 * doc/bison.1: Update.
12466
1c8c2190
PB
124672001-09-25 Pascal Bart <pascal.bart@epita.fr>
12468
12469 * src/output.c (output_master_parser): Don't finish action_obstack.
12470 (output_parser): Don't care about the muscle action, here.
12471 (prepare): Copy the action_obstack in the action muscle.
12472 (output): Free action_obstack.
12473
180d45ba
PB
124742001-09-23 Pascal Bart <pascal.bart@epita.fr>
12475
12476 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
12477 will contain `%union' declaration.
12478 (parse_union_decl): Delete #line directive output.
12479 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
12480 informations about %union.
12481 (parse_union_decl): Copy the union_obstack in the muscle stype.
12482 * src/bison.simple: Add new #line directive.
12483 Add typdef %%stype YYSTYPE.
12484
c51d1a19
PB
124852001-09-23 Pascal Bart <pascal.bart@epita.fr>
12486
12487 * src/bison.simple: Add new `#line' directive.
12488
6f9344da
PB
124892001-09-22 Pascal Bart <pascal.bart@epita.fr>
12490
12491 * src/bison.simple: New `#line' directive.
12492 * src/output.c (output_parser): Support new dynamic muscle input_line.
12493
652def80
MA
124942001-09-22 Marc Autret <autret_m@epita.fr>
12495
12496 * src/output.c (output_master_parser): New.
12497 (output_parser): Be more re-entrant.
12498
25b222fa
MA
124992001-09-21 Marc Autret <autret_m@epita.fr>
12500
12501 * src/reader.c (copy_definition, parse_union_decl): Update and use
12502 `linef' muscle.
12503 (copy_action): Likewise.
12504 Use obstack_1grow ().
12505 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
12506
6bc35ae5
MA
125072001-09-21 Marc Autret <autret_m@epita.fr>
12508
12509 * src/options.c (option_table): Adjust.
12510 * src/lex.c (parse_percent_token): Fix.
12511
c0629aa1
PB
125122001-09-20 Pascal Bart <pascal.bart@epita.fr>
12513
12514 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 12515
82b6d266
PB
125162001-09-20 Pascal Bart <pascal.bart@epita.fr>
12517
12518 * src/lex.c (parse_percent_token): Change type of variable `tx', which
12519 is now an option_table_struct*.
12520 (option_strcmp): New function option_strcmp.
12521 (parse_percent_token): Call option_strcmp.
12522 * src/getargs.c (xalloc.h, options.h): Include it.
12523 (getargs): Call create_long_option_table.
12524 (getargs): Free longopts at the end of the function.
12525 (shortopts): Move in options.c.
12526 * src/options.c (create_long_option_table): New function. Convert
12527 information from option_table to option structure.
12528 * src/reader.c (options.h): Include it.
12529
12530 * src/Makefile.am: Adjust.
12531 * src/options.c (option_table): Create from longopts and percent_table.
12532 * src/getargs.c (longopts): Delete.
12533 * src/lex.c (struct percent_table_struct): Delete.
12534 (percent_table): Delete.
12535 (options.h): Include it.
12536 * src/options.c: Create.
12537 * src/options.h: Create.
12538 Declare enum opt_access_e.
12539 Define struct option_table_struct.
12540
75f5aaea
MA
125412001-09-20 Marc Autret <autret_m@epita.fr>
12542
12543 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
12544 sections of Bison.
12545
f508cb0a
PB
125462001-09-19 Pascal Bart <pascal.bart@epita.fr>
12547
12548 * src/bison.simple: s/%%filename/%%skeleton.
12549 * src/muscle_tab.c (getargs.h): Include it.
12550 (muscle_init): Insert new muscle skeleton.
12551
13105fc1
PB
125522001-09-18 Pascal Bart <pascal.bart@epita.fr>
12553
12554 * src/output.c (output_parser): Delete unused variable actions_dumped.
12555
b0c4483e
PB
125562001-09-07 Pascal Bart <pascal.bart@epita.fr>
12557
12558 * src/output.c (output): Delete call to reader_output_yylsp.
12559 * src/reader.c (reader): Likewise.
ba0fe3c7 12560 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 12561
11d82f03
MA
125622001-09-02 Marc Autret <autret_m@epita.fr>
12563
12564 * src/reader.c: Include muscle_tab.h.
12565 (parse_union_decl): Update.
12566 (parse_macro_decl): Rename parse_muscle_decl.
12567 Update to use renamed functions and variable.
12568 (read_declarations, copy_action, read_additionnal_code, : Updated
12569 with correct variables and functions names.
12570 (packsymbols, reader): Likewise.
342b8b6e 12571
11d82f03 12572 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 12573
11d82f03
MA
12574 * src/output.c: Include muscle_tab.h
12575 In all functions using macro_insert, change by using muscle_insert ().
12576 (macro_obstack): Rename muscle_obstack.
12577 Echo modifications in the whole file.
12578 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
12579 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
12580 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
12581
12582 * src/muscle_tab.h: Update double inclusion macros.
12583 (macro_entry_s): Rename muscle_entry_s.
12584 Update prototypes.
342b8b6e 12585
11d82f03
MA
12586 * src/muscle_tab.c: Include muscle_tab.h.
12587 Rename macro_tabble to muscle_table.
12588 (mhash1, mhash2, mcmp): Use muscle_entry.
12589 (macro_init): Rename muscle_init. Update.
12590 (macro_insert): Rename muscle_insert. Update.
12591 (macro_find): Rename muscle_find. Update.
12592
12593 * src/main.c: Include muscle_tab.h.
12594 (main): Call muscle_init ().
12595 * src/Makefile.am (bison_SOURCES): Echo modifications.
12596
93a37297
MA
125972001-09-02 Marc Autret <autret_m@epita.fr>
12598
f753cd62 12599 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 12600
f753cd62
MA
12601 * src/muscle_tab.c, src/muscle_tab.h: Add files.
12602
126032001-09-02 Marc Autret <autret_m@epita.fr>
12604
12605 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 12606
682d48cd
PB
126072001-09-01 Pascal Bart <pascal.bart@epita.fr>
12608
342b8b6e 12609 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
12610 filename.
12611
087c8fda
MA
126122001-09-01 Marc Autret <autret_m@epita.fr>
12613
12614 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
12615 to an explicit value to activate the feature. We do it here.
12616
dda680cb
PB
126172001-08-31 Pascal Bart <pascal.bart@epita.fr>
12618
12619 * src/output.c (prepare): Delete the `filename' muscule insertion.
12620 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
12621 (parse_union_decl): Likewise.
12622 * src/macrotab.c (macro_init): Initialize filename by infile.
12623
9e644e64
MA
126242001-08-31 Marc Autret <autret_m@epita.fr>
12625
12626 * src/bison.simple (YYLSP_NEEDED): New definition.
12627 * src/output.c (prepare): Add macro insertion of `locations_flag'
12628
17da6427
PB
126292001-08-31 Pascal Bart <pascal.bart@epita.fr>
12630
12631 * src/output.c (prepare): Delete insertion of previous muscles,
12632 and insert the `prefix' muscles.
12633 * src/macrotab.c (macro_init): Likewise.
12634 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 12635 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
12636 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
12637 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 12638 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
12639 name_prefix.
12640
e8cb70b9
PB
126412001-08-31 Pascal Bart <pascal.bart@epita.fr>
12642
12643 * src/main.c (main): Standardize.
12644 * src/output.c (output_table_data, output_parser): Likewise.
12645 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
12646
63c2d5de
MA
126472001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
12648
342b8b6e 12649 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
12650 %%epilogue.
12651 * src/output.c (output): Rename %%declarations to %%prologue.
12652 * src/bison.simple: Echo modifications.
342b8b6e 12653
d8cb5183
MA
126542001-08-31 Marc Autret <autret_m@epita.fr>
12655
12656 * src/reader.c (readgram): CleanUp.
12657 (output_token_defines): Likewise.
12658 (packsymbols): Likewise.
12659 (reader): Likewise.
12660 * src/output.c (output): CPP-out useless code.
12661
6c686258
PB
126622001-08-31 Pascal Bart <pascal.bart@epita.fr>
12663
342b8b6e 12664 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
12665 output_trailers and output_headers.
12666 * src/output.h: Remove obsolete functions prototypes of output_headers
12667 and output_trailers.
12668
8f451ef7
PB
126692001-08-30 Pascal Bart <pascal.bart@epita.fr>
12670
12671 * src/main.c: Include macrotab.h.
342b8b6e 12672 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
12673 Adjust functions prototypes.
12674 * src/macrotab.c (macro_insert): Constify key and value.
12675 (macro_find): Constify key.
12676 (macro_insert): Include 'xalloc.h'
12677 (macro_insert): Use XMALLOC.
12678 (macro_find): Constify return value.
12679 * src/output.c (output_table_data): Rename table to table_data.
12680 (output_parser): Constify macro_key, macro_value.
12681
997b6fd0 126822001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
12683
12684 * src/reader.c (parse_skel_decl): New.
342b8b6e 12685 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
12686 * src/lex.h (token_t): New token `tok_skel'.
12687 * src/lex.c (percent_table): Add skeleton option entry.
12688 Standardize.
12689
ff48177d
MA
126902001-08-29 Marc Autret <autret_m@epita.fr>
12691
12692 * src/bison.simple: Add %%user_code directive at the end.
12693 * src/reader.c (read_additionnal_code): New.
12694 (reader): Use it.
12695 * src/output.c (output_program): Remove.
12696 (output): Update.
12697
b33160bf
MA
126982001-08-28 Marc Autret <autret_m@epita.fr>
12699
12700 * src/output.c (output_actions): Clean up.
4e5caae2 12701 (output_gram): CPP-out useless code.
b33160bf
MA
12702 * src/reader.c (reader): Clean up, CPP-out useless code.
12703
d1a2daf7
PB
127042001-08-28 Pascal Bart <pascal.bart@epita.fr>
12705
342b8b6e 12706 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 12707 directive.
d1a2daf7
PB
12708 * src/bison.simple: Add `%%definitions'.
12709
2b763dfe
MA
127102001-08-28 Marc Autret <autret_m@epita.fr>
12711
12712 * config/depcomp: New file.
12713
f1a87ef6
PE
127142001-08-27 Paul Eggert <eggert@twinsun.com>
12715
12716 * src/bison.simple (yyparse): Don't take the address of an
12717 item before the start of an array, as that doesn't conform to
12718 the C Standard.
12719
82e236e2
RA
127202001-08-27 Robert Anisko <robert.anisko@epita.fr>
12721
f1a87ef6 12722 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
12723 obstack. It was done too late here.
12724
12725 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
12726 completely wrong.
12727 (reader): Initialize the macro obstack here, since we need it to grow
12728 '%define' directives.
12729
12730 * src/reader.h: Declare the macro obstack as extern.
12731
b0cfa28a
RA
127322001-08-27 Robert Anisko <robert.anisko@epita.fr>
12733
12734 * src/output.c (output_parser): Fix. Store single '%' characters in
12735 the output obstack instead of throwing them away.
12736
6fc74234
AD
127372001-08-27 Akim Demaille <akim@epita.fr>
12738
12739 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
12740
9c76d118
RA
127412001-08-25 Robert Anisko <robert.anisko@epita.fr>
12742
12743 * lib/Makefile.am: Adjust.
12744
a8289c62
RA
127452001-08-25 Robert Anisko <robert.anisko@epita.fr>
12746
12747 * src/bison.simple: Update and add '%%' directives.
12748
b6610515
RA
127492001-08-25 Robert Anisko <robert.anisko@epita.fr>
12750
12751 * src/reader.c (reader): Remove calls to 'output_headers' and
12752 'output_trailers'. Remove some C output.
12753 (readgram): Disable a piece of code that was writing a default
12754 definition for 'YYSTYPE'.
12755 (reader_output_yylsp): Remove.
12756 (packsymbols): Output token defintions to a macro.
12757 (copy_definition): Disable C output.
6fc74234 12758
b6610515
RA
12759 * src/reader.c (parse_macro_decl): New function used to parse macro
12760 declarations.
12761 (copy_string2): Put the body of copy_string into this new function.
12762 Add a parameter to let the caller choose whether he wants to copy the
12763 string delimiters or not.
12764 (copy_string): Be a simple call to copy_string2 with the last argument
12765 bound to true.
12766 (read_declarations): Add case for macro definition.
12767 (copy_identifier): New.
6fc74234 12768 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
12769 rather than lex.
12770
26f609ff
RA
127712001-08-25 Robert Anisko <robert.anisko@epita.fr>
12772
12773 * src/output.c (prepare): Add prefixed names.
12774 (output_parser): Output semantic actions.
12775 (output_parser): Fix bug on '%%line' directives.
6fc74234 12776
26f609ff
RA
12777 * src/output.c (output_headers): Remove. The C code printed by this
12778 function should now be in the skeletons.
12779 (output_trailers): Remove.
12780 (output): Disable call to 'reader_output_yylsp'.
12781 (output_rule_data): Do not output tables to the table obstack.
12782
12783 * src/output.c: Remove some C dedicated output.
12784 Improve the use of macro and output obstacks.
12785 (output_defines): Remove.
6fc74234 12786
26f609ff
RA
12787 * src/output.c (output_token_translations): Associate 'translate'
12788 table with a macro. No output to the table obstack.
12789 (output_gram): Same for 'rhs' and 'prhs'.
12790 (output_stos): Same for 'stos'.
12791 (output_rule_data): Same for 'r1' and 'r2'.
12792 (token_actions): Same for 'defact'.
12793 (goto_actions): Same for 'defgoto'.
12794 (output_base): Same for 'pact' and 'pgoto'.
12795 (output_table): Same for 'table'.
12796 (output_check): Same for 'check'.
6fc74234 12797
26f609ff
RA
12798 * src/output.c (output_table_data): New function.
12799 (output_short_table): Remove.
12800 (output_short_or_char_table): Remove.
6fc74234 12801
26f609ff
RA
12802 * src/output.c (output_parser): Replace most of the skeleton copy code
12803 with something new. Skeletons are now processed character by character
12804 rather than line by line, and Bison looks for '%%' macros. This is the
12805 first step in making Bison's output process (a lot) more flexible.
12806 (output_parser): Use the macro table.
12807
6f43b113
RA
128082001-08-25 Robert Anisko <robert.anisko@epita.fr>
12809
12810 * src/main.c (main): Initialize the macro table.
12811
dd3127cf
RA
128122001-08-25 Robert Anisko <robert.anisko@epita.fr>
12813
12814 * src/lex.c (percent_table): Add tok_define.
12815 * src/lex.h: Add tok_define.
12816
aa321494
RA
128172001-08-25 Robert Anisko <robert.anisko@epita.fr>
12818
12819 * src/macrotab.c: New file.
12820 * src/macrotab.h: New file.
12821 * src/Makefile.am: Update.
12822
68bd3b6b
RA
128232001-08-25 Robert Anisko <robert.anisko@epita.fr>
12824
12825 * lib/hash.c: New file.
12826 * lib/hash.h: New file.
12827 * lib/Makefile.am: Update.
12828
45f8dd1e
AD
128292001-08-15 Akim Demaille <akim@epita.fr>
12830
12831 Version 1.28c.
12832
40a64a7a 128332001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
12834
12835 * src/reader.c (readgram): Indent output macro YYSTYPE.
12836 (packsymbols): Likewise.
12837 (output_token_defines): Likewise.
12838 * src/files.c: Standardize.
12839 (compute_header_macro): New.
12840 (defines_obstack_save): New. Use compute_header_macro.
12841 (output_files): Update. Use defines_obstack_save.
12842
f9a8293a
AD
128432001-08-15 Akim Demaille <akim@epita.fr>
12844
12845 * doc/bison.texinfo (Table of Symbols): Document
12846 YYSTACK_USE_ALLOCA.
12847
150ca7a7
AD
128482001-08-15 Akim Demaille <akim@epita.fr>
12849
12850 * missing: Update from CVS Automake.
12851 * config/config.guess, config/config.sub, config/texinfo.tex:
12852 Update from gnu.org.
12853
69b5cec4
AD
128542001-08-15 Akim Demaille <akim@epita.fr>
12855
12856 * Makefile.maint: Sync with CVS Autoconf.
12857
f2b5126e
PB
128582001-08-14 Pascal Bart <pascal.bart@epita.fr>
12859
69b5cec4 12860 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
12861 `fdl.texi'.
12862 * doc/fdl.texi: Add to package.
12863
4ecbf796
MA
128642001-08-14 Marc Autret <autret_m@epita.fr>
12865
12866 Turn on %{source,header}_extension features.
12867
69b5cec4 12868 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
12869 source_extension.
12870 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 12871 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
12872 between options.
12873
95fb5662
MA
128742001-08-14 Marc Autret <autret_m@epita.fr>
12875
12876 * src/files.c (compute_base_names): Add extensions computing when
12877 `--file-prefix' used.
12878 Standardize function calls.
12879
78d09da9
MA
128802001-08-13 Marc Autret <autret_m@epita.fr>
12881
69b5cec4 12882 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
12883 defining it (defined but null disables alloca).
12884
5a009f2c
MA
128852001-08-13 Marc Autret <autret_m@epita.fr>
12886
12887 * src/bison.simple (_yy_memcpy): CPP reformat.
12888
1e41465a
PB
128892001-08-13 Pascal Bart <pascal.bart@epita.fr>
12890
12891 * tests/atconfig.in (CPPFLAGS): Fix.
12892
c67a198d
PB
128932001-08-10 Pascal Bart <pascal.bart@epita.fr>
12894
79282c6c 12895 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
12896 `gpl.texi'.
12897 * doc/gpl.texi: Add to package.
12898
09a6de7e
MA
128992001-08-10 Marc Autret <autret_m@epita.fr>
12900
12901 * src/print_graph.h: Fix.
12902 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
12903
b77b9ee0
AD
129042001-08-10 Akim Demaille <akim@epita.fr>
12905
12906 * src/system.h: Provide default declarations for stpcpy, strndup,
12907 and strnlen.
12908
3e259915
MA
129092001-08-10 Robert Anisko <anisko_r@epita.fr>
12910
12911 * doc/bison.texinfo (Locations): Update @$ stuff.
12912
ca96bc2d
MA
129132001-08-09 Robert Anisko <anisko_r@epita.fr>
12914
12915 * src/bison.simple (YYLLOC_DEFAULT): Update.
12916 (yyparse): Adjust.
12917
fdc6758b
MA
129182001-08-08 Marc Autret <autret_m@epita.fr>
12919
b77b9ee0 12920 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
12921 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
12922 Reported by Fabrice Bauzac.
957d4dbf 12923
600cad3b
MA
129242001-08-08 Marc Autret <autret_m@epita.fr>
12925
12926 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
12927 * src/vcg.c (output_node): Fix.
12928 * src/vcg.h: Cleanup.
12929 * src/print_graph.c: Add comments.
b77b9ee0 12930 (node_output_size): New global variable. Simplify the formatting of
600cad3b 12931 the VCG graph output.
b77b9ee0 12932 (print_actions): Unused code is now used. It notifies the final state
600cad3b 12933 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 12934 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
12935 blue.
12936 Get the current node name and node_obstack by argument.
12937 (node_obstack): New variable.
12938 (print_state): Manage node_obstack.
12939 (print_core): Use node_obstack given by argument.
12940 A node is not only computed here but in print_actions also.
12941 (print_graph): CPP out useless code instead of commenting it.
12942
976e528f
AD
129432001-08-07 Pascal Bart <pascal.bart@epita.fr>
12944
12945 * tests/atconfig.in (CPPFLAGS): Fix.
12946
20e8e5ca
AD
129472001-08-07 Akim Demaille <akim@epita.fr>
12948
12949 * src/print_graph.c (quote): New.
12950 (print_core): Use it.
12951
957d4dbf 129522001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 12953
3e3da797
AD
12954 * src/vcg.c (complain.h): Include it.
12955 Unepitaize `return' invocations.
c4b66126 12956 [NDEBUG] (main): Remove.
79282c6c 12957 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
12958 * src/files.c (open_files): Initialize graph_obstack.
12959 * src/print_graph.c (print_actions): CPP out useless code.
12960 (print_core): Don't output the last `\n' in labels.
12961 Use `quote'.
12962 * src/files.c (output_files): Output the VCG file.
12963 * src/main.c (main): Invoke print_graph ();
3e3da797 12964
957d4dbf 129652001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
12966
12967 Automaton VCG graph output.
12968 Using option ``-g'' or long option ``--graph'', you can generate
12969 a gram_filename.vcg file containing a VCG description of the LALR (1)
12970 automaton of your grammar.
12971
12972 * src/main.c: Call to print_graph() function.
12973 * src/getargs.h: Update.
12974 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
12975 (graph_flag): New flag.
12976 (longopts): Update.
12977 (getargs): Add case `g'.
12978 * src/files.c (graph_obstack): New obstack struct.
12979 (open_files): Initialize new obstack.
12980 (output_files): Saves graph_obstack if required.
12981 * src/files.h (graph_obstack): New extern declaration.
12982 * src/Makefile.am: Add new source files.
12983
927c1557 129842001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
12985
12986 * src/print_graph.c, src/print_graph.h (graph): New.
12987 * src/vcg.h: New file.
12988 * src/vcg.c: New file, VCG graph handling.
12989
7333d403
AD
129902001-08-06 Marc Autret <autret_m@epita.fr>
12991
12992 Add of %source_extension and %header_extension which specify
12993 the source or/and the header output file extension.
12994
12995 * src/files.c (compute_base_names): Remove initialisation of
12996 src_extension and header_extension.
12997 (compute_exts_from_gf): Update.
12998 (compute_exts_from_src): Update.
12999 (output_files): Update.
13000 * src/reader.c (parse_header_extension_decl): New.
13001 (parse_source_extension_decl): New.
13002 (read_declarations): New case statements for the new tokens.
13003 * src/lex.c (percent_table): Add entries for %source_extension
13004 and %header_extension.
13005 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
13006
84163231
AD
130072001-08-06 Marc Autret <autret_m@epita.fr>
13008
13009 * configure.in: Bump to 1.28c.
13010 * doc/bison.texinfo: Texinfo thingies.
13011
8303fc42
AD
130122001-08-04 Pascal Bart <pascal.bart@epita.fr>
13013
13014 * tests/atconfig.in (CPPFLAGS): Add.
13015 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
13016
70a84437
AD
130172001-08-03 Akim Demaille <akim@epita.fr>
13018
13019 Version 1.28b.
13020
2ce10144
AD
130212001-08-03 Akim Demaille <akim@epita.fr>
13022
13023 * tests/Makefile.am (check-local): Ship testsuite.
13024 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
13025 Include `string.h'.
13026
1e3e4bc1
AD
130272001-08-03 Akim Demaille <akim@epita.fr>
13028
13029 * configure.in: Try using -Wformat when compiling.
13030
42b45b7f
AD
130312001-08-03 Akim Demaille <akim@epita.fr>
13032
13033 * configure.in: Bump to 1.28b.
13034
8f13fe33
AD
130352001-08-03 Akim Demaille <akim@epita.fr>
13036
13037 * src/complain.c: Adjust strerror_r portability issues.
13038
b37ba92c
AD
130392001-08-03 Akim Demaille <akim@epita.fr>
13040
13041 Version 1.28a.
13042
b0ce6046
AD
130432001-08-03 Akim Demaille <akim@epita.fr>
13044
13045 * src/getargs.c, src/getarg.h (skeleton)): Constify.
13046 * src/lex.c (literalchar): Avoid name clashes on `buf'.
13047 * src/getargs.c: Include complain.h.
13048 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
13049 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
13050
d01c415b
AD
130512001-08-03 Akim Demaille <akim@epita.fr>
13052
13053 * src/reader.c (readgram): Display hidden chars in error messages.
13054
459dd1a6
AD
130552001-08-03 Akim Demaille <akim@epita.fr>
13056
13057 Update to gettext 0.10.39.
13058
53b74c0c
AD
130592001-08-03 Akim Demaille <akim@epita.fr>
13060
13061 * lib/strspn.c: New.
13062
234a3be3
AD
130632001-08-01 Marc Autret <autret_m@epita.fr>
13064
13065 * doc/bison.texinfo: Update.
13066 * doc/bison.1 (mandoc): Update.
13067 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
13068 * src/files.c: Support output files extensions computing.
13069 (src_extension): New static variable.
13070 (header_extension): New static variable.
13071 (tr): New function.
13072 (get_extension_index): New function, gets the index of an extension
13073 filename in a string.
13074 (compute_exts_from_gf): New function, computes extensions from the
13075 grammar file extension.
13076 (compute_exts_from_src): New functions, computes extensions from the
13077 C source file extension, file given by ``-o'' option.
13078 (compute_base_names): Update.
13079 (output_files): Update.
13080
847bf1f5
AD
130812001-08-01 Robert Anisko <anisko_r@epita.fr>
13082
d995fee7 13083 * doc/bison.texi: Document @$.
847bf1f5
AD
13084 (Locations): New section.
13085
d074a105
AD
130862001-07-18 Akim Demaille <akim@epita.fr>
13087
13088 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
13089 * config/prev-version.txt, config/move-if-change: New.
13090 * Makefile.am: Adjust.
13091
3419715d
AD
130922001-07-08 Pascal Bart <pascal.bart@epita.fr>
13093
13094 * src/bison.simple (yyparse): Suppress warning `comparaison
13095 between signed and unsigned'.
13096
62ab6972
AD
130972001-07-05 Pascal Bart <pascal.bart@epita.fr>
13098
13099 * src/getargs.h (raw_flag): Remove.
13100 * src/getargs.c: Die on `-r'/`--raw'.
13101 * src/lex.c (parse_percent_token): Die on `%raw'.
13102 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
13103 * tests/calc.at: Suppress test with option `--raw'.
13104
1e24cc5b
AD
131052001-07-14 Akim Demaille <akim@epita.fr>
13106
13107 * config/: New.
13108 * configure.in: Require Autoconf 2.50.
13109 Update to gettext 0.10.38.
13110
32dfccf8
AD
131112001-03-16 Akim Demaille <akim@epita.fr>
13112
13113 * doc/bison.texinfo: ANSIfy the examples.
13114
cd5bd6ac
AD
131152001-03-16 Akim Demaille <akim@epita.fr>
13116
13117 * getargs.c (skeleton): New variable.
13118 (longopts): --skeleton is a new option.
13119 (shortopts, getargs): -S is a new option.
13120 * getargs.h: Declare skeleton.
13121 * output.c (output_parser): Use it.
13122
5141b016
AD
131232001-03-16 Akim Demaille <akim@epita.fr>
13124
13125 * m4/strerror_r.m4: New.
13126 * m4/error.m4: Run AC_FUNC_STRERROR_R.
13127 * lib/error.h, lib/error.c: Update.
13128
447992b9
AD
131292001-03-16 Akim Demaille <akim@epita.fr>
13130
13131 * src/getargs.c (longopts): Clean up.
13132
274d42ce
AD
131332001-02-21 Akim Demaille <akim@epita.fr>
13134
13135 * src/reader.c (gensym): `gensym_count' is your own.
13136 Use a static buf to create the symbol name, as token_buffer is no
13137 longer a buffer.
13138
22c821f3
AD
131392001-02-08 Akim Demaille <akim@epita.fr>
13140
13141 * src/conflicts.c (conflict_report): Be sure not to append to res
13142 between two calls, which could happen if both first sprintf were
13143 skipped, but not the first cp += strlen.
13144
18569462
AD
131452001-02-08 Akim Demaille <akim@epita.fr>
13146
13147 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
13148 New, from fileutils 4.0.37.
13149 * configure.in: Require Autoconf 2.49c. I took some time before
13150 making this decision. This is the only way out for portability
13151 issues in Bison, it would mean way too much duplicate effort to
13152 import in Bison features implemented in 2.49c since 2.13.
13153 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
13154
0d8f3c8a
AD
131552001-02-02 Akim Demaille <akim@epita.fr>
13156
13157 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 13158 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 13159
f17bcd1f
AD
131602001-01-19 Akim Demaille <akim@epita.fr>
13161
13162 Get rid of the ad hoc handling of token_buffer in the scanner: use
13163 the obstacks.
13164
13165 * src/lex.c (token_obstack): New.
13166 (init_lex): Initialize it. No longer call...
13167 (grow_token_buffer): this. Remove it.
13168 Adjust all the places which used it to use the obstack.
13169
511e79b3
AD
131702001-01-19 Akim Demaille <akim@epita.fr>
13171
13172 * src/lex.h: Rename all the tokens:
13173 s/\bENDFILE\b/tok_eof/g;
13174 s/\bIDENTIFIER\b/tok_identifier/g;
13175 etc.
13176 Let them be enums, not #define, to ease debugging.
13177 Adjust all the code.
13178
0d6508ef
AD
131792001-01-18 Akim Demaille <akim@epita.fr>
13180
13181 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
13182 * src/lex.c (maxtoken, grow_token_buffer): Static.
13183
6deb4447
AD
131842001-01-18 Akim Demaille <akim@epita.fr>
13185
13186 Since we now use obstacks, more % directives can be enabled.
13187
13188 * src/lex.c (percent_table): Also accept `%yacc',
13189 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
13190 `%debug'.
13191 Handle the actions for `%semantic_parser' and `%pure_parser' here,
13192 instead of returning a token.
13193 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
13194 * src/reader.c (read_declarations): Adjust.
13195 * src/files.c (open_files): Don't call `compute_base_names', don't
13196 compute `attrsfile' since they depend upon data which might be
13197 *in* the input file now.
13198 (output_files): Do it here.
13199 * src/output.c (output_headers): Document the fact that this patch
13200 introduces a guaranteed SEGV for semantic parsers.
13201 * doc/bison.texinfo: Document them.
13202 * tests/suite.at: Exercise these %options.
13203
ff4423cc
AD
132042000-12-20 Akim Demaille <akim@epita.fr>
13205
13206 Also handle the output file (--verbose) with obstacks.
13207
13208 * files.c (foutput): Remove.
13209 (output_obstack): New.
13210 Adjust all dependencies.
13211 * src/conflicts.c: Return a string.
13212 * src/system.h (obstack_grow_string): Rename as...
13213 (obstack_sgrow): this. Be ready to work with non literals.
13214 (obstack_fgrow4): New.
13215
956dba3a
AD
132162000-12-20 Akim Demaille <akim@epita.fr>
13217
13218 * src/files.c (open_files): Fix the computation of short_base_name
13219 in the case of `-o foo.tab.c'.
13220
337bab46
AD
132212000-12-20 Akim Demaille <akim@epita.fr>
13222
13223 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
13224 (copy_dollar): Now that everything uses obstacks, get rid of the
13225 FILE * parameters.
13226
5d3214b8
AD
132272000-12-20 Akim Demaille <akim@epita.fr>
13228
13229 * src/files.c (open_files): Actually the `.output' file is based
13230 on the short_base_name, not base_name.
13231 * tests/suite.at (Checking output file names): Adjust.
13232
29092a57
AD
132332000-12-20 Akim Demaille <akim@epita.fr>
13234
13235 * src/bison.s1: Remove, we now use directly...
13236 * src/bison.simple: this.
13237 * src/Makefile.am: Use pkgdata instead of data.
13238
ea5607fd
AD
132392000-12-20 Akim Demaille <akim@epita.fr>
13240
13241 * src/files.c (guard_obstack): New.
13242 (open_files): Initialize it.
13243 (output_files): Dump it...
13244 * src/files.h: Export it.
13245 * src/reader.c (copy_guard): Use it.
13246
27110317
AD
132472000-12-19 Akim Demaille <akim@epita.fr>
13248
13249 * src/files.c (outfile, defsfile, actfile): Removed as global
13250 vars.
13251 (open_files): Don't compute them.
13252 (output_files): Adjust.
13253 (base_name, short_base_name): Be global.
13254 Adjust dependencies.
13255
19c50364
AD
132562000-12-19 Akim Demaille <akim@epita.fr>
13257
13258 * src/files.c (strsuffix): New.
13259 (stringappend): Be just like strcat but allocate.
13260 (base_names): Eve out from open_files.
13261 Try to simplify the rather hairy computation of base_name and
13262 short_base_name.
13263 (open_files): Use it.
13264 * tests/suite.at (Checking output file names): New test.
13265
573c1d9f
AD
132662000-12-19 Akim Demaille <akim@epita.fr>
13267
13268 * src/system.h (obstack_grow_literal_string): Rename as...
13269 (obstack_grow_string): this.
13270 * src/output.c (output_parser): Recognize `%% actions' instead of
13271 `$'.
13272 * src/bison.s1: s/$/%% actions/.
13273 * src/bison.hairy: Likewise.
13274
ef7ddedd
AD
132752000-12-19 Akim Demaille <akim@epita.fr>
13276
13277 * src/output.c (output_parser): Compute the `#line' lines when
13278 there are.
13279 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
13280 Suggested by Hans Aberg.
13281
ff61dabd
AD
132822000-12-19 Akim Demaille <akim@epita.fr>
13283
13284 Let the handling of the skeleton files be local to the procedures
13285 that use it.
13286
13287 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
13288 longer static.
13289 (fparser, open_extra_files): Remove.
13290 (open_files, output_files): Don't take care of fparser.
13291 * src/files.h: Adjust.
13292 * src/output.c (output_parser): Open and close the file to the
13293 skeleton.
13294 * src/reader.c (read_declarations): When %semantic_parser, open
13295 fguard.
13296
55b96341
AD
132972000-12-19 Akim Demaille <akim@epita.fr>
13298
13299 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
13300 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
13301
358c15b7
AD
133022000-12-19 Akim Demaille <akim@epita.fr>
13303
13304 * src/files.c (open_files): Yipee! We no longer need all the code
13305 looking for `/tmp' since we have no tmp file.
13306
7de3329e
AD
133072000-12-19 Akim Demaille <akim@epita.fr>
13308
13309 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
13310 New macros.
13311 * src/files.c (open_files): Less dependency on MSDOS etc.
13312
3abcd459
AD
133132000-12-14 Akim Demaille <akim@epita.fr>
13314
13315 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
13316 Provide a default definition.
13317 Use it when executing the default @ action.
13318 * src/reader.c (reader_output_yylsp): No longer include
13319 `timestamp' and `text' in the default YYLTYPE.
13320
2a91a95e
AD
133212000-12-12 Akim Demaille <akim@epita.fr>
13322
13323 * src/reader.c (copy_definition, parse_union_decl, copy_action)
13324 (copy_guard): Quote the file names.
13325 Reported by Laurent Mascherpa.
13326
14d3eb9b
AD
133272000-12-12 Akim Demaille <akim@epita.fr>
13328
13329 * src/output.c (output_headers, output_program, output): Be sure
13330 to escape special characters when outputting filenames.
13331 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
13332 (output_headers): Don't depend on them, Use ACTSTR.
13333
d7045ec6
AD
133342000-11-17 Akim Demaille <akim@epita.fr>
13335
13336 * lib/obstack.h: Formatting changes.
13337 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
13338 prevents type checking.
13339 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
13340 cast the value to (void *): assigning a `foo *' to a `void *'
13341 variable is valid.
13342 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
13343 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
13344 append characters.
13345
6fd54b73
AD
133462000-11-17 Akim Demaille <akim@epita.fr>
13347
13348 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
13349 as...
13350 (suite.m4, regression.m4, calc.m4): these.
13351 * tests/atgeneral.m4: Update from CVS Autoconf.
13352
4c50eae6
AD
133532000-11-17 Akim Demaille <akim@epita.fr>
13354
13355 * tests/regression.m4 (%union and --defines): New test,
13356 demonstrating a current bug in the obstack implementation.
13357
a35f64ea
AD
133582000-11-17 Akim Demaille <akim@epita.fr>
13359
13360 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
13361 macros.
13362 Use them to declare the variables which are global or local to
13363 `yyparse'.
13364
7de23534
AD
133652000-11-17 Akim Demaille <akim@epita.fr>
13366
13367 * acconfig.h: Remove, no longer used.
13368
aa7815f5
AD
133692000-11-07 Akim Demaille <akim@epita.fr>
13370
13371 * src: s/Copyright (C)/Copyright/g.
13372
5af1f549
AD
133732000-11-07 Akim Demaille <akim@epita.fr>
13374
13375 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
13376 defining.
13377 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
13378
553e2b22
AD
133792000-11-07 Akim Demaille <akim@epita.fr>
13380
13381 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
13382 Merge in a single CPP if/else.
13383
8a4f41d6
AD
133842000-11-07 Akim Demaille <akim@epita.fr>
13385
13386 * src/output.c (output): Remove useless variables.
13387 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
13388 argument `data' for consistency with the prototypes.
13389 Qualify it `const'.
13390 (obstack_copy, obstack_copy0): Rename the second argument as
13391 `address' for consistency. Qualify it `const'.
13392 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
13393 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
13394 `const' their input argument (`data' or `address').
13395 Adjust the corresponding macros to include `const' in casts.
13396
095a3fb5
AD
133972000-11-03 Akim Demaille <akim@epita.fr>
13398
13399 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
13400 s/PFILE1/BISON_HAIRY/.
13401 Adjust dependencies.
13402
d1cdce7c
AD
134032000-11-03 Akim Demaille <akim@epita.fr>
13404
090c5ebf 13405 For some reason, this was not applied.
d1cdce7c
AD
13406
13407 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
13408 `unlink': it's no longer used.
13409
9311529b
AD
134102000-11-03 Akim Demaille <akim@epita.fr>
13411
13412 * src/files.c (skeleton_find): New function, eved out of...
13413 (open_files, open_extra_files): here.
13414
d8880f69
AD
134152000-11-03 Akim Demaille <akim@epita.fr>
13416
13417 Don't use `atexit'.
13418
13419 * src/files.c (obstack_save): New function.
13420 (done): Rename as...
13421 (output_files): this.
13422 Use `obstack_save'.
13423 * src/main.c (main): Don't use `atexit' to register `done', since
13424 it no longer has to remove tmp files, just call `output_files'
13425 when there are no errors.
13426
0dbb648e
AD
134272000-11-02 Akim Demaille <akim@epita.fr>
13428
13429 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
13430 `unlink': it's no longer used.
13431 * src/files.h: Formatting changes.
13432
896fe5c1
AD
134332000-11-02 Akim Demaille <akim@epita.fr>
13434
13435 Remove the last uses of mktemp and unlink/delete.
13436
13437 * src/files.c (fdefines, ftable): Removed.
13438 (defines_ostack, table_obstack): New.
13439 Adjust dependencies of the former into uses of the latter.
13440 * src/output.c (output_short_or_char_table, output_short_table):
13441 Convert to using obstacks.
13442 * src/reader.c (copy_comment2): Accept one FILE * and two
13443 obstacks.
13444 (output_token_defines, reader_output_yylsp): Use obstacks.
13445 * src/system.h (obstack_fgrow3): New.
1f65350a 13446 * po/POTFILES.in: Adjust.
896fe5c1 13447
dd60faec
AD
134482000-11-01 Akim Demaille <akim@epita.fr>
13449
13450 Change each use of `fattrs' into a use of `attrs_obstack'.
13451
13452 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
13453 * src/files.c (fattrs): Remove.
13454 (attrs_obstack): New.
13455 Adjust all dependencies.
13456 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
13457
8c7ebe49
AD
134582000-11-01 Akim Demaille <akim@epita.fr>
13459
13460 Introduce obstacks.
13461 Change each use of `faction' into a use of `action_obstack'.
13462
13463 * lib/obstack.h, lib/obstack.c: New files.
13464 * src/files.c (faction): Remove.
13465 (action_obstack): New.
13466 Adjust all dependencies.
13467
77aee789
AD
134682000-10-20 Akim Demaille <akim@epita.fr>
13469
13470 * lib/quote.h (PARAMS): New macro. Use it.
13471
43591cec
AD
134722000-10-16 Akim Demaille <akim@epita.fr>
13473
13474 * src/output.c (output_short_or_char_table): New function.
13475 (output_short_table, output_token_translations): Use it.
13476 (goto_actions): Use output_short_table.
13477
1e9798d5
AD
134782000-10-16 Akim Demaille <akim@epita.fr>
13479
13480 * src/symtab.c (bucket_new): New function.
13481 (getsym): Use it.
13482
13483 * src/output.c (output_short_table): New argument to display the
13484 comment associated with the table.
13485 Adjust dependencies.
13486 (output_gram): Use it.
13487 (output_rule_data): Nicer output layout for YYTNAME.
13488
f282676b
AD
134892000-10-16 Akim Demaille <akim@epita.fr>
13490
13491 * src/lex.c (read_typename): New function.
13492 (lex): Use it.
13493 * src/reader.c (copy_dollar): Likewise.
13494
550a72a3
AD
134952000-10-16 Akim Demaille <akim@epita.fr>
13496
13497 * src/reader.c (copy_comment2): Expect the input stream to be on
13498 the `/' which is suspected to open a comment, instead of being
13499 called after `//' or `/*' was read.
13500 (copy_comment, copy_definition, parse_union_decl, copy_action)
13501 (copy_guard): Adjust.
13502
131e2fef
AD
135032000-10-16 Akim Demaille <akim@epita.fr>
13504
13505 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
13506 `read_signed_integer'.
13507
79282c5a
AD
135082000-10-16 Akim Demaille <akim@epita.fr>
13509
13510 * src/reader.c (copy_dollar): New function.
13511 (copy_guard, copy_action): Use it.
13512
ff4a34be
AD
135132000-10-16 Akim Demaille <akim@epita.fr>
13514
13515 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
13516 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
13517 New files, from Fileutils 4.0.27.
13518 * src/main.c (printable_version): Remove.
13519 * src/lex.c, src/reader.c: Use `quote'.
13520
135212000-10-04 Akim Demaille <akim@epita.fr>
13522
13523 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
13524
14ded682
AD
135252000-10-04 Akim Demaille <akim@epita.fr>
13526
13527 * doc/bison.texinfo: Various typos spotted by Neil Booth.
13528
8e03724b
AD
135292000-10-04 Akim Demaille <akim@epita.fr>
13530
13531 When a literal string is used to define two different tokens,
13532 `bison -v' segfaults.
13533 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
13534
13535 * tests/regression.m4: New file.
13536 Include the core of the sample provided by Piotr Gackiewicz.
13537 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
13538 properly.
13539
a9e64249
AD
135402000-10-04 Akim Demaille <akim@epita.fr>
13541
13542 * src/reader.c (parse_expect_decl): Keep `count' within the size
13543 of `buffer'.
13544 From Neil Booth.
13545
da9abf43
AD
135462000-10-02 Paul Eggert <eggert@twinsun.com>
13547
13548 * bison.s1 (yyparse): Assign the default value
13549 unconditionally, to avoid a GCC warning and make the parser a
13550 tad smaller.
13551
c33638bb
AD
135522000-10-02 Akim Demaille <akim@epita.fr>
13553
13554 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
13555 options.
13556
444c570a
AD
135572000-10-02 Akim Demaille <akim@epita.fr>
13558
13559 * src/derives.c, src/print.c, src/reduce.c: To ease the
13560 translation, move some `\n' out of the translated strings.
13561
89cab50d
AD
135622000-10-02 Akim Demaille <akim@epita.fr>
13563
13564 The location tracking mechanism is precious for parse error
13565 messages. Nevertheless, it is enabled only when `@n' is used in
13566 the grammar, which is a different issue (you can use it in error
13567 message, but not in the grammar per se). Therefore, there should
13568 be another means to enable it.
13569
13570 * src/getargs.c (getargs): Support `--locations'.
13571 (usage): Report it.
13572 * src/getargs.h (locationsflag): Export it.
13573 * src/lex.c (percent_table): Support `%locations'.
13574 * src/reader.c (yylsp_needed): Remove this variable, now replaced
13575 with `locationsflag'.
13576 * doc/bison.texinfo: Document `--locations' and `%locations'.
13577 Sort the options.
13578 * tests/calc.m4: Test it.
13579
13580 For regularity of the names, replace each
13581 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
13582 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
13583 In addition replace each `flag' with `_flag'.
13584
d6c2cba0
AD
135852000-10-02 Akim Demaille <akim@epita.fr>
13586
13587 Also test parse error messages, including with YYERROR_VERBOSE.
13588
13589 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
13590 associative).
13591 Use it to check the computations.
13592 Use it to check `nonassoc' is honored.
13593 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
13594 `--yyerror-verbose'.
13595 (_AT_CHECK_CALC): Adjust to this option.
13596 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
13597
5a35a6cb
AD
135982000-10-02 Akim Demaille <akim@epita.fr>
13599
13600 Test also `--verbose', `--defines' and `--name-prefix'. Testing
13601 the latter demonstrates a flaw in the handling of non debugging
13602 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
13603 was used in order to simplify:
13604
13605 #if YYDEBUG
13606 if (yydebug)
13607 {
13608 ...
13609 }
13610 #endif
13611
13612 into
13613
13614 if (yydebug)
13615 {
13616 ...
13617 }
13618
13619 unfortunately this leads to a CPP conflict when
13620 `--name-prefix=foo' is used since it produces `#define yydebug
13621 foodebug'.
13622
13623 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
13624 (YYDPRINTF): New macro.
13625 Spread its use.
13626 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
13627 the bison options.
13628 Also test `--verbose', `--defines' and `--name-prefix'.
13629
71da9eea
AD
136302000-10-02 Akim Demaille <akim@epita.fr>
13631
13632 Improve the readability of the produced parsers.
13633
13634 * src/bison.s1: Formatting changes.
13635 Improve the comment related to the `$' mark.
13636 (yydefault): Don't fall through to `yyresume': `goto' there.
13637 * src/output.c (output_parser): When the `$' is met, skip the end
13638 of its line.
13639 New variable, `number_of_dollar_signs', to check there's exactly
13640 one `$' in the parser skeleton.
13641
95e36146
AD
136422000-10-02 Akim Demaille <akim@epita.fr>
13643
13644 * lib/xstrdup.c: New file, from the fileutils.
13645 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
13646 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
13647 instead of strlen + xmalloc + strcpy.
13648 * src/symtab.c (copys): Remove, use xstrdup instead.
13649
d7020c20
AD
136502000-10-02 Akim Demaille <akim@epita.fr>
13651
13652 * src/gram.h (associativity): New enum type which replaces the
13653 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
13654 `right_assoc', `left_assoc' and `non_assoc'.
13655 Adjust all dependencies.
13656 * src/reader.c: Formatting changes.
13657 (LTYPESTR): Don't define it, use it as a literal in
13658 `reader_output_yylsp'.
13659 * src/symtab.h (symbol_class): New enum type which replaces the
13660 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
13661 `sunknown', `stoken and `snterm'.
13662
1916f98e
AD
136632000-10-02 Akim Demaille <akim@epita.fr>
13664
13665 * src/getargs.c (fixed_outfiles): Rename as...
13666 (yaccflag): for consistency and accuracy.
13667 Adjust dependencies.
13668
d7913476
AD
136692000-10-02 Akim Demaille <akim@epita.fr>
13670
13671 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
13672 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
13673 difficult and introduced a lot of core dump. It turns out that
13674 Bison used an implementation of `xmalloc' based on `calloc', and
13675 at various places it does depend upon the initialization to 0. I
13676 have not tried to isolate the pertinent places, and all the former
13677 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
13678 someone should address this issue.
13679
13680 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
13681 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
13682 files.
13683 Adjust dependencies.
13684 * src/warshall.h: New file.
13685 Propagate.
13686
340ef489
AD
136872000-10-02 Akim Demaille <akim@epita.fr>
13688
13689 Various anti-`extern in *.c' changes.
13690
13691 * src/system.h: Include `assert.h'.
13692
b2ca4022
AD
136932000-10-02 Akim Demaille <akim@epita.fr>
13694
13695 * src/state.h (nstates, final_state, first_state, first_shift)
13696 (first_reduction): Move their exportation from here...
13697 * src/LR0.h: to here.
13698 Adjust dependencies.
13699 * src/getargs.c (statisticsflag): New variable.
13700 Add support for `--statistics'.
13701 Adjust dependencies.
13702
13703 Remove a lot of now useless `extern' statements in most files.
13704
403b315b
AD
137052000-10-02 Akim Demaille <akim@epita.fr>
13706
13707 * src/LR0.h: New file.
13708 Propagate its use.
13709
07a58c13
AD
137102000-10-02 Akim Demaille <akim@epita.fr>
13711
13712 * src/print.h: New file.
13713 Propagate its use.
13714 * src/print.c: Formatting and ordering changes.
13715 (verbose, terse): Replace with...
13716 (print_results): this new function.
13717 Adjust dependencies.
13718
0619caf0
AD
137192000-10-02 Akim Demaille <akim@epita.fr>
13720
13721 * src/conflicts.c (conflict_report): New function.
13722 (conflict_log, verbose_conflict_log): Replace with...
13723 (print_conflicts): this function.
13724 Adjust dependencies.
13725 * src/conflicts.h: New file.
13726 Propagate its inclusion.
13727
3519ec76
AD
137282000-10-02 Akim Demaille <akim@epita.fr>
13729
13730 * src/nullable.h: New file.
13731 Propagate its inclusion.
13732 * src/nullable.c: Formatting changes.
13733
015acc48
AD
137342000-10-02 Akim Demaille <akim@epita.fr>
13735
13736 * src/reduce.h: New file.
13737 Propagate its inclusion.
13738 * src/reduce.c: Topological sort and other formatting changes.
13739 (bool, TRUE, FALSE): Move their definition to...
13740 * src/system.h: here.
13741
8963a27b
AD
137422000-10-02 Akim Demaille <akim@epita.fr>
13743
13744 * src/files.c: Formatting changes.
13745 (tryopen, tryclose, openfiles): Rename as...
13746 (xfopen, xfclose, open_files): this.
13747 (stringappend): static.
13748 * src/files.h: Complete the list of exported symbols.
13749 Propagate its use.
13750
a70083a3
AD
137512000-10-02 Akim Demaille <akim@epita.fr>
13752
13753 * src/reader.h: New file.
13754 Propagate its use instead of tedious list of `extern' and
13755 prototypes.
13756 * src/reader.c: Formatting changes, topological sort,
13757 s/register//.
13758
abadc117
AD
137592000-10-02 Akim Demaille <akim@epita.fr>
13760
13761 * src/lex.h: Prototype `lex.c' exported functions.
13762 * src/reader.c: Adjust.
13763 * src/lex.c: Formatting changes.
13764 (safegetc): Rename as...
13765 (xgetc): this.
13766
720d742f
AD
137672000-10-02 Akim Demaille <akim@epita.fr>
13768
13769 * src/lalr.h: New file.
13770 Propagate its inclusion instead of prototypes and `extern'.
13771 * src/lalr.c: Formatting changes, topological sorting etc.
13772
f2acea59
AD
137732000-10-02 Akim Demaille <akim@epita.fr>
13774
13775 * src/output.c (token_actions): Introduce a temporary array,
13776 YYDEFACT, that makes it possible for this function to use
13777 output_short_table.
13778
d019d655
AD
137792000-10-02 Akim Demaille <akim@epita.fr>
13780
13781 `user_toknums' is output as a `short[]' in `output.c', while it is
13782 defined as a `int[]' in `reader.c'. For consistency with the
13783 other output tables, `user_toknums' is now defined as a table of
13784 shorts.
13785
13786 * src/reader.c (user_toknums): Be a short table instead of an int
13787 table.
13788 Adjust dependencies.
13789
13790 Factor the short table outputs.
13791
13792 * src/output.c (output_short_table): New function.
13793 * src/output.c (output_gram, output_stos, output_rule_data)
13794 (output_base, output_table, output_check): Use it.
13795
6c89f1c1
AD
137962000-10-02 Akim Demaille <akim@epita.fr>
13797
13798 * src/output.c (output): Topological sort of the functions, in
13799 order to get rid of the `static' prototypes.
13800 No longer use `register'.
13801 * src/output.h: New file.
13802 Propagate its inclusion in files explicitly prototyping functions
13803 from output.c.
13804
d9efd181
AD
138052000-09-21 Akim Demaille <akim@epita.fr>
13806
13807 * src/atgeneral.m4: Update from Autoconf.
13808
c29240e7 138092000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
13810
13811 * src/closure.h: New file.
13812 * src/closure.c: Formatting changes, topological sort over the
13813 functions, use of closure.h.
13814 (initialize_closure, finalize_closure): Rename as...
13815 (new_closure, free_closure): these. Adjust dependencies.
13816 * src/LR0.c: Formatting changes, topological sort, use of
13817 cloture.h.
13818 (initialize_states): Rename as...
13819 (new_states): this.
13820 * src/Makefile.am (noinst_HEADERS): Adjust.
13821
499daa50
AD
138222000-09-20 Akim Demaille <akim@epita.fr>
13823
13824 * src/acconfig.h: Don't protect config.h against multiple
13825 inclusion.
13826 Don't define PARAMS.
13827 * src/system.h: Define PARAMS.
13828 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
13829 purpose of config.h. system.h must not try to fix wrong
13830 definitions in config.h.
13831
cc84fd5d
AD
138322000-09-20 Akim Demaille <akim@epita.fr>
13833
13834 * src/derives.h: New file.
13835 * src/main.c, src/derives.h: Use it.
13836 Formatting changes.
13837 * src/Makefile.am (noinst_HEADERS): Adjust.
13838
db5b3a89
AD
138392000-09-20 Akim Demaille <akim@epita.fr>
13840
13841 * tests/atgeneral.m4: Update from Autoconf.
13842 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
13843 (AT_CHECK_CALC): New macros.
13844 Use these macros to test bison with options `', `--raw',
13845 `--debug', `--yacc', `--yacc --debug'.
13846
ceed8467
AD
138472000-09-19 Akim Demaille <akim@epita.fr>
13848
13849 * src/output.c: Formatting changes.
13850 * src/machine.h: Remove, leaving its contents in...
13851 * src/system.h: here.
13852 Include stdio.h.
13853 Adjust all dependencies on stdio.h and machine.h.
13854 * src/getargs.h: New file.
13855 Let all `extern' declarations about getargs.c be replaced with
13856 inclusion of `getargs.h'.
13857 * src/Makefile.am (noinst_HEADERS): Adjust.
13858
13859 * tests/calc.m4 (yyin): Be initialized in main, not on the global
13860 scope.
13861 (yyerror): Returns void, not int.
13862 * doc/bison.texinfo: Formatting changes.
13863
05a1d24b
AD
138642000-09-19 Akim Demaille <akim@epita.fr>
13865
13866 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
13867 portable.
13868
cbd25751
AD
138692000-09-18 Akim Demaille <akim@epita.fr>
13870
13871 * configure.in: Append WARNING_CFLAGS to CFLAGS.
13872 * src/Makefile.am (INCLUDES): Don't.
13873 Be ready to fetch headers in lib/.
13874
13863333
AD
138752000-09-18 Akim Demaille <akim@epita.fr>
13876
13877 * doc/bison.texinfo: Update the copyright.
13878 ANSIfy and GNUify the examples.
13879 Remove the old menu.
13880
0d533154
AD
138812000-09-18 Akim Demaille <akim@epita.fr>
13882
13883 First set of tests: use the `calc' example from the documentation.
13884
13885 * src/bison.s1 (yyparse): Condition the code using `yytname' which
13886 is defined only when YYDEBUG is.
13887 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
13888 * src/files.c (tryopen, tryclose): Formatting changes.
13889 Move to the top and be static.
13890 * src/reader.c (read_signed_integer): Likewise.
13891 * tests/calc.m4: New file.
13892 * Makefile.am, suite.m4: Adjust.
13893 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
13894
e79137ac
AD
138952000-09-18 Akim Demaille <akim@epita.fr>
13896
13897 Add support for an Autotest test suite for Bison.
13898
13899 * m4/m4.m4, m4/atconfig.m4: New files.
13900 * m4/Makefile.am (EXTRA_DIST): Adjust.
13901 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
13902 files.
13903 * src/getargs.c: Display a more standard --version message.
13904 * src/reader.c (reader): Formatting changes.
13905 No longer depend upon VERSION_STRING.
13906 * configure.in: No longer use `dnl'.
13907 Set up the test suite and the new directory `tests/.
13908 (VERSION_STRING): Remove.
13909
27821bff
AD
139102000-04-14 Akim Demaille <akim@epita.fr>
13911
13912 * src/reader.c (copy_comment2): New function, same as former
13913 `copy_comment', but outputs into two FILE *.
13914 (copy_comment): Use it.
13915 (parse_union_decl): Use it.
13916 (get_type, parse_start_decl): Use the same `invalid' message.
13917 (parse_start_decl, parse_union_decl): Use the same `multiple'
13918 message.
13919 (parse_union_decl, copy_guard, copy_action): Use the same
13920 `unmatched' message.
13921 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
13922
cfe5fbc0
AD
139232000-03-31 Akim Demaille <akim@epita.fr>
13924
13925 * src/files.c (tryopen, tryclose): Move to the top.
13926 Be static.
13927
cb7db13e
AD
139282000-03-31 Akim Demaille <akim@epita.fr>
13929
13930 * src/main.c (main): Don't call `done', exit does it.
13931
a0f6b076
AD
139322000-03-31 Akim Demaille <akim@epita.fr>
13933
36281465
AD
13934 * allocate.c: s/return (foo)/return foo/.
13935 * lalr.c: Likewise.
13936 * LR0.c: Likewise.
13937 * output.c: Likewise.
13938 * reader.c: Likewise.
13939 * symtab.c: Likewise.
13940 * vmsgetargs.c: Likewise.
13941
139422000-03-31 Akim Demaille <akim@epita.fr>
13943
13944 Clean up the error reporting functions.
a0f6b076
AD
13945
13946 * src/report.c: New file.
13947 * src/report.h: Likewise.
13948 * src/Makefile.am: Adjust.
13949 * m4/error.m4: New file.
13950 * m4/Makefile.am: Adjust.
13951 * configure.in (jm_PREREQ_ERROR): Call it.
13952 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
13953 Remove.
13954 (fatal, fatals): Remove. All callers use complain.c::fatal.
13955 (warn, warni, warns, warnss, warnss): Remove. All callers use
13956 complain.c::complain.
13957 (toomany): Remove, use fatal instead.
13958 * src/files.c (done): No argument, use complain_message_count.
13959 * src/main.c (main): Register `done' to `atexit'.
13960
13961 * src/getargs.c (usage): More `fputs', less `fprintf'.
13962
18539825
AD
139632000-03-28 Akim Demaille <akim@epita.fr>
13964
13965 * lib/: New directory.
13966 * Makefile.am (SUBDIRS): Adjust.
13967 * configure.in: Adjust.
13968 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
13969 useless.
13970 * src/alloca.c: Moved to lib/.
13971 * src/getopt.c: Likewise.
13972 * src/getopt1.c: Likewise.
13973 * src/getopt.h: Likewise.
13974 * src/ansi2knr.c: Likewise.
13975 * src/ansi2knr.1: Likewise.
13976 * src/Makefile.am: Adjust.
13977 * lib/Makefile.am: New file.
13978
9f306f2a
AD
139792000-03-28 Akim Demaille <akim@epita.fr>
13980
13981 * src/getargs.c (usage): Refresh the help message.
13982
0ba347b6
AD
139832000-03-17 Akim Demaille <akim@epita.fr>
13984
13985 * src/getopt1.c: Updated from textutils 2.0e
13986 * src/getopt.c: Likewise.
13987 * src/getopt.h: Likewise.
13988
dbe7f271
AD
139892000-03-17 Akim Demaille <akim@epita.fr>
13990
13991 * src/Makefile.am (bison.simple): Fix the awk program: quote only
13992 the file name, not the whole `#line LINE FILE'.
13993
75bbe78d
AD
139942000-03-17 Akim Demaille <akim@epita.fr>
13995
13996 On syntax errors, report the token on which we choked.
13997
aa5fd0ee
AD
13998 * src/bison.s1 (yyparse): In the label yyerrlab, when
13999 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 14000
7b306f52
AD
140012000-03-17 Akim Demaille <akim@epita.fr>
14002
aa5fd0ee 14003 * src/reader.c (copy_at): New function.
7b306f52
AD
14004 (copy_guard): Use it.
14005 (copy_action): Use it.
14006
e87b5700
AD
140072000-03-17 Akim Demaille <akim@epita.fr>
14008
14009 Be kind to translators, save some useless translations.
14010
aa5fd0ee 14011 * src/main.c (banner): New function.
e87b5700
AD
14012 (fatal_banner): Use it.
14013 (warn_banner): Use it.
14014
ae3c3164
AD
140152000-03-17 Akim Demaille <akim@epita.fr>
14016
aa5fd0ee
AD
14017 * src/reader.c (copy_definition): Use copy_string and
14018 copy_comment. Removed now unused `match', `ended',
14019 `cplus_comment'.
ae3c3164
AD
14020 (copy_comment, copy_string): Moved, to be visible from
14021 copy_definition.
14022
4dc58e7c
AD
140232000-03-17 Akim Demaille <akim@epita.fr>
14024
aa5fd0ee
AD
14025 * src/reader.c (copy_string): Declare `static inline'. No
14026 problems with inline, since it is checked by configure.
4dc58e7c
AD
14027 (copy_comment): Likewise.
14028
0a6384c4
AD
140292000-03-17 Akim Demaille <akim@epita.fr>
14030
aa5fd0ee 14031 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 14032
3cef001a
AD
140332000-03-17 Akim Demaille <akim@epita.fr>
14034
aa5fd0ee 14035 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
14036 (copy_action): Use it. Removed now unused `match', `ended',
14037 `cplus_comment'.
14038 (copy_guard): Likewise.
14039
ca36d2ef
AD
140402000-03-17 Akim Demaille <akim@epita.fr>
14041
aa5fd0ee 14042 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
14043 (copy_action): Use it.
14044 (copy_guard): Likewise.
14045
6666f98f
AD
140462000-03-17 Akim Demaille <akim@epita.fr>
14047
14048 Change the handling of @s so that they behave exactly like $s.
14049 There is now a pseudo variable @$ (readble and writable), location
14050 of the lhs of the rule (by default ranging from the location of
14051 the first symbol of the rhs, to the location of the last symbol,
14052 or, if the rhs is empty, YYLLOC).
14053
14054 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
14055 yyval.
14056 (yyparse): When providing a default semantic action, provide a
14057 default location action.
14058 (after the $): No longer change `*YYLSP', just stack YYLOC the
14059 same way you stack YYVAL.
14060 * src/reader.c (read_declarations): Use warns.
14061 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
14062 (copy_action, case '@'): Likewise.
14063 Use a standard error message, to save useless work from
14064 translators.
14065
41aca2e0
AD
140662000-03-17 Akim Demaille <akim@epita.fr>
14067
aa5fd0ee
AD
14068 * src/bison.s1: Formatting and cosmetics changes.
14069 * src/reader.c: Likewise.
41aca2e0
AD
14070 Update the Copyright notice.
14071
dc08c1d5
AD
140722000-03-17 Akim Demaille <akim@epita.fr>
14073
aa5fd0ee
AD
14074 * src/bison.s1 (#line): All set to `#line' only, since the
14075 Makefile now handles them.
dc08c1d5 14076
9ee3c97b
AD
140772000-03-16 Akim Demaille <akim@epita.fr>
14078
14079 * src/output.c (output_rule_data): Output the documentation of
14080 some of the tables.
14081 (Copyright notice): Update.
14082 Formatting changes.
14083
0de741ca
AD
140842000-03-16 Akim Demaille <akim@epita.fr>
14085
14086 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
14087 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
14088 One `#if YYDEBUG' remains, since it uses variables which are
14089 defined only if `YYDEBUG != 0'.
14090
bb10be54
AD
140912000-03-16 Akim Demaille <akim@epita.fr>
14092
14093 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
14094 and related variables so that the similarities are highlighted.
14095
b07b484a
AD
140962000-03-16 Akim Demaille <akim@epita.fr>
14097
14098 * src/bison.s1: Properly indent CPP directives.
14099
361f60b3
AD
141002000-03-16 Akim Demaille <akim@epita.fr>
14101
14102 * src/bison.s1: Properly indent the `alloca' CPP section.
14103
8c44d3ec
AD
141042000-03-16 Akim Demaille <akim@epita.fr>
14105
14106 Do not hard code values of directories in `configure.in'.
14107 Update the `configure' tool chain.
14108
14109 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
14110 src/makefile.am.
14111 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
14112 (AC_OUTPUT): Add m4/Makefile.
14113 Bump to bison 1.28a, 1.29 has never been released.
14114 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
14115 handled via src/Makefile.am.
14116 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
14117 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
14118 autoheader.
14119 * Makefile.am (SUBDIRS): Add m4.
14120 (ACLOCAL_AM_FLAGS): New variable.
14121 (AUTOMAKE_OPTIONS): Add check-news.
14122 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
14123 the proper line number and file name.
14124 (DEFS): Propagate the location of bison library files and of the
14125 locale files.
14126 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
14127 builddir.
14128 * acinclude.m4: Remove, replaced by the directory m4.
14129 * m4/Makefile.am (EXTRA_DIST): New variable.
14130 * m4/gettext.m4: New file, from the fileutils.
14131 * m4/lcmessage.m4: Likewise
14132 * m4/progtest.m4: Likewise.
14133 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
14134
f95997e7
AD
141352000-03-10 Akim Demaille <akim@epita.fr>
14136
14137 * src/closure.c:
14138 Formatting changes of various comments.
14139 Respect the GNU coding standards at various places.
14140 Don't use `_()' when no translation is needed.
14141
141421999-12-13 Jesse Thilo <jthilo@gnu.org>
14143
14144 * src/files.c:
14145 OS/2 honors TMPDIR environment variable.
14146
141471999-12-13 Jesse Thilo <jthilo@gnu.org>
14148
14149 * doc/bison.texinfo: Tweaked spelling and grammar.
14150 Updated ISBN.
14151 Removed reference to price of printed copy.
14152 Mention BISON_SIMPLE and BISON_HAIRY.
14153
141541999-12-13 Jesse Thilo <jthilo@gnu.org>
14155
14156 * configure.in, NEWS:
14157 Bison 1.29 released.
14158
141591999-10-27 Jesse Thilo <jthilo@gnu.org>
14160
14161 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
14162 Added reference card.
14163
141641999-07-26 Jesse Thilo <jthilo@gnu.org>
14165
14166 * po/ru.po: Added Russian translation.
14167
141681999-07-26 Jesse Thilo <jthilo@gnu.org>
14169
14170 * configure.in: Added Russian translation.
14171
141721999-07-06 Jesse Thilo <jthilo@gnu.org>
14173
14174 * configure.in, NEWS, README:
14175 Released version 1.28.
14176
141771999-06-14 Jesse Thilo <jthilo@gnu.org>
14178
14179 * src/system.h:
14180 Squashed redefinition warning on some systems.
14181
14182 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
14183 Have configure build version string instead of relying on ANSI string
14184 concatentation.
14185
141861999-06-14 Jesse Thilo <jthilo@gnu.org>
14187
14188 * po/POTFILES.in: Got rid of version.c.
14189
141901999-06-14 Jesse Thilo <jthilo@gnu.org>
14191
14192 * acconfig.h, configure.in:
14193 Have configure build version string instead of relying on ANSI string
14194 concatentation.
14195
141961999-06-08 Jesse Thilo <jthilo@gnu.org>
14197
14198 * doc/bison.1:
14199 Dropped mention of `+' for long-named options.
14200
142011999-05-30 Jesse Thilo <jthilo@gnu.org>
14202
14203 * src/files.c: Added <unistd.h> for unlink().
14204
14205 * src/Makefile.am, src/system.h:
14206 I18n fixes.
14207
142081999-05-30 Jesse Thilo <jthilo@gnu.org>
14209
14210 * README: Added a FAQ list.
14211
14212 * configure.in, acconfig.h:
14213 I18n fixes.
14214
142151999-05-30 Jesse Thilo <jthilo@gnu.org>
14216
14217 * doc/FAQ, doc/Makefile.am:
14218 Added a FAQ list.
14219
142201999-05-19 Jesse Thilo <jthilo@gnu.org>
14221
14222 * src/alloc.h, src/symtab.h, src/version.c:
14223 Protected inclusion of "config.h" with HAVE_CONFIG_H.
14224
142251999-04-18 Jesse Thilo <jthilo@gnu.org>
14226
14227 * src/.cvsignore, src/Makefile.am:
14228 Reorganized: sources in `src', documentation in `doc'.
14229
14230 * src/lex.c (literalchar):
14231 fixed the code for escaping double quotes (thanks
14232 Jonathan Czisny.)
14233
142341999-04-18 Jesse Thilo <jthilo@gnu.org>
14235
14236 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
14237 Adjusted paths to reflect directory reorganization.
14238
142391999-04-18 Jesse Thilo <jthilo@gnu.org>
14240
14241 * doc/.cvsignore, doc/Makefile.am:
14242 Reorganized: sources in `src', documentation in `doc'.
14243
142441999-04-18 Jesse Thilo <jthilo@gnu.org>
14245
14246 * configure.in:
14247 Updated AC_INIT file to reflect directory reorganization.
14248
14249 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
14250 Reorganized: sources in `src', documentation in `doc'.
14251
142521999-04-13 Jesse Thilo <jthilo@gnu.org>
14253
14254 * src/allocate.c:
14255 Don't declare calloc() and realloc() if not necessary.
14256
142571999-04-13 Jesse Thilo <jthilo@gnu.org>
14258
14259 * configure.in, acconfig.h, acinclude.m4:
14260 Don't declare calloc() and realloc() if not necessary.
14261
142621999-03-23 Jesse Thilo <jthilo@gnu.org>
14263
14264 * po/.cvsignore: Added i18n support.
14265
142661999-03-23 Jesse Thilo <jthilo@gnu.org>
14267
14268 * acconfig.h, configure.in, Makefile.am:
14269 Added i18n support.
14270
142711999-03-22 Jesse Thilo <jthilo@gnu.org>
14272
14273 * src/bison.s1: Fixed #line numbers.
14274
142751999-03-15 Jesse Thilo <jthilo@gnu.org>
14276
14277 * po/es.po, po/fr.po, po/nl.po, po/de.po:
14278 Added PO files from Translation Project.
14279
142801999-03-03 Jesse Thilo <jthilo@gnu.org>
14281
14282 * Makefile.am:
14283 Added support for non-ANSI compilers (ansi2knr).
14284
142851999-02-16 Jesse Thilo <jthilo@gnu.org>
14286
14287 * configure.in: Bumped version number to 1.27.
14288
14289 * Makefile.am:
14290 Added `bison.simple' to list of files removed by `make distclean'.
14291
142921999-02-12 Jesse Thilo <jthilo@gnu.org>
14293
14294 * src/files.c, src/files.h:
14295 Defined locations of parser files in config.h instead of Makefile.
14296
142971999-02-12 Jesse Thilo <jthilo@gnu.org>
14298
14299 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
14300 Defined locations of parser files in config.h instead of Makefile.
14301
143021999-02-09 Jesse Thilo <jthilo@gnu.org>
14303
14304 * Makefile.am:
14305 Removed inappropriate use of $< macro.
14306
143071999-02-05 Jesse Thilo <jthilo@gnu.org>
14308
14309 * po/Makefile.in.in, po/POTFILES.in:
14310 Add `po' directory skeleton.
14311
143121999-01-27 Jesse Thilo <jthilo@gnu.org>
14313
14314 * README: Document help-bison list.
14315
14316 * configure.in: Add check for mkstemp().
14317
143181999-01-20 Jesse Thilo <jthilo@gnu.org>
14319
14320 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
14321 Hush a few compiler warnings.
14322
14323 * src/files.c:
14324 Add tryclose(), which verifies that fclose was successful.
14325 Hush a couple of compiler warnings.
14326
143271999-01-20 Jesse Thilo <jthilo@gnu.org>
14328
14329 * Makefile.am, OChangeLog:
14330 ChangeLog is now automatically generated. Include the old version as
14331 OChangeLog.
14332
143331999-01-14 Jesse Thilo <jthilo@gnu.org>
14334
14335 * 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:
14336 Update FSF address.
14337
143381999-01-14 Jesse Thilo <jthilo@gnu.org>
14339
14340 * doc/bison.texinfo: Fix formatting glitch.
14341
14342 * doc/bison.texinfo: Update FSF address.
14343
143441999-01-14 Jesse Thilo <jthilo@gnu.org>
14345
14346 * acconfig.h: Update FSF address.
14347
143481999-01-08 Jesse Thilo <jthilo@gnu.org>
14349
14350 * src/system.h:
14351 Don't define PACKAGE here, since config.h defines it.
14352
143531998-12-30 Jesse Thilo <jthilo@gnu.org>
14354
14355 * src/reader.c: Update copyright date.
14356
14357 * src/main.c:
14358 Ditch sprintf to statically-sized buffers in fatal/warn functions in
14359 favor of output directly to stderr (avoids buffer overruns).
14360
14361 * src/reader.c: Some checks for premature EOF.
14362
14363 * 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:
14364 Use prototypes if the compiler understands them.
14365
14366 * src/files.c: Honor TMPDIR on Unix hosts.
14367 Use prototypes if the compiler understands them.
14368
14369 * src/reader.c:
14370 Fix a couple of buffer overrun bugs.
14371 Use prototypes if the compiler understands them.
14372
14373 * src/system.h: Include unistd.h and ctype.h.
14374 Use #ifdef instead of #if for NLS symbols.
14375
143761998-12-30 Jesse Thilo <jthilo@gnu.org>
14377
14378 * doc/bison.texinfo:
14379 Delete comment "consider using @set for edition number, etc..." since
14380 we now are doing so.
14381
143821998-12-30 Jesse Thilo <jthilo@gnu.org>
14383
14384 * configure.in:
14385 Use prototypes if the compiler understands them.
14386
14387 * NEWS: Document 1.26 highlights.
14388
14389 * Makefile.am: Require Automake 1.3 or later.
14390
14391 * acconfig.h:
14392 Use prototypes if the compiler understands them.
14393
143941998-12-29 Jesse Thilo <jthilo@gnu.org>
14395
14396 * src/version.c:
14397 Use VERSION symbol from automake for version number.
14398
143991998-12-29 Jesse Thilo <jthilo@gnu.org>
14400
14401 * acconfig.h, configure.in, version.cin:
14402 Use VERSION symbol from automake for version number.
14403
144041998-11-28 Jesse Thilo <jthilo@gnu.org>
14405
14406 * Makefile.am:
14407 Distribute original version of simple parser (bison.s1), not built
14408 version (bison.simple).
14409
144101998-11-28 Jesse Thilo <jthilo@gnu.org>
14411
14412 * doc/bison.texinfo: Add info dir entry.
14413
14414 * doc/bison.texinfo:
14415 Let automake put version number into documentation.
14416
144171998-11-26 Jesse Thilo <jthilo@gnu.org>
14418
14419 * src/bison.cld, src/build.com, src/vmshlp.mar:
14420 Add non-RCS files from /gd/gnu/bison.
14421
144221998-11-26 Jesse Thilo <jthilo@gnu.org>
14423
14424 * doc/bison.1:
14425 Document the BISON_HAIRY and BISON_SIMPLE variables.
14426
144271998-11-25 Jesse Thilo <jthilo@gnu.org>
14428
14429 * src/version.c: Build version.c automatically.
14430
14431 * src/reader.c:
14432 Fix token numbering (used to start at 258, not 257).
14433
14434 * src/system.h: Include config.h.
14435
14436 * src/getargs.c: Update bug report address.
14437
14438 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
14439 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
14440
144411998-11-25 Jesse Thilo <jthilo@gnu.org>
14442
14443 * Makefile.am:
14444 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
14445
14446 * configure.in, version.cin:
14447 Build version.c automatically.
14448
14449 * AUTHORS: Add AUTHORS file.
14450
14451 * README: Update bug report address.
14452
14453 * bison.simple:
14454 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
14455
14456 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
14457 Add automake stuff.
14458
144591998-11-25 Jesse Thilo <jthilo@gnu.org>
14460
14461 * doc/bison.texinfo: Clean up some formatting.
14462
144631998-05-05 Richard Stallman <rms@gnu.org>
14464
14465 * doc/bison.texinfo:
14466 Explain better why to make a pure parser.
14467
144681998-01-05 Richard Stallman <rms@gnu.org>
14469
14470 * src/files.c (openfiles):
14471 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
14472 find a temporary directory, if possible. Do not unlink files while
14473 they are open.
14474
144751997-08-25 Richard Stallman <rms@gnu.org>
14476
14477 * src/reader.c (stack_offset;):
14478 Change some warni to warns.
14479
14480 * src/lex.c (literalchar): Use warns, not warni.
14481
144821997-06-28 Richard Stallman <rms@gnu.org>
14483
14484 * src/bison.s1: Add a Bison version comment.
14485
14486 * src/main.c (fatal, warn, berror):
14487 Use program_name.
14488
144891997-06-28 Richard Stallman <rms@gnu.org>
14490
14491 * Makefile.in (bison_version): New variable.
14492 (dist): Use that variable.
14493 (bison.s1): Substitute the Bison version into bison.simple.
14494
14495 * bison.simple: Add a Bison version comment.
14496
144971997-06-18 Richard Stallman <rms@gnu.org>
14498
14499 * src/main.c (fatal, warn, berror):
14500 Make error messages standard.
14501 (toomany): Improve error message text.
14502
14503 * 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:
14504 new.h renamed to alloc.h.
14505
145061997-06-18 Richard Stallman <rms@gnu.org>
14507
14508 * Makefile.in: new.h renamed to alloc.h.
14509
145101997-05-24 Richard Stallman <rms@gnu.org>
14511
14512 * src/lex.c (literalchar):
14513 Fix the code for escaping \, " and '.
14514
14515 (lex): Avoid trouble when there are many chars
14516 to discard in a char literal with just several chars in it.
14517
145181997-05-17 Richard Stallman <rms@gnu.org>
14519
14520 * src/bison.s1:
14521 Use malloc, if using alloca is troublesome.
14522 (YYSTACK_USE_ALLOCA): New flag macro.
14523 Define it for some systems and compilers.
14524 (YYSTACK_ALLOC): New macro.
14525 (yyparse): Use YYSTACK_ALLOC to allocate stack.
14526 If it was malloc'd, free it.
14527
145281997-05-17 Richard Stallman <rms@gnu.org>
14529
14530 * bison.simple:
14531 Use malloc, if using alloca is troublesome.
14532 (YYSTACK_USE_ALLOCA): New flag macro.
14533 Define it for some systems and compilers.
14534 (YYSTACK_ALLOC): New macro.
14535 (yyparse): Use YYSTACK_ALLOC to allocate stack.
14536 If it was malloc'd, free it.
14537
145381997-04-23 Richard Stallman <rms@gnu.org>
14539
14540 * src/bison.s1:
14541 (alloca) [__hpux]: Always define as __builtin_alloca.
14542
145431997-04-23 Richard Stallman <rms@gnu.org>
14544
14545 * bison.simple:
14546 (alloca) [__hpux]: Always define as __builtin_alloca.
14547
145481997-04-22 Richard Stallman <rms@gnu.org>
14549
14550 * src/bison.s1:
14551 [__hpux]: Include alloca.h (right for HPUX 10)
14552 instead of declaring alloca (right for HPUX 9).
14553
14554 * src/bison.s1 (__yy_memcpy):
14555 Declare arg `count' as unsigned int.
14556 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
14557
145581997-04-22 Richard Stallman <rms@gnu.org>
14559
14560 * bison.simple:
14561 [__hpux]: Include alloca.h (right for HPUX 10)
14562 instead of declaring alloca (right for HPUX 9).
14563
14564 * bison.simple (__yy_memcpy):
14565 Declare arg `count' as unsigned int.
14566 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
14567
145681997-01-03 Richard Stallman <rms@gnu.org>
14569
14570 * src/allocate.c: [__STDC__ or _MSC_VER]:
14571 Declare calloc and realloc to return void *.
14572
145731997-01-02 Richard Stallman <rms@gnu.org>
14574
14575 * src/system.h:
14576 [_MSC_VER]: Include stdlib.h and process.h.
14577 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
14578
14579 * src/main.c (main): Return FAILURE as a value.
14580 (printable_version): Declare arg as int, not char.
14581
145821997-01-02 Richard Stallman <rms@gnu.org>
14583
14584 * Makefile.in (dist):
14585 Explicitly check for symlinks, and copy them.
14586
145871996-12-19 Richard Stallman <rms@gnu.org>
14588
14589 * src/files.c:
14590 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
14591
145921996-12-18 Paul Eggert <eggert@gnu.org>
14593
14594 * src/bison.s1 (yyparse):
14595 If __GNUC__ and YYPARSE_PARAM are both defined,
14596 declare yyparse to have a void * argument.
14597
145981996-12-18 Paul Eggert <eggert@gnu.org>
14599
14600 * bison.simple (yyparse):
14601 If __GNUC__ and YYPARSE_PARAM are both defined,
14602 declare yyparse to have a void * argument.
14603
146041996-12-17 Richard Stallman <rms@gnu.org>
14605
14606 * src/reduce.c (nbits): Add some casts.
14607
146081996-08-12 Richard Stallman <rms@gnu.org>
14609
14610 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
14611
146121996-08-12 Richard Stallman <rms@gnu.org>
14613
14614 * bison.simple: Test _MSDOS as well as _MSDOS_.
14615
146161996-07-31 Richard Stallman <rms@gnu.org>
14617
14618 * src/bison.s1:
14619 [__sun && __i386]: Include alloca.h.
14620
146211996-07-31 Richard Stallman <rms@gnu.org>
14622
14623 * bison.simple:
14624 [__sun && __i386]: Include alloca.h.
14625
146261996-07-30 Richard Stallman <rms@gnu.org>
14627
14628 * src/bison.s1: Comment change.
14629
14630 * src/bison.s1: Test _MSDOS_, not MSDOS.
14631
146321996-07-30 Richard Stallman <rms@gnu.org>
14633
14634 * bison.simple: Comment change.
14635
14636 * bison.simple: Test _MSDOS_, not MSDOS.
14637
146381996-06-01 Richard Stallman <rms@gnu.org>
14639
14640 * 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:
14641 Insert `_' macro around many string constants.
14642
14643 * src/main.c:
14644 Insert `_' macro around many string constants.
14645
14646 (main): Call setlocale, bindtextdomain and textdomain.
14647
14648 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
14649 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
14650 [ENABLE_NLS]: Include libintl.h.
14651 [ENABLE_NLS] (gettext): Define.
14652 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
14653 (N_, PACKAGE, LOCALEDIR): New macros.
14654
146551996-06-01 Richard Stallman <rms@gnu.org>
14656
14657 * POTFILES.in: New file.
14658
14659 * Makefile.in (allocate.o):
14660 Define target explicitly.
14661
14662 * Makefile.in (CFLAGS): Set to @CFLAGS@.
14663 (LDFLAGS): Set to @LDFLAGS@.
14664 (configure): Run autoconf only if preceding `cd' succeeds.
14665 (bison.s1): Redirect output to temporary file then move the
14666 temporary to the target, rather than redirecting directly to bison.s1.
14667 (clean): Remove config.status and config.log.
14668 (distclean): Don't remove config.status here.
14669
146701996-05-12 Richard Stallman <rms@gnu.org>
14671
14672 * src/bison.s1:
14673 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
14674
146751996-05-12 Richard Stallman <rms@gnu.org>
14676
14677 * bison.simple:
14678 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
14679
146801996-05-11 Richard Stallman <rms@gnu.org>
14681
14682 * src/bison.s1 (__yy_memcpy):
14683 Really reorder the args, as was supposedly done on Feb 14 1995.
14684 (yyparse): Calls changed accordingly.
14685
146861996-05-11 Richard Stallman <rms@gnu.org>
14687
14688 * Makefile.in (dist): Don't use $(srcdir).
14689
14690 * bison.simple (__yy_memcpy):
14691 Really reorder the args, as was supposedly done on Feb 14 1995.
14692 (yyparse): Calls changed accordingly.
14693
146941996-01-27 Richard Stallman <rms@gnu.org>
14695
14696 * src/output.c (output_rule_data):
14697 Test YYERROR_VERBOSE in the conditional
14698 around the definition of ttyname.
14699
147001995-12-29 Richard Stallman <rms@gnu.org>
14701
14702 * src/bison.s1:
14703 Fix line numbers in #line commands.
14704
147051995-12-29 Richard Stallman <rms@gnu.org>
14706
14707 * bison.simple:
14708 Fix line numbers in #line commands.
14709
147101995-12-27 Richard Stallman <rms@gnu.org>
14711
14712 * src/bison.s1 (YYPARSE_PARAM_DECL):
14713 In C++, make it always null.
14714 (YYPARSE_PARAM_ARG): New macro.
14715 (yyparse): Use YYPARSE_PARAM_ARG.
14716
147171995-12-27 Richard Stallman <rms@gnu.org>
14718
14719 * bison.simple (YYPARSE_PARAM_DECL):
14720 In C++, make it always null.
14721 (YYPARSE_PARAM_ARG): New macro.
14722 (yyparse): Use YYPARSE_PARAM_ARG.
14723
147241995-11-29 Richard Stallman <rms@gnu.org>
14725
14726 * doc/bison.texinfo:
14727 Describe literal string tokens, %raw, %no_lines, %token_table.
14728
147291995-11-29 Daniel Hagerty <hag@gnu.org>
14730
14731 * doc/bison.texinfo: Fixed update date
14732
147331995-10-16 Richard Stallman <rms@gnu.org>
14734
14735 * src/version.c: Version 1.25.
14736
147371995-10-16 Richard Stallman <rms@gnu.org>
14738
14739 * NEWS: *** empty log message ***
14740
147411995-10-16 Richard Stallman <rms@gnu.org>
14742
14743 * doc/bison.1, doc/bison.rnh:
14744 Add new options.
14745
147461995-10-15 Richard Stallman <rms@gnu.org>
14747
14748 * src/vmsgetargs.c, src/getargs.c:
14749 Added -n, -k, and -raw switches.
14750 (noparserflag, toknumflag, rawtoknumflag): New variables.
14751
14752 * src/symtab.h (SALIAS):
14753 New #define for adding aliases to %token.
14754 (struct bucket): Added `alias' field.
14755
14756 * src/reduce.c (reduce_grammar):
14757 Revise error message.
14758 (print_notices): Remove final `.' from error message.
14759
14760 * src/reader.c (reader_output_yylsp):
14761 New function.
14762 (readgram): Use `#if 0' around code that accepted %command
14763 inside grammar rules: The documentation doesn't allow it,
14764 and it will fail since the %command processors scan for the next %.
14765 (parse_token_decl): Extended the %token
14766 declaration to allow a multi-character symbol as an alias.
14767 (parse_thong_decl): New function.
14768 (read_declarations): Added %thong declarations.
14769 (read_declarations): Handle NOOP to deal with allowing
14770 % declarations as another means to specify the flags.
14771 (readgram): Allow %prec prior to semantics embedded in a rule.
14772 (skip_to_char, read_declarations, copy_definition)
14773 (parse_token_decl, parse_start_decl, parse_type_decl)
14774 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
14775 (get_type_name, copy_guard, copy_action, readgram)
14776 (get_type, packsymbols): Revised most error messages.
14777 Changed `fatal' to `warnxxx' to avoid aborting for error.
14778 Revised and use multiple warnxxx functions to avoid using VARARGS1.
14779 (read_declarations): Improve the error message for
14780 an invalid character. Do not abort.
14781 (read_declarations, copy_guard, copy_action): Use
14782 printable_version to avoid unprintable characters in printed output.
14783 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
14784 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
14785 Allow the type of a non-terminal can be given
14786 more than once, as long as all specifications give the same type.
14787
14788 * src/output.c:
14789 (output_headers, output_trailers, output, output_gram)
14790 (output_rule_data): Implement noparserflag variable.
14791 Implement toknumflag variable.
14792 (output): Call reader_output_yylsp to output LTYPESTR.
14793
14794 * src/main.c (main):
14795 If reader sees an error, don't process the grammar.
14796 (fatals): Updated to not use VARARGS1.
14797 (printable_version, int_to_string, warn, warni, warns, warnss)
14798 (warnsss): New error reporting functions. Avoid abort for error.
14799
14800 * src/lex.h:
14801 Added THONG and NOOP for alias processing.
14802 Added SETOPT for the new code that allows setting options with %flags.
14803
14804 * src/lex.c:
14805 Include getopt.h. Add some extern decls.
14806 (safegetc): New function to deal with EOF gracefully.
14807 (literalchar); new function to deal with reading \ escapes.
14808 (lex): Use literalchar.
14809 (lex): Implemented "..." tokens.
14810 (literalchar, lex, parse_percent_token): Made tokenbuffer
14811 always contain the token. This includes growing the token
14812 buffer while reading an integer.
14813 (parse_percent_token): Replaced if-else statement with percent_table.
14814 (parse_percent_token): Added % declarations as another
14815 way to specify the flags -n, -l, and -r. Also added hooks for
14816 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
14817 major changes to files.c.
14818 (lex) Retain in the incoming stream a character following
14819 an incorrect '/'.
14820 (skip_white_space, lex): Revised most error messages
14821 and changed fatal to warn to avoid aborting.
14822 (percent_table): Added %thong declarations.
14823
14824 * src/gram.h: Comment changes.
14825
14826 * src/files.c (openfiles, open_extra_files, done):
14827 Add faction flag
14828 and actfile file. Handle noparserflag. Both for -n switch.
14829
14830 * src/conflicts.c (resolve_sr_conflict):
14831 Remove use of alloca.
14832
148331995-06-01 Jim Meyering <meyering@gnu.org>
14834
14835 * doc/bison.texinfo: *** empty log message ***
14836
148371995-05-06 Richard Stallman <rms@gnu.org>
14838
14839 * src/bison.s1: Comment change.
14840
148411995-05-06 Richard Stallman <rms@gnu.org>
14842
14843 * bison.simple: Comment change.
14844
148451995-05-03 Richard Stallman <rms@gnu.org>
14846
14847 * src/version.c: Version now 1.24.
14848
14849 * src/bison.s1: Change distribution terms.
14850
14851 * src/version.c: Version now 1.23.
14852
148531995-05-03 Richard Stallman <rms@gnu.org>
14854
14855 * doc/bison.texinfo:
14856 Rewrite "Conditions for Using Bison".
14857 Update version to 1.24.
14858
148591995-05-03 Richard Stallman <rms@gnu.org>
14860
14861 * bison.simple: Change distribution terms.
14862
148631995-02-23 Richard Stallman <rms@gnu.org>
14864
14865 * src/files.c: Test __VMS_POSIX as well as VMS.
14866
148671995-02-14 Jim Meyering <meyering@gnu.org>
14868
14869 * src/bison.s1 (__yy_memcpy):
14870 Renamed from __yy_bcopy to avoid
14871 confusion. Reverse FROM and TO arguments to be consistent with
14872 those of memcpy.
14873
148741995-02-14 Jim Meyering <meyering@gnu.org>
14875
14876 * bison.simple (__yy_memcpy):
14877 Renamed from __yy_bcopy to avoid
14878 confusion. Reverse FROM and TO arguments to be consistent with
14879 those of memcpy.
14880
148811994-11-10 David J. MacKenzie <djm@gnu.org>
14882
14883 * NEWS: reformat
14884
14885 * NEWS: New file.
14886
14887 * Makefile.in (DISTFILES): Include NEWS.
14888
14889 * Makefile.in (DISTFILES):
14890 Include install-sh, not install.sh.
14891
14892 * configure.in: Update to Autoconf v2 macro names.
14893
148941994-10-05 David J. MacKenzie <djm@gnu.org>
14895
14896 * Makefile.in: fix typo
14897
14898 * Makefile.in (prefix, exec_prefix):
14899 Let configure set them.
14900
149011994-09-28 David J. MacKenzie <djm@gnu.org>
14902
14903 * Makefile.in: Set datadir to $(prefix)/share.
14904
149051994-09-15 Richard Stallman <rms@gnu.org>
14906
14907 * src/bison.s1:
14908 Update copyright notice and GPL version.
14909
149101994-09-15 Richard Stallman <rms@gnu.org>
14911
14912 * bison.simple:
14913 Update copyright notice and GPL version.
14914
149151994-07-12 Richard Stallman <rms@gnu.org>
14916
14917 * src/reduce.c, src/reader.c:
14918 entered into RCS
14919
149201994-05-05 David J. MacKenzie <djm@gnu.org>
14921
14922 * Makefile.in: entered into RCS
14923
149241994-03-26 Richard Stallman <rms@gnu.org>
14925
14926 * src/bison.s1: entered into RCS
14927
149281994-03-26 Richard Stallman <rms@gnu.org>
14929
14930 * bison.simple: entered into RCS
14931
149321994-03-25 Richard Stallman <rms@gnu.org>
14933
14934 * src/main.c: entered into RCS
14935
149361994-03-24 Richard Stallman <rms@gnu.org>
14937
14938 * src/conflicts.c: entered into RCS
14939
149401994-01-02 Richard Stallman <rms@gnu.org>
14941
14942 * Makefile.in: *** empty log message ***
14943
149441993-11-21 Richard Stallman <rms@gnu.org>
14945
14946 * src/bison.s1: *** empty log message ***
14947
149481993-11-21 Richard Stallman <rms@gnu.org>
14949
14950 * doc/bison.texinfo: entered into RCS
14951
14952 * doc/bison.texinfo: *** empty log message ***
14953
149541993-11-21 Richard Stallman <rms@gnu.org>
14955
14956 * bison.simple: *** empty log message ***
14957
149581993-10-25 David J. MacKenzie <djm@gnu.org>
14959
14960 * doc/bison.texinfo: *** empty log message ***
14961
149621993-10-19 Richard Stallman <rms@gnu.org>
14963
14964 * src/bison.s1: *** empty log message ***
14965
149661993-10-19 Richard Stallman <rms@gnu.org>
14967
14968 * bison.simple: *** empty log message ***
14969
149701993-10-14 Richard Stallman <rms@gnu.org>
14971
14972 * src/bison.s1: *** empty log message ***
14973
149741993-10-14 Richard Stallman <rms@gnu.org>
14975
14976 * bison.simple: *** empty log message ***
14977
149781993-09-14 David J. MacKenzie <djm@gnu.org>
14979
14980 * doc/bison.texinfo: *** empty log message ***
14981
149821993-09-13 Noah Friedman <friedman@gnu.org>
14983
14984 * Makefile.in: *** empty log message ***
14985
149861993-09-10 Richard Stallman <rms@gnu.org>
14987
14988 * src/conflicts.c: *** empty log message ***
14989
14990 * src/system.h: entered into RCS
14991
149921993-09-10 Richard Stallman <rms@gnu.org>
14993
14994 * doc/bison.1: entered into RCS
14995
149961993-09-06 Noah Friedman <friedman@gnu.org>
14997
14998 * src/version.c: entered into RCS
14999
150001993-09-06 Noah Friedman <friedman@gnu.org>
15001
15002 * Makefile.in: *** empty log message ***
15003
150041993-07-30 David J. MacKenzie <djm@gnu.org>
15005
15006 * Makefile.in: *** empty log message ***
15007
150081993-07-24 Richard Stallman <rms@gnu.org>
15009
15010 * src/bison.s1: *** empty log message ***
15011
150121993-07-24 Richard Stallman <rms@gnu.org>
15013
15014 * bison.simple: *** empty log message ***
15015
150161993-07-08 David J. MacKenzie <djm@gnu.org>
15017
15018 * Makefile.in: *** empty log message ***
15019
150201993-07-04 Richard Stallman <rms@gnu.org>
15021
15022 * src/bison.s1: *** empty log message ***
15023
150241993-07-04 Richard Stallman <rms@gnu.org>
15025
15026 * bison.simple: *** empty log message ***
15027
150281993-06-26 David J. MacKenzie <djm@gnu.org>
15029
15030 * src/getargs.c: entered into RCS
15031
150321993-06-26 David J. MacKenzie <djm@gnu.org>
15033
15034 * doc/bison.texinfo: *** empty log message ***
15035
15036 * doc/bison.1: New file.
15037
150381993-06-25 Richard Stallman <rms@gnu.org>
15039
15040 * src/getargs.c: New file.
15041
150421993-06-16 Richard Stallman <rms@gnu.org>
15043
15044 * src/bison.s1: *** empty log message ***
15045
150461993-06-16 Richard Stallman <rms@gnu.org>
15047
15048 * bison.simple: *** empty log message ***
15049
150501993-06-03 Richard Stallman <rms@gnu.org>
15051
15052 * src/bison.s1: New file.
15053
150541993-06-03 Richard Stallman <rms@gnu.org>
15055
15056 * doc/bison.texinfo: *** empty log message ***
15057
150581993-06-03 Richard Stallman <rms@gnu.org>
15059
15060 * bison.simple: New file.
15061
150621993-05-19 Richard Stallman <rms@gnu.org>
15063
15064 * doc/bison.texinfo: New file.
15065
150661993-05-07 Noah Friedman <friedman@gnu.org>
15067
15068 * Makefile.in: *** empty log message ***
15069
150701993-04-28 Noah Friedman <friedman@gnu.org>
15071
15072 * src/reader.c: *** empty log message ***
15073
150741993-04-23 Noah Friedman <friedman@gnu.org>
15075
15076 * src/alloc.h: entered into RCS
15077
150781993-04-20 David J. MacKenzie <djm@gnu.org>
15079
15080 * src/version.c: *** empty log message ***
15081
15082 * src/files.c, src/allocate.c:
15083 entered into RCS
15084
15085 * src/reader.c: *** empty log message ***
15086
15087 * src/lex.c: entered into RCS
15088
15089 * src/conflicts.c: New file.
15090
15091 * src/symtab.c: entered into RCS
15092
15093 * src/alloc.h: New file.
15094
15095 * src/LR0.c: entered into RCS
15096
150971993-04-18 Noah Friedman <friedman@gnu.org>
15098
15099 * src/reader.c: New file.
15100
15101 * src/version.c: *** empty log message ***
15102
151031993-04-18 Noah Friedman <friedman@gnu.org>
15104
15105 * Makefile.in: *** empty log message ***
15106
151071993-04-17 Noah Friedman <friedman@gnu.org>
15108
15109 * Makefile.in: *** empty log message ***
15110
151111993-04-15 Richard Stallman <rms@gnu.org>
15112
15113 * src/main.c, src/files.c:
15114 New file.
15115
151161993-04-15 Noah Friedman <friedman@gnu.org>
15117
15118 * configure.in: entered into RCS
15119
15120 * configure.in: *** empty log message ***
15121
15122 * configure.in: New file.
15123
151241993-04-14 Richard Stallman <rms@gnu.org>
15125
15126 * Makefile.in: New file.
15127
151281993-04-13 Richard Stallman <rms@gnu.org>
15129
15130 * src/version.c: New file.
15131
151321993-03-25 Richard Stallman <rms@gnu.org>
15133
15134 * src/output.c: entered into RCS
15135
151361992-09-25 Richard Stallman <rms@gnu.org>
15137
15138 * configure.bat: entered into RCS
15139
151401992-06-22 Richard Stallman <rms@gnu.org>
15141
15142 * src/vmsgetargs.c: entered into RCS
15143
151441992-06-22 Richard Stallman <rms@gnu.org>
15145
15146 * doc/bison.rnh: entered into RCS
15147
151481992-04-20 David J. MacKenzie <djm@gnu.org>
15149
15150 * README: entered into RCS
15151
151521992-01-22 Richard Stallman <rms@gnu.org>
15153
15154 * src/machine.h: entered into RCS
15155
151561991-12-21 Richard Stallman <rms@gnu.org>
15157
15158 * src/lalr.c, src/closure.c:
15159 entered into RCS
15160
151611991-12-20 Richard Stallman <rms@gnu.org>
15162
15163 * src/state.h: entered into RCS
15164
151651991-12-18 Richard Stallman <rms@gnu.org>
15166
15167 * src/print.c, src/nullable.c, src/derives.c:
15168 entered into RCS
15169
151701991-11-03 David J. MacKenzie <djm@gnu.org>
15171
15172 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
15173 entered into RCS
15174
151751988-09-09 Richard Stallman <rms@gnu.org>
15176
15177 * src/bison.hairy: entered into RCS
15178
151791987-12-16 Richard Stallman <rms@gnu.org>
15180
15181 * REFERENCES: entered into RCS
dc546b0f 15182
f294a2c2 15183
04098407 15184 -----
f294a2c2 15185
04098407 15186 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
e2a21b6f
PE
15187 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
15188 Software Foundation, Inc.
f294a2c2 15189
04098407
PE
15190 Copying and distribution of this file, with or without
15191 modification, are permitted provided the copyright notice and this
15192 notice are preserved.