]> git.saurik.com Git - bison.git/blame_incremental - ChangeLog
* data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
[bison.git] / ChangeLog
... / ...
CommitLineData
12007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4 true since it's then always used regardless of whether yyoverflow is
5 defined. Reported by Christian Burger at
6 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
7 * THANKS: Add Christian Burger.
8
92007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
10
11 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
12 determine whether this function has already complained about an invalid
13 value for a %define boolean variable, don't check whether Bison has
14 ever examined the value. As written, the check was a tautology.
15 Instead, record and check for this complaint using a separate muscle.
16
172007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
18
19 Fix push parsing memory leak reported by Brandon Lucia at
20 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
21 * THANKS: Add Brandon Lucia.
22 * data/push.c (yypstate_delete): Free the stack if it was reallocated
23 but the parse never completed and thus freed it.
24 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
25 * tests/testsuite.at: Include push.at.
26 * test/push.at: New.
27 (Push Parsing: Memory Leak for Early Deletion): New test case.
28
292007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
30
31 Improve handling of multiple S/R conflicts in the same state and of S/R
32 conflicts involving multiple reductions.
33 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
34 set for a state here or Bison will abort if it is reassigned on a
35 later conflicted reduction in the same state.
36 Similarly, don't finalize and assign the solved conflicts report here
37 or it will be lost if it is reassigned on a later conflicted reduction
38 in the same state.
39 (set_conflicts): Instead, assign them both here after all S/R conflicts
40 in the state have been fully examined.
41 * src/print.c (shift_set): Rename to...
42 (no_reduce_set): ... this.
43 (print_reductions): Update for rename, and add %nonassoc error action
44 tokens to no_reduce_set so that, when printing the first remaining
45 reduction on an error action token, the reduction is enclosed in
46 brackets.
47 (print_results): Update for rename.
48 * tests/conflicts.at (Solved conflicts report for multiple reductions
49 in a state): New test case.
50 (%nonassoc error actions for multiple reductions in a state): New test
51 case.
52
53 * src/main.c (main): Don't depend on C99 features.
54
552007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
56
57 * build-aux/.cvsignore: Add compile.
58 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
59 uniwidth.
60
612007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
62
63 * bootstrap (slurp): Create target directories that don't exist.
64 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
65
662007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
67
68 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
69 than item number.
70 * closure.c (closure): Likewise.
71 * state.h (reductions): Comment sorting of rules.
72 (state): Comment sorting of items.
73
742007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
75
76 Fix C++ test cases after recent Gnulib changes. Discussed starting at
77 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
78 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
79 definition in order to avoid Gnulib headers since we don't use config.h
80 here.
81 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
82 rather than AT_DATA so that config.h is included.
83
842007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
85
86 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
87 instead of fprintf. Guard these functions with #if YYDEBUG instead of
88 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
89 and so that YYFPRINTF is guaranteed to be defined here.
90
912007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
92
93 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
94 with...
95 (muscle_percent_define_check_values): ... this more helpful function.
96 Again, it's not used yet, but it will be.
97 * src/muscle_tab.h: Likewise.
98
99 Improve some comments in parser table construction.
100 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
101 (generate_states): Don't mention ruleset, which is internal to closure.
102 * src/closure.c (closure): Explain sorting of core and itemset, which
103 is required for this function to behave correctly.
104 * src/closure.h (closure): Mention sorting.
105
1062007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
107
108 * src/lalr.c (state_lookahead_tokens_count): For code readability,
109 move the check for disabled transitions to an aver since conflict
110 resolution hasn't happened yet.
111
112 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
113 labels a state as inconsistent just because it has error transitions.
114 The original form of this check appeared in revision 1.1 of lalr.c,
115 which was committed on 1991-12-21. Now (at least), changing the
116 consistency label on such a state appears to have no useful effect in
117 any of the places it is examined, which I enumerate below. The key
118 point to understanding each item in this enumeration is that a state
119 with an error transition is labelled consistent in the first place only
120 if it has no rules, so the check cannot matter for states that have
121 rules. (1) Labelling a state as inconsistent will cause set_conflicts
122 to try to identify its conflicts, and a state must have *rules* to have
123 conflicts. (2) Labelling a state as inconsistent will affect how
124 action_row sets the default *rule* for the state. (3) Labelling a
125 state as inconsistent will cause build_relations to add lookback edges
126 to *rules* in that state.
127 * src/state.h (struct state): Word the comment for member consistent
128 more carefully.
129
1302007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
131
132 Don't depend on C99 features.
133 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
134 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
135 * src/reader.c (check_and_convert_grammar): Fix for-loop.
136 * src/state.c (state_mark_reachable_states): Fix for-loop.
137 (state_remove_unreachable_states): Fix for-loop.
138
139 Don't widen struct state with member reachable just to temporarily
140 record reachability. Instead, use a local bitset.
141 * src/state.h (struct state): Remove member.
142 * src/state.c (state_new): Don't initialize it.
143 (state_mark_reachable_states): Rename to...
144 (state_record_reachable_states): ... this, and use bitset.
145 (state_remove_unreachable_states): Use bitset.
146
1472007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
148
149 * src/Makefile.am (yacc): Quote target action commands properly so
150 that the yacc script isn't corrupt. Reported by Hans Aberg at
151 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
152
153 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
154 the case of pure parsers. Reported by Frans Englich at
155 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
156 * THANKS: Add Frans Englich.
157
158 * NEWS (2.3a+): In the %code entry, reference section `Bison
159 Declaration Summary' from the manual now since the %code summary has
160 moved there.
161 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
162 in the rules section must be terminated by semicolons.
163
1642007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
165
166 Extend the front-end API for %define variables to more completely
167 mirror the back-end. This will be useful in the future.
168 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
169 Update comments to mention the new front-end counterparts of these
170 macros.
171 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
172 for muscle_string_decode and muscle_location_decode.
173 (muscle_string_decode): New static function.
174 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
175 (muscle_percent_define_get, muscle_percent_define_ifdef): New
176 functions.
177 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
178 muscle_percent_define_get to mimic the b4_percent_define_flag_if
179 implementation more closely.
180 (muscle_percent_define_invalid_value): New function.
181 * src/muscle_tab.h (muscle_percent_define_get,
182 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
183 Prototype.
184
1852007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
186
187 * NEWS (2.3a+): Mention yesterday's state-removal change.
188 (2.3a): Remove the %language entry, which was added after 2.3a.
189 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
190 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
191 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
192 tests/existing.at: Update copyright date.
193
1942007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
195
196 If conflict resolution makes states unreachable, remove those states,
197 report rules that are then unused, and don't report conflicts in those
198 states.
199 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
200 New global function.
201 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
202 function.
203 * src/main.c (main): After conflict resolution, remove the unreachable
204 states and update all data structures that reference states by number.
205 * src/state.c (state_new): Initialize each state's reachable member to
206 false.
207 (state_mark_reachable_states): New static function.
208 (state_remove_unreachable_states): New global function.
209 * src/state.h (struct state): Add member bool reachable.
210 (state_remove_unreachable_states): Prototype.
211 * tests/conflicts.at (Unreachable States After Conflict Resolution):
212 New test case.
213 * tests/existing.at (GNU pic Grammar): Update test case output now that
214 an unused rule is discovered.
215
2162007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
217
218 Minor code cleanup in parser table construction.
219 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
220 (new_itemsets, save_reductions): Update for rename to nitemset.
221 * src/closure.c (nritemset): Rename to...
222 (nitemset): ... this since the "r" appears to meaningless and isn't
223 used in the comments.
224 (closure): Update for rename.
225 * src/closure.h (nritemset): Update extern to...
226 (nitemset): ... this.
227 * src/lalr.c (LA): Fix a typo in comments.
228 * src/print.c (print_core): Update for rename to nitemset.
229 * src/print_graph.c (print_graph): Likewise.
230 * src/state.h: Fix some typos in header comments.
231
2322007-04-04 Paul Eggert <eggert@cs.ucla.edu>
233
234 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
235 still sticks to ASCII. Sorry!
236
237 * README-hacking: New file, taken mostly from coreutils, with changes
238 for Bison. Contains much of the contents of:
239 * README-cvs: Remove.
240 * bootstrap: Sync from gnulib.
241 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
242 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
243
2442007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
245
246 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
247 Setzer.
248 (Java Differences): Fix some typos.
249 * THANKS: Add Sebastian Setzer.
250
2512007-03-07 Paolo Bonzini <bonzini@gnu.org>
252
253 * data/java.m4 (b4_single_class_if): Remove.
254 (b4_abstract_if): Look at "%define abstract".
255 (b4_lexer_if): New.
256 (b4_union_name): Rename...
257 (b4_yystype): ... to this. Map to "%define stype".
258 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
259 b4_maybe_throws): Fix quoting.
260 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
261 * data/lalr1.java (Lexer interface): Always define.
262 (Lexer interface within parser class): Remove.
263 (YYLexer class): New, used when "%code lexer" is present.
264 (constructor): When "%code lexer" is used, pass %lex-param
265 to the lexer constructor.
266 (yylex, yyparse): Remove %lex-param from method invocations
267 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
268
269 * doc/bison.texinfo (Java Bison Interface): Mention "%define
270 abstract". Rename "%define union_name" to "%define stype".
271 Rename method names according to previous patch.
272 (Java Scanner Interface): Describe "%code lexer" instead of
273 "%pure-parser" and "%define single_class".
274 (Java Differences): Mention "%code lexer".
275
276 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
277 Include scanner here, using macros from tests/local.at.
278 (AT_DATA_CALC_Y): Remove final argument.
279 (_AT_CHECK_JAVA_CALC): Likewise.
280 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
281 of %locations and %error-verbose.
282 (main): Test with and without %lex-param.
283 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
284 (AT_BISON_OPTION_POPDEFS): Pop it.
285
2862007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
287
288 DJGPP spefic issue. Inhibit the use of disallowed characters for
289 file name genertion on Win98, WinXP, etc. These are |<>":?*\
290 and concern testsuite case 46.
291 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
292 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
293 * djgpp/config.bat: Inhibit the use of disallowed characters.
294
2952007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
296
297 Miscellaneous %define and %code cleanup.
298 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
299 values are interpreted.
300 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
301 documentation a little more.
302 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
303 muscle_percent_define_insert, muscle_percent_code_grow): New
304 functions/macros.
305 * src/muscle_tab.h (muscle_percent_define_insert,
306 muscle_percent_code_grow): Prototype.
307 * src/parse-gram.y (prologue_declaration): Use
308 muscle_percent_define_insert and muscle_percent_code_grow when parsing
309 %define and %code directives.
310
311 Make it easy to share %define boolean variables between the front-end
312 and back-end. Though not used yet, this will be useful in the future.
313 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
314 Bison uses of names rather than just skeleton uses of names.
315 (b4_percent_define_get, b4_percent_define_ifdef): Rename
316 b4_percent_define_skeleton_variables(VARIABLE) to
317 b4_percent_define_bison_variables(VARIABLE).
318 (b4_percent_code_get, b4_percent_code_ifdef): Rename
319 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
320 b4_percent_code_bison_qualifiers(QUALIFIER).
321 (b4_check_user_names_wrap): Update for renames.
322 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
323 muscle_percent_define_default): New functions mimicking
324 b4_percent_define_flag_if and b4_percent_define_default.
325
326 For %define variables, report locations for invalid values and
327 redefinitions.
328 * data/bison.m4 (b4_percent_define_flag_if): Read
329 b4_percent_define_loc(VARIABLE) to report the location of an invalid
330 value for VARIABLE.
331 (b4_percent_define_default): Save a special location in
332 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
333 must later be reported as invalid.
334 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
335 functions.
336 (muscle_percent_define_insert): Record the location of VARIABLE in
337 muscle percent_define_loc(VARIABLE), and use it to report the previous
338 location for a redefinition.
339 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
340 (muscle_percent_define_default): Update like b4_percent_define_default.
341 (muscle_grow_user_name_list): Rename to...
342 (muscle_user_name_list_grow): ... this for consistency and use
343 muscle_location_grow.
344 * src/muscle_tab.h (muscle_location_grow): Prototype.
345 * tests/input.at (%define errors): Update expected output.
346 * tests/skeletons.at (%define boolean variables: invalid skeleton
347 defaults): New test case.
348
3492007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
350
351 * src/print.c (lookahead_set, state_default_rule): Remove.
352 (print_reductions): Replace state_default_rule invocation with
353 equivalent use of yydefact, which was computed in token_actions in
354 tables.c.
355 (print_results): Don't allocate lookahead_set.
356
3572007-02-27 Paolo Bonzini <bonzini@gnu.org>
358
359 * data/lalr1.java: Prefix all private members with yy.
360
3612007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
362
363 Use YYFPRINTF instead of fprintf where appropriate. Reported by
364 Sebastien Fricker at
365 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
366 * THANKS: Add Sebastien Fricker.
367 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
368 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
369 accept a variable number of arguments.
370
3712007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
372
373 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
374
3752007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
376
377 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
378 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
379 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
380
3812007-02-11 Paul Eggert <eggert@cs.ucla.edu>
382
383 Undo my 2007-02-07 change, switching back to the c-strcase module
384 introduced in the 2007-02-03 change. Bruno Haible reported that
385 the 2007-02-07 change would be dangerous in Turkish if we add a
386 language whose name contains "i", since "i" is not lowercase "I"
387 in Turkish.
388 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
389 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
390 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
391 * m4/.cvsignore: Remove strcase.m4.
392 * src/getargs.c: Revert 2007-02-07 change, as follows.
393 Include c-strcase.h.
394 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
395
3962007-02-11 Bruno Haible <bruno@clisp.org>
397
398 Enable the Java related testsuite tests when the only Java compiler
399 found is a gcj < 4.3. Discussed at
400 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
401 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
402
4032007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
404
405 * data/Makefile.am: Update copyright date.
406 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
407 yypstate_new returns NULL.
408 (yypstate_new): Return NULL if malloc does.
409 * src/reader.c (packgram): Move translation of rule actions from the
410 beginning of packgram to...
411 (check_and_convert_grammar): ... here right before packgram is invoked
412 so it's easier to write more complete comments, and remove redundant
413 code.
414
4152007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
416
417 As in semantic actions, make @$ in %initial-action, %destructor, and
418 %printer imply %locations.
419 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
420 scanning @$.
421 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
422 (@$ in %initial-action implies %locations,
423 @$ in %destructor implies %locations,
424 @$ in %printer implies %locations): ... these new test cases.
425
4262007-02-07 Paul Eggert <eggert@cs.ucla.edu>
427
428 Undo most of the 2007-02-03 change, switching to the strcase module
429 now that gnulib strcase has been fixed.
430 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
431 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
432 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
433 * m4/.cvsignore: Add strcase.m4.
434 * src/getargs.c: Revert 2007-02-03 change, as follows.
435 Don't include c-strcase.h.
436 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
437 strcasecmp has "unspecified behavior" outside the POSIX locale,
438 but it works fine in practice if at least one argument is ASCII,
439 as is the case in Bison.
440
4412007-02-07 Paolo Bonzini <bonzini@gnu.org>
442
443 * tests/java.at: Skip tests if only one of javac/java is present.
444 Reported by Joel E. Denny.
445 * tests/atlocal.in: Adjust copyright years.
446
4472007-02-05 Paolo Bonzini <bonzini@gnu.org>
448
449 * data/lalr1.java (Stack): Work around old verifiers that disallow
450 access to the private fields of an inner class, from the outer class.
451 We can make Stack's fields public because user code doesn't have access
452 to the instance of Stack used by parse(). Reported by Paul Eggert.
453
4542007-02-03 Paul Eggert <eggert@cs.ucla.edu>
455
456 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
457 the right spot for these files?
458 * bootstrap.conf (gnulib_modules): Add c-strcase.
459 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
460 c-strncasecmp.c.
461 * src/getargs.c: Include c-strcase.h.
462 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
463 to avoid unspecified behavior.
464
4652007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
466
467 * doc/bison.texinfo (Decl Summary): Correct typo.
468
4692007-01-30 Paolo Bonzini <bonzini@gnu.org>
470
471 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
472 Complain if the value does not match empty, "true" or "false".
473 * data/c++.m4: Adjust default definitions of %define variables.
474 * data/java.m4: Adjust default definitions of %define variables.
475 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
476 to above behavior.
477 * tests/input.at (Boolean %define variables): Test new behavior.
478
4792007-01-29 Paolo Bonzini <bonzini@gnu.org>
480
481 * NEWS: Mention java.
482 * TODO: Remove things that are done.
483 * bootstrap.conf: Add javacomp-script and javaexec-script.
484 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
485
486 * data/Makefile.am: Add new files.
487 * data/java-skel.m4: New.
488 * data/java.m4: New.
489 * data/lalr1.java: New.
490
491 * doc/bison.texinfo: Put "A Complete C++ Example" under
492 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
493 under Other Languages.
494
495 * src/getargs.c (valid_languages): Add Java.
496 * src/getargs.h (struct bison_language): Update size of string fields.
497
498 * tests/Makefile.am: Add java.at.
499 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
500 * tests/java.at: New.
501 * tests/testsuite.at: Include it.
502
5032007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
504
505 Clean up.
506 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
507 at_directive_argv arguments so these no longer have to be global
508 variables. Also, update the implementation for the following changes.
509 (fail_for_at_directive_too_many_args,
510 fail_for_at_directive_too_few_args): Add at_directive_name argument.
511 (at_directive_name): Remove as at_directive_argv[0] will be used for
512 this now.
513 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
514 for the directive name.
515 (at_directive_argc, at_directive_argv): Make these local within
516 skel_lex instead of global.
517 (INITIAL): Update directive start action for above changes.
518 (SC_AT_DIRECTIVE_ARG): Rename to...
519 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
520 (SC_AT_DIRECTIVE_SKIP_WS): Update.
521 (scan_skel): Move yylex_destroy to...
522 (skel_scanner_free): ... here.
523 * tests/skeletons.at (installed skeleton file name): Rename to...
524 (installed skeleton file names): ... this.
525
5262007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
527
528 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
529 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
530 Summary" not "Directives".
531 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
532 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
533 since the former is now the more complete one.
534 (Prologue Alternatives): Likewise and do the same for %defines.
535 (Table of Symbols): Add summary of %code, add summary of %define, and
536 move full %code documentation to...
537 (Decl Summary): ... here for consistency with other entries in these
538 sections.
539 Move %define entry in order to keep this list alphabetized.
540 Reword %define entry a little to put less emphasis on the skeleton
541 concept, which most users shouldn't have to think about.
542
5432007-01-26 Paul Eggert <eggert@cs.ucla.edu>
544
545 Adjust to recent gnulib changes.
546 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
547 Add string.h, string_.h, unistd_.h, wchar_.h.
548 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
549 * src/system.h: Don't include <stpcpy.h>; this is now done by
550 <string.h>.
551
5522007-01-23 Paolo Bonzini <bonzini@gnu.org>
553
554 Simplify implementation of unqualified %code, implement macros for
555 uniform treatment of boolean %define flags. Document %define.
556 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
557 b4_percent_code_ifdef): New.
558 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
559 * data/c++.m4: Define default value for global_tokens_and_yystype.
560 * data/glr.cc: Likewise.
561 * data/location.cc: Use b4_percent_define_flag_if.
562
563 * doc/bison.texinfo (Decl Summary): Document %define.
564
565 * src/parse-gram.y (Unqualified %code): Change muscle name to
566 b4_percent_code().
567 (content.opt): Default to empty.
568
5692007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
570
571 Implement support for relative and absolute skeleton file names.
572 Discussed starting at
573 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
574 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
575 (Bison Options): Document in --skeleton entry.
576 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
577 full_skeleton can't necessarily hold all of pkgdatadir.
578 If the specified skeleton file name contains a `/', don't prepend
579 pkgdatadir.
580 * src/parse-gram.y (prologue_declaration): If the specified skeleton
581 file name contains a `/', prepend the grammar file directory.
582 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
583 * skeletons.at: New file.
584 (relative skeleton file names): New test case.
585 (installed skeleton file names): New test case.
586 * tests/testsuite.at: Include skeletons.at.
587
588 * bootstrap: Update copyright to 2007.
589
5902007-01-17 Paolo Bonzini <bonzini@gnu.org>
591
592 * bootstrap: Remove occurrences of .#bootmp from the files.
593
5942007-01-17 Akim Demaille <akim@epita.fr>
595
596 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
597 nonterminals.
598 Use per-type %printer.
599
6002007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
601
602 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
603 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
604 djgpp/config.site, src/files.c, src/files.h, src/main.c,
605 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
606 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
607 tests/glr-regression.at, tests/input.at, tests/local.at,
608 tests/output.at, tests/torture.at: Update copyright to 2007.
609
6102007-01-16 Akim Demaille <akim@epita.fr>
611
612 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
613 error code.
614 (Calc++ Scanner): Exit with failure if we can't open the input
615 file.
616 Accept "-" standing for stdin.
617 (Calc++ Top Level): Print the result only if the parsing was
618 successful.
619
6202007-01-16 Akim Demaille <akim@epita.fr>
621
622 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
623
6242007-01-15 Paolo Bonzini <bonzini@gnu.org>
625 and Joel E. Denny <jdenny@ces.clemson.edu>
626
627 Clean up %define and %code implementation in M4 some. Most
628 importantly, rename all related macros to be in the b4_percent_define
629 and b4_percent_code namespaces. Also, complete support for `.' in
630 %define variable names and %code qualifiers.
631 * data/bison.m4 (b4_check_user_names): Check for special
632 "SKELETON-NAMESPACE(name)" macros instead of using two nested
633 m4_foreach loops.
634 (b4_get_percent_define, b4_get_percent_code): Rename to...
635 (b4_percent_define_get, b4_percent_code_get): ... these.
636 Extend documentation with examples.
637 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
638 b4_percent_define_skeleton_variables and
639 b4_percent_code_skeleton_qualifiers.
640 Expect any value for the %define variable `foo' to be stored in the
641 macro named `b4_percent_define(foo)'; expect any %code blocks for the
642 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
643 expect any unqualified %code blocks to be stored in a macro named
644 `b4_percent_code_unqualified'.
645 Use m4_indir so that %define variable names and %code qualifiers can
646 contain `.', which is allowed by the grammar parser.
647 (b4_percent_define_default): New macro to set a default value for a
648 %define variable.
649 (m4_wrap): Update wrapped code, and fix some underquoting.
650 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
651 Expect grammar uses of %define variables and %code qualifiers to be
652 defined in b4_percent_define_user_variables and
653 b4_percent_code_user_qualifiers.
654 * data/c++.m4: Use b4_percent_define_default rather than
655 m4_define_default. Fix some underquoting. Skeleton usage of %define
656 variable define_location_comparison now implies skeleton usage of
657 %define variable filename_type.
658 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
659 data/push.c, data/yacc.c: Update macro names.
660 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
661 muscle names.
662
6632007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
664
665 DJGPP specific issues.
666
667 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
668 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
669
6702007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
671
672 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
673 run parsers in all tests so that Valgrind is invoked during
674 maintainer-check-valgrind.
675 (Duplicate representation of merged trees): Free all semantic values.
676 (Duplicated user destructor for lookahead): Likewise.
677
6782007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
679
680 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
681 command-line prefix.
682 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
683 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
684 miss Valgrind messages.
685 (Exploding the Stack Size with Malloc): Likewise.
686
6872007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
688
689 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
690 locals. Reported by Juan Manuel Guerrero at
691 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
692 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
693 Fix some indentation also.
694 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
695 explaining this issue.
696
6972007-01-09 Paolo Bonzini <bonzini@gnu.org>
698 and Joel E. Denny <jdenny@ces.clemson.edu>
699
700 Simplify union and prologue handling, and escape union and lex/parse
701 params with digraphs.
702 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
703 values to the empty string since these are no longer guaranteed
704 initialized by the front-end.
705 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
706 braces around b4_user_stype since this is no longer done by the
707 front-end.
708 * src/files.c, src/files.h (pre_prologue_obstack,
709 post_prologue_obstack): Remove.
710 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
711 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
712 with digraphs. This fixes lex params and parse params.
713 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
714 * src/output.c (prepare): Remove muscle insertion of the prologues.
715 (output): Remove freeing of pre_prologue_obstack and
716 post_prologue_obstack.
717 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
718 than prologue_augment for prologue parsing so you don't need prologue
719 obstacks.
720 (grammar_declaration): For %union RHS, use `braceless' instead of
721 "{...}" so that braces are already stripped and code is escaped with
722 digraphs.
723 * src/reader.c (prologue_augment): Remove.
724 (reader): Remove initialization of pre_prologue_obstack and
725 post_prologue_obstack.
726 * src/reader.h (prologue_augment): Remove.
727
728 * data/c.m4: Remove stray parenthesis.
729
7302007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
731
732 Remove quotes from variables names in %define directives and from
733 qualifiers in %code directives, and restrict the characters that are
734 allowed in them to M4-friendly ones. For %define, continue to support
735 the quoted form as a deprecated feature. Discussed starting at
736 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
737 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
738 %code.
739 * doc/bison.texinfo (Prologue Alternatives): Update.
740 (Bison Declaration Summary): In %defines entry, update mention of
741 `%code requires' and `%code provides'.
742 (C++ Location Values): Update %define uses.
743 (Calc++ Parser Interface): Likewise.
744 (Calc++ Parser): Likewise, and update `%code requires' uses.
745 (Table of Symbols): Update %code documentation.
746 * src/parse-gram.y (prologue_declaration): For %define variables, use
747 `variable' instead of `STRING'.
748 (grammar_declaration): For %code qualifiers, use `ID' instead of
749 `STRING'.
750 (variable): New nonterminal that takes an `ID' or a `STRING'.
751 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
752 and %define uses.
753 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
754 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
755 (%define errors): Update %define uses.
756
7572007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
758
759 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
760 instead of muscle_insert for %define values so that M4-special
761 characters are replaced with digraphs.
762 * tests/input.at (%define errors): Extend to check weird values.
763
7642007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
765
766 Instead of having skeletons declare all valid %define variables and
767 %code qualifiers, provide macros that retrieve the associated values
768 and build these lists automatically. Thus Bison will now warn when a
769 variable or qualifier is not used by the skeleton in the current
770 invocation regardless of whether it might sometimes be used by that
771 skeleton in other invocations. Also, move all %define value macros to
772 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
773 form, which is replaced by %code.
774 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
775 (b4_check_user_names): ... this, and change the series of valid name
776 arguments to a single list argument for names used in the skeleton
777 similar to the existing list argument for names used in the grammar.
778 Warn instead of complaining.
779 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
780 values and %code code, to format %code code properly, and to build
781 lists of all %define variables and %code qualifiers used in the
782 skeleton: b4_skeleton_percent_define_variables and
783 b4_skeleton_percent_code_qualifiers.
784 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
785 Remove, and...
786 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
787 the skeleton names lists can finish building first. In place of
788 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
789 expect the lists b4_user_percent_define_variables and
790 b4_user_percent_code_qualifiers.
791 * data/c++.m4: Where setting default values for b4_parser_class_name,
792 b4_location_type, b4_filename_type, b4_namespace, and
793 b4_define_location_comparison, update their names to the
794 b4_percent_define_ namespace.
795 * data/glr.c: Don't use b4_check_percent_define_variables and
796 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
797 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
798 (b4_parser_class_name, b4_namespace): Define these using
799 b4_get_percent_define for parser_class_name and namespace.
800 * data/location.cc: Use b4_get_percent_define.
801 * data/push.c: Don't use b4_check_percent_define_variables and
802 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
803 * data/yacc.c: Likewise, and don't call m4_exit in
804 b4_use_push_for_pull_if or m4_wrap code will never execute.
805 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
806 Rename to...
807 (muscle_grow_user_name_list): ... this for consistency with the
808 terminology used in bison.m4.
809 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
810 %define variable names, and rename muscle used_percent_define_variables
811 to user_percent_define_variables.
812 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
813 user_percent_code_qualifiers.
814 (content): Remove.
815 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
816 {CODE} form is no longer accepted.
817 * tests/input.at (Reject bad %code qualifiers): Rename to...
818 (Reject unused %code qualifiers): ... this, and update test output.
819 (%define error): Update test output.
820
8212007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
822
823 Check for unrecognized %define variables similar to checking for
824 unrecognized %code qualifiers. Check for redefined %define variables.
825 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
826 generalizes...
827 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
828 (b4_check_percent_define_variables): New, also wraps it.
829 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
830 variables using b4_check_percent_define_variables.
831 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
832 all those exercised in the test suite and all those listed in the
833 `Default values' section of c++.m4. Are there others?
834 * data/push.c, data/yacc.c: Declare no valid %define variables.
835 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
836 similar to muscle_find, but it works even when the muscle stores a
837 const value.
838 (muscle_grow_used_name_list): New function for constructing the used
839 name list muscles that b4_check_for_unrecognized_names requires.
840 * src/parse-gram.y (prologue_declaration): Warn if a variable is
841 %define'd more than once. Define the b4_used_percent_define_variables
842 muscle with muscle_grow_used_name_list.
843 (grammar_declaration): Abbreviate %code code with
844 muscle_grow_used_name_list.
845 * tests/input.at (%define errors): New.
846
8472007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
848
849 Provide warn_at, complain_at, and fatal_at function callbacks to the
850 skeletons, and use this for %code qualifier complaints.
851 * data/bison.m4 (b4_error_at): New, invoked by...
852 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
853 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
854 @fatal_at(...@) directives.
855 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
856 qualifiers in b4_used_percent_code_qualifiers and to use
857 b4_complain_at.
858 * src/location.c, src/location.h (boundary_set_from_string): New global
859 function.
860 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
861 function.
862 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
863 to b4_used_percent_code_qualifiers.
864 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
865 function.
866 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
867 (lineno): Rename to...
868 (out_lineno): ... this so I don't misunderstand it again.
869 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
870 here; these newlines are in the input but not the output file.
871 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
872 (at_directive_perform): ... this new static function, and add handling
873 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
874 directives.
875 * tests/input.at (Reject bad %code qualifiers): Update test output with
876 locations and extend.
877
878 * tests/output.at (Output file name: [, Output file name: ]): Remove
879 bogus comment about these tests failing.
880
8812007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
882
883 Clean up b4_check_percent_code_qualifiers a little.
884 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
885 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
886 documentation and add examples.
887 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
888 qualifiers here.
889
8902007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
891
892 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
893 unreliable -- especially when they're hidden inside another macro.
894 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
895 data/c.m4: Remove m4_divert(-1).
896 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
897 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
898 m4_divert_push(0) and m4_divert_pop(0).
899 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
900 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
901 pushed and popped by m4sugar, should be first on the stack.
902
903 Provide warn, complain, and fatal function callbacks to the skeletons.
904 This provides more flexibility than m4_fatal, improves the error
905 message format, and captures messages for translation. Discussed
906 starting at
907 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
908 * data/bison.m4 (b4_error): New, invoked by...
909 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
910 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
911 directives. Because these M4 macros might be called when the current
912 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
913 the previous removal of uses of m4_divert, which caused trouble.
914 (b4_check_percent_code_qualifiers): Use b4_complain instead of
915 m4_fatal to report unrecognized %code qualifiers.
916 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
917 push parser requests.
918 * data/glr.c: Use b4_complain instead of m4_fatal to report
919 non-deterministic push parser requests.
920 Update @output usage to @output(...@) form.
921 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
922 report missing %defines. Update @output usage to @output(...@) form.
923 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
924 @output(...@) form.
925 * src/main.c (main): Invoke skel_scanner_free.
926 * src/scan-skel.h (skel_scanner_free): Prototype new function.
927 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
928 obstack_for_string from flex-scanner.h.
929 (YY_DECL): Use to declare skel_lex static.
930 (decode_at_digraphs): Remove; now handled in the new
931 SC_AT_DIRECTIVE_ARG start condition.
932 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
933 functions.
934 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
935 at_directive_argv): New static globals.
936 (INITIAL): Use fail_for_invalid_at.
937 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
938 recognize the start of a generalized `@directive(...@)' form and
939 start...
940 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
941 directive args (using the new obstack_for_string), to decode the
942 contained @ diagraphs, and to perform the directive. It recognizes
943 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
944 @output(...@).
945 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
946 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
947 `@,'.
948 (scan_skel): Initialize obstack_for_string on the first call.
949 (skel_scanner_free): New function to free obstack_for_string.
950 * tests/input.at (Reject bad %code qualifiers): Update test output.
951
9522007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
953
954 Consolidate the 4 prologue alternative directives (%code, %requires,
955 %provides, and %code-top) into a single %code directive with an
956 optional qualifier field. Discussed at
957 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
958 * NEWS (2.3a+): Rewrite the existing entry for the prologue
959 alternatives.
960 * doc/bison.texinfo (Prologue Alternatives): Update.
961 (Decl Summary): Update to %code "requires" and %code "provides".
962 (Calc++ Parser): Update to %code "requires".
963 (Table of Symbols): Remove entries for %requires, %provides, and
964 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
965 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
966 are replaced by b4_percent_code_provides and b4_percent_code_requires,
967 which are skeleton-specific.
968 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
969 declare what %code qualifiers it supports and to complain if any other
970 qualifiers were used in the grammar.
971 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
972 and b4_user_code([b4_percent_code_provides]) in place of
973 b4_user_requires and b4_user_provides.
974 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
975 Add b4_user_code([b4_percent_code_top]) and
976 b4_user_code([b4_percent_code]).
977 Invoke b4_check_percent_code_qualifiers.
978 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
979 PERCENT_REQUIRES): Remove.
980 (grammar_declaration): Remove RHS's for %code-top, %provides, and
981 %requires. Rewrite the %code RHS as the unqualified form defining the
982 muscle b4_percent_code. Add another RHS for the qualified %code form,
983 which defines muscles of the form b4_percent_code_QUALIFIER and the
984 b4_used_percent_code_qualifiers muscle.
985 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
986 PERCENT_REQUIRES): Remove.
987 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
988 %code "requires" and %code "provides".
989 * tests/input.at (Reject bad %code qualifiers): New.
990
9912007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
992
993 Use the new code_props interface for destructors and printers.
994 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
995 printer_location members, and change the type of the destructor and
996 printer members to code_props.
997 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
998 symbol_printer_get, semantic_type_destructor_set,
999 semantic_type_printer_set, default_tagged_destructor_set,
1000 default_tagless_destructor_set, default_tagged_printer_set,
1001 default_tagless_printer_set): Use code_props in arguments and return
1002 types in place of char const * and location.
1003 (symbol_destructor_location_get, symbol_printer_location_get): Remove
1004 since the locations are now contained in the return of
1005 symbol_destructor_get and symbol_printer_get.
1006 * src/output.c (symbol_destructors_output, symbol_printers_output):
1007 Replace with...
1008 (symbol_code_props_output): ... this to eliminate duplicate code.
1009 (output_skeleton): Update to use symbol_code_props_output.
1010 * src/reader.c (symbol_should_be_used): Update use of
1011 symbol_destructor_get.
1012 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
1013 Update uses of the various _destructor_set and _printer_set functions.
1014 * src/symtab.c: (default_tagged_destructor_location,
1015 default_tagless_destructor_location, default_tagged_printer_location,
1016 default_tagless_printer_location): Remove since we...
1017 (default_tagged_destructor, default_tagless_destructor,
1018 default_tagged_printer, default_tagless_printer): ... change the type
1019 of these to code_props.
1020 (symbol_new, semantic_type_new, symbol_destructor_set,
1021 semantic_type_destructor_set, symbol_destructor_get,
1022 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
1023 symbol_check_alias_consistency, default_tagged_destructor_set,
1024 default_tagless_destructor_set, default_tagged_printer_set,
1025 default_tagless_printer_set): Update.
1026 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
1027 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
1028 code_props members.
1029 (symbol_print): Use SYMBOL_CODE_PRINT.
1030
10312007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
1032
1033 Use the new code_props interface for rule actions.
1034 * src/symlist.h (symbol_list): Replace action, action_location, and
1035 used members with a code_props action_props member.
1036 * src/reader.c (symbol_should_be_used, grammar_rule_check,
1037 grammar_midrule_action, grammar_current_rule_merge_set,
1038 grammar_current_rule_symbol_append, packgram): Update.
1039 * src/scan-code.h (translate_rule_action): Remove, no longer used.
1040 * src/scan-code.l (handle_action_dollar): Update.
1041 (translate_rule_action): Remove, no longer used.
1042 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
1043
10442007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
1045
1046 Use the new code_props interface in parse-gram.y.
1047 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
1048 Update all uses of translate_* functions to use the new code_props
1049 interface and to use gram_scanner_last_string_free and
1050 code_scanner_last_string_free where possible.
1051 (grammar_declaration): symbol_list_destructor_set and
1052 symbol_list_printer_set now perform the translation, so don't do it
1053 here. Use gram_scanner_last_string_free where possible.
1054 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
1055 translate_code): Remove, no longer used.
1056 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
1057 symbol_list_printer_set): Perform code translation here rather than
1058 depending on the caller to do so.
1059
1060 * src/symlist.h (struct symbol_list): Correct some documentation typos.
1061 * src/scan-gram.h (gram_last_string): Remove declaration.
1062 * src/scan-gram.l (last_string): Declare it static.
1063
10642007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
1065
1066 Encapsulate code properties and related functionality for the various
1067 destructors, printers, and actions into a code_props structure and
1068 interface. This patch merely implements code_props in scan-code.h and
1069 scan-code.l. Future patches will rewrite other modules to use it.
1070 Discussed starting at
1071 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
1072 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
1073 consistently initialize const structs that have an empty location
1074 field.
1075 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
1076 to ensure consistency.
1077 * src/scan-code.h (code_props): New structure.
1078 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
1079 function, macro, and const global variable for initializing a
1080 code_props with no code.
1081 (code_props_plain_init, code_props_symbol_action_init,
1082 code_props_rule_action_init, code_props_translate_code): The rest of
1083 the new code_props functional interface. Among other things, the init
1084 functions set the code_props kind field so that
1085 code_props_translate_code will know whether to behave like
1086 translate_symbol_action, translate_rule_action, or translate_code.
1087 These old translate functions must remain until all other modules are
1088 updated to use the new code_props interface.
1089 (code_scanner_last_string_free): New function similar to
1090 gram_scanner_last_string_free.
1091 (code_scanner_free): Add documentation.
1092 * src/scan-code.l: Implement the new interface.
1093 (code_lex): Make it static, add a code_props* argument, and remove the
1094 rule argument.
1095 (last_string): New static global similar to the one in scan-gram.l.
1096 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
1097 instead of rule.
1098 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
1099 code_props since Bison may one day use this information for destructors
1100 and printers.
1101 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
1102 (handle_action_dollar): Use symbol_list_n_get and set used flag
1103 directly since symbol_list_n_used_set is removed.
1104 (translate_action): Add a code_props* argument and remove the rule,
1105 action, and location arguments. Pass the code_props* on to code_lex.
1106 (translate_rule_action, translate_symbol_action, translate_code):
1107 Rewrite as wrappers around the new code_props interface.
1108 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
1109 it would eventually need to break the encapsulation of code_props.
1110
11112007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
1112
1113 * etc/.cvsignore: New.
1114
11152007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
1116
1117 Add maintainer-push-check to run maintainer-check using push parsing in
1118 place of pull parsing where available.
1119 * Makefile.am (maintainer-push-check): New.
1120 * data/bison.m4 (b4_use_push_for_pull_if): New.
1121 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
1122 appropriately based on their existing values.
1123 (yypush_parse): Don't print push-parser-specific diagnostics if push
1124 parsing is being used in place of pull parsing.
1125 * data/yacc.c: If push parsing should replace pull parsing, redirect to
1126 push.c.
1127 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
1128 variable, and insert b4_use_push_for_pull_flag into muscles.
1129 * tests/Makefile.am (maintainer-push-check): New.
1130
11312006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
1132
1133 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
1134 (whether successful or failed) so that yypush_parse can be invoked
1135 again to start a new parse using the same yypstate.
1136 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
1137 check multiple yypull_parse invocations on the same yypstate. For pull
1138 mode, extend to check multiple yyparse invocations.
1139 (Exploding the Stack Size with Alloca): Extend to try with
1140 %push-pull-parser.
1141 (Exploding the Stack Size with Malloc): Likewise.
1142
1143 * tests/calc.at (Simple LALR Calculator): Don't specify
1144 %skeleton "push.c" since %push-pull-parser implies that now.
1145 * tests/headers.at (export YYLTYPE): Don't check for the push
1146 declarations. Otherwise, this test case can't be used to see if push
1147 mode can truly emulate pull mode.
1148 * tests/input.at (Torturing the Scanner): Likewise.
1149 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
1150 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
1151 AT_YACC_IF, which now includes the case of push mode since %skeleton
1152 need not be used for push mode. This will be more intuitive once
1153 push.c is renamed to yacc.c.
1154
11552006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
1156
1157 For push mode, convert yyparse from a macro to a function, invoke yylex
1158 instead of passing a yylexp argument to yypull_parse, and don't
1159 generate yypull_parse or yyparse unless %push-pull-parser is declared.
1160 Discussed starting at
1161 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
1162 * data/bison.m4 (b4_pull_if): New.
1163 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
1164 * data/push.c: Improve M4 quoting a little.
1165 (b4_generate_macro_args, b4_parenthesize): Remove.
1166 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
1167 any time a pull parser is requested.
1168 Don't #define this as a wrapper around yypull_parse. Instead, when
1169 both push and pull are requested, make it a function that does that
1170 same thing.
1171 (yypull_parse): If there's a b4_prefix, #define this to
1172 b4_prefix[pull_parse] when both push and pull are requested.
1173 Don't define this as a function unless both push and pull are
1174 requested.
1175 Remove the yylexp argument and hard-code yylex invocation instead.
1176 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
1177 %push-parser.
1178 * src/getargs.c (pull_parser): New global initialized to true.
1179 * getargs.h (pull_parser): extern it.
1180 * src/output.c (prepare): Insert pull_flag muscle.
1181 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
1182 (prologue_declaration): Set both push_parser and pull_parser = true for
1183 %push-pull-parser. Set push_parser = true and pull_parser = false for
1184 %push-parser.
1185 * src/scan-gram.l: Don't accept %push_parser as an alternative to
1186 %push-parser since there's no backward-compatibility concern here.
1187 Scan %push-pull-parser.
1188 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
1189 instead of %push-parser.
1190 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
1191 prototype it in the module that calls yyparse.
1192 * tests/input.at (Torturing the Scanner): Likewise.
1193 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
1194
11952006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
1196
1197 Update etc/bench.pl. Optimize push mode a little (the yyn change
1198 deserves most of the credit).
1199 * Makefile.am (SUBDIRS): Add etc subdirectory.
1200 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
1201 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
1202 yytoken, yyval, and yyloc declarations to...
1203 (yyparse or yypush_parse): ... here to improve performance. For
1204 yypush_parse invocations after the first, be sure to assign yyn its old
1205 value again.
1206 (yypstate_new): Don't bother initializing the yyresult field since the
1207 initial value isn't used.
1208 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
1209 remove the #define that, in push mode, set it to yyps->NAME.
1210 * etc/Makefile.am: New.
1211 * etc/bench.pl: Remove and build it instead from...
1212 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
1213 "tests/bison" from the build directory by default rather than just
1214 invoking "bison" from $PATH.
1215 (calc_grammar): Update push parser code: don't declare yylval globally,
1216 don't define yyparse_wrapper, and don't #define yyparse.
1217 (bench_grammar): Update to check all working combinations of yacc.c,
1218 push.c, impure, pure, pull, and push.
1219
12202006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
1221
1222 For push mode, add pull wrappers around yypush_parse.
1223 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
1224 (yypull_parse): New function wrapping yypush_parse.
1225 (yyparse): New #define wrapping yypull_parse.
1226 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
1227 is declared.
1228 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
1229 prototype yylex in the module that calls yyparse, and don't prototype
1230 yyparse there. Otherwise, the yyparse expansion won't compile.
1231 * tests/input.at (Torturing the Scanner): Likewise.
1232
12332006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
1234
1235 Enable push parsers to operate in impure mode. Thus, %push-parser no
1236 longer implies %pure-parser. The point of this change is to move
1237 towards being able to test the push parser code by running the entire
1238 test suite as if %push-parser had been declared.
1239 * data/push.c (yypush_parse): For impure mode, remove the
1240 yypushed_char, yypushed_val, and yypushed_loc arguments.
1241 Instead, declare these as local variables initialized to the global
1242 yychar, yylval, and yylloc.
1243 For the first yypush_parse invocation only, restore the initial values
1244 of these global variables when it's time to read a token since they
1245 have been overwritten.
1246 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
1247 %push-parser.
1248 * tests/calc.at (Simple LALR(1) Calculator): Always declare
1249 %pure-parser along with %push-parser since this test case was designed
1250 for pure push parsers.
1251 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
1252 (AT_YACC_OR_PUSH_IF): New.
1253 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
1254 add a note that it's still wrong for some cases (as it has been for a
1255 while).
1256 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
1257 %push-parser no longer implies %pure-parser.
1258
12592006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
1260
1261 Remove some unnecessary differences between the pull parser code and
1262 the push parser code. This patch enables yynerrs in push mode.
1263 * data/push.c: Reformat M4 a little.
1264 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
1265 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
1266 because push mode is on. Instead, if pure mode is on, move yynerrs
1267 to...
1268 (b4_declare_parser_state_variables): ... here.
1269 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
1270 to yyps->NAME so it can be used in yypush_parse.
1271 (yypush_parse): Don't omit uses of yynerrs in push mode.
1272
12732006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
1274
1275 Fix bug such that the first pushed token's value and location are
1276 sometimes overwritten (sometimes by %initial-action) before being used.
1277 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
1278 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
1279 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
1280 more closely mimic the pull parser logic.
1281 Don't copy the pushed token to yychar, yylval, and yylloc until it's
1282 time to read a token, which is after any initialization of yylval and
1283 yylloc.
1284 (gottoken): Rename label to...
1285 (yyread_pushed_token): ... for clarity and to avoid infringing on the
1286 user namespace.
1287
12882006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
1289
1290 Rearrange initialization of the parser state variables so that the
1291 skeleton doesn't have to have a copy for pull mode and another for push
1292 mode. This patch also fixes at least a bug such that yylloc was not
1293 initialized (with b4_location_initial_line and
1294 b4_location_initial_column) upon calling yypush_parse. However, that
1295 initialization now overwrites the first token's location;
1296 %initial-action assigning @$ already did the same thing, and both bugs
1297 will be fixed in a later patch.
1298 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
1299 (b4_declare_parser_state_variables): Remove initialization of yytoken,
1300 yyss, yyvs, yyls, and yystacksize.
1301 (yypstate_new): Remove initialization of some yypstate fields: yystate,
1302 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
1303 yylsp.
1304 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
1305 yyps->NAME so it can be used in yypush_parse.
1306 (yyparse or yypush_parse): For yypush_parse, don't print the
1307 "Starting parse" diagnostic for invocations after the first.
1308 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
1309 yypush_parse, only do it for the first invocation.
1310 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
1311 initialization to occur in yypush_parse but only on the first
1312 invocation.
1313
13142006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
1315
1316 * data/push.c: Add CPP guards around push parser declarations in both
1317 the header and the code file.
1318 In the code file, move the push parser declarations to the same place
1319 they appear in the header file.
1320 Clean up the M4 some, especially the inconsistent underquoting in
1321 some b4_c_function_def and b4_c_function_decl uses.
1322
13232006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
1324
1325 Encapsulate the push parser state variables into an M4 macro so the
1326 push skeleton doesn't have to list them again for pull mode's yyparse.
1327 For push mode, remove yypush_parse's local equivalents of these
1328 variables to eliminate unnecessary copying between the two sets at
1329 run-time. This patch also fixes at least a bug related to multiple
1330 %initial-action invocations in push mode.
1331 * data/push.c (b4_declare_parser_variables): Rename to...
1332 (b4_declare_scanner_communication_variables): ... this for clarity and
1333 update both uses.
1334 (b4_declare_yyparse_variables): Remove and move its contents to the one
1335 spot where it was invoked.
1336 (b4_declare_parser_state_variables): New macro containing the parser
1337 state variables required by push mode.
1338 (struct yypstate): Replace all fields but yynew with
1339 b4_declare_parser_state_variables.
1340 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
1341 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
1342 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
1343 (yyparse or yypush_parse): For yyparse in pull mode, replace local
1344 parser state variable declarations with
1345 b4_declare_parser_state_variables.
1346 Don't initialize parser state variables when calling yypush_parse since
1347 yypstate_new already does that.
1348 Invoke the user's initial action only upon the first yypush_parse
1349 invocation.
1350 Remove all code that copies between the local parser state variables
1351 and the yypstate.
1352
13532006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
1354
1355 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
1356 prevent a name collision in a future patch where these names will
1357 sometimes be #define'd.
1358 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
1359 since it no longer has the same name as the existing argument.
1360 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
1361
13622006-12-19 Paolo Bonzini <bonzini@gnu.org>
1363 and Joel E. Denny <jdenny@ces.clemson.edu>
1364
1365 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1366 that the argument is case-insensitive, and there's no `=' here.
1367 For the %skeleton entry, mention that %language is better.
1368 (Bison Options): Likewise for --language and --skeleton. Move the
1369 --skeleton entry so that the `Tuning the parser' section is sorted
1370 alphabetically on long options.
1371 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
1372 %language directive in detail here; cross-reference the %language
1373 documentation instead.
1374 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
1375 `%require "2.3b"' so that the example is always up-to-date.
1376 (Table of Symbols): Add entries for %language and %skeleton.
1377 * examples/extexi (normalize): Instead of replacing every %require
1378 argument with the current Bison version, just substitute for
1379 `@value{VERSION}'. This guarantees that we're testing what actually
1380 appears in the documentation.
1381 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
1382 rather than `@VERSION@'.
1383
13842006-12-18 Paul Eggert <eggert@cs.ucla.edu>
1385
1386 * NEWS: Reword the %language news a bit, and put it earlier.
1387
1388 * src/getargs.c (skeleton_arg): Last arg is now location const *.
1389 Rewrite to simplify the logic.
1390 (language_argmatch): Likewise.
1391 (program_name): We now own this var.
1392 * src/getargs.h (struct bison_language): Use char[] rather than
1393 const char *.
1394
1395 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
1396 Java is supported.
1397 * src/complain.c (program_name): Remove decl; no longer needed.
1398 * src/main.c (program_name): Remove; now belongs to getargs.
1399
14002006-12-18 Paolo Bonzini <bonzini@gnu.org>
1401
1402 * NEWS: Document %language.
1403
1404 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
1405
1406 * data/c-skel.m4, data/c++-skel.m4: New files.
1407 * data/glr.c: Complain on push parsers.
1408
1409 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
1410 over %skeleton.
1411 (Decl Summary): Document %language and %skeleton.
1412 (Command line): Document -L.
1413
1414 * examples/extexi: Rewrite %require directive.
1415 * examples/calc++/Makefile.am: Pass VERSION to extexi.
1416
1417 * src/files.c (compute_exts_from_gc): Look in language structure
1418 for .y extension.
1419 (compute_file_name_parts): Check whether .tab should be added.
1420 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
1421 (language, skeleton_arg, language_argmatch): New.
1422 (long_options): Add --language.
1423 (getargs): Use skeleton_arg, add -L/--language.
1424 * src/getargs.h: Include location.h.
1425 (struct bison_language, language, skeleton_arg, language_argmatch): New.
1426 * src/output.c (prepare): Pick default skeleton from struct language.
1427 Don't dispatch C skeletons here.
1428 * src/parse-gram.y (PERCENT_LANGUAGE): New.
1429 (prologue_declaration): Add "%language" rule, use skeleton_arg.
1430 * src/scan-gram.l ("%language"): New rule.
1431
1432 * tests/calc.at: Test %skeleton and %language.
1433 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
1434 (AT_GLR_IF): Look for %skeleton "glr.cc".
1435 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
1436 (AT_YACC_IF): Reject %language.
1437
14382006-12-18 Paul Eggert <eggert@cs.ucla.edu>
1439
1440 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
1441 since it wasn't used; only the typedef name 'semantic_type' is needed.
1442 Also, omit trailing white space.
1443
1444 * bootstrap: Sync from coreutils.
1445 (gnulib_extra_files): Add build-aux/announce.gen.
1446 (slurp): Adjust .gitignore files like .cvsignore files.
1447 * build-aux/announce-gen: Remove from CVS, since bootstrap
1448 now creates this.
1449
14502006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
1451
1452 Make %push-parser imply %pure-parser. This fixes several bugs; see
1453 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
1454 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
1455 pure_parser = true.
1456 * data/push.c: Don't bother testing b4_push_if when deciding whether
1457 to expand b4_declare_parser_variables globally.
1458 (yypush_parse): Likewise in here.
1459
1460 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
1461 (yy_reduce_print): Reformat M4 for readability.
1462
14632006-12-15 Bob Rossi <bob@brasko.net>
1464 and Joel Denny <jdenny@ces.clemson.edu>
1465
1466 * data/push.c (yypstate): Add typedef, and update all uses of
1467 struct yypstate to just yypstate.
1468 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
1469
14702006-12-14 Bob Rossi <bob@brasko.net>
1471
1472 * data/push.c (yypush_parse): Declare prototype regardless of
1473 %locations option.
1474
14752006-12-14 Bob Rossi <bob@brasko.net>
1476
1477 * data/push.c (yyparse): Remove the prototype and the #define when in
1478 push-parser mode.
1479
14802006-12-13 Bob Rossi <bob@brasko.net>
1481
1482 * data/push.c (yypstate_init): Rename to...
1483 (yypstate_new): ... this and use b4_c_function_def.
1484 (yypstate_delete): New.
1485 (yypush_parse): Change parameters yynval and yynlloc to be const.
1486 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
1487 yypstate_delete functions.
1488
14892006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
1490
1491 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
1492 strange test case titles. Reported by Bob Rossi.
1493
14942006-12-13 Paul Eggert <eggert@cs.ucla.edu>
1495
1496 * TODO: Add pointer to Sylvain Schmitz's work on static detection
1497 of potential ambiguities in GLR grammers.
1498
14992006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
1500
1501 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
1502 `bison ', use m4_index instead of m4_substr since chopping up a string
1503 containing M4-special characters causes problems here.
1504
1505 Fix a couple of bugs related to special characters in user-specified
1506 file names, and make it easier for skeletons to compute output file
1507 names with the same file name prefix as Bison-computed output file
1508 names.
1509 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
1510 b4_parser_file_name and b4_spec_defines_file instead of
1511 @output_parser_name@ and @output_header_name@, which are now redundant.
1512 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
1513 b4_parser_file_name, b4_spec_defines_file, and the new
1514 @basename(FILENAME@) instead of @output_parser_name@ and
1515 @output_header_name@, which inappropriately escaped the file names as
1516 C string literals.
1517 * src/files.c (all_but_ext): Remove static qualifier.
1518 (compute_output_file_names): Move `free (all_but_ext)' to...
1519 (output_file_names_free): ... here since all_but_ext is needed later.
1520 * src/files.h (all_but_ext): Extern.
1521 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
1522 exactly what MUSCLE_INSERT_STRING used to do.
1523 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
1524 characters are escaped properly.
1525 * src/output.c (prepare): Define muscle file_name_all_but_ext as
1526 all_but_ext.
1527 For pkgdatadir muscle, maintain previous functionality by using
1528 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
1529 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
1530 digraphs would never be expanded. Hopefully no one has M4-special
1531 characters in his Bison installation path.
1532 * src/scan-skel.l: Don't parse @output_header_name@ and
1533 @output_parser_name@ anymore since they're now redundant.
1534 In @output, use decode_at_digraphs.
1535 Parse a new @basename command that invokes last_component.
1536 (decode_at_digraphs): New.
1537 (BASE_QPUTS): Remove unused.
1538 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
1539 (Output file name): New tests.
1540
15412006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
1542
1543 Warn about output files that are generated by the skeletons and that
1544 conflict with other output files.
1545 * data/glr.c: Don't generate the header file here when glr.cc does.
1546 * src/files.c (file_names, file_names_count): New static globals.
1547 (compute_output_file_names): Invoke output_file_name_check for files
1548 not generated by the skeletons and remove existing checks.
1549 (output_file_name_check): New function that warns about conflicting
1550 output file names.
1551 (output_file_names_free): Free file_names.
1552 * src/files.h (output_file_name_check): Declare.
1553 * src/scan-skel.l: Invoke output_file_name_check for files generated by
1554 the skeletons.
1555 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
1556 (Conflicting output files): New tests.
1557
15582006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1559
1560 * doc/bison.texinfo: Fix a couple of typos.
1561
15622006-12-08 Bob Rossi <bob@brasko.net>
1563
1564 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
1565 Rename to...
1566 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
1567 update all uses.
1568 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
1569 (yypush_parse): Rename yypvars argument to yyps and remove redundant
1570 local pv.
1571 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
1572 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
1573
15742006-12-07 Bob Rossi <bob@brasko.net>
1575 and Joel Denny <jdenny@ces.clemson.edu>
1576
1577 * data/push.c (yypvarsinit): Change return type from void* to struct
1578 yypvars*. No longer cast to void* on return.
1579 (struct yypvars): Remove yylen since it need not be remembered between
1580 yypushparse invocations.
1581 (yypushparse): Don't copy between yylen and pv->yylen.
1582
15832006-12-05 Bob Rossi <bob@brasko.net>
1584
1585 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
1586 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
1587 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
1588 (struct yypvars): Remove b4_declare_parser_variables.
1589 (yypvarsinit): Remove init code for removed variables.
1590 (global scope): Do not declare b4_declare_parser_variables if
1591 push or pure mode.
1592 (yypushparse): Add b4_declare_parser_variables.
1593 Init new local variables, and remove init code for removed
1594 yypvars variables.
1595 (yyparse): Delete.
1596 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
1597 and yyparse for other modes.
1598 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
1599 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
1600 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
1601 (AT_PURE_LEX_IF): True if pure or push parser.
1602
16032006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
1604
1605 Document Yacc prologue alternatives and default %destructor's and
1606 %printer's as experimental. Don't mention Java yet. Discussed at
1607 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
1608 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
1609 (2.3a): Annotate this entry to say the old forms of these features were
1610 also experimental.
1611 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
1612 Table of Symbols): Say they're experimental. Comment out any mention
1613 of Java (we'll want this back eventually).
1614
16152006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1616
1617 Support a file name argument to %defines. Deprecate `=' in
1618 %file-prefix, %name-prefix, and %output. Discussed at
1619 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
1620 * NEWS (2.3a+): Mention.
1621 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
1622 form of %defines, and remove `=' from entries for %file-prefix,
1623 %name-prefix, and %output.
1624 * src/parse-gram.y (prologue_declaration): Implement.
1625 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
1626 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
1627 all but one occurrence of %name-prefix.
1628 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
1629 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
1630 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
1631 occurrence of each of %file-prefix and %output. Add check for %defines
1632 with argument.
1633 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
1634 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
1635 Remove the `=' from %output.
1636
16372006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
1638
1639 Don't escape $ in test case titles since Autoconf 2.61 now does that
1640 correctly.
1641 * tests/actions.at (Default %printer and %destructor are not for error
1642 or $undefined): Here.
1643 (Default %printer and %destructor are not for $accept): Here.
1644 * tests/input.at (Invalid $n and @n): Here.
1645
16462006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
1647
1648 Rename <!> to <>. Discussed starting at
1649 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
1650 * NEWS (2.3a+): Update.
1651 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
1652 Update.
1653 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
1654 * src/scan-gram.l (INITIAL): Implement.
1655 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
1656 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
1657 comment.
1658 * tests/actions.at (Default tagless %printer and %destructor,
1659 Default tagged and per-type %printer and %destructor,
1660 Default %printer and %destructor are not for error or $undefined,
1661 Default %printer and %destructor are not for $accept,
1662 Default %printer and %destructor for mid-rule values): Update.
1663 * tests/input.at (Default %printer and %destructor redeclared,
1664 Unused values with default %destructor): Update.
1665
16662006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1667
1668 Don't let %prec take a nonterminal.
1669 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
1670 token.
1671 * tests/input.at (%prec takes a token): New test checking that %prec
1672 won't take a nonterminal.
1673
16742006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1675
1676 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
1677 it was double-quoted.
1678 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
1679 grammar is maintained with Bison's highest standards.
1680 * src/getargs.c: Fix some typos in Doxygen comments.
1681
16822006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1683
1684 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
1685 later. Reported by Paul Eggert in
1686 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
1687 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
1688 * src/scan-code.l (translate_action): Don't bother invoking
1689 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
1690 (code_scanner_free): Instead of invoking
1691 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
1692 which frees more.
1693 * src/scan-gram.l (gram_scanner_free): Likewise.
1694 * src/scan-skel.l (scan_skel): Likewise.
1695
16962006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
1697
1698 * src/files.c (tr): Change return type to void.
1699 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
1700 has been called previously for the same key.
1701 (muscle_find): Return storage instead of value so that
1702 --enable-gcc-warnings doesn't produce warnings that the return discards
1703 const. aver that the value and storage are the same since storage
1704 could potentially be NULL when value is not.
1705 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
1706 same as 0.
1707
17082006-11-08 Paul Eggert <eggert@cs.ucla.edu>
1709
1710 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
1711 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
1712 us a slightly cleaner distribution, and also works.
1713 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
1714 gnulib changes.
1715
17162006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
1717 and Paul Eggert <eggert@cs.ucla.edu>
1718
1719 Don't let Bison leak memory except when it complains.
1720 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
1721 (spec_defines_file, dir_prefix): Now char *, not const char *,
1722 since they are freed.
1723 * src/files.c: Likewise.
1724 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
1725 Likewise.
1726 (tr): Now operates in-place. All uses changed.
1727 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
1728 values.
1729 (compute_file_name_parts, compute_output_file_names): Don't store
1730 read-only data in variables that will be freed.
1731 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
1732 src_extension, and header_extension.
1733 (output_file_names_free): New public function to free
1734 spec_verbose_file, spec_graph_file, spec_defines_file,
1735 parser_file_name, and dir_prefix.
1736 * src/getargs.c (getargs): Don't store read-only data in variables that
1737 will be freed.
1738 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
1739 (which previously existed but was unused), and quotearg_free.
1740 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
1741 * src/muscle_tab.c: Likewise.
1742 (muscle_entry): Make the value char const *,
1743 and add a new storage member that is char * and can be freed.
1744 (muscle_entry_free): New private function.
1745 (muscle_init): Use it instead of free.
1746 (muscle_insert, muscle_grow): Update and use new storage member.
1747 (muscle_code_grow): Free the string passed to muscle_grow
1748 since it's not needed anymore.
1749 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
1750 add a new `char *code' member.
1751 ("{...}"): Declare semantic type as code.
1752 * src/scan-code.h (translate_rule_action):
1753 (translate_symbol_action, translate_code, translate_action): Return
1754 `char const *' rather than `char *' since external code should not free
1755 these strings.
1756 * src/scan-code.l: Likewise.
1757 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
1758 which is "{...}" in the parser.
1759 * tests/Makefile.am (maintainer-check-valgrind): Set
1760 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
1761 Valgrind.
1762 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
1763 complain.
1764 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
1765 expecting a non-zero exit status sets --leak-check=summary and
1766 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
1767 this case, and we don't want to hear about it.
1768
17692006-11-08 Paul Eggert <eggert@cs.ucla.edu>
1770
1771 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
1772 instead of from the template, to simplify configuration a bit.
1773 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
1774 and m4/wint_t.m4, as they are needed with the latest gnulib.
1775
17762006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
1777
1778 Disable unset/unused mid-rule value warnings by default, and recognize
1779 --warnings=midrule-values to enable them. Discussed starting at
1780 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
1781 * NEWS (2.3a+): Mention.
1782 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
1783 warnings): Add entry for midrule-values subargument.
1784 * src/reader.c (symbol_should_be_used): Don't return true just because
1785 the value is a set/used mid-rule value unless
1786 --warnings=midrule-values was specified.
1787 * tests/input.at (Unused values, Unused values before symbol
1788 declarations): Run tests with and without --warnings=midrule-values.
1789
1790 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
1791 than LIST_FREE directly.
1792
17932006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
1794
1795 Finish implementing --warnings=error, which should not be implied by
1796 --warnings=all (or by its synonyms -W and --warnings without
1797 subarguments).
1798 * src/complain.c (set_warning_issued): New function to report that
1799 warnings are being treated as errors and to record an error if so.
1800 Invoke...
1801 (warn_at, warn): ... here.
1802 * src/getargs.c (warnings_args, warnings_types): Reorder so that
1803 "error - warnings are errors" does not appear above "all - all of the
1804 above".
1805 (getargs): For -W and --warnings without subarguments, don't let
1806 FLAGS_ARGMATCH set warnings_error in warnings_flag.
1807 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
1808
18092006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
1810
1811 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
1812 empty subargument list. For example: `bison --warnings= parser.y'.
1813
18142006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1815
1816 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
1817 the parser header file so that gcc doesn't warn.
1818
18192006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1820
1821 Split the default %destructor/%printer into two kinds: <*> and <!>.
1822 Discussed starting at
1823 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
1824 * NEWS (2.3a+): Mention.
1825 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
1826 previous change today related to mid-rules.
1827 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
1828 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
1829 (TYPE_TAG_ANY): Add as <*>.
1830 (TYPE_TAG_NONE): Add as <!>.
1831 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
1832 for <*> and <!>.
1833 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
1834 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
1835 * src/symlist.c (symbol_list_default_new): Split into tagged and
1836 tagless versions.
1837 (symbol_list_destructor_set, symbol_list_printer_set): Split
1838 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
1839 SYMLIST_DEFAULT_TAGLESS.
1840 * src/symlist.h: Update symbol_list_default*_new prototypes.
1841 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
1842 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
1843 * src/symtab.c (default_destructor, default_destructor_location,
1844 default_printer, default_printer_location): Split each into tagged and
1845 tagless versions.
1846 (symbol_destructor_get, symbol_destructor_location_get,
1847 symbol_printer_get, symbol_printer_location_get): Implement tagged
1848 default and tagless default cases.
1849 (default_destructor_set, default_printer_set): Split each into tagged
1850 and tagless versions.
1851 * src/symtab.h: Update prototypes.
1852 * tests/actions.at (Default %printer and %destructor): Rename to...
1853 (Default tagless %printer and %destructor): ... this, and extend.
1854 (Per-type %printer and %destructor): Rename to...
1855 (Default tagged and per-type %printer and %destructor): ... this, and
1856 extend.
1857 (Default %printer and %destructor for user-defined end token): Extend.
1858 (Default %printer and %destructor are not for error or $undefined):
1859 Update.
1860 (Default %printer and %destructor are not for $accept): Update.
1861 (Default %printer and %destructor for mid-rule values): Extend.
1862 * tests/input.at (Default %printer and %destructor redeclared): Extend.
1863 (Unused values with default %destructor): Extend.
1864
18652006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1866
1867 Don't apply the default %destructor/%printer to an unreferenced midrule
1868 value. Mentioned at
1869 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
1870 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
1871 like $@n instead of just @n so that the default %destructor/%printer
1872 logic doesn't see them as user-defined symbols.
1873 (symbol_is_dummy): Check for both forms of the name.
1874 * src/reader.c (packgram): Remove the `$' from each midrule symbol
1875 name for which the midrule value is referenced in any action.
1876 * tests/actions.at (Default %printer and %destructor for mid-rule
1877 values): New test.
1878 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
1879 for change to dummy symbol names.
1880
18812006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
1882
1883 Warn about unset midrule $$ if the corresponding $n is used.
1884 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
1885 $n usage.
1886 (packgram): Before invoking grammar_rule_check on any rule, make sure
1887 all actions have already been scanned in order to set `used' flags.
1888 Otherwise, checking that a midrule's $$ is set will not always work
1889 properly because the midrule check must forward-reference the midrule's
1890 parent rule.
1891 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
1892 warning.
1893
18942006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
1895
1896 More improvements to the documentation of the prologue alternatives:
1897 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
1898 Bison manual.
1899 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
1900 some text to clarify the relative importance of the new directives and
1901 to show how these directives may be viewed as code labels.
1902
19032006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
1904
1905 Similar to the recently removed %before-header, add %code-top as the
1906 alternative to the pre-prologue. Mentioned at
1907 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
1908 Also, let the prologue alternatives appear in the grammar section.
1909 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
1910 (prologue_declaration): Move the existing prologue alternatives to...
1911 (grammar_declaration): ... here and add %code-top.
1912 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
1913
1914 Clean up and extend documentation for the prologue alternatives.
1915 * NEWS (2.3a+): Describe prologue alternatives.
1916 * doc/bison.texinfo (Prologue): Move discussion of prologue
1917 alternatives to...
1918 (Prologue Alternatives): ... this new section, and extend it to discuss
1919 all 4 directives in detail.
1920 (Table of Symbols): Clean up discussion of prologue alternatives and
1921 add %code-top.
1922
19232006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1924
1925 DJGPP specific issues.
1926
1927 * djgpp/config.bat: config.hin has been moved to lib. Adjust
1928 config.bat accordingly.
1929 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
1930 * djgpp/config.site: Likewise.
1931
19322006-10-16 Paolo Bonzini <bonzini@gnu.org>
1933
1934 Replace %*-header with %provides, %requires, %code. See discussion at
1935 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
1936
1937 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
1938 (b4_user_start_header): Remove.
1939 * data/glr.c: Use new macros instead of b4_*start_header
1940 and b4_*end_header.
1941 * data/glr.cc: Likewise.
1942 * data/lalr1.cc: Likewise.
1943 * data/push.c: Likewise.
1944 * data/yacc.c: Likewise.
1945
1946 * doc/bison.texinfo: Remove %before-header, rename
1947 %{start,end,after}-header to %requires, %provides, %code.
1948
1949 * src/parse-gram.y: Likewise (also rename token names accordingly).
1950 * src/scan-gram.l: Likewise.
1951 * tests/actions.at: Likewise.
1952
19532006-10-14 Paul Eggert <eggert@cs.ucla.edu>
1954
1955 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
1956 Problem reported by Joel E. Denny.
1957
19582006-10-14 Jim Meyering <jim@meyering.net>
1959
1960 (Sync from coreutils.)
1961 Work also when the working directory (with e.g. coreutils sources)
1962 is version controlled with git, rather than CVS.
1963 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
1964 rather than CVS.
1965 In messages and comments, say e.g., "checked-out sources",
1966 rather than "CVS sources".
1967 (version_controlled_file): New function. Work for git as well as
1968 for CVS. Don't use grep's -q option.
1969 (slurp): Call it here, in place of CVS-specific code.
1970
19712006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
1972
1973 Fix testsuite for ./configure --enable-gcc-warnings:
1974 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
1975 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
1976 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
1977 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
1978 * test/regression.at (Diagnostic that expects two alternatives):
1979 Likewise.
1980
19812006-10-12 Paul Eggert <eggert@cs.ucla.edu>
1982
1983 * bootstrap.conf (gnulib_modules): Add config-h.
1984 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
1985 worry about HAVE_CONFIG_H.
1986 * lib/abitset.c: Likewise.
1987 * lib/bitset.c: Likewise.
1988 * lib/bitset_stats.c: Likewise.
1989 * lib/bitsetv-print.c: Likewise.
1990 * lib/bitsetv.c: Likewise.
1991 * lib/ebitset.c: Likewise.
1992 * lib/get-errno.c: Likewise.
1993 * lib/lbitset.c: Likewise.
1994 * lib/subpipe.c: Likewise.
1995 * lib/timevar.c: Likewise.
1996 * lib/vbitset.c: Likewise.
1997 * lib/bitset.c: Include "bitset.h" first, to test interface.
1998 * lib/bitset_stats.c: Include "bitset_stats.h" first.
1999 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
2000 * lib/bitsetv.c: Include "bitsetv.h" first.
2001 * lib/get-errno.c: Include "get-errno.h" first.
2002 * m4/.cvsignore: Add config-h.m4.
2003 * tests/actions.at (Default %printer and %destructor for ...):
2004 Adjust expected line numbers in output to reflect removal of #if
2005 HAVE_CONFIG_H lines.
2006 * tests/glr-regression.at (Missed %merge type warnings when ...):
2007 Likewise.
2008 * tests/regression.at (Braced code in declaration in rules section):
2009 Likewise.
2010 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
2011 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
2012 Include <config.h> unconditionally.
2013
2014 * bootstrap: Sync from coreutils, as follows:
2015
2016 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
2017
2018 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
2019 variable was sometimes used without being initialized. This
2020 messed up the installation of the INSTALL file in some cases.
2021
2022 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
2023
2024 * bootstrap (usage, main program, symlink_to_gnulib): Add option
2025 --copy. Inspired by a suggestion from Bruno Haible.
2026
2027 2006-10-03 Jim Meyering <jim@meyering.net>
2028
2029 * bootstrap: Undo last change to this file, since now gnulib-tool
2030 sticks with the automake default in generating dependencies.
2031
20322006-10-12 Paul Eggert <eggert@cs.ucla.edu>
2033
2034 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
2035 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
2036
2037 * doc/bison.1: Add copyright notice.
2038
2039 * data/glr.c: Don't include <stdarg.h>; not used.
2040
2041 * NEWS: The -g and --graph options now output graphs in Graphviz
2042 DOT format, not VCG format.
2043 * doc/bison.1: Likewise.
2044 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
2045 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
2046 of this change in
2047 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
2048 * TODO: Remove Graphviz entry.
2049 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
2050 remove vcg.c, vcg.h, vcg_defaults.h.
2051 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
2052 * src/graphviz.c, src/graphviz.h: New files.
2053 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
2054 * src/files.h: Make comment more generic.
2055 * src/main.c (main): Likewise.
2056 * src/print_graph.h: Likewise.
2057 * src/getargs.c (usage): Make usage description more generic.
2058 * src/print_graph.c: Include graphviz.h rather than vcg.h.
2059 (static_graph, fgraph): Remove. All uses changed to pass
2060 arguments instead of sharing a static var.
2061 (print_core, print_actions, print_state, print_graph):
2062 Output graphviz format rather than VCG format.
2063 * tests/.cvsignore: Remove *.vcg; add *.dot.
2064 * tests/output.at: Expect *.dot files, not *.vcg files.
2065
2066 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
2067 accommodates the 2006-10-08 change.
2068
20692006-10-11 Bob Rossi <bob@brasko.net>
2070
2071 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
2072 (b4_yyssa, b4_yyerror_range): New macros.
2073 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
2074 (yypvarsinit): Remove init of removed fields.
2075 (yypushparse): Remove use of removed fields; use new macros instead.
2076
20772006-10-11 Paul Eggert <eggert@cs.ucla.edu>
2078
2079 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
2080 in a push parser. Reindent slightly to match yacc.c better.
2081
20822006-10-11 Bob Rossi <bob@brasko.net>
2083
2084 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
2085 yymsg_alloc fields.
2086 (yypvarsinit, yypushparse): Remove init of removed fields.
2087 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
2088
20892006-10-09 Paul Eggert <eggert@cs.ucla.edu>
2090
2091 * THANKS: Add Paolo Bonzini and Bob Rossi.
2092
20932006-10-08 Paolo Bonzini <bonzini@gnu.org>
2094
2095 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
2096 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
2097 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
2098 b4_define_user_cde and uses): Remove.
2099 (b4_comment, b4_prefix, b4_sync_start): New.
2100 * data/bison.m4: New file, with most of the content removed from c.m4.
2101 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
2102 * src/output.c (output_skeleton): Pass bison.m4.
2103 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
2104 only if specified.
2105
21062006-10-05 Paul Eggert <eggert@cs.ucla.edu>
2107
2108 Fix test failure reported by Tom Lane in
2109 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
2110 and try to make such failures easier to catch in the future.
2111 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
2112 that's now the caller's responsibility.
2113 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
2114 Set yychar = YYEOF if it's negative.
2115 * tests/actions.at (yylex): Abort if asked to read past EOF.
2116 * tests/conflicts.at (yylex): Likewise.
2117 * tests/cxx-type.at (yylex): Likewise.
2118 * tests/glr-regression.at (yylex): Likewise.
2119 * tests/input.at (yylex): Likewise.
2120 * tests/regression.at (yylex): Likewise.
2121 * tests/torture.at (yylex): Likewise.
2122
21232006-10-01 Paul Eggert <eggert@cs.ucla.edu>
2124
2125 Fix problems with translating English-language diagnostics.
2126 * bootstrap: Fix bug introduced in recent bootstrap changes, with
2127 respect to bison-runtime pot generation. The YY_ stuff
2128 wasn't being captured.
2129 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
2130 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
2131 * runtime-po/POTFILES.in: Add data/push.c.
2132
21332006-09-29 Paul Eggert <eggert@cs.ucla.edu>
2134
2135 Merge bootstrap changes from coreutils.
2136
2137 2006-09-28 Jim Meyering <jim@meyering.net>
2138
2139 Automatically generated dependencies are important even
2140 when all of the sources in a directory come from gnulib.
2141 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
2142 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
2143
2144 2006-09-23 Jim Meyering <jim@meyering.net>
2145
2146 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
2147
2148 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
2149
2150 * bootstrap: Add support for --force.
2151 (usage): New function. Describe usage less tersely.
2152 (CVS_only_file): New var.
2153
21542006-09-21 Paul Eggert <eggert@cs.ucla.edu>
2155
2156 * data/push.c (YYPUSH_MORE): Make it an enum instead.
2157 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
2158 Adjust white space and comments to match GNU style better.
2159
21602006-09-20 Bob Rossi <bob@brasko.net>
2161
2162 * data/push.c (yyresult_get): Remove function.
2163 (YYPUSH_MORE): Add #define.
2164 (yypushparse): Modify return value.
2165
21662006-09-20 Paul Eggert <eggert@cs.ucla.edu>
2167
2168 * stamp-h.in: Remove; no longer needed.
2169 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
2170 Remove config.h, config.hin, intl (no longer created).
2171 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
2172 stamp-h1.
2173
2174 Sync bootstrap from coreutils, as follows:
2175
2176 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
2177
2178 * bootstrap (symlink_to_gnulib): New function.
2179 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
2180 to copies-of-gnulib.
2181 (cp_mark_as_generated, slurp, gnulib_files):
2182 Avoid making a copy if it's the same as the old version.
2183 (gnulib_files): Add support for this variable (used by Bison).
2184
21852006-09-20 Paul Eggert <eggert@cs.ucla.edu>
2186
2187 * src/getargs.c (usage): Rework to use conventions similar to
2188 coreutils, to make translation a bit easier and the code a bit
2189 smaller. Problem reported by Tim Van Holder.
2190
21912006-09-15 Paul Eggert <eggert@cs.ucla.edu>
2192
2193 Use some of gnulib's new modules, taken from coreutils.
2194
2195 * bootstrap: Sync from coreutils, except add support for gnulib_files.
2196 * bootstrap.conf: New file.
2197 (gnulib_modules): Add configmake, inttypes, unistd.
2198 (XGETTEXT_OPTIONS): Add complain, complain_at,
2199 fatal, fatal_at, warn, warn_at, unexpected_end.
2200 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
2201 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
2202 (gl_EARLY): Add.
2203 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
2204 (gl_INIT): Add
2205 (GNULIB_AUTOCONF_SNIPPET): Remove.
2206 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
2207 the pickiest.
2208 * lib/.cvsignore: Add inttypes_.h.
2209 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
2210 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
2211 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
2212 no-longer-necessary initializations.
2213 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
2214 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
2215 use the unistd module.
2216 * src/system.h: Likewise.
2217 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
2218 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
2219 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
2220 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
2221 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
2222 * src/system.h: Include inttypes.h unconditionally, now that we
2223 use the inttypes module. Don't bother to include stdint.h, since
2224 inttypes.h now does that for us.
2225 (LOCALEDIR): Remove, now that we use the configmake module.
2226 * src/getargs.c: Include configmake.h.
2227 * src/main.c: Likewise.
2228 * src/output.c: Likewise.
2229 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
2230 not from $abs_top_builddir, since config.h moved.
2231
2232
2233 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
2234 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
2235
2236 * src/parse-gram.y (symbol_declaration): Don't put statements
2237 before declarations; it's not portable to C89.
2238 * src/scan-code.l (handle_action_at): Likewise.
2239
2240 * src/scan-code.l: Always initialize braces_level; the old code
2241 left it uninitialized and therefore had undefined behavior.
2242
2243 Don't attempt to redefine 'assert', since it runs afoul of
2244 systems where standard headers (mistakenly) include <assert.h>.
2245 Instead, define and use our own alternative, called 'aver'.
2246 * src/reader.c: Don't include assert.h, since we no longer
2247 use assert.
2248 * src/scan-code.l: Likewise.
2249 * src/system.h (assert): Remove, replacing with....
2250 (aver): New function, taking a bool arg. All uses changed.
2251 * src/tables.c (pack_vector): Ensure that aver arg is bool,
2252 not merely an integer.
2253
22542006-09-15 Bob Rossi <bob@brasko.net>
2255
2256 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
2257 * data/c.m4 (YYPUSH): New.
2258 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
2259 * src/getargs.c (push_parser): New var.
2260 * src/getargs.h (push_parser): New declaration.
2261 * src/output.c (prepare): Add macro insertion of `push_flag'.
2262 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
2263 (prologue_declaration): Parse %push-parser.
2264 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
2265 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
2266 list of removed lines from the traces observed.
2267 (AT_CHECK_CALC_LALR): Added push parser tests.
2268
22692006-09-13 Paul Eggert <eggert@cs.ucla.edu>
2270
2271 * NEWS: Version 2.3a.
2272 * configure.ac (AC_INIT): Likewise.
2273
2274 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
2275 "#define YYSTYPE int" that caused "make maintainer-check" to fail
2276 due to header ordering dependencies. I don't know why the #define
2277 was there.
2278
2279 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
2280 runtime cost when YYDEBUG is not defined, and so that some tests
2281 that used to fail now work. Problem and initial suggestion by
2282 Paolo Bonzini.
2283 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
2284 * data/glr.cc (b4_parser_class_name):
2285 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
2286 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
2287 (yydebug_) [YYDEBUG]: New member.
2288 (yycdebug_): Now defined only if YYDEBUG.
2289 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
2290 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
2291 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
2292 if YYYDEBUG.
2293 (debug_stream, set_debug_stream, debug_level, set_debug_level):
2294 Define only if YYDEBUG.
2295 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
2296 set_debug_level.
2297 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
2298 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
2299 AT_CHECK_CALC_GLR_CC that are working now.
2300
23012006-09-12 Paul Eggert <eggert@cs.ucla.edu>
2302
2303 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
2304 We don't need them in glr.cc, and glr.c defines them.
2305 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
2306 assumes that defining it to anything is the same as defining
2307 it to 1. Problem reported by Paolo Bonzini.
2308
23092006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
2310
2311 * data/c.m4 (b4_null, b4_case): Define.
2312 * src/output.c (prepare_symbols): Use b4_null.
2313 (user_actions_output): Use b4_case.
2314
23152006-09-11 Paul Eggert <eggert@cs.ucla.edu>
2316
2317 * data/glr.c (b4_shared_declarations): Put start-header first,
2318 before any #includes that we generate, so that feature-test
2319 macros work. Problem reported by Michael Deutschmann in
2320 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
2321 * data/lalr1.cc: Likewise.
2322 * doc/bison.texinfo (Prologue): Document that feature-test macros
2323 should be defined before any Bison declarations.
2324 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
2325 that depend on location.hh after, not before, Bison decls, since
2326 we now include location.hh after the first user prologue.
2327
2328 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
2329 Sander Brandenburg in
2330 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
2331 Also, fix minor white space and comment issues.
2332 (Prologue): Mention that it's better to define feature-test macros
2333 before Bison declarations. Problem reported by Michael Deutschmann.
2334
2335 * README-cvs: Fix typo: "&" should be "&&". Problem reported
2336 by Jim Meyering.
2337 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
2338 This adjusts to recent gnulib changes.
2339
23402006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
2341
2342 Finish implementation of per-type %destructor/%printer. Discussed
2343 starting at
2344 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
2345 and
2346 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
2347 * NEWS (2.3+): Add a description of this feature to the default
2348 %destructor/%printer description.
2349 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
2350 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
2351 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
2352 list node contains a semantic type.
2353 * src/symtab.c, src/symtab.h: Extend with a table that associates
2354 semantic types with their %destructor's and %printer's.
2355 (semantic_type_from_uniqstr, semantic_type_get,
2356 semantic_type_destructor_set, semantic_type_printer_set): New functions
2357 composing the public interface of that table.
2358 (symbol_destructor_get, symbol_destructor_location_get,
2359 symbol_printer_get, symbol_printer_location_get): If there's no
2360 per-symbol %destructor/%printer, look up the per-type before trying
2361 the default.
2362 * tests/actions.at (Per-type %printer and %destructor): New test case.
2363 * tests/input.at (Default %printer and %destructor redeclared):
2364 Extend to check that multiple occurrences of %symbol-default in a
2365 single %destructor/%printer declaration is an error.
2366 (Per-type %printer and %destructor redeclared, Unused values with
2367 per-type %destructor): New test cases.
2368
23692006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
2370
2371 Require default %destructor/%printer to be declared using
2372 %symbol-default instead of an empty symbol list, and start working on
2373 new per-type %destructor/%printer. Discussed at
2374 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
2375 * NEWS (2.3+): Add %symbol-default to example.
2376 * bison.texinfo (Freeing Discarded Symbols): Likewise.
2377 (Table of Symbols): Add entry for %symbol-default.
2378 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
2379 (generic_symlist, generic_symlist_item): New nonterminals for creating
2380 a list in which each item is a symbol, semantic type, or
2381 %symbol-default.
2382 (grammar_declaration): Use generic_symlist in %destructor and %printer
2383 declarations instead of symbols.1 or an empty list.
2384 (symbol_declaration, precedence_declaration, symbols.1): Update actions
2385 for changes to symbol_list.
2386 * src/reader.c: Update for changes to symbol_list.
2387 * src/scan-code.l: Likewise.
2388 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
2389 * src/symlist.c, src/symlist.h: Extend such that a list node may
2390 represent a semantic type or a %symbol-default in addition to just an
2391 ordinary symbol. Add switched functions for setting %destructor's and
2392 %printer's.
2393 * tests/actions.at, tests/input.at: Add %symbol-default to all default
2394 %destructor/%printer declarations.
2395
23962006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
2397
2398 Whether the default %destructor/%printer applies to a particular symbol
2399 isn't a question of whether the user *declares* that symbol (in %token,
2400 for example). It's a question of whether the user by any means
2401 *defines* the symbol at all (by simply using a char token, for
2402 example). $end is defined by Bison whereas any other token with token
2403 number 0 is defined by the user. The error token is always defined by
2404 Bison regardless of whether the user declares it with %token, but we
2405 may one day let the user define error as a nonterminal instead.
2406 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
2407 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
2408 the meaning of "user-defined".
2409 * tests/actions.at (Default %printer and %destructor for user-declared
2410 end token): Rename to...
2411 (Default %printer and %destructor for user-defined end token): ...
2412 this.
2413
2414 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
2415 computation of whether to apply the default, don't maintain a list of
2416 every Bison-defined symbol. Instead, just check for a first character
2417 of '$', which a user symbol cannot have, and check for the error token.
2418
24192006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
2420
2421 Don't apply the default %destructor or %printer to the error token,
2422 $undefined, or $accept. This change fits the general rule that the
2423 default %destructor and %printer are only for user-declared symbols,
2424 and it solves several difficulties that are described in the new test
2425 cases listed below.
2426 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
2427 * tests/actions.at (Default %printer and %destructor are not for error
2428 or $undefined, Default %printer and %destructor are not for $accept):
2429 New test cases.
2430
24312006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
2432
2433 Allow %start after the first rule.
2434 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
2435 when parsing the first rule.
2436 (check_and_convert_grammar): Search for it here after all grammar
2437 declarations have been parsed. Skip midrules, which have dummy LHS
2438 nonterminals.
2439 * src/symtab.c (symbol_is_dummy): New function.
2440 * src/symtab.h (symbol_is_dummy): Declare it.
2441 * tests/input.at (%start after first rule): New test.
2442
24432006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
2444
2445 Redo some of the previous commit: add back the ability to use
2446 non-aliased/undeclared string literals since it might be useful to
2447 those declaring %token-table.
2448 * src/reader.c (check_and_convert_grammar): Undo changes in previous
2449 commit: don't worry about complaints from symbols_pack.
2450 * src/symtab.c (symbol_new, symbol_class_set,
2451 symbol_check_alias_consistency): Undo changes in previous commit: count
2452 each string literal as a new symbol and token, assign it a symbol
2453 number, and don't complain about non-aliased string literals.
2454 (symbols_pack): Since symbol_make_alias still does not decrement symbol
2455 and token counts but does still set aliased tokens to the same number,
2456 symbol_pack_processor now leaves empty slots in the symbols array.
2457 Remove those slots.
2458 * tests/regression.at (Undeclared string literal): Remove test case
2459 added in previous commit since non-aliased string literals are allowed
2460 again.
2461 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
2462 remove unnecessary string literal declarations.
2463 * tests/sets.at (Firsts): Likewise.
2464
24652006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
2466
2467 Don't allow an undeclared string literal, but allow a string literal to
2468 be used before its declaration.
2469 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
2470 symbols_pack complained.
2471 * src/symtab.c (symbol_new): Don't count a string literal as a new
2472 symbol.
2473 (symbol_class_set): Don't count a string literal as a new token, and
2474 don't assign it a symbol number since symbol_make_alias does that.
2475 (symbol_make_alias): It's not necessary to decrement the symbol and
2476 token counts anymore. Don't assume that an alias declaration occurs
2477 before any uses of the identifier or string, and thus don't assert that
2478 one of them has the highest symbol number so far.
2479 (symbol_check_alias_consistency): Complain if there's a string literal
2480 that wasn't declared as an alias.
2481 (symbols_pack): Bail if symbol_check_alias_consistency failed since
2482 symbol_pack asserts that every token has been assigned a symbol number
2483 although undeclared string literals have not.
2484 * tests/regression.at (String alias declared after use, Undeclared
2485 string literal): New test cases.
2486 (Characters Escapes, Web2c Actions): Declare string literals as
2487 aliases.
2488 * tests/sets.at (Firsts): Likewise.
2489
24902006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
2491
2492 In the grammar scanner, STRING_FINISH unclosed constructs and return
2493 them to the parser in order to improve error messages.
2494 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
2495 SC_BRACED_CODE, SC_PROLOGUE): Implement.
2496 * tests/input.at (Unclosed constructs): New test case.
2497 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
2498 seen.
2499
2500 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
2501 unused global.
2502
25032006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
2504
2505 Handle string aliases for character tokens correctly.
2506 * src/symtab.c (symbol_user_token_number_set): If the token has an
2507 alias, check and set its alias's user token number instead of its own,
2508 which is set to indicate the alias. Previously, every occurrence of
2509 the character token in the grammar overwrote that alias indicator with
2510 the character code.
2511 * tests/input.at (String aliases for character tokens): New test.
2512
25132006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
2514
2515 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
2516
25172006-08-11 Paul Eggert <eggert@cs.ucla.edu>
2518
2519 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
2520 to prevent failures when building on older platforms.
2521 Check for autopoint failure.
2522 Set XGETTEXT_OPTIONS to values that check for C format strings,
2523 so that translators are warned about them (this also helps
2524 prevent core dumps).
2525
2526 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
2527 function, since it simplifies our code a bit.
2528
2529 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
2530 rather than -W, so we don't get bogus warnings about sign comparisons.
2531 Add -Wpointer-arith, since that warning is useful (it reports code
2532 that does not conform to C89 and that some compilers reject).
2533 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
2534 since it's no longer needed.
2535
25362006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
2537
2538 Clean up scanners a bit.
2539 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
2540 definitions so gcc won't warn when obstack_for_string is unused.
2541 * src/scan-code.l: config.h and system.h are already #include'd by
2542 scan-code-c.c, so get rid of them here.
2543 * src/scan-gram.l: Likewise.
2544 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
2545 definitions rather than duplicating the rest of it.
2546 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
2547
25482006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
2549
2550 Suppress signed/unsigned comparison warnings for yycheck.
2551 * data/c.m4 (b4_safest_int_type): New macro.
2552 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
2553 a signed int type, cast it to b4_safest_int_type first.
2554 * data/yacc.c: Likewise.
2555 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
2556 also overwritten.
2557
25582006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
2559
2560 * doc/bison.texinfo: Fix some typos.
2561
25622006-08-02 Paul Eggert <eggert@cs.ucla.edu>
2563
2564 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
2565 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
2566
2567 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
2568 the latest gnulib does this a different way.
2569 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
2570 translation was patched, so stop omitting it.
2571
25722006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
2573
2574 Enable declaration of default %printer/%destructor. Make the parser
2575 use these for all user-declared grammar symbols for which the user does
2576 not declare a specific %printer/%destructor. Thus, the parser uses it
2577 for token 0 if the user declares it but not if Bison generates it as
2578 $end. Discussed starting at
2579 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
2580 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
2581 and
2582 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
2583 * NEWS (2.3+): Mention.
2584 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
2585 declare a %destructor for a mid-rule's semantic value. It's just
2586 impossible to declare one specific to it.
2587 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
2588 code. Describe default %destructor form.
2589 * src/parse-gram.y (grammar_declaration): Parse default
2590 %printer/%destructor declarations.
2591 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
2592 and symbol_destructor_location_get rather than accessing the destructor
2593 and destructor_location members of struct symbol.
2594 (symbol_printers_output): Likewise but for %printer's.
2595 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
2596 again.
2597 * src/symtab.c (default_destructor, default_destructor_location,
2598 default_printer, default_printer_location): New static global
2599 variables to record the default %destructor and %printer.
2600 (symbol_destructor_get, symbol_destructor_location_get,
2601 symbol_printer_get, symbol_printer_location_get): New functions to
2602 compute the appropriate %destructor and %printer for a symbol.
2603 (default_destructor_set, default_printer_set): New functions to set the
2604 default %destructor and %printer.
2605 * src/symtab.h: Prototype all those new functions.
2606 * tests/actions.at (Default %printer and %destructor): New test to
2607 check that the right %printer and %destructor are called, that they're
2608 not called for $end, and that $$ and @$ work correctly.
2609 (Default %printer and %destructor for user-declared end token): New
2610 test to check that the default %printer and %destructor are called for
2611 a user-declared end token.
2612 * tests/input.at (Default %printer and %destructor redeclared, Unused
2613 values with default %destructor): New tests to check related grammar
2614 warnings and errors.
2615
26162006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
2617
2618 Clean up handling of %destructor for the end token (token 0).
2619 Discussed starting at
2620 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
2621 and
2622 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
2623
2624 Make the skeletons consistent in how they pop the end token and invoke
2625 its %destructor.
2626 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
2627 state, which has token number 0, since this would invoke the
2628 %destructor for the end token.
2629 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
2630 until after shifting the end token, or else it won't be popped.
2631 * data/yacc.c (yyparse): Likewise.
2632
2633 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
2634 it's the end token. Upon termination, destroy an unshifted lookahead
2635 even when it's the end token.
2636 * data/lalr1.cc (yy::parser::parse): Likewise.
2637 * data/yacc.c (yyparse): Likewise.
2638
2639 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
2640 value warnings for the end token when the user gives the end token a
2641 %destructor.
2642
2643 * tests/actions.at (Printers and Destructors): Test all the above.
2644
26452006-07-24 Paul Eggert <eggert@cs.ucla.edu>
2646
2647 Update to latest gnulib and gettext versions.
2648 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
2649 Add fopen-safer.
2650 (gnulib_files): Add m4/warning.m4. Don't worry about files
2651 overwritten by autopoint.
2652 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
2653 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
2654 rejects them.
2655 Don't use autoreconf; instead, invoke autopoint etc. by hand,
2656 so that we can remove the intl files at a better time.
2657 (intl_files_to_remove): Remove aclocal.m4, since it gets
2658 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
2659 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
2660 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
2661 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
2662 Remove datarootdir hack; no longer needed.
2663 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
2664 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
2665 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
2666 strdup.h.
2667 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
2668 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
2669
26702006-07-20 Paul Eggert <eggert@cs.ucla.edu>
2671
2672 * bootstrap: Adjust to today's change to gnulib-tool by invoking
2673 it with --assume-autoconf='latest-stable'.
2674
26752006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
2676
2677 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
2678 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
2679 YYSTYPE' and `{'.
2680 * src/muscle_tab.h (muscle_grow): Replace the header comments with
2681 those from muscle_tab.c since the old ones are misleading.
2682
26832006-07-13 Akim Demaille <akim@epita.fr>
2684
2685 Support %define "KEY" {VALUE}.
2686 * src/scan-code.h, src/scan-code.l (translate_action)
2687 (translate_rule_action, translate_symbol_action, translate_code):
2688 Return char *, not const char *.
2689 * src/parse-gram.y (declaration): Rename as...
2690 (prologue_declaration): this.
2691 (string_content): Remove this nonterminal, use STRING.
2692 (braceless, content, content.opt): New nonterminal.
2693 Use them.
2694 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
2695 as value.
2696 * src/scan-gram.l (getargs.h): Don't include it.
2697
26982006-07-12 Paul Eggert <eggert@cs.ucla.edu>
2699
2700 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
2701 rather than a for-loop that declares a local bool variable. This
2702 should work around a compatibility problem with a Cray x1e C++
2703 compiler reported by Hung Nguyen in
2704 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
2705 The for-loop was introduced in the 2004-11-17 change but I don't
2706 know why it was needed.
2707
27082006-07-12 Akim Demaille <akim@epita.fr>
2709
2710 * data/c.m4: Comment changes.
2711
27122006-07-10 Akim Demaille <akim@lrde.epita.fr>
2713
2714 * src/complain.c (error_message, ERROR_MESSAGE): New.
2715 To factor...
2716 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
2717 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
2718
27192006-07-09 Paul Eggert <eggert@cs.ucla.edu>
2720
2721 * NEWS: Instead of %union, you can define and use your own union type
2722 YYSTYPE if your grammar contains at least one <type> tag.
2723 Your YYSTYPE need not be a macro; it can be a typedef.
2724 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
2725 (Union Decl, Decl Summary): Document this.
2726 * data/glr.c (YYSTYPE): Implement this.
2727 * data/glr.cc (YYSTYPE): Likewise.
2728 * data/lalr1.cc (YYSTYPE): Likewise.
2729 * data/yacc.c (YYSTYPE): Likewise.
2730 * src/output.c (prepare): Output tag_seen_flag.
2731 * src/parse-gram.y (declaration, grammar_declaration):
2732 Use 'union_seen' rather than 'typed' to determine whether
2733 %union has been seen, since grammars can now be typed without
2734 %union.
2735 (symbol_declaration, type.opt, symbol_def):
2736 Keep track of whether a tag has been seen.
2737 * src/reader.c (union_seen, tag_seen): New vars.
2738 (typed): remove.
2739 * src/reader.h (union_seen, tag_seen, typed): Likewise.
2740 * src/scan-code.l (untyped_var_seen): New variable.
2741 (handle_action_dollar): Adjust to above changes.
2742 (handle_action_dollar, handle_action_at):
2743 Improve overflow checking for outlandish numbers.
2744 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
2745 avoid new diagnostics generated by above changes.
2746 * tests/regression.at (YYSTYPE typedef): Add test to check
2747 for type tags without %union.
2748
2749 * src/symlist.c (symbol_list_length): Return int, not unsigned
2750 int, since callers expect int. This may need to get revisited
2751 once we have proper integer overflow checking.
2752
2753 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
2754 object is now static.
2755
2756 * src/getargs.c (flags_argmatch): Return void, not int,
2757 to pacify ./configure --enable-gcc-warnings.
2758
2759 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
2760 since last_string is already defined to FLEX_PREFIX (last_string).
2761
27622006-07-09 Akim Demaille <akim@lrde.epita.fr>
2763
2764 Implement --warnings/-W.
2765 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
2766 replaced by...
2767 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
2768 Adjust callers.
2769 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
2770 (warnings_args, warnings_types): New.
2771 (getargs, short_options, long_options): Accept -W/--warnings.
2772 Sort the options by alphabetical order, upper case letter right
2773 before its lower case.
2774
27752006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2776
2777 Change %merge result type clash warnings to errors. Discussed at
2778 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
2779 * src/reader.c (record_merge_function_type): Use complain_at.
2780 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
2781 declared later): Update test case results.
2782
27832006-07-09 Akim Demaille <akim@lrde.epita.fr>
2784
2785 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
2786 to be in alphabetical order.
2787 (trace_args): Spelling fixes.
2788
27892006-07-09 Paul Eggert <eggert@cs.ucla.edu>
2790
2791 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
2792 so they don't collide with user-defined macros.
2793 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
2794 this was never guaranteed, and now that we're using gnulib stdint,
2795 which defines int_fast16_t to long int, the problem is exposed.
2796
27972006-07-08 Paul Eggert <eggert@cs.ucla.edu>
2798
2799 * data/c.m4 (b4_basename): Simplify a bit, since we don't
2800 need the full POSIX semantics (and weren't implementing them
2801 anyway).
2802
2803 Adjust to Autoconf 2.60 and today's gnulib.
2804 * bootstrap (gnulib_modules): Add stdint.
2805 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
2806 no longer copies it.
2807 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
2808 since stdint needs the former and wcwidth (which is now required
2809 by mbswidth) needs the latter.
2810 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
2811 work around a compatibility glitch between gettext 0.14.6 and
2812 Autoconf 2.60.
2813 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
2814 Do not check for uintptr_t, since new stdint module does the right
2815 thing.
2816 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
2817 Add stdint.h, stdint_.h, wcwidth.h.
2818 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
2819 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
2820 stdint.m4, wchar_t.m4, wcwidth.m4.
2821 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
2822 usual order for ../lib/*.h files.
2823 (file_name_split): Use last_component, not base_name, to adjust
2824 to gnulib changes.
2825 * src/parse-gram.h: Include <strverscmp.h> in the usual order
2826 for ../lib/*.h files.
2827 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
2828 Define unconditionally, since we now assume the stdint module.
2829 * src/scan-skel.l: Include <dirname.h>.
2830 (BASE_QPUTS): Use last_component, not base_name.
2831 * src/system.h: Include <unlocked-io.h> in the usual order
2832 for ../lib/*.h files. Include <stdint.h> unconditionally,
2833 since we now use the stdint module.
2834 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
2835 HAVE_UINTPTR_T, since we now use the stdint module.
2836 (base_name): Remove decl, since files now include <dirname.h>
2837 to get the decl.
2838
28392006-07-08 Akim Demaille <akim@lrde.epita.fr>
2840
2841 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
2842 New, default to 1.
2843 * data/yacc.c, data/glr.c, data/location.cc: Use them.
2844 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
2845 default.
2846 * tests/calc.at: Adjust.
2847
28482006-07-08 Akim Demaille <akim@lrde.epita.fr>
2849
2850 * data/c.m4 (b4_basename): New.
2851 (b4_syncline): Also output the location of its invocation (from
2852 the skeleton).
2853 (b4_user_action, b4_define_user_action, b4_user_actions)
2854 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
2855 (b4_user_stype): New.
2856 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
2857
28582006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
2859
2860 In the grammar file, the first column is 1 not 0 on the first line as
2861 on every other line.
2862 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
2863 * tests/input.at (Torturing the Scanner): Update output.
2864
2865 * src/scan-gram.l (scanner_cursor): Declare it static.
2866
28672006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
2868
2869 In warnings, say "previous declaration" rather than "first
2870 declaration".
2871 * src/symtab.c (redeclaration): Do that here.
2872 * src/reader.c (record_merge_function_type): In the case of a result
2873 type clash, report the previous declaration rather than the very first
2874 one in the grammar file.
2875 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
2876 declared later): Add a third declaration to check this behavior.
2877 * tests/input.at (Incompatible Aliases): Update output.
2878
28792006-06-27 Akim Demaille <akim@epita.fr>
2880
2881 * doc/Doxyfile.in: New.
2882 * doc/Makefile.am: Use it.
2883 * src/lalr.h, src/symtab.h: Initial doxygenation.
2884
28852006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
2886
2887 Don't miss %merge result type warnings just because the LHS types are
2888 declared after the %merge. This continues the effort of the previous
2889 patch.
2890 * src/reader.c (get_merge_function): Don't set the merger type yet.
2891 (record_merge_function_type): New function for setting the merger type
2892 and checking for clashes.
2893 (grammar_current_rule_merge_set): Set the location of the %merge for
2894 the current rule.
2895 (packgram): Invoke record_merge_function_type for each rule now that
2896 all symbol type declarations have been parsed.
2897 * src/reader.h (merger_list.type_declaration_location): New member
2898 storing the location of the first %merge from which the type for this
2899 merging function was derived.
2900 * src/symlist.h (symbol_list.merger_declaration_location): New member
2901 storing the location of a rule's %merge, if any.
2902 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
2903 declared later): New test to catch the error fixed by the above patch.
2904
29052006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
2906
2907 Get action warnings (grammar_rule_check) right even when symbol
2908 declarations appear after the rules. Discussed at
2909 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
2910 and
2911 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
2912 Don't mistake the type of $$ in a midrule to be that of its parent
2913 rule's $$.
2914 * src/reader.c (grammar_current_rule_end): Don't invoke
2915 grammar_rule_check yet since not all symbol declarations may have been
2916 parsed yet.
2917 (grammar_midrule_action): Likewise.
2918 Don't record whether the midrule's $$ has been used yet since actions
2919 haven't been translated yet.
2920 Record the midrule's parent rule and its RHS index within the parent
2921 rule.
2922 (grammar_current_rule_action_append): Don't translate the action yet
2923 since not all symbol declarations may have been parsed yet and, thus,
2924 warnings about types for $$, $n, @$, and @n can't be reported yet.
2925 (packgram): Translate the action and invoke grammar_rule_check now that
2926 all symbol declarations have been parsed.
2927 * src/scan-code.l (handle_action_dollar): Now that this is invoked
2928 after parsing the entire grammar file, the symbol list here in the case
2929 of a midrule is actually the midrule's empty RHS, so reference its
2930 parent rule's RHS where necessary.
2931 On the other hand, now that you can already know it's a midrule, you
2932 aren't forced to think $$ has the same type as its parent rule's $$.
2933 (handle_action_at): In the case of a midrule, reference the parent rule
2934 where necessary.
2935 * src/symlist.c (symbol_list_new): Initialize new midrule-related
2936 members.
2937 (symbol_list_length): Now that this is invoked after all rules have
2938 been parsed, a NULL symbol (rather than a NULL symbol list node)
2939 terminates a rule. symbol_list_print already does this correctly.
2940 * src/symlist.h (symbol_list.midrule_parent_rule,
2941 symbol_list.midrule_parent_rhs_index): New members so that midrules can
2942 remember their relationships with their parents.
2943 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
2944 fixed by the above patch.
2945 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
2946 implementing...
2947 (Unused values): ... this old test case and...
2948 (Unused values before symbol declarations): ... this new test case.
2949 This one is the same as `Unused values' except that all symbol
2950 declarations appear after the rules in order to catch the rest of the
2951 errors fixed by the above patch.
2952
29532006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
2954
2955 More cleanup.
2956 * src/reader.c (current_rule): Declare it static since it's no longer
2957 used outside this file.
2958 (grammar_current_rule_action_append): Remove redundant arguments from
2959 translate_rule_action invocation.
2960 * src/reader.h (current_rule): Remove this unused extern.
2961 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
2962 * src/scan-code.l (translate_rule_action): Likewise.
2963
29642006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
2965
2966 Clean up yesterday's patch.
2967 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
2968 to...
2969 * src/reader.c (grammar_current_rule_action_append): ... here for
2970 consistency with grammar_current_rule_symbol_append.
2971 * tests/regression.at (Braced code in declaration in rules section):
2972 Make yyerror and yylex static as usual.
2973
29742006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
2975
2976 Fix bug that mistakes braced code in a declaration in the rules section
2977 to be a rule action. Mentioned at
2978 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
2979 * src/scan-gram.l: Move midrule action detection from the start of the
2980 scanning of any braced code to...
2981 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
2982 action. For readability, use $2 and @2 rather than the equivalent
2983 global variables.
2984 * tests/regression.at (Braced code in declaration in rules section):
2985 New test to catch the error fixed by the above patch.
2986
2987 Work on code readability some.
2988 * src/scan-code.l (current_rule): Get rid of this misleading and
2989 redundant declaration: it's actually extern'ed in reader.h.
2990 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
2991 translate_action): Add a rule argument and use it instead of the global
2992 current_rule.
2993 (translate_rule_action): This already receives current_rule through an
2994 argument, so pass it on to translate_action instead of assigning
2995 current_rule to current_rule.
2996 (translate_symbol_action, translate_code): Pass rule = NULL to
2997 translate_action.
2998
29992006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
3000
3001 Rename %before-definitions to %start-header and %after-definitions to
3002 %end-header. Don't use these declarations to separate pre-prologue
3003 blocks from post-prologue blocks. Add new order-independent
3004 declarations %before-header and %after-header as alternatives to the
3005 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
3006 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
3007 * NEWS (2.3+): Update for these changes.
3008 * data/glr.c (b4_before_definitions): Update to...
3009 (b4_start_header): ... this.
3010 (b4_after_definitions): Update to...
3011 (b4_end_header): ... this.
3012 * data/glr.cc: Likewise.
3013 * data/lalr1.cc: Likewise.
3014 * data/yacc.c: Likewise.
3015 * doc/bison.texinfo (The prologue): Update names, and replace remaining
3016 prologue blocks with %*-header declarations.
3017 (Calc++ Parser): Likewise.
3018 (Bison Declaration Summary): Update names.
3019 (Table of Symbols): Update description.
3020 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
3021 (PERCENT_END_HEADER): ... this.
3022 (PERCENT_BEFORE_DEFINITIONS): Update to...
3023 (PERCENT_START_HEADER): ... this.
3024 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
3025 (declaration): Update token names and m4 macro names.
3026 When parsing %end-header and %start-header, invoke translate_code
3027 before muscle_code_grow, and no longer set global booleans to remember
3028 whether these declarations have been seen.
3029 Parse new %after-header and %before-header.
3030 * src/reader.c (before_definitions, after_definitions): Remove.
3031 (prologue_augment): Accept a new bool argument to specify whether to
3032 augment the pre-prologue or post-prologue.
3033 * src/reader.h (before_definitions, after_definitions): Remove these
3034 extern's.
3035 (prologue_augment): Add new bool argument.
3036 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
3037 (PERCENT_END_HEADER): ... this.
3038 (PERCENT_BEFORE_DEFINITIONS): Update to...
3039 (PERCENT_START_HEADER): ... this.
3040 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
3041 * tests/actions.at (Printers and Destructors): Update names.
3042
30432006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
3044
3045 Add comparison operators for C++ location classes. Discussed at
3046 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
3047 * data/c++.m4 (b4_define_location_comparison): New boolean %define
3048 declaration indicating whether filename_type has an operator==. If
3049 filename_type is `std::string', it defaults to `1', `0' otherwise.
3050 * data/location.cc: Iff b4_define_location_comparison is `1', add
3051 operator== and operator!= for class position and for class location.
3052
3053 Some minor fixes.
3054 * src/scan-action.l: Remove unused file.
3055 * src/symtab.c (symbol_printer_set): Use printer_location not
3056 destructor_location.
3057 * src/symtab.h (struct symbol): Replace incorrect source comment for
3058 printer members.
3059 * tests/input.at (Incompatible Aliases): Update output with correct
3060 printer location.
3061
30622006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
3063
3064 Don't put the pre-prologue in the header file. For the yacc.c code
3065 file and the glr.c header and code files, move the pre-prologue before
3066 the token definitions. Add new %before-definitions and
3067 %after-definitions to declare code that will go in both the header file
3068 and code file. Discussed at
3069 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
3070 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
3071 and
3072 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
3073 * NEWS (2.3+): Describe these changes.
3074 * data/glr.c (b4_pre_prologue): Move from within to before...
3075 (b4_shared_declarations): ... this.
3076 Add new b4_before_definitions before b4_token_enums.
3077 Add new b4_after_definitions at the end.
3078 * data/glr.cc (b4_pre_prologue): Replace with...
3079 (b4_before_definitions): ... this in the header file.
3080 (b4_after_definitions): New near the end of the header file.
3081 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
3082 code file right before including the header file.
3083 (b4_before_definitions): New in the previous position of
3084 b4_pre_prologue in the header file.
3085 (b4_after_definitions): New near the end of the header file.
3086 * data/yacc.c: Clean up some m4 quoting especially in the header file.
3087 (b4_token_enums_defines): In the code file, move to right before
3088 YYSTYPE for consistency with the header file.
3089 (b4_before_definitions): New right before b4_token_enums_defines in
3090 both the header and code file.
3091 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
3092 header and code file.
3093 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
3094 of prologues for %union dependencies.
3095 (Bison Declaration Summary): In %defines description, mention the
3096 effect of %before-definitions and %after-definitions on the header
3097 file.
3098 (Calc++ Parser): Forward declare driver in a %before-definitions rather
3099 than in the pre-prologue so that make check succeeds.
3100 (Table of Symbols): Add entries for %before-definitions and
3101 %after-definitions.
3102 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
3103 %before-definitions.
3104 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
3105 (declaration): Parse those declarations and append to
3106 b4_before_definitions and b4_after_definitions, respectively.
3107 * src/reader.c (before_definitions, after_definitions): New bools to
3108 track whether those declarations have been seen.
3109 (prologue_augment): Add to the post-prologue if %union,
3110 %before-definitions, or %after-definitions has been seen.
3111 * src/reader.h (before_definitions, after_definitions): New extern's.
3112 * src/scan-gram.l: Scan the new declarations.
3113 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
3114 prologue block in a %before-definitions or a %after-definitions based
3115 on whether the %union is declared.
3116 * tests/regression.at (Early token definitions with --yacc, Early token
3117 definitions without --yacc): Move tests for token definitions into the
3118 post-prologue since token names are no longer defined in the
3119 pre-prologue.
3120
31212006-06-20 Akim Demaille <akim@epita.fr>
3122
3123 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
3124 (symbol_get): Use it.
3125 * src/parse-gram.y: Use it.
3126
31272006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
3128
3129 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
3130 build succeeds when configured with --enable-gcc-warnings.
3131
31322006-06-19 Paul Eggert <eggert@cs.ucla.edu>
3133
3134 * src/parse-gram.y (char_name): New function.
3135 (CHAR, STRING, string_content): For %printer, properly escape.
3136 (ID): Prefer fputs to fprintf.
3137 (id): Reindent to be consistent with other rules.
3138 Properly quote char.
3139
3140 The Translation Project changed its way of publishing translations
3141 to maintainers. I haven't received any responses to my request
3142 for supporting the old way, or for documenting the new way. I
3143 have modified 'bootstrap' to use screen scraping
3144 (in this case, HTML scraping). This is unreliable and inelegant,
3145 but I don't see any better way. Yuck.
3146 * bootstrap (TP_URL, WGET_COMMAND): New vars.
3147 (get_translations): New function, which uses HTML scraping to
3148 deduce locations of latest translations.
3149 Use this function to grab both bison and bison-runtime .po files.
3150 Don't bother priming the pump for the runtime-po domain any more,
3151 as it's now translated better than bison is.
3152
31532006-06-19 Akim Demaille <akim@epita.fr>
3154
3155 * src/scan-gram.l: No longer "parse" things after `%union' until
3156 `{'. Rather, return a single "%union" token.
3157 No longer make symbols: return strings, and leave the conversion
3158 to symbols to the parser.
3159 (SC_PRE_CODE, token_type): Remove.
3160 * src/parse-gram.y (%union): New field `character'.
3161 Sort tokens.
3162 (CHAR): New token.
3163 (ID, ID_COLON): Now that the scanner no longer makes them
3164 identifiers, adjust all uses to invoke symbol_get.
3165 (id_colon): New, wraps the conversion from string to symbol.
3166 (%union): Accept a possible union_name.
3167 (symbol): Now can be a char.
3168 * data/c.m4 (b4_union_name): Leave a default value.
3169 * data/glr.c, data/yacc.c: Use it.
3170
31712006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
3172
3173 For associating token numbers with token names for "yacc.c", don't use
3174 #define statements unless `--yacc' is specified; always use enum
3175 yytokentype. Most important discussions start at:
3176 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
3177 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
3178 and
3179 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
3180 * NEWS (2.3+): Mention.
3181 * data/c.m4 (b4_yacc_if): New.
3182 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
3183 token #define's.
3184 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
3185 on token name definitions.
3186 * src/getargs.c (usage): Capitalize `Yacc' in English.
3187 * src/output.c (prepare): Define b4_yacc_flag.
3188 * tests/regression.at (Early token definitions): Test that tokens names
3189 are defined before the pre-prologue not just before the post-prologue.
3190 Remove this test case and copy to...
3191 (Early token definitions with --yacc): ... this to test #define's.
3192 (Early token definitions without --yacc): ... and this to test enums.
3193
31942006-06-11 Paul Eggert <eggert@cs.ucla.edu>
3195
3196 * NEWS: Reword the post-2.3 change to not be so optimistic about
3197 removing the old "look-ahead" spelling.
3198 Update previous look-ahead/lookahead change reports.
3199 * REFERENCES: look-ahead -> lookahead (since that's
3200 what he actually wrote).
3201 * doc/refcard.tex: look ahead -> lookahead,
3202 look-ahead -> lookahead
3203
32042006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
3205
3206 For consistency, use `lookahead' instead of `look-ahead' or
3207 `look_ahead'. Discussed starting at
3208 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
3209 and then at
3210 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
3211 * NEWS: For the next release, note the change to `--report'.
3212 * TODO, doc/bison.1: Update English.
3213 * doc/bison.texinfo: Update English.
3214 (Understanding Your Parser, Bison Options): Document as
3215 `--report=lookahead' rather than `--report=look-ahead'.
3216 * src/conflicts.c: Update English in comments.
3217 (lookahead_set): Rename from look_ahead_set.
3218 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
3219 (resolve_sr_conflict): Rename local look_ahead_tokens to
3220 lookahead_tokens, and update other uses.
3221 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
3222 count_rr_conflicts, conflicts_free): Update uses.
3223 * src/getargs.c (report_args): Move "lookahead" before alternate
3224 spellings.
3225 (report_types): Update uses.
3226 (usage): For `--report' usage description, state `lookahead' spelling
3227 rather than `look-ahead'.
3228 * src/getargs.h (report.report_lookahead_tokens): Rename from
3229 report_look_ahead_tokens.
3230 * src/lalr.c: Update English in comments.
3231 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
3232 (state_lookahead_tokens_count): Rename from
3233 state_look_ahead_tokens_count.
3234 Rename local n_look_ahead_tokens to n_lookahead_tokens.
3235 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
3236 Rename local n_look_ahead_tokens to n_lookahead_tokens.
3237 Update other uses.
3238 Update English in output.
3239 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
3240 * src/print.c: Update English in comments.
3241 (lookahead_set): Rename from look_ahead_set.
3242 (print_reduction): Rename argument lookahead_token from
3243 look_ahead_token.
3244 (print_core, state_default_rule, print_reductions, print_results):
3245 Update uses.
3246 * src/print_graph.c: Update English in comments.
3247 (print_core): Update uses.
3248 * src/state.c: Update English in comments.
3249 (reductions_new): Update uses.
3250 (state_rule_lookahead_tokens_print): Rename from
3251 state_rule_look_ahead_tokens_print, and update other uses.
3252 * src/state.h: Update English in comments.
3253 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
3254 (state_rule_lookahead_tokens_print): Rename from
3255 state_rule_look_ahead_tokens_print.
3256 * src/tables.c: Update English in comments.
3257 (conflict_row, action_row): Update uses.
3258 * tests/glr-regression.at
3259 (Incorrect lookahead during deterministic GLR,
3260 Incorrect lookahead during nondeterministic GLR): Rename
3261 print_look_ahead to print_lookahead.
3262 * tests/torture.at: Update English in comments.
3263 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
3264 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
3265 (Many lookahead tokens): Update uses.
3266 * data/glr.c: Update English in comments.
3267 * lalr1.cc: Likewise.
3268 * yacc.c: Likewise.
3269 * src/conflicts.h: Likewise.
3270 * src/lalr.h: Likewise.
3271 * src/main.c: Likewise.
3272 * src/output.c: Likewise.
3273 * src/parse-gram.c: Likewise.
3274 * src/tables.h: Likewise.
3275 * tests/calc.at: Likewise.
3276
32772006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
3278
3279 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
3280
32812006-06-07 Paul Eggert <eggert@cs.ucla.edu>
3282
3283 * TODO: Add request from Nelson H. F. Beebe to be able to install
3284 Bison without installing the yacc script.
3285
32862006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
3287
3288 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
3289 and yytext if they're already #define'd.
3290 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
3291 * src/scan-code-c.c: ... here.
3292 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
3293 <config.h>.
3294
32952006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
3296
3297 Get Bison to build again when configured with --enable-gcc-warnings.
3298 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
3299 missing #include's.
3300 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
3301 loc argument as it shadows a global.
3302 * src/scan-gram.l: Remove stray comma that prevents boundary_set
3303 invocation.
3304
3305 * src/.cvsignore: Add scan-code.c.
3306
33072006-06-07 Akim Demaille <akim@epita.fr>
3308
3309 * src/scan-gram.l: Move the "add a trailing ; to actions" code
3310 to...
3311 * src/scan-code.l: here.
3312 * tests/input.at (Torturing the Scanner): Fix another location
3313 error.
3314
33152006-06-07 Akim Demaille <akim@epita.fr>
3316
3317 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
3318
33192006-06-06 Akim Demaille <akim@epita.fr>
3320
3321 Extract the parsing of user actions from the grammar scanner.
3322 As a consequence, the relation between the grammar scanner and
3323 parser is much simpler. We can also split "composite tokens" back
3324 into simple tokens.
3325 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
3326 * src/scan-gram.l (add_column_width, adjust_location): Move to and
3327 rename as...
3328 * src/location.h, src/location.c (add_column_width)
3329 (location_compute): these.
3330 Fix the column count: the initial column is 0.
3331 (location_print): Be robust to ending column being 0.
3332 * src/location.h (boundary_set): New.
3333 * src/main.c: Adjust to scanner_free being renamed as
3334 gram_scanner_free.
3335 * src/output.c: Include scan-code.h.
3336 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
3337 Use boundary_set.
3338 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
3339 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
3340 which is now, again, a separate token.
3341 Adjust all dependencies.
3342 Whereever actions with $ and @ are used, use translate_code.
3343 (action): Remove this nonterminal which is now useless.
3344 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
3345 (grammar_current_rule_action_append): Use translate_code.
3346 (packgram): Bound check ruleno, itemno, and rule_length.
3347 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
3348 (last_string, last_braced_code_loc, max_left_semantic_context)
3349 (scanner_initialize, scanner_free, scanner_last_string_free)
3350 (gram_out, gram_lineno, YY_DECL_): Move to...
3351 * src/scan-gram.h: this new file.
3352 (YY_DECL): Rename as...
3353 (GRAM_DECL): this.
3354 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
3355 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
3356 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
3357 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
3358 Move these declarations, and...
3359 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
3360 these to...
3361 * src/flex-scanner.h: this new file.
3362 * src/scan-gram.l (rule_length, rule_length_overflow)
3363 (increment_rule_length): Remove.
3364 (last_braced_code_loc): Rename as...
3365 (gram_last_braced_code_loc): this.
3366 Adjust to the changes of the parser.
3367 Move all the handling of $ and @ into...
3368 * src/scan-code.l: here.
3369 * src/scan-gram.l (handle_dollar, handle_at): Remove.
3370 (handle_action_dollar, handle_action_at): Move to...
3371 * src/scan-code.l: here.
3372 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
3373 scan-code.h, scan-code-c.c, scan-gram.h.
3374 (EXTRA_bison_SOURCES): Add scan-code.l.
3375 (BUILT_SOURCES): Add scan-code.c.
3376 (yacc): Be robust to white spaces.
3377
3378 * tests/conflicts.at, tests/input.at, tests/reduce.at,
3379 * tests/regression.at: Adjust the column numbers.
3380 * tests/regression.at: Adjust the error message.
3381
33822006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
3383
3384 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
3385 Use Akim's wording from
3386 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
3387
33882006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
3389
3390 Between Bison releases, manually append `+' to the previous Bison
3391 release number, and use that as a signal to automatically print the
3392 ChangeLog's CVS Id keyword from --version. Discussed starting at
3393 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
3394 * ChangeLog: Add Id header.
3395 * configure.ac (AC_INIT): Append `+' to `2.3'.
3396 * src/.cvsignore: Add revision.c.
3397 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
3398 (BUILT_SOURCES): Add revision.c.
3399 (revision.c): New target rule. This file defines a new global variable
3400 named revision. It initializes it with either the Id from ChangeLog
3401 or, if VERSION doesn't contain `+', with the empty string.
3402 * src/getargs.c (version): Print the value of revision.
3403 * src/revision.h: Extern revision.
3404
34052006-06-05 Paul Eggert <eggert@cs.ucla.edu>
3406
3407 * NEWS: Version 2.3.
3408 * configure.ac (AC_INIT): Likewise.
3409
34102006-05-30 Paul Eggert <eggert@cs.ucla.edu>
3411
3412 * data/glr.c (YYRECOVERING): Define to be a function-like macro
3413 with no arguments, not as an object-like macro. This is for
3414 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
3415 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
3416 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
3417 Document this.
3418
34192006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
3420
3421 * src/getargs.c (usage): Back out yesterday's modification of the
3422 --help output so that we don't have to wait for translation before
3423 releasing 2.3.
3424
34252006-05-29 Paul Eggert <eggert@cs.ucla.edu>
3426
3427 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
3428 Problem reported by Akim Demaille.
3429
34302006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3431
3432 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
3433
34342006-05-26 Paul Eggert <eggert@cs.ucla.edu>
3435
3436 * data/yacc.c (yy_reduce_print): Omit trailing white space in
3437 generated source code. Problem reported by Frans Englich in
3438 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
3439
34402006-05-22 Paul Eggert <eggert@cs.ucla.edu>
3441
3442 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
3443 shell, not within 'make', so that 'make' by an ordinary builder
3444 (using GNU make) does not worry about configuring gzip. This also
3445 works around a bug reported independently by Keith Thompson and by
3446 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
3447 stderr rather than stdout, messing up the build logs.
3448
34492006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
3450
3451 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
3452 to make sure that YYID will never be unused. This fixes a 'make
3453 maintainer-check' failure caused by the recent changes to the 'Trivial
3454 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
3455 not used.
3456 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
3457
34582006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
3459
3460 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
3461 state before an empty RHS is always resolved here. Only the location
3462 of that state is guaranteed to be resolved, and that's enough. This
3463 fixes the remaining bug reported by Derek M. Jones in
3464 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
3465 * tests/glr-regression.at (Uninitialized location when reporting
3466 ambiguity): Test the above case.
3467 Also, the embedded comments in this test case claim it checks the case
3468 of an empty RHS that has inherited the initial location. However, the
3469 corresponding LHS was already resolved, so yyresolveLocations didn't
3470 actually have reason to modify it. Fix this by forcing
3471 nondeterministic operation at the beginning of the parse.
3472
34732006-05-20 Paul Eggert <eggert@cs.ucla.edu>
3474
3475 * data/c.m4 (b4_yy_symbol_print_generate):
3476 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
3477 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
3478 of the bugs reported today by Derek M Jones in
3479 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
3480 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
3481 defined to be a type name without parens or brackets.
3482 (Location Type): Similarly for YYLTYPE.
3483 * tests/regression.at (Trivial grammars): Put in a test for this
3484 bug that will be caught by 'make maintainer-check' (though not,
3485 alas, by 'make check' unless your compiler is picky).
3486
34872006-05-19 Paul Eggert <eggert@cs.ucla.edu>
3488
3489 * NEWS: Version 2.2.
3490 * configure.ac (AC_INIT): Likewise.
3491
34922006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
3493
3494 * data/glr.c (yyreportTree): Make room in yystates for the state
3495 preceding the RHS. This fixes the segmentation fault reported by Derek
3496 M. Jones in
3497 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
3498 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
3499 to the user. Reported for yyreportTree by Derek M. Jones later in the
3500 same thread.
3501 * THANKS: Add Derek M. Jones.
3502 Update my email address.
3503 Fix typo in Steve Murphy's name.
3504
35052006-05-14 Paul Eggert <eggert@cs.ucla.edu>
3506
3507 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
3508 checking against YYLAST that caused the parser to miss a potential
3509 alternative in its diagnostic.
3510 Problem reported by Maria Jose Moron Fernandez in
3511 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
3512 * data/lalr1.cc (yysyntax_error_): Likewise.
3513 * data/yacc.c (yysyntax_error): Likewise.
3514 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
3515 tokens, in case we run into an older C compiler.
3516 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
3517 Use them to check for the off-by-one error fixed above.
3518
3519 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
3520 YYSIZE_T, not size_t.
3521 * tests/regression.at (Trivial grammars): New test, to catch
3522 the error fixed by the above patch.
3523
35242006-05-14 Akim Demaille <akim@lrde.epita.fr>
3525
3526 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
3527 scheme.
3528 Reported by Steve Murphy.
3529
35302006-05-14 Akim Demaille <akim@lrde.epita.fr>
3531
3532 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
3533 * data/glr.cc: b4_location_flag is now b4_locations_flag.
3534
35352006-05-14 Akim Demaille <akim@lrde.epita.fr>
3536
3537 Implement --trace=m4.
3538 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
3539 * src/output.c (output_skeleton): When set, pass -dV to m4.
3540
3541 Factor the handling of flags in m4.
3542 * src/output.c (prepare): Rename the muscle names debug, defines,
3543 error_verbose to debug_flag, defines_flag, error_verbose_flag.
3544 * data/c.m4: Adjust.
3545 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
3546 Use b4_define_flag_if to define other b4_FLAG_if macros.
3547 (b4_location_if): As a consequence, rename as...
3548 (b4_locations_if): this, for consistency.
3549 Adjust all the skeletons.
3550
35512006-05-14 Akim Demaille <akim@lrde.epita.fr>
3552
3553 * etc/bench.pm: Shorten bench names.
3554
35552006-05-14 Akim Demaille <akim@lrde.epita.fr>
3556
3557 * src/output.h, src/output.c (error_verbose): Move to...
3558 * src/getargs.h, src/getargs.c: here.
3559 Sort the flags.
3560 Adjust dependencies.
3561
35622006-05-13 Paul Eggert <eggert@cs.ucla.edu>
3563
3564 * data/c.m4 (b4_copyright): Put the special exception for Bison
3565 skeletons here, so we don't have to put it in each skeleton. All
3566 uses changed. Suggested by Akim Demaille. Also, wrap the
3567 copyright notice, in case it is longer than 80 columns. Replace
3568 comma by newline after title.
3569
35702006-05-11 Paul Eggert <eggert@cs.ucla.edu>
3571
3572 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
3573 incompatibility, not a bug. Mention that it wasn't fixed as of
3574 flex 2.5.33.
3575
35762006-05-11 Akim Demaille <akim@lrde.epita.fr>
3577
3578 * examples/extexi: Enforce the precedence of concatenation over
3579 >>.
3580 Reported by Tommy Nordgren.
3581
35822006-05-11 Akim Demaille <akim@lrde.epita.fr>
3583
3584 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
3585 with the member "token".
3586 Reported by Martin Nylin.
3587
35882006-05-08 Paul Eggert <eggert@cs.ucla.edu>
3589
3590 * data/glr.c: Switch to Bison 2.2 special-exception language in
3591 the copyright notice. Use more-regular format for titles and
3592 copyright notices.
3593 * data/glr.cc: Likewise.
3594 * data/location.cc: Likewise.
3595 * data/yacc.cc: Likewise.
3596 * doc/bison.texinfo (Conditions): Document this.
3597 * NEWS: likewise. Upgrade version to 2.2.
3598
35992006-04-27 Akim Demaille <akim@lrde.epita.fr>
3600
3601 * data/glr.cc: Remove dead code.
3602
36032006-04-25 Paul Eggert <eggert@cs.ucla.edu>
3604
3605 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
3606 that variable and the line breaks the bootstrap. Problem reported
3607 by Juan M. Guerrero.
3608
36092006-04-24 Akim Demaille <akim@lrde.epita.fr>
3610
3611 * doc/bison.texinfo (Multiple start-symbols): New.
3612
36132006-04-24 Akim Demaille <akim@lrde.epita.fr>
3614
3615 * etc/README, etc/bench.pl: New.
3616
36172006-04-03 Akim Demaille <akim@lrde.epita.fr>
3618
3619 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
3620 rule.
3621 Reported by Mickael Labau.
3622 * tests/input.at (Torturing the Scanner): Test it.
3623
36242006-03-16 Paul Eggert <eggert@cs.ucla.edu>
3625
3626 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
3627 Problem reported by Bob Rossi.
3628
36292006-03-13 Paul Eggert <eggert@cs.ucla.edu>
3630
3631 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
3632 and didn't really work.
3633 For the index, use @ifnotinfo, not @iftex.
3634 Minor cleanups of spacing and terminology.
3635
36362006-03-12 Akim Demaille <akim@lrde.epita.fr>
3637
3638 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
3639 of AT_NAME_PREFIX when %name-prefix is not used.
3640
36412006-03-12 Akim Demaille <akim@lrde.epita.fr>
3642
3643 Apply --prefix to C++ skeletons too: they change the namespace.
3644 The test suite already exercize these cases.
3645 * data/c++.m4 (b4_namespace): New.
3646 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
3647 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
3648 * data/yacc.c, data/glr.c: Remove a useless `[]'.
3649 * doc/bison.texinfo: Document it.
3650 (Option Cross Key): Use @multitable in all formats. It looks
3651 nicer, even in TeX outputs.
3652 (Rules): Use the same code whatever the output type is.
3653 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
3654 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
3655 * tests/calc.at: Use it, instead of hard coding `yy'.
3656
36572006-03-10 Akim Demaille <akim@lrde.epita.fr>
3658
3659 * TODO: Remove dead items.
3660
36612006-03-10 Akim Demaille <akim@lrde.epita.fr>
3662
3663 * doc/FAQ: Remove, merged into...
3664 * doc/bison.texinfo (FAQ): this.
3665 * doc/Makefile.am (EXTRA_DIST): Adjust.
3666
36672006-03-10 Akim Demaille <akim@lrde.epita.fr>
3668
3669 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
3670 even if empty.
3671 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
3672 * doc/bison.texinfo (Calc++ Scanner): Use it.
3673
36742006-03-09 Paul Eggert <eggert@cs.ucla.edu>
3675
3676 Fix two nits reported by twlevo, plus one more that I discovered.
3677
3678 * src/assoc.h (assoc_to_string): Give a name to the arg, as
3679 this is the usual Bison style.
3680 * src/location.h (location_print): Likewise.
3681
3682 * src/reader.h (token_name): Likewise.
3683
36842006-03-08 Paul Eggert <eggert@cs.ucla.edu>
3685
3686 Fix some nits reported by twlevo.
3687 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
3688 and "POSIX". Use more-modern syntax for URLs. Mention C++
3689 and ask for Java. Don't hardwire OS version numbers. Add
3690 copyright notice.
3691 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
3692 * src/conflicts.c (solved_conflicts_obstack): Now static.
3693
36942006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3695
3696 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
3697 page. Say "you can use it" not "you may use it" as on the web page;
3698 we're describing capabilities not granting permission.
3699
37002006-03-06 Paul Eggert <eggert@cs.ucla.edu>
3701
3702 * data/glr.c (yyresolveLocations): Rename local variables to avoid
3703 shadowing warnings. Use usual patter for iterating through RHS.
3704 * tests/glr-regression.at
3705 (Uninitialized location when reporting ambiguity):
3706 Modify yylex so that it uses its argument, rather than trying
3707 to rely on ARGSUSED (which doesn't work for gcc with warnings).
3708 const char -> char const.
3709
3710 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
3711 Don't use tabs inside commands; it messes up 'ps'.
3712 Problem reported by twlevo.
3713
37142006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
3715
3716 * tests/glr-regression.at (Uninitialized location when reporting
3717 ambiguity): New test case.
3718 * data/glr.c (yyresolveLocations): New function, which uses
3719 YYLLOC_DEFAULT.
3720 (yyresolveValue): Invoke yyresolveLocations before reporting an
3721 ambiguity.
3722 * doc/bison.texinfo (Default Action for Locations): Note
3723 YYLLOC_DEFAULT's usage for ambiguity locations.
3724 (GLR Semantic Actions): Cross-reference those notes.
3725
37262006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
3727
3728 * tests/glr-regression.at (Leaked semantic values when reporting
3729 ambiguity): Remove unnecessary union and type declarations.
3730 (Leaked lookahead after nondeterministic parse syntax error): New test
3731 case.
3732 * data/glr.c (yyparse): Check for zero stacks remaining before
3733 attempting to shift the lookahead so that you don't lose it.
3734
37352006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3736
3737 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
3738 * tests/glr-regression.at (Leaked semantic values when reporting
3739 ambiguity): New test case.
3740 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
3741 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
3742 now unnecessary yystackp parameter.
3743 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
3744 destructors can be called.
3745
3746 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
3747 in existing testcases.
3748
37492006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3750
3751 Don't leak semantic values for parent RHS when a user action cuts the
3752 parser, and clean up related code a bit.
3753 * tests/glr-regression.at (Leaked merged semantic value if user action
3754 cuts parse): Rename to...
3755 (Leaked semantic values if user action cuts parse): ... this. Add check
3756 for leaked parent RHS values.
3757 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
3758 between an unresolved state (non-empty chain of semantic options) and
3759 an incomplete one (signaled by an empty chain).
3760 (yyresolveStates): Document the interface. Move all manipulation of a
3761 successfully or unsuccessfully resolved yyGLRState to...
3762 (yyresolveValue): ... here so that yyresolveValue always leaves a
3763 yyGLRState with consistent data and thus is easier to understand.
3764 Remove the yyvalp and yylocp parameters since they are always just
3765 taken from the yys parameter. When reporting a discarded merged value
3766 in debugging output, note that it is incompletely merged. Document the
3767 interface.
3768 (yyresolveAction): If resolving any of the RHS states fails, destroy
3769 them all rather than leaking them. Thus, as long as user actions are
3770 written to clean up the RHS correctly, yyresolveAction always cleans up
3771 the RHS of a semantic option. Document the interface.
3772
37732006-02-27 Paul Eggert <eggert@cs.ucla.edu>
3774
3775 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
3776 led to a segmentation fault in GNU Pascal. Problem reported
3777 by Waldek Hebisch.
3778
37792006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
3780
3781 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
3782 mid-rule action inside a nonterminal symbol in order to declare a
3783 destructor for its semantic value.
3784
37852006-02-16 Paul Eggert <eggert@cs.ucla.edu>
3786
3787 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
3788 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
3789 __cplusplus && ! defined _STDLIB_H && !
3790 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
3791 defined free))]: Include <stdlib.h> rather than rolling our own
3792 declarations of malloc and free, to avoid problems with
3793 incompatible declarations (using 'throw') C++'s stdlib.h. This
3794 should fix Debian bug 340012
3795 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
3796 reported by Guillaume Melquiond.
3797
37982006-02-13 Paul Eggert <eggert@cs.ucla.edu>
3799
3800 * NEWS: Clarify symbols versus types in unused-value warnings.
3801
3802 * configure.ac (AC_INIT): Bump version number.
3803
38042006-02-13 Paul Eggert <eggert@cs.ucla.edu>
3805
3806 * NEWS: Version 2.1a.
3807 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
3808 since C99 requires this.
3809
38102006-02-11 Paul Eggert <eggert@cs.ucla.edu>
3811
3812 * m4/c-working.m4: New file.
3813 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
3814
38152006-02-10 Paul Eggert <eggert@cs.ucla.edu>
3816
3817 * Makefile.maint: Merge from coreutils.
3818
38192006-02-09 Paul Eggert <eggert@cs.ucla.edu>
3820
3821 More portability fixes for problems summarized by Nelson H. F. Beebe.
3822
3823 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
3824 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
3825 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
3826 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
3827 messes up because C++ code is compiled in 32-bit mode but linked
3828 in 64-bit mode.
3829
38302006-02-08 Paul Eggert <eggert@cs.ucla.edu>
3831
3832 More portability fixes for problems summarized by Nelson H. F. Beebe.
3833
3834 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
3835 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
3836
3837 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
3838 nodist_PROGRAMS, since we don't need to actually compile the
3839 example if we're just doing a plain 'make'. This avoids bothering
3840 the installer unnecessarily about problems due to weird C++
3841 compilers.
3842
38432006-02-06 Paul Eggert <eggert@cs.ucla.edu>
3844
3845 More portability fixes for problems summarized by Nelson H. F. Beebe.
3846
3847 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
3848 than #include "...", and compile with -I'.'. The old method was
3849 not portable, according to Posix and the C standard, and it does
3850 not work with Sun C 5.7, where previous #line directives affect
3851 the working directory used in later #include "..." directives.
3852
38532006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3854
3855 Various DJGGP specific issues in /djgpp
3856
38572006-02-02 Paul Eggert <eggert@cs.ucla.edu>
3858
3859 More portability fixes for problems summarized by Nelson H. F. Beebe.
3860
3861 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
3862 '#include <map>' works and that you can apply ++ to iterators.
3863
38642006-02-01 Paul Eggert <eggert@cs.ucla.edu>
3865
3866 Work around portability problems summarized by Nelson H. F. Beebe in
3867 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
3868
3869 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
3870 that '#include <string>' works.
3871
3872 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
3873 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
3874 "warning: sorry: semantics of inline function static data `const
3875 unsigned char translate_table[262]' are wrong (you'll wind up with
3876 multiple copies)".
3877
3878 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
3879 or, xor to not_, and_, or_, and xor_, respectively. This works
3880 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
3881 random system header somewhere that includes the equivalent of
3882 <iso646.h>.
3883
3884 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
3885 -E" works; it apparently doesn't work with PathScale EKO Compiler
3886 Suite Version 2.0.
3887
38882006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
3889
3890 During deterministic GLR operation, user actions should be able to
3891 influence the parse by changing yychar. To make this easier to fix and
3892 to make glr.c easier to evolve in general, don't maintain yytoken in
3893 parallel with yychar; just compute yytoken when needed.
3894 * tests/glr-regression.at (Incorrect lookahead during deterministic
3895 GLR): Check that setting yychar in a user action has the intended
3896 effect.
3897 * data/glr.c (yyGLRStack): Remove yytokenp member.
3898 (yyclearin): Don't set *yytokenp.
3899 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
3900 yychar rather than *yytokenp to determine the current lookahead.
3901 Compute yytoken locally when needed.
3902 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
3903 point to.
3904
3905 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
3906 after `--report' documentation.
3907
39082006-01-30 Paul Eggert <eggert@cs.ucla.edu>
3909
3910 * src/parse-gram.y (grammar_declaration): Location of printer
3911 symbol is @1, not list->location. Bug reported by twlevo.
3912 * tests/input.at (Incompatible Aliases): Adjust to above change.
3913
39142006-01-29 Paul Eggert <eggert@cs.ucla.edu>
3915
3916 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
3917 all the test at once. This makes the output easier to read in the
3918 normal case.
3919
3920 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
3921 got from <http://bro-ids.org/download.html>. The bug is that
3922 when two actions appeared in succession, the second one was
3923 scanned before the first one was added to the grammar rule
3924 as a midrule action. Bison then output the incorrect warning
3925 "parse.y:905.17-906.36: warning: unused value: $3".
3926 * src/parse-gram.y (BRACED_CODE, action): These are no longer
3927 associated with a value.
3928 (rhs): Don't invoke grammar_current_rule_action_append.
3929 (action): Invoke it here instead.
3930 * src/reader.c (grammar_midrule_action): Now extern.
3931 (grammar_current_rule_action_append): Don't invoke
3932 grammar_midrule_action; that is now the scanner's job.
3933 * src/reader.h (last_string, last_braced_code_loc):
3934 (grammar_midrule_action): New decls.
3935 * src/scan-gram.l (last_string): Now extern, sigh.
3936 (last_braced_code_loc): New extern variable.
3937 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
3938 rule already has an action.
3939 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
3940 * tests/input.at (AT_CHECK_UNUSED_VALUES):
3941 Add some tests to check that the above changes fixed the bug.
3942
39432006-01-27 Paul Eggert <eggert@cs.ucla.edu>
3944
3945 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
3946 All used changed. Check whether the symbol has a destructor,
3947 not whether it is typed.
3948 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
3949 that the values are still reported as unused. All line numbers
3950 adjusted.
3951
39522006-01-23 Paul Eggert <eggert@cs.ucla.edu>
3953
3954 Work around a bug in bro 0.8, which underparenthesizes its
3955 definition of YYLLOC_DEFAULT.
3956 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
3957 their arguments.
3958 * data/lalr1.cc: Likewise.
3959 * data/yacc.cc: Likewise.
3960
39612006-01-22 Paul Eggert <eggert@cs.ucla.edu>
3962
3963 Work around a bug in Pike 7.0, and give the Pike folks a
3964 better way to override the usual int widths.
3965 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
3966 user can override the types.
3967 (short): #undef, to work around a bug in Pike 7.0.
3968 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
3969 (union yyalloc.yyss): Use yytype_int16 rather than short.
3970 All uses changed.
3971 (yysigned_char): Remove.
3972 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
3973 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
3974 * tests/regression.at (Web2c Actions): Adjust to above changes.
3975
3976 * src/reader.c (check_and_convert_grammar): New function.
3977 (reader): Close the input file even if something went wrong during
3978 parsing. Minor file descriptor leak reported by twlevo.
3979
3980 * src/assoc.c (assoc_to_string): Use a default: abort (); case
3981 to pacify gcc -Wswitch-default.
3982 * src/scan-gram.l (adjust_location): Use a default: break; case
3983 to pacify gcc -Wswitch-default.
3984 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
3985 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
3986 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
3987 Move these decls to scan-skel.l, since they don't need to be
3988 visible elsewhere.
3989 * src/scan-skel.l: Accept the above decls.
3990 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
3991 is used.
3992
39932006-01-21 Paul Eggert <eggert@cs.ucla.edu>
3994
3995 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
3996 since we don't want to insist on a version number at the start
3997 of the changelog every time.
3998 * Makefile.maint: Sync from coreutils a bit better.
3999 (sc_trailing_blank): Renamed from sc_trailing_space.
4000 All uses changed.
4001 (sc_no_if_have_config_h, sc_require_config_h):
4002 (sc_prohibit_assert_without_use): New rules.
4003 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
4004 (sc_dd_max_sym_length): Fix leading spaces in rule.
4005 (sc_system_h_headers): Prefix with @.
4006 (sc_useless_cpp_parens, m4-check): Output line numbers.
4007 (changelog-check): Allow version only in head.
4008 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
4009 satisfy new Makefile.maint rule.
4010 * data/glr.c: Likewise.
4011 * data/glr.cc: Likewise.
4012 * data/lalr1.cc: Likewise.
4013 * data/yacc.c: Likewise.
4014 * lib/ebitsetv.c: Likewise.
4015 * lib/lbitset.c: Likewise.
4016 * lib/subpipe.c: Likewise.
4017 * lib/timevar.c: Likewise.
4018 * src/system.h: Likewise.
4019 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
4020 * djgpp/Makefile.maint: Add copyright notice.
4021 * djgpp/README.in: Likewise.
4022 * djgpp/config.bat: Likewise.
4023 * djgpp/config.site: Likewise.
4024 * djgpp/config_h.sed: Likewise.
4025 * djgpp/djunpack.bat: Likewise.
4026 * djgpp/config.sed: Fix copyright notice to match standard format.
4027 * djgpp/subpipe.h: Likewise.
4028 * lib/bitsetv-print.c: Likewise.
4029 * lib/bitsetv.c: Likewise.
4030 * lib/subpipe.h: Likewise.
4031 * lib/timevar.c: Likewise.
4032 * lib/timevar.h: Likewise.
4033 * djgpp/subpipe.c: Use standard recipe for config.h.
4034 * lib/abitset.c: Likewise.
4035 * lib/bitset.c: Likewise.
4036 * lib/bitset_stats.c: Likewise.
4037 * lib/bitsetv-print.c: Likewise.
4038 * lib/bitsetv.c: Likewise.
4039 * lib/ebitsetv.c: Likewise.
4040 * lib/get-errno.c: Likewise.
4041 * lib/lbitset.c: Likewise.
4042 * lib/subpipe.c: Likewise.
4043 * lib/timevar.c: Likewise.
4044 * lib/vbitset.c: Likewise.
4045 * tests/local.at: Likewise.
4046 * src/scan-gram.l: Don't include verify.h, since system.h does
4047 that for us.
4048 * .x-sc_require_config_h: New file.
4049 * .x-sc_unmarked_diagnostics: New file.
4050
40512006-01-20 Paul Eggert <eggert@cs.ucla.edu>
4052
4053 Be a bit more systematic about using 'abort'.
4054 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
4055 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
4056 Put 'default: abort ();' before some other case, to satisfy older
4057 pedantic compilers.
4058 * lib/bitset_stats.c (bitset_stats_init): Likewise.
4059 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
4060 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
4061 * src/conflicts.c (resolve_sr_conflict): Likewise.
4062 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
4063 (get_decision_str, get_orientation_str, get_node_alignment_str):
4064 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
4065 (get_linestyle_str, get_arrowstyle_str): Likewise.
4066 * src/conflicts.c (resolve_sr_conflict):
4067 Use a default case rather than one for the one remaining enum
4068 value, to catch invalid enum values as well.
4069 * src/lalr.c (set_goto_map, map_goto):
4070 Prefer "assert (FOO);" to "if (!FOO) abort ();".
4071 * src/nullable.c (nullable_compute, token_definitions_output):
4072 Likewise.
4073 * src/reader.c (packgram, reader): Likewise.
4074 * src/state.c (transitions_to, state_new, state_reduction_find):
4075 Likewise.
4076 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
4077 (symbol_pack): Likewise.
4078 * src/tables.c (conflict_row, pack_vector): Likewise.
4079 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
4080 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
4081 * src/system.h: Don't include <assert.h>.
4082 (assert): New macro.
4083
4084 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
4085 (Destructor Decl, Parser Function, Pure Calling):
4086 Describe rules for braces inside C code more carefully.
4087
40882006-01-19 Paul Eggert <eggert@cs.ucla.edu>
4089
4090 Fix some porting glitches found by Nelson H. F. Beebe.
4091 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
4092 compilers that don't understand that abort () does not return.
4093 * src/state.c (transitions_to): Likewise.
4094 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
4095 that '#include <cstdlib>' works.
4096 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
4097 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
4098 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
4099 for the benefit of some pre-C99 compilers.
4100
4101 * bootstrap: Undo changes to gnulib files that autoreconf made.
4102
4103 Minor fixups to get 'make maintainer-check' to work.
4104 * configure.ac: Don't use -Wnested-externs, as it's incompatible
4105 with the new verify.h implementation.
4106 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
4107 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
4108 * data/yacc.c (YYUSE): Likewise.
4109 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
4110 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
4111 * src/parse-gram.y (declaration): Don't pass a string constant
4112 to a function that expects char *, since GCC might complain
4113 about the constant value.
4114 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
4115 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
4116 before #defining them.
4117 * tests/glr-regression.at
4118 (Incorrectly initialized location for empty right-hand side in GLR):
4119 In yyerror, use the msg arg.
4120 (Corrupted semantic options if user action cuts parse):
4121 (Incorrect lookahead during deterministic GLR):
4122 (Incorrect lookahead during nondeterministic GLR):
4123 Don't name a local var 'index'; it shadows string.h's 'index'.
4124
41252006-01-19 Akim Demaille <akim@epita.fr>
4126
4127 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
4128 location, not just parts of it.
4129
41302006-01-18 Paul Eggert <eggert@cs.ucla.edu>
4131
4132 * NEWS: Document the fact that multiple %unions are now allowed.
4133 * doc/bison.texinfo (Union Decl): Likewise.
4134 * TODO: This feature is now implemented, so remove it from
4135 the wishlist.
4136
4137 * Makefile.maint: Merge with coreutils Makefile.maint.
4138 (CVS_LIST): Use build-aux version if available.
4139 (VERSION_REGEXP): New macro.
4140 (syntax-check-rules): Add sc_no_if_have_config_h,
4141 sc_prohibit_assert_without_use, sc_require_config_h,
4142 sc_useless_cpp_parens.
4143 (sc_obsolete_symbols): Check for O_NDELAY.
4144 (sc_dd_max_sym_length): Track coreutils.
4145 (sc_unmarked_diagnostics): Look in all files, not just *.c.
4146 (sc_useless_cpp_parens): New rule.
4147 (news-date-check): Look for version or today's date.
4148 (changelog-check): Don't require version number near head.
4149 (copyright-check): Use current year instead of hardwiring 2005.
4150 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
4151 (announcement): Add --gpg-key-ID.
4152
4153 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
4154 with "file system".
4155
4156 Avoid undefined behavior that addressed just before the start of an
4157 array. Problem reported by twlevo.
4158 * src/reader.c (packgram): Prepend a new sentinel before ritem.
4159 * src/lalr.c (build_relations): Rely on new sentinel.
4160 * src/gram.c (gram_free): Adjust to new sentinel.
4161
41622006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
4163
4164 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
4165 yylookaheadNeeds. All uses updated.
4166 (yysplitStack): Rename local yynewLookaheadStatuses to
4167 yynewLookaheadNeeds.
4168 * data/glr-regression.at (Incorrect lookahead during nondeterministic
4169 GLR): In comments, change `lookahead status' to `lookahead need'.
4170
41712006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4172
4173 * data/glr.c (yysplitStack): A little stylistic rewrite.
4174
41752006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4176
4177 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
4178
41792006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
4180
4181 * doc/bison.texinfo: Fix some typos.
4182 (GLR Semantic Actions): New subsection discussing special
4183 considerations because GLR semantic actions might be deferred.
4184 (Actions): Mention look-ahead usage of yylval.
4185 (Actions and Locations): Mention look-ahead usage of yylloc.
4186 (Special Features for Use in Actions): Add YYEOF entry and mention it
4187 in the yychar entry.
4188 In the yychar entry, remove mention of the local yychar case (pure
4189 parser) since this is irrelevant information when writing semantic
4190 actions and since it's already discussed in `Table of Symbols' where
4191 yychar is otherwise described as an external variable.
4192 In the yychar entry, don't call it the `current' look-ahead since it
4193 isn't when semantic actions are deferred.
4194 In the yychar and yyclearin entries, add note about deferred semantic
4195 actions.
4196 Add yylloc and yylval entries discussing look-ahead usage.
4197 (Look-Ahead Tokens): When discussing yychar, don't call it the
4198 `current' look-ahead, and do mention yylval and yylloc.
4199 (Error Recovery): Cross-reference `Action Features' when mentioning
4200 yyclearin.
4201 (Table of Symbols): In the yychar entry, don't call it the `current'
4202 look-ahead.
4203 In the yylloc and yylval entries, mention look-ahead usage.
4204
42052006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4206
4207 * tests/glr-regression.at: Update copyright year to 2006.
4208
42092006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4210
4211 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
4212 use during nondeterministic operation to track which stacks have
4213 actually needed the current lookahead.
4214 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
4215 Allocate, deallocate, resize, and otherwise shuffle space for
4216 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
4217 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
4218 appropriately during nondeterministic operation.
4219 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
4220 members to store the current lookahead to be used by the deferred
4221 user action.
4222 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
4223 from which the RHS is taken. Set the lookahead members of the new
4224 yySemanticOption according to the lookahead status for stack yyk.
4225 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
4226 yyaddDeferredAction.
4227 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
4228 members of yySemanticOption before invoking yyuserAction, and then set
4229 them back to their current values afterward.
4230 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
4231 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
4232 * tests/glr-regression.at: Remove `.' from the ends of recent test case
4233 titles for consistency.
4234 (Leaked merged semantic value if user action cuts parse): In order to
4235 suppress lint warnings, use arguments in merge function, and assign
4236 char value < 128 in main.
4237 (Incorrect lookahead during deterministic GLR): New test case.
4238 (Incorrect lookahead during nondeterministic GLR): New test case.
4239
42402006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4241
4242 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
4243 !yyvaluep as signal that no semantic value is available to print.
4244 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
4245 to print a semantic value.
4246
42472006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4248
4249 * tests/glr-regression.at: For consistency with my newer test cases,
4250 don't thank myself.
4251
42522006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
4253
4254 * data/glr.c (yyresolveValue): When merging semantic options, if at
4255 least one user action succeeds but a later one cuts the parse, then
4256 destroy the semantic value before returning rather than leaking it.
4257 (yyresolveStates): If a user action cuts the parse and thus
4258 yyresolveValue fails, ignore the (unset) semantic value rather than
4259 corrupting the yyGLRState, and empty the semantic options list since
4260 the user actions should have called all necessary destructors.
4261 Simplify code with YYCHK.
4262 * tests/glr-regression.at (Corrupted semantic options if user action
4263 cuts parse): New test case.
4264 (Undesirable destructors if user action cuts parse): New test case.
4265 Before applying any of this patch, this test case never actually failed
4266 for me... but only because the corrupted semantic options usually
4267 masked this bug.
4268 (Leaked merged semantic value if user action cuts parse): New test
4269 case.
4270
42712006-01-05 Akim Demaille <akim@epita.fr>
4272
4273 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
4274
42752006-01-04 Paul Eggert <eggert@cs.ucla.edu>
4276
4277 * data/c.m4 (b4_c_modern): New macro, with a new provision for
4278 _MSC_VER. Problem reported by Cenzato Marco.
4279 (b4_c_function_def): Use it.
4280 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
4281 b4_c_modern.
4282 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
4283 than rolling our own.
4284
42852006-01-04 Akim Demaille <akim@epita.fr>
4286
4287 Also warn about non-used mid-rule values.
4288 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
4289 member.
4290 (symbol_list_new): Adjust.
4291 * src/reader.c (symbol_typed_p): New.
4292 (grammar_rule_check): Use it.
4293 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
4294 Check its rule.
4295 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
4296 Use it.
4297 * tests/actions.at (Exotic Dollars): Adjust.
4298
42992006-01-04 Akim Demaille <akim@epita.fr>
4300
4301 * src/reader.c (grammar_midrule_action): If $$ is set in a
4302 mid-rule, move the `used' bit to its lhs.
4303 * tests/input.at (Unused values): New.
4304 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
4305
43062006-01-03 Paul Eggert <eggert@cs.ucla.edu>
4307
4308 * doc/bison.texinfo (Bison Options): Say more accurately what
4309 --yacc does.
4310 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
4311 about declarations in the grammar when in Yacc mode, as POSIX does
4312 not require a diagnostic when the grammar uses extensions.
4313
4314 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
4315
4316 Warn about dubious constructions like "%token T T".
4317 Reported by twlevo.
4318 * src/symtab.h (struct symbol.declared): New member.
4319 * src/symtab.c (symbol_new): Initialize it to false.
4320 (symbol_class_set): New arg DECLARING, specifying whether
4321 this is a declaration that we want to warn about, if there
4322 is more than one of them. All uses changed.
4323
4324 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
4325 Allow multiple %union directives, whose contents concatenate.
4326 * src/parse-gram.y (grammar_declaration): Likewise.
4327 Use muscle_code_grow, so that we don't need stype_line any more.
4328 All uses changed.
4329
4330 * src/muscle_tab.c (muscle_grow): Fix comment.
4331
4332 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
4333 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
4334 Update copyright year to 2006.
4335
43362006-01-03 Akim Demaille <akim@epita.fr>
4337
4338 Have glr.cc pass (some of) the calc.at tests.
4339 * data/glr.cc (b4_parse_param_orig): New.
4340 (b4_parse_param): Improve its definition, and bound it more
4341 clearly in the skeleton.
4342 (b4_epilogue): Append, instead of prepending, in order to keep
4343 #line consistency.
4344 Simplify the generation of auxiliary functions: locations and
4345 purity are mandated.
4346 (b4_global_tokens_and_yystype): Honor it.
4347 * data/location.cc (c++.m4): Don't include it.
4348 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
4349 and AT_SKEL_CC_IF.
4350 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
4351 AT_LALR1_CC_IF.
4352 Be sure to initialize the first position's filename.
4353 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
4354 mandated anyway.
4355 (AT_CHECK_CALC_GLR_CC): New.
4356 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
4357
43582006-01-02 Akim Demaille <akim@epita.fr>
4359
4360 * src/output.c (output_skeleton): Don't hard wire the inclusion of
4361 c.m4.
4362 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
4363 * data/glr.cc: Do not include stack.hh.
4364
43652006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4366
4367 * data/glr.c: Reformat whitespace with tabs.
4368 (b4_lpure_formals): Remove this unused m4 macro.
4369 * tests/cxx-type.at: Reformat whitespace with tabs.
4370 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
4371 since it's a member. Rename type to isNterm for clarity.
4372
43732005-12-29 Akim <akim@sulaco.local>
4374
4375 Let glr.cc catch up with symbol_value_print.
4376 * data/glr.cc (b4_yysymprint_generate): Replace by...
4377 (b4_yy_symbol_print_generate): this.
4378 (yy_symbol_print, yy_symbol_value_print): Declare them.
4379
43802005-12-28 Paul Eggert <eggert@cs.ucla.edu>
4381
4382 * src/location.h (boundary): Note that a line or column equal
4383 to INT_MAX indicates an overflow.
4384 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
4385 (rule_length_overflow, increment_rule_length, add_column_width):
4386 New functions.
4387 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
4388 (<SC_BRACED_CODE>"}"):
4389 Use increment_rule_length rather than incrementing it by hand.
4390 (adjust_location, handle_syncline): Diagnose overflow.
4391 (handle_action_dollar, handle_action_at):
4392 Fix bug with monstrosities like $-2147483648.
4393 Remove now-unnecessary checks.
4394 (scan_integer): Verify assumptions and remove now-unnecessary checks.
4395 (convert_ucn_to_byte): Verify assumptions.
4396 (handle_syncline): New arg LOC. All callers changed.
4397 Don't store through a value derived from char const * pointer.
4398
4399 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
4400 GCC warnings.
4401
44022005-12-27 Paul Eggert <eggert@cs.ucla.edu>
4403
4404 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
4405 Remove unnecessary forward static decls.
4406
44072005-12-27 Akim Demaille <akim@epita.fr>
4408
4409 * src/reader.c (grammar_current_rule_check): Also check that $$
4410 is used.
4411 Take the rule to check as argument, hence rename as...
4412 (grammar_rule_check): this.
4413 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
4414 Rename as...
4415 (grammar_rule_begin, grammar_rule_end): these, for consistency.
4416 (grammar_midrule_action, grammar_symbol_append): Now static.
4417 * tests/torture.at (input): Don't rely on the default action
4418 being always performed.
4419 * tests/calc.at: "Set" $$ even when the action is "cut" with
4420 YYERROR or other.
4421 * tests/actions.at (Exotic Dollars): Instead of using unused
4422 values, check that the warning is issued.
4423
44242005-12-22 Paul Eggert <eggert@cs.ucla.edu>
4425
4426 * NEWS: Improve wording for unused-value warnings.
4427
44282005-12-22 Akim Demaille <akim@epita.fr>
4429
4430 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
4431 (b4_yysymprint_generate): Rename as...
4432 (b4_yy_symbol_print_generate): this.
4433 Generate yy_symbol_print instead of yysymprint.
4434 Generate also yy_symbol_value_print, and use it.
4435
44362005-12-22 Akim Demaille <akim@epita.fr>
4437
4438 * NEWS: Warn about unused values.
4439 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
4440 a `used' member.
4441 (symbol_list_n_get, symbol_list_n_used_set): New.
4442 (symbol_list_n_type_name_get): Use symbol_list_n_get.
4443 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
4444 * src/reader.c (grammar_current_rule_check): Check that values are
4445 used.
4446 * src/symtab.c (symbol_print): Accept 0.
4447 * tests/existing.at: Remove the type information.
4448 Empty the actions.
4449 Remove useless actions (beware of mid-rule actions: perl -000
4450 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
4451 * tests/actions.at (Exotic Dollars): Use unused values.
4452 * tests/calc.at: Likewise.
4453 * tests/glr-regression.at (No users destructors if stack 0 deleted):
4454 Likewise.
4455
4456 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
4457 rule_useful_p.
4458
44592005-12-21 Paul Eggert <eggert@cs.ucla.edu>
4460
4461 Undo 2005-12-01 tentative license wording change. The wording is
4462 still being reviewed by the lawyers, and we don't want to wait for
4463 them before publishing a test release. For now, revert to the
4464 previous wording.
4465 * NEWS: Undo 2005-12-01 change.
4466 * data/glr.c: Revert to previous license wording.
4467 * data/glr.cc: Likewise.
4468 * data/lalr1.cc: Likewise.
4469 * data/location.cc: Likewise.
4470 * data/yacc.c: Likewise.
4471
4472 * NEWS: Reword %destructor vs YYABORT etc.
4473 * data/glr.c: Use American spacing, for consistency.
4474 * data/glr.cc: Likewise.
4475 * data/lalr1.cc: Likewise.
4476 * data/yacc.c: Likewise.
4477 * data/yacc.c: Reformat comments slightly.
4478 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
4479 for consistency. Fix some spelling errors and reword recently-included
4480 text slightly.
4481 * tests/cxx-type.at: Cast results of malloc, for C++.
4482
44832005-12-21 Joel E. Denny <address@hidden>
4484
4485 * tests/cxx-type.at: Construct a tree, count the parents of shared
4486 nodes, and free each node once and only once. Previously, the memory
4487 for semantic values was leaked instead.
4488
44892005-12-21 Joel E. Denny <address@hidden>
4490
4491 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
4492 (yylval, yylloc): If pure, #define to yystackp->yyval and
4493 yystackp->yyloc similar to yychar and yynerrs.
4494 (yyparse): If pure, remove local yylval and yylloc. Add local
4495 yystackp to accommodate pure definitions of yylval and yylloc.
4496 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
4497 yylvalp and yyllocp to &yylval and &yylloc.
4498 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
4499 namespace. Previously, nerrs and char were missing, but lval and lloc
4500 weren't necessary.
4501 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
4502 yylvalp and yyllocp parameters since, if pure, these are now always
4503 accessible through yystackp. If not pure, they are still accessible
4504 globally.
4505 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
4506 `if (YYID (N))' to pacify lint.
4507
45082005-12-21 Akim Demaille <akim@epita.fr>
4509
4510 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
4511 destroy the RHS symbols of a rule.
4512 * data/yacc.c (yylen): Initialize to 0.
4513 Keep its value to the number of items to possibly shift.
4514 In particular, a regular successful parse that ends on YYFINAL by
4515 a (internal) YYACCEPT must not have yylen != 0.
4516 (yyerrorlab, yyreturn): Pop the RHS.
4517 Reorder a bit to emphasize the `shifting' bits of code.
4518 (YYPOPSTACK): Now accept a number of items to pop.
4519 * data/lalr1.cc: Likewise.
4520 * data/glr.c: Formatting changes.
4521 Use goto instead of fall through.
4522 * doc/bison.texinfo (Destructor Decl): Complete.
4523
45242005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4525
4526 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
4527 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
4528 * djgpp/config.bat: Replace every occurence of the file name
4529 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
4530 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
4531 * djgpp/config.sed: Replace every occurence of the file name
4532 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
4533 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
4534 * djgpp/djunpack.bat: DJGPP specific file.
4535 * djgpp/fnchange.lst: DJGPP specific file.
4536 * djgpp/README.in: Add new information about how to unpack the bison
4537 source on MSDOS and other systems which have 8.3 file name restrictions
4538 using djunpack.bat and fnchange.lst.
4539
45402005-12-12 Paul Eggert <eggert@cs.ucla.edu>
4541
4542 * bootstrap (build_cvs_prefix): Remove; unused.
4543 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
4544 when getting gnulib.
4545
45462005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
4547
4548 * data/glr.c: Reorder typedef declarations for structs to match order
4549 of struct declarations.
4550 Rename yystack everywhere to yystackp except in yyparse where it's not
4551 a pointer.
4552 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
4553 consistency.
4554 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
4555 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
4556 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
4557 lint.
4558
45592005-12-09 Paul Eggert <eggert@cs.ucla.edu>
4560
4561 * tests/sets.at (Accept): Fix typos in regular expression used to
4562 sed out the final state number.
4563
4564 Work around portability problem on Solaris 10: flex-generated
4565 files include <stdio.h> before <config.h>, which messes up
4566 because the latter defines __EXTENSIONS__. Address the problem
4567 by creating two new little files that include <config.h> first,
4568 then include the flex-generated files. Rewrite everyone else
4569 to include <config.h> first, as well.
4570 * lib/timevar.c: Always include "config.h".
4571 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
4572 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
4573 (EXTRA_bison_SOURCES): New macro.
4574 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
4575 * src/system.h: Don't include config.h.
4576 * src/LR0.c: Include <config.h> first.
4577 * src/assoc.c: Likewise.
4578 * src/closure.c: Likewise.
4579 * src/complain.c: Likewise.
4580 * src/conflicts.c: Likewise.
4581 * src/derives.c: Likewise.
4582 * src/files.c: Likewise.
4583 * src/getargs.c: Likewise.
4584 * src/gram.c: Likewise.
4585 * src/lalr.c: Likewise.
4586 * src/location.c: Likewise.
4587 * src/main.c: Likewise.
4588 * src/muscle_tab.c: Likewise.
4589 * src/nullable.c: Likewise.
4590 * src/output.c: Likewise.
4591 * src/parse-gram.y: Likewise.
4592 * src/print.c: Likewise.
4593 * src/print_graph.c: Likewise.
4594 * src/reader.c: Likewise.
4595 * src/reduce.c: Likewise.
4596 * src/relation.c: Likewise.
4597 * src/state.c: Likewise.
4598 * src/symlist.c: Likewise.
4599 * src/symtab.c: Likewise.
4600 * src/tables.c: Likewise.
4601 * src/uniqstr.c: Likewise.
4602 * src/vcg.c: Likewise.
4603
4604 * src/parse-gram.y: Fix minor problems uncovered by lint.
4605 (current_lhs, current_lhs_location): Now static.
4606 (current_assoc): Remove unused variable.
4607
4608 Cleanups so that Bison-generated parsers have less lint.
4609 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
4610 Prepend /*ARGSUSED*/, for lint's sake.
4611 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
4612 definition if 'lint' is defined.
4613 (YYID): New macro (or function, if lint).
4614 All uses of /*CONSTCOND*/0 replaced by YYID(0).
4615 * data/yacc.c: Likewise.
4616 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
4617 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
4618 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
4619 is C++ only.
4620 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
4621 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
4622 Use YYID(0) rather than 0, for lint.
4623 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
4624 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
4625
46262005-12-07 Paul Eggert <eggert@cs.ucla.edu>
4627
4628 * tests/glr-regression.at
4629 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
4630 Close memory leak reported by twlevo.
4631
46322005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
4633
4634 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
4635 all stacks.
4636 (yyparse): Iterate another stack in order to call user destructors.
4637 * tests/glr-regression.at (No users destructors if stack 0 deleted):
4638 New test case.
4639 (Duplicated user destructor for lookahead): This test now is expected
4640 to succeed.
4641
46422005-12-01 Paul Eggert <eggert@cs.ucla.edu>
4643
4644 * NEWS: Document the following change.
4645 * data/yacc.c: Say "parser skeleton" rather than "file", since
4646 it's no longer just a file.
4647 * data/glr.c: Grant a special exception for C GLR parsers, that
4648 reads like the already-existing exception for C LALR(1) parsers.
4649 * data/glr.cc: Likewise.
4650 * data/lalr1.cc: Likewise.
4651 * data/location.cc: Likewise.
4652 * data/yacc.c: Reword the "written by" statement to clarify that
4653 it was the parser skeleton, not the entire output file.
4654 * data/glr.c: Written by Paul Hilfinger.
4655 * data/glr.cc: Written by Akim Demaille.
4656 * data/lalr1.cc: Likewise.
4657
46582005-11-18 Paul Eggert <eggert@cs.ucla.edu>
4659
4660 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
4661 Fix typos in previous change that broke 'make check'.
4662 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
4663 supported in C.
4664 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
4665 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
4666 We can revert this once things settle down.
4667
4668 * src/conflicts.c (conflicts_print): Don't print file name twice
4669 when %expect fails because there were no conflicts.
4670 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
4671 change.
4672 * tests/conflicts.at (%expect not enough, %expect too much):
4673 (%expect with reduce conflicts): Adjust to new behavior.
4674
46752005-11-18 Akim Demaille <akim@epita.fr>
4676
4677 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
4678 errors.
4679 * NEWS: Document this.
4680 * doc/bison.texinfo (Expect Decl): Likewise.
4681
46822005-11-16 Akim Demaille <akim@epita.fr>
4683
4684 Generalize the display of semantic values and locations in traces.
4685 * data/glr.c (yy_reduce_print): Fix indices (again).
4686 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
4687 literal integers.
4688 * data/lalr1.cc (yyreduce_print): Rename as...
4689 (yy_reduce_print): this.
4690 Display values and locations.
4691 * data/yacc.c (yy_reduce_print): Likewise.
4692 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
4693 (yysymprint): Move higher to be visible from yy_reduce_print).
4694 (yyparse): Adjust.
4695 * tests/calc.at: Adjust the expected length of the traces.
4696
46972005-11-14 Akim Demaille <akim@epita.fr>
4698
4699 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
4700 from 1 to N, while values and location start at 0.
4701 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
4702
47032005-11-14 Akim Demaille <akim@epita.fr>
4704
4705 * data/glr.c (yy_reduce_print): Fix the $ number.
4706
47072005-11-14 Akim Demaille <akim@epita.fr>
4708
4709 "Use" parse parameters.
4710 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
4711 * data/glr.c, data/glr.cc: Use them.
4712 * data/glr.c (YYUSE): Have a C++ definition that supports
4713 non-pointer types.
4714
47152005-11-14 Akim Demaille <akim@epita.fr>
4716
4717 * data/glr.c (yyexpandGLRStack): Declare only if defined.
4718
47192005-11-14 Akim Demaille <akim@epita.fr>
4720
4721 * data/glr.cc: New.
4722 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
4723
47242005-11-12 Akim Demaille <akim@epita.fr>
4725
4726 Let position and location be PODs.
4727 * data/location.cc (position::initialize, location::initialize): New.
4728 (position::position, location::location): Define only if
4729 b4_location_constructors is defined.
4730 * data/lalr1.cc (b4_location_constructors): Define it for backward
4731 compatibility.
4732 * doc/bison.texinfo (Initial Action Decl): Use initialize.
4733
47342005-11-12 Akim Demaille <akim@epita.fr>
4735
4736 * data/lalr1.cc: Move the body of the ctor and dtor into the
4737 parser file (instead of the header).
4738 Wrap the implementations in a "namespace yy".
4739
47402005-11-12 Akim Demaille <akim@epita.fr>
4741
4742 Have glr.c include its header file when created.
4743 * data/glr.c (b4_shared_declarations): New.
4744 Output them verbatim in the parser if !%defines, otherwise
4745 output then in the header file, and include it instead.
4746
47472005-11-11 Akim Demaille <akim@epita.fr>
4748
4749 * data/glr.c: Comment changes.
4750
47512005-11-11 Akim Demaille <akim@epita.fr>
4752
4753 When yydebug, report semantic and location values for reductions.
4754 * data/glr.c (yy_reduce_print): Report the semantic values and the
4755 locations.
4756 (YY_REDUCE_PRINT): Adjust.
4757 (yyglrReduce): Use them.
4758 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
4759 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
4760 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
4761 traces.
4762
47632005-11-10 Akim Demaille <akim@epita.fr>
4764
4765 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
4766 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
4767 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
4768
47692005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
4770
4771 * m4/cxx.m4, examples/Makefile.am: Don't build
4772 examples/calc++ if no C++ compiler is available. (trivial change)
4773
47742005-11-09 Akim Demaille <akim@epita.fr>
4775
4776 * src/scan-skel.l: Use a couple of asserts.
4777
47782005-11-03 Akim Demaille <akim@epita.fr>
4779
4780 In some (weird) cases, the final state number is incorrect.
4781 Reported by Alexandre Duret-Lutz.
4782 * src/LR0.c (state_list_append): Remove the computation of
4783 final_state.
4784 (save_reductions): Do it here.
4785 (get_state): Alpha conversion.
4786 (generate_states): Use a for loop.
4787 * src/gram.h (item_number_is_rule_number)
4788 (item_number_is_symbol_number): New.
4789 * src/state.c: Use assert.
4790 * src/system.h: Include assert.h.
4791 * tests/sets.at (Accept): New.
4792
47932005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4794
4795 * data/glr.c (yyfill): Adjust comment.
4796 (yyresolveAction): Initialize default location properly
4797 for empty right-hand sides.
4798 (yydoAction): Ditto.
4799 Add comment explaining apparently dead code.
4800 * tests/glr-regression.at
4801 (Incorrectly initialized location for empty right-hand side in GLR):
4802 New test.
4803
48042005-10-30 Paul Eggert <eggert@cs.ucla.edu>
4805
4806 * bootstrap (cleanup_gnulib): New function. Use it to clean up
4807 gnulib when interrupted. This fixes some race conditions and
4808 works around some portability problems (one noted by Paul
4809 Hilfinger).
4810
48112005-10-22 Akim <akim@epita.fr>
4812
4813 * Makefile.cfg: Adjust to config -> build-aux.
4814 Reported by twledo.
4815
48162005-10-21 Akim Demaille <akim@epita.fr>
4817
4818 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
4819 the %parse-params.
4820 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
4821 * data/yacc.c (b4_Pure_if): Rename as...
4822 (b4_yacc_pure_if): this.
4823 (YY_SYMBOL_PRINT, yyparse): Adjust.
4824 * doc/bison.texinfo: Formatting changes.
4825
48262005-10-21 Akim Demaille <akim@epita.fr>
4827
4828 Finish the transition config -> build-aux.
4829 * configure.ac, Makefile.am: Use build-aux.
4830 * config/prev-version, config/announce-gen, config/Makefile.am:
4831 Move to...
4832 * build-aux/prev-version, build-aux/announce-gen,
4833 * build-aux/Makefile.am: here.
4834
48352005-10-14 Akim Demaille <akim@epita.fr>
4836
4837 * examples/calc++/test: Use set -x only when VERBOSE.
4838
48392005-10-13 Paul Eggert <eggert@cs.ucla.edu>
4840
4841 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
4842 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
4843
48442005-10-13 Akim Demaille <akim@epita.fr>
4845
4846 * src/scan-skel.l: Output the base name parts of the parser and
4847 header file names.
4848 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
4849 additional checks.
4850 Use this to exercise C++ outputs in subdirs.
4851 Reported by Oleg Smolsky.
4852
48532005-10-12 Paul Eggert <eggert@cs.ucla.edu>
4854
4855 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
4856 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
4857 Problem reported by John P. Hartmann.
4858 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
4859 already defined it.
4860
48612005-10-12 Akim Demaille <akim@epita.fr>
4862
4863 * src/parse-gram.y (version_check): Exit 63 to please missing
4864 (stands for "version mismatch).
4865 * tests/input.at, doc/bison.texinfo: Adjust.
4866
48672005-10-10 Paul Eggert <eggert@cs.ucla.edu>
4868
4869 Work around portability problems with Visual Age C compiler
4870 (xlc and xlC_r) reported by John P. Hartmann.
4871 * data/location.cc (initial_column, initial_line): Remove.
4872 All uses replaced by 0 and 1.
4873 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
4874 that xlc complains about.
4875 * src/scan-skel.l (skel_wrap): Likewise.
4876 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
4877 as __STDC__.
4878 * data/yacc.c (YYMODERN_C): New macro, which also looks at
4879 __STDC_VERSION__. Use it everywhere instead of looking at
4880 __STDC__ and __cplusplus.
4881
48822005-10-10 Akim Demaille <akim@epita.fr>
4883
4884 * examples/calc++/test: Be quiet unless VERBOSE.
4885
48862005-10-05 Paul Eggert <eggert@cs.ucla.edu>
4887
4888 * data/c.m4 (yydestruct, yysymprint):
4889 Use YYUSE instead of casting to void.
4890 * data/glr.c (YYUSE): New macro.
4891 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
4892 Use it instead of rolling our own.
4893 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
4894 (YYCHK1):
4895 Use /*CONSTCOND*/ to suppress lint warnings.
4896 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
4897 (YY_STACK_PRINT): Use 'false' not '0'.
4898 (YYUSE): New macro.
4899 (yysymprint_, yydestruct_): Use it instead of rolling our own.
4900 * data/yacc.c (YYUSE): New macro.
4901 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
4902 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
4903 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
4904
4905
4906 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
4907 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
4908
49092005-10-04 Paul Eggert <eggert@cs.ucla.edu>
4910
4911 Undo the parts of the unlocked-I/O change that substituted
4912 putc or puts for printf. This might hurt performance a bit,
4913 but some people prefer the printf style.
4914 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
4915 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
4916 All uses replaced by YYFPRINTF and YYDPRINTF.
4917 * data/yacc.c: Likewise.
4918 * lib/bitset.c (bitset_print): Likewise.
4919 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
4920 putc and puts.
4921 * lib/lbitset.c (debug_lbitset): Likewise.
4922 * src/closure.c (print_firsts, print_fderives): Likewise.
4923 * src/gram.c (grammar_dump): Likewise.
4924 * src/lalr.c (look_ahead_tokens_print): Likewise.
4925 * src/output.c (escaped_output): Likewise.
4926 (user_actions_output): Break apart two printfs.
4927 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
4928 * src/reduce.c (reduce_print): Likewise.
4929 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
4930 * src/system.h: Include unlocked-io.h rathe than stdio.h.
4931
4932 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
4933 Use assignments rather than casts-to-void to suppress
4934 unused-variable warnings. This pacifies 'lint'.
4935 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
4936 unused-variable warnings.
4937
49382005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4939
4940 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
4941
49422005-10-02 Paul Eggert <eggert@cs.ucla.edu>
4943
4944 Use unlocked I/O for a minor performance improvement on hosts like
4945 GNU/Linux and Solaris that support unlocked I/O. The basic idea
4946 is to use the gnlib unlocked-io module, and to prefer putc and
4947 puts to printf when either will work (since the latter doesn't
4948 come in an unlocked flavor).
4949 * bootstrap (gnulib_modules): Add unlocked-io.
4950 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
4951 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
4952 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
4953 and similarly for puts and putc and printf.
4954 * data/yacc.c: Likewise.
4955 * lib/bitset.c (bitset_print): Likewise.
4956 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
4957 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
4958 to printf.
4959 * lib/lbitset.c (debug_lbitset): Likewise.
4960 * src/closure.c (print_firsts, print_fderives): Likewise.
4961 * src/gram.c (grammar_dump): Likewise.
4962 * src/lalr.c (look_ahead_tokens_print): Likewise.
4963 * src/output.c (escaped_output): Likewise.
4964 (user_actions_output): Coalesce two printfs.
4965 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
4966 * src/reduce.c (reduce_print): Likewise.
4967 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
4968 * src/system.h: Include unlocked-io.h rather than stdio.h.
4969
4970 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
4971 this confuses xgettext.
4972
49732005-10-02 Akim Demaille <akim@epita.fr>
4974
4975 * bootstrap (gnulib_modules): Add strverscmp.
4976 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
4977 * m4/.cvsignore: Add strverscmp.m4.
4978 * src/parse-gram.y (%require): New token, new rule.
4979 (version_check): New.
4980 * src/scan-gram.l (%require): Adjust.
4981 * tests/input.at (AT_REQUIRE): New.
4982 Use it.
4983 * doc/bison.texinfo (Require Decl): New.
4984 (Calc++ Parser): Use %require.
4985
49862005-10-02 Akim Demaille <akim@epita.fr>
4987
4988 * data/location.cc: New.
4989
49902005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
4991 Akim Demaille <akim@epita.fr>
4992
4993 Make sure -odir/foo.cc creates dir/location.hh etc.
4994 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
4995 (spec_file_prefix, spec_verbose_file, spec_graph_file)
4996 (spec_defines_file): Now const.
4997 (dir_prefix): New.
4998 (short_base_name): Remove.
4999 * src/files.c: Adjust.
5000 (dirname.h): Include.
5001 (base_name): Don't prototype it.
5002 (finput): Remove, duplicates gram_in.
5003 (full_base_name, short_base_name): Replace by...
5004 (all_but_ext, all_but_tab_ext): these.
5005 (compute_base_names): Rename as...
5006 (compute_file_name_parts): this.
5007 Update to compute the new variables, including dir_prefix.
5008 Adjust dependencies.
5009 * src/output.c (prepare): Output them.
5010 * src/reader.c: Adjust to use gram_in, not finput.
5011 * src/scan-skel.l (@dir_prefix@): New.
5012
50132005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5014
5015 * lib/subpipe.c: New function end_of_output_subpipe() added
5016 to allow support for non-posix systems. This is a no-op function
5017 for posix systems.
5018
5019 * lib/subpipe.h: New function end_of_output_subpipe() added
5020 to allow support for non-posix systems. This is a no-op function
5021 for posix systems.
5022
5023 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
5024 handle the lack of pipe/fork functionality on non-posix systems.
5025
5026 * djgpp/Makefile.maint: DJGPP specific file.
5027
5028 * djgpp/README.in: DJGPP specific file.
5029
5030 * djgpp/config.bat: DJGPP specific configuration file.
5031
5032 * djgpp/config.sed: DJGPP specific configuration file.
5033
5034 * djgpp/config.site: DJGPP specific configuration file.
5035
5036 * djgpp/config_h.sed: DJGPP specific configuration file.
5037
5038 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
5039
5040 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
5041
50422005-10-02 Akim Demaille <akim@epita.fr>
5043
5044 * data/location.cc: New, extract from...
5045 * data/lalr1.cc: here.
5046 (location.hh): Include it after the user prologue, in case the
5047 filename type is defined by the user.
5048 Forward declation location and position before the pre-prologue.
5049 (yyresult_): Rename as...
5050 (yyresult): this, it's a local variable, not an attribute.
5051 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
5052
50532005-10-01 Akim Demaille <akim@epita.fr>
5054
5055 * examples/extexi: Restore the #line generation.
5056
50572005-09-30 Akim Demaille <akim@epita.fr>,
5058 Alexandre Duret-Lutz <adl@gnu.org>
5059
5060 Move the token type and YYSTYPE in the parser class.
5061 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
5062 (parser::token): New, from the moved free definition of tokens.
5063 (parser::semantic_value): Now a full definition instead of an
5064 indirection to YYSTYPE.
5065 (b4_post_prologue): No longer included in the header file, but
5066 in the implementation file.
5067 * doc/bison.texi (C+ Language Interface): Update.
5068 * src/parse-gram.y: Support unary %define.
5069 * tests/actions.at: Define global_tokens_and_yystype for backward
5070 compatibility until we update the tests.
5071 * tests/calc.at: Idem.
5072 (first_line, first_column, last_line, last_column): Define for lalr1.cc
5073 to simplify the code.
5074
50752005-09-29 Paul Eggert <eggert@cs.ucla.edu>
5076
5077 Port to SunOS 4.1.4, which lacks strtoul and strerror.
5078 Ah, the good old days! Problem reported by Peter Klein.
5079 * bootstrap (gnulib_modules): Add strerror, strtoul.
5080 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
5081 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
5082
50832005-09-29 Akim Demaille <akim@epita.fr>
5084
5085 * data/c.m4 (b4_error_verbose_if): New.
5086 * data/lalr1.cc: Use it.
5087 (YYERROR_VERBOSE_IF): Remove.
5088 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
5089 parser members, replaced by...
5090 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
5091 local variables.
5092 (yysyntax_error_): Takes the state number as argument.
5093 (yyreduce_print_): Use the argument yyrule, not the former
5094 attribute yyn_.
5095
50962005-09-26 Paul Eggert <eggert@cs.ucla.edu>
5097
5098 * bootstrap (gnulib_modules): Add verify.
5099 * lib/.cvsignore: Add verify.h.
5100 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
5101 * src/system.h (verify): Remove.
5102 Include verify.h instead.
5103 * src/tables.c (tables_generate): Use new API for 'verify'.
5104
51052005-09-21 Paul Eggert <eggert@cs.ucla.edu>
5106
5107 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
5108 local variables whose names begin with 'yy'.
5109 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
5110 Trivial changes from Joel E. Denny.
5111
5112 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
5113 it itself.
5114 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
5115 don't use alloca any more.
5116
5117 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
5118 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
5119 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
5120 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
5121 to match yacc.c, to test more hosts.
5122
51232005-09-20 Paul Eggert <eggert@cs.ucla.edu>
5124
5125 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
5126 doesn't affect behavior.
5127 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
5128 Solaris, AIX, MSC.
5129 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
5130 This works a bit better with glibc, if user code has already included
5131 stdlib.h.
5132 * doc/bison.texinfo (Bison Parser): Document that users can't
5133 arbitrarily use malloc and free for other purposes. Document
5134 that <alloca.h> and <malloc.h> might be included.
5135 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
5136 user must declare alloca.
5137
5138 * HACKING (release): Forwarn the Translation Project about
5139 stable releses.
5140
51412005-09-20 Akim Demaille <akim@epita.fr>
5142
5143 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
5144
51452005-09-19 Paul Eggert <eggert@cs.ucla.edu>
5146
5147 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
5148 (YYSTACK_ALLOC_MAXIMUM): Use it.
5149 (yysyntax_error): New function.
5150 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
5151 multiple syntax errors are reported, and alloca is being used.
5152 Instead, reallocate buffers twice as big each time, so that
5153 we waste at most half the allocated memory. Start with a small
5154 (128-byte) buffer that will suffice in most cases anyway.
5155 Use yysyntax_error to do most of the work.
5156
5157 * doc/bison.texinfo (Error Reporting, Table of Symbols):
5158 yynerrs is the number of errors reported, not the number of
5159 errors encountered.
5160
5161 * tests/glr-regression.at (Duplicated user destructor for lookahead):
5162 Mark it as expected to fail.
5163 Cast result of malloc; problem reported by twlevo@xs4all.nl.
5164 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
5165 Don't start user-code symbols with "yy", to avoid name space problems.
5166
51672005-09-19 Akim Demaille <akim@epita.fr>
5168
5169 Remove the traits, failed experiment.
5170 It never proved useful, and anyway because of the current
5171 definition, it was not possible to have several specialization of
5172 this traits, making it useless.
5173 * data/lalr1.cc (yy:traits): Remove.
5174 Inline its definitions in the parser class.
5175
51762005-09-19 Akim Demaille <akim@epita.fr>
5177
5178 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
5179 least Mac OSX with a /usr/local install of gettext.
5180
51812005-09-19 Akim Demaille <akim@epita.fr>
5182
5183 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
5184 and yytoken for similarity with the other skeletons.
5185
51862005-09-19 Akim Demaille <akim@epita.fr>
5187
5188 * NEWS, configure.ac: update version number to 2.1a.
5189
51902005-09-16 Paul Eggert <eggert@cs.ucla.edu>
5191
5192 * NEWS: Version 2.1.
5193
5194 * NEWS: Remove notice of yytname change, since it was never in an
5195 official release.
5196 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
5197 diagnostic.
5198 * src/output.c (prepare): Likewise.
5199 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
5200 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
5201 is not defined. This is an awful hack, but it's enough for now.
5202 All callers changed.
5203 * tests/glr-regression-at (make_value): Args are const pointers now,
5204 to avoid GCC warning.
5205 (Duplicated user destructor for lookahead): New test. Currently
5206 skipped. It fails on my host but I'm not sure it'll always fail.
5207
52082005-09-16 Akim Demaille <akim@epita.fr>
5209
5210 * src/symtab.h (struct symbol): Declare the printer and destructor
5211 as const, to avoid accidental calls to free.
5212 (symbol_destructor_set, symbol_printer_set): Adjust.
5213 * src/symtab.c: Adjust.
5214
52152005-09-16 Akim Demaille <akim@epita.fr>
5216
5217 * data/c.m4 (b4_token_enums): New.
5218 (b4_token_defines): Rename as...
5219 (b4_token_enums_defines): this.
5220 (b4_token_defines): New, output only the #defines.
5221 * data/yacc.c, data/glr.c: Adjust.
5222 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
5223 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
5224 as default values.
5225
52262005-09-16 Akim Demaille <akim@epita.fr>
5227
5228 * data/lalr1.cc (yylex_): Remove, inline its code.
5229 (yyreport_syntax_error_): Remove, replaced by...
5230 (yysyntax_error_): this which returns a string and leaves to the
5231 caller the call to the users' error function.
5232 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
5233 Move from members of the parser object...
5234 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
5235 to local variables of the parse function.
5236
52372005-09-16 Akim Demaille <akim@epita.fr>
5238
5239 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
5240 since it's in Bison's name space.
5241
52422005-09-15 Paul Eggert <eggert@cs.ucla.edu>
5243
5244 * data/glr.c (yyresolveValue): Add default case to pacify
5245 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
5246
5247 * NEWS: Document when yyparse started to return 2.
5248 * doc/bison.texinfo (Parser Function): Document when yyparse
5249 returns 2.
5250
5251 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
5252 (b4_filename_type): Renamed back from b4_file_name_type. All uses
5253 changed.
5254 (class position): file_name -> filename (reverting). All uses changed.
5255
52562005-09-14 Paul Eggert <eggert@cs.ucla.edu>
5257
5258 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
5259 do anything if $@ exists. This reverts part of the 2005-07-07
5260 patch.
5261
52622005-09-11 Paul Eggert <eggert@cs.ucla.edu>
5263
5264 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
5265 contains obsolete information and isn't worth distributing as a
5266 separate file anyway.
5267 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
5268 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
5269 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
5270 (yyparse): Abort if user code uses longjmp to throw an unexpected
5271 value.
5272
52732005-09-09 Paul Eggert <eggert@cs.ucla.edu>
5274
5275 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
5276 Suggested by twlevo@xs4all.nl.
5277
5278 * data/glr.c (YYCHK1): Do not assume YYE is in range.
5279 This avoids a diagnostic from gcc -Wswitch-enum.
5280 Problem reported by twlevo@xs4all.nl.
5281
5282 * doc/bison.texinfo: Don't use "filename", as per GNU coding
5283 standards. Use "file name" or "file" or "name", depending on
5284 the context.
5285 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
5286 not to hack/foo.tab.c.
5287 (Calc++ Top Level): 2nd arg of main is not const.
5288 * data/glr.c: b4_filename -> b4_file_name.
5289 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
5290 All uses changed.
5291 (class position): filename -> file_name. All uses changed.
5292 * data/yacc.c: b4_filename -> b4_file_name.
5293 * lib/bitset.h: filename -> file_name in local vars.
5294 * lib/bitset_stats.c: Likewise.
5295 * src/files.c: Likewise.
5296 * src/scan-skel.l ("@output ".*\n): Likewise.
5297 * src/files.c (file_name_split): Renamed from filename_split.
5298 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
5299
53002005-09-08 Paul Eggert <eggert@cs.ucla.edu>
5301
5302 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
5303 to accommodate latest gnulib.
5304
5305 * tests/glr-regression.at (Duplicate representation of merged trees):
5306 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
5307
5308 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
5309 needed.
5310
53112005-08-26 Paul Eggert <eggert@cs.ucla.edu>
5312
5313 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
5314 All uses changed. Invoke user destructor after an error during a
5315 split parse (trivial change from Joel E. Denny).
5316
5317 * tests/glr-regression.at
5318 (User destructor after an error during a split parse): New test case.
5319 Problem reported by Joel E. Denny in:
5320 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
5321
53222005-08-25 Paul Eggert <eggert@cs.ucla.edu>
5323
5324 * README-cvs: Give URLs for recommended tools.
5325 Mention Gzip version problem, and bootstrapping issues.
5326 Remove troubleshooting section, as it's somewhat obsolete.
5327
5328 * bootstrap (no_cache): New var, to accommodate different wget
5329 variants. Use it instead of '-C off'. Problem reported by
5330 twlevo@xs4all.nl.
5331
5332 * data/glr.c (yydestroyStackItem): New function.
5333 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
5334 debugging information. Problem reported by Joel E. Denny.
5335
53362005-08-25 Akim Demaille <akim@epita.fr>
5337
5338 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
5339
53402005-08-24 Paul Eggert <eggert@cs.ucla.edu>
5341
5342 * data/glr.c (yyrecoverSyntaxError, yyreturn):
5343 Don't invoke destructor on unresolved entries.
5344 * tests/glr-regression.at
5345 (User destructor for unresolved GLR semantic value): New test case.
5346 Problem reported by Joel E. Denny in:
5347 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
5348
53492005-08-21 Paul Eggert <eggert@cs.ucla.edu>
5350
5351 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
5352 Add strnlen.c.
5353 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
5354 lib-prefix.m4, po.m4.
5355
5356 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
5357 in yydestruct diagnostic, since it might not be an error.
5358 Problem reported by Joel Denny near end of
5359 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
5360 * data/lalr1.cc (yyerturn): Likewise.
5361 * data/yacc.c (yyreturn): Likewise.
5362 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
5363
5364 * src/files.c: Remove obsolete FIXME comment.
5365
5366 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
5367 with the other templates, and to fix bogus run-on messages such
5368 as the one reported at the end of
5369 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
5370 All callers changed to avoid the newline.
5371 (yyprocessOneStack): Output two lines rather than one, to accommodate
5372 the above change. This changes the debug output format slightly.
5373
5374 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
5375 reported by Joel E. Denny in
5376 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
5377 (trivial change).
5378 * tests/glr-regression.at (Duplicate representation of merged trees):
5379 New test, from Joel E. Denny in:
5380 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
5381 * THANKS: Add Joel E. Denny.
5382
5383 * configure.ac (AC_INIT): Bump to 2.0c.
5384
53852005-07-24 Paul Eggert <eggert@cs.ucla.edu>
5386
5387 * NEWS: Version 2.0b.
5388
5389 * Makefile.am (SUBDIRS): Put examples before tests, so that
5390 "make check" doesn't finish with "All 1 tests passed".
5391
5392 * tests/regression.at (Token definitions): Don't rely on
5393 AT_PARSER_CHECK for data that contains backslashes. It currently
5394 uses 'echo', and 'echo' isn't portable if its argument contains
5395 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
5396 that the byte '\0xff' is not printable in the C locale; it is,
5397 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
5398 not printable, so use '\0x81' to test.
5399
5400 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
5401 version of GCC, since the macro is used with non-GCC compilers.
5402
5403 Fix core dump reported by Pablo De Napoli in
5404 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
5405 * tests/regression.at (Invalid inputs with {}): New test.
5406 * src/parse-gram.y (token_name): Translate type before using
5407 it as an index.
5408
5409 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
5410 the user's name space. All uses changed to __attribute__
5411 ((__unused__)).
5412 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
5413 Add __attribute__ ((__noreturn__)).
5414
5415 * etc/clcommit: Remove. We weren't using it, and it failed
5416 "make maintainer-distcheck".
5417 * Makefile.maint: Merge from coreutils.
5418 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
5419 (syntax-check-rules): Change list of rules as described below.
5420 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
5421 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
5422 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
5423 (sc_trailing_space): New rules.
5424 (sc_xalloc_h_in_src): Remove.
5425 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
5426 (sc_space_tab, sc_error_exit_success, sc_changelog):
5427 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
5428 (makefile-check, po-check, author_mark_check):
5429 (makefile_path_separator_check, copyright-check):
5430 Use grep -n, to make it easier to find violations.
5431 Use CVS_LIST and CVS_LIST_EXCEPT.
5432 (header_regexp, h_re): Remove.
5433 (dd_c): New macro.
5434 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
5435 (my-distcheck): Use more-modern GCC flags.
5436 (signatures, %.asc): Remove.
5437 (rel-files, announcement): Remove signatures.
5438 Restore old updating code, even though we don't use it, so
5439 that we're the same as coreutils.
5440 (alpha, beta, major): Depend on news-date-check.
5441 Make the upload commands.
5442
5443 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
5444 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
5445 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
5446 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
5447 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
5448 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
5449 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
5450 * tests/sets.at: Likewise.
5451
5452 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
5453 we comment out the Autoconf version number.
5454 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
5455 it's error-prone and "make maintainer-distcheck" rejects it.
5456
5457 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
5458 Indent calls to "error" to pacify "make maintainer-distcheck",
5459 when the calls are not intended to be translated.
5460 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
5461
5462 * src/Makefile.am (DEFS): Use +=, to pacify
5463 "make maintainer-distcheck".
5464 (bison_SOURCES): Add scan-skel.h.
5465 (sc_tight_scope): New rule, from coreutils.
5466
5467 * src/files.c (src_extension, header_extension):
5468 Now static, not extern.
5469 * src/getargs.c (short_options): Likewise.
5470 * src/muscle_tab.c (muscle_table): Likewise.
5471 * src/parse-gram.y (current_class, current_type, current_prec):
5472 Likewise.
5473 * src/reader.c (grammar_end, previous_rule_end): Likewise.
5474 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
5475 * src/main.c (main): Cast bindtextdomain and textdomain calls to
5476 void, to avoid warning when NLS is disabled.
5477 * src/output.c: Include scan-skel.h.
5478 (scan_skel): Remove decl, since scan-skel.h does this.
5479 (output_skeleton):
5480 Indent calls to "error" to pacify "make maintainer-distcheck".
5481 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
5482 * src/reader.h (gram_end, gram_lineno): New decls to pacify
5483 "make maintainer-distcheck".
5484 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
5485 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
5486 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
5487 (skel_lex_destroy, scan_skel): Move these decls to...
5488 * src/scan-skel.h: New file.
5489 * src/uniqstr.c (uniqstr_assert):
5490 Indent calls to "error" to pacify "make maintainer-distcheck".
5491
5492 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
5493 not @VAR@.
5494
5495 * tests/torture.at: Revamp to avoid misuse of atoi that
5496 "make maintainer-distcheck" complained about.
5497
5498 * examples/extexi (message): Don't print a message more than once,
5499 and omit line-number decoration that makes Emacs compile think
5500 that informative messages are worth worrying about.
5501
55022005-07-22 Paul Eggert <eggert@cs.ucla.edu>
5503
5504 * configure.ac: Update version number.
5505
5506 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
5507 accidentally.
5508 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
5509 autogenerated by the maintainer.
5510 * examples/calc++/.cvsignore: Add *.yy.
5511
5512 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
5513 * lib/bitset_stats.c (bitset_stats_init): Likewise.
5514 * lib/bitsetv.c (bitsetv_alloc): Likewise.
5515
5516 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
5517
5518 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
5519 from maintainer-distcheck about casting the argument of 'free'.
5520
5521 * NEWS: Mention recent yytname changes.
5522 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
5523
5524 * bootstrap: For translations that have not yet been upgraded to
5525 the new runtime-po domain, prime the pump by extracting the
5526 relevant strings from the obsolete translations. This code can be
5527 removed once the bison-runtime domain has been translated by each
5528 team.
5529
5530 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
5531 now that token names are already quoted.
5532
5533 Fix problem reported by Anthony Heading.
5534 * data/glr.c (YYTOKEN_TABLE): New macro.
5535 (yytname): Define if YYTOKEN_TABLE.
5536 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
5537 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
5538 (YYERROR_VERBOSE): Define the same way the other skeletons do.
5539 * src/output.c (prepare_symbols): Output token_table_flag.
5540
55412005-07-21 Paul Eggert <eggert@cs.ucla.edu>
5542
5543 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
5544 again if the first call fails.
5545
5546 * data/glr.c (yytnamerr): New function.
5547 (yyreportSyntaxError): Use it to dequote most string literals.
5548 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
5549 with other skeletons. All uses changed.
5550 (yytnameerr_): New function.
5551 (yyreport_syntax_error): Use it to dequote most string literals.
5552 * data/yacc.c (yytnamerr): New function.
5553 (yyerrlab): Use it to decode most string literals.
5554 * doc/bison.texinfo (Decl Summary, Calling Convention):
5555 Clarify quoting convention of yytname.
5556 * src/output.c (prepare_symbols): Quote all names. This undoes
5557 the 2005-04-17 change, which is now accomplished (mostly) via
5558 changes in the parsers as described above.
5559 * tests/regression.at (Token definitions, Web2c Actions):
5560 Undo most 2005-04-17 change here, too.
5561
55622005-07-20 Paul Eggert <eggert@cs.ucla.edu>
5563
5564 Fix more problems reported by twlevo@xs4all.nl.
5565 * tests/cxx-type.at: Don't pipe output of ./types through sed to
5566 remove trailing spaces. This loses the exit status of ./types,
5567 and isn't needed since ./types shouldn't be emitting trailing
5568 spaces.
5569 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
5570 as the stack isn't valid in that case.
5571
5572 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
5573 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
5574 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
5575 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
5576 is used.
5577 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
5578 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
5579 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
5580 Likewise.
5581
5582 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
5583 overly-picky compilers that reject 'char *foo = "bar";'.
5584
5585 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
5586 to FILE * parameter, not to stderr. This fixes a typo introduced
5587 in the 2005-07-12 change.
5588
5589 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
5590 warnings from GCC 4.
5591
5592 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
5593 (yyglrShiftDefer, yysplitStack):
5594 Remove unused parameters b4_pure_formals. All uses changed.
5595 (yyglrShift): Remove unused parameters b4_user_formals.
5596 All uses changed.
5597 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
5598
55992005-07-18 Paul Eggert <eggert@cs.ucla.edu>
5600
5601 Destructor cleanups and regularization among the three skeletons.
5602 * NEWS: Document the behavior changes.
5603 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
5604 stack before failing, as the cleanup code will do it for us now.
5605 * data/lalr1.cc (yyerrlab): Likewise.
5606 * data/glr.c (yyparse): Pop everything off the stack before
5607 freeing it, so that destructors get called properly.
5608 * data/lalr1.cc (yyreturn): Likewise.
5609 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
5610 This is more consistent.
5611 * doc/bison.texinfo (Destructor Decl): Mention more reasons
5612 why destructors might be called. 1.875 -> 2.1.
5613 (Destructor Decl, Decl Summary, Table of Symbols):
5614 Some English-language cleanups for %destructor.
5615 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
5616 Add output line for destructor of start symbol.
5617 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
5618 because of that same extra output line.
5619
5620 * NEWS: Document minor wording changes in diagnostics of
5621 Bison-generated parsers.
5622 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
5623 Remove unused formals. All uses changed.
5624 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
5625 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
5626 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
5627 Rename yyoverflowab to yyexhaustedlab.
5628 When memory exhaustion occurs during syntax-error reporting,
5629 report it separately rather than in a single diagnostic; this
5630 eases translation.
5631 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
5632 (Memory Exhausted): Renamed from Parser Stack Overflow.
5633 Revamp wording slightly to prefer "memory exhaustion".
5634 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
5635
5636 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
5637
5638 Add i18n support to the GLR skeleton. Partially fix the C++
5639 skeleton; a C++ expert needs to finish this. Remove debugging
5640 msgids; there's little point to having them translated, since they
5641 can be understood only by someone who can read the
5642 (English-language) source code.
5643
5644 Generate runtime-po/bison-runtime.pot automatically, so that we
5645 don't have to worry about garbage getting in that file. We'll
5646 make sure after the next official release that old msgids don't
5647 get lost. See
5648 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
5649
5650 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
5651 Now auto-generated.
5652 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
5653 Fix typos in explanations of the runtime file.
5654 * bootstrap: Change gettext keyword from YYI18N to YY_.
5655 Use standard Makefile.in.in in runtime-po, since we'll arrange
5656 for backward-compatible bison-runtime.po files in a different way.
5657 * data/glr.c (YY_): New macro, from yacc.c.
5658 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
5659 Translate messages intended for users.
5660 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
5661 the wording in the other skeletons. We don't know that the memory
5662 is virtual.
5663 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
5664 Use same method that yacc.c uses.
5665 Don't translate debugging messages.
5666 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
5667 it doesn't work (yet), and requires C++ expertise to fix.
5668 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
5669 Move defn to a more logical place, to be consistent with other
5670 skeletons.
5671 Don't translate debugging messages.
5672 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
5673 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
5674 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
5675 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
5676
5677 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
5678 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
5679 void, not int.
5680 * tests/glr-regression.at (Badly Collapsed GLR States):
5681 Likewise.
5682 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
5683 yylex should return 0 at EOF rather than aborting.
5684
5685 Improve tests for stack overflow in GLR parser.
5686 Problem reported by twlevo@xs4all.nl.
5687 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
5688 All uses removed.
5689 (yyStackOverflow): Just longjmp, but with value 2 so that caller
5690 can handle the problem.
5691 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
5692 (yyparse): New local variable yyresult to record the result.
5693 Use result of setjmp to set it, rather than storing itinto
5694 struct.
5695 (yyDone): Remove label.
5696 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
5697 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
5698 if YYABORT is used).
5699 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
5700 yyparse status; put status > 1 into diagnostic.
5701 Check that status==2 works.
5702 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
5703 Use exit status 3 for failure to open (which shouldn't happen).
5704
57052005-07-17 Paul Eggert <eggert@cs.ucla.edu>
5706
5707 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
5708 1 on syntax error; just let yyparse do its thing.
5709 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
5710 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
5711 (Exploding the Stack Size with Alloca):
5712 (Exploding the Stack Size with Malloc):
5713 Expect exit status 2, not 1, since the parser is supposed to blow
5714 its stack. Problem reported by twlevo@xs4all.nl.
5715
5716 * data/glr.c (yyparse): Don't assume that the initial calls
5717 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
5718 Print a stack-overflow message and fail instead.
5719 Initialize the line-number information before creating the stack,
5720 so that the stack-overflow message can report line zero safely.
5721
57222005-07-14 Paul Eggert <eggert@cs.ucla.edu>
5723
5724 Fix problems reported by twlevo@xs4all.nl.
5725 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
5726 (yyuserMerge): Provide a default case if b4_mergers is empty.
5727 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
5728 * tests/glr-regression.at
5729 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
5730 Add casts to pacify C++ compilers.
5731 * tests/glr-regression.at (Improper merging of GLR delayed action
5732 sets): Declare yylex before using it.
5733 * tests/Makefile.am (maintainer-check-g++): Fix a stray
5734 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
5735 test for valgrind; valgrind is independent of g++.
5736 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
5737 for compatibility with POSIX 1003.1-2001 (if running coreutils).
5738 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
5739 Use a destructor, so that we can expand the stack. Change
5740 YYSTYPE to char * so that we can free it. Cast result of malloc.
5741
57422005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5743
5744 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
5745 a valgrind failure. Problem reported by twlevo@xs4all.nl.
5746
57472005-07-13 Paul Eggert <eggert@cs.ucla.edu>
5748
5749 * PACKAGING: New file, suggested by Bruno Haible and taken from
5750 similar wording in gettext's PACKAGING file.
5751 * NEWS: Mention PACKAGING.
5752 * Makefile.am (EXTRA_DIST): Add PACKAGING.
5753
57542005-07-12 Paul Eggert <eggert@cs.ucla.edu>
5755
5756 * NEWS: Document recent i18n improvements.
5757 * bootstrap: Get runtime translations into runtime-po.
5758 Create runtime-po files automatically, if possible.
5759 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
5760 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
5761 does not infringe on the user's name space.
5762 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
5763 * doc/bison.texinfo (Internationalization): Revamp the English
5764 and Texinfo syntax a bit, to try to make it clearer.
5765 (Bison Options, Option Cross Key): Mention --print-localedir.
5766 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
5767 YYENABLE_NLS. Quote a bit more.
5768 * runtime-po/.cvsignore: New file.
5769 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
5770 * runtime-po/Rules-quot: Remove; now created by bootstrap.
5771 * runtime-po/quot.sed: Likewise.
5772 * runtime-po/boldquot.sed: Likewise.
5773 * runtime-po/en@quot.header: Likewise.
5774 * runtime-po/en@boldquot.header: Likewise.
5775 * runtime-po/insert-header.sin: Likewise.
5776 * runtime-po/remove-potcdate.sin: Likewise.
5777 * runtime-po/Makevars: Likewise.
5778 * runtime-po/LINGUAS: Likewise.
5779 * runtime-po/de.po: Likewise; we will rely on the translation project
5780 to maintain this, so "bootstrap" should get it.
5781 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
5782 its value.
5783 * src/main.c (main): Bind the bison-runtime domain, too.
5784
57852005-07-12 Bruno Haible <bruno@clisp.org>
5786
5787 * data/yacc.c: Include <libintl.h> when NLS is enabled.
5788 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
5789 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
5790 * runtime-po: New directory.
5791 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
5792 $(DOMAIN).pot-update rule, so that old messages are never dropped.
5793 * runtime-po/Rules-quot: New file, copied from po/.
5794 * runtime-po/quot.sed: Likewise.
5795 * runtime-po/boldquot.sed: Likewise.
5796 * runtime-po/en@quot.header: Likewise.
5797 * runtime-po/en@boldquot.header: Likewise.
5798 * runtime-po/insert-header.sin: Likewise.
5799 * runtime-po/remove-potcdate.sin: Likewise.
5800 * runtime-po/Makevars: New file.
5801 * runtime-po/POTFILES.in: New file.
5802 * runtime-po/LINGUAS: New file.
5803 * runtime-po/bison-runtime.pot: New file.
5804 * runtime-po/de.po: New file.
5805 * m4/bison.m4: New file.
5806 * Makefile.am (SUBDIRS): Add runtime-po.
5807 (aclocaldir, aclocal_DATA): New variables.
5808 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
5809 Define aclocaldir.
5810 * src/getargs.c (usage): Document --print-localedir option.
5811 (PRINT_LOCALEDIR_OPTION): New enum item.
5812 (long_options): Add --print-localedir option.
5813 (getargs): Handle --print-localedir option.
5814 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
5815 (Internationalization): New section.
5816
58172005-07-12 Akim Demaille <akim@epita.fr>
5818
5819 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
5820 for consistency with the rest of the code.
5821 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
5822 Add separators.
5823
58242005-07-12 Akim Demaille <akim@epita.fr>
5825
5826 * src/parse-gram.y: Use %printer instead of YYPRINT.
5827
58282005-07-12 Akim Demaille <akim@epita.fr>
5829
5830 * src/symtab.h, src/symtab.c (symbol_print): New.
5831 * src/symlist.h, src/symlist.c (symbol_list_print): New.
5832 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
5833
58342005-07-12 Akim Demaille <akim@epita.fr>
5835
5836 * data/glr.c (b4_syncline): Fix (swap) the definitions of
5837 b4_at_dollar and b4_dollar_dollar.
5838
58392005-07-11 Paul Eggert <eggert@cs.ucla.edu>
5840
5841 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
5842 and Pennello's paper.
5843
58442005-07-09 Paul Eggert <eggert@cs.ucla.edu>
5845
5846 * data/yacc.c (yyparse): Undo previous patch. Instead,
5847 set yylsp[0] and yyvsp[0] only if the initial action
5848 sets yylloc and yylval, respectively.
5849
5850 * data/yacc.c (yyparse): In the initial action, set
5851 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
5852 This avoids the use of undefined variables if the initial
5853 action does not set yylloc and/or yylval.
5854
58552005-07-07 Paul Eggert <eggert@cs.ucla.edu>
5856
5857 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
5858 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
5859 Remove from CVS. These files are automatically generated.
5860 * examples/extexi: Clarify that this file is now part of Bison,
5861 not GNU M4, and that it works with any POSIX-compatible Awk.
5862 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
5863 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
5864 so that we also get calc++-parser.yy. Geneate it.
5865 Use $(AWK), not gawk, since any conforming Awk will do.
5866 Put comment before action, since older 'make' can't handle comment
5867 in action.
5868 $(BUILT_SOURCES): List all built sources, not just some of them.
5869 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
5870 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
5871 $($(calc_sources_generated)): Remove unnecessary test for existence
5872 of target. (This had a shell syntax error anyway; a stray "x".)
5873 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
5874 calc++-parser.yy.
5875 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
5876
5877 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
5878 implied by the other modules.
5879
58802005-07-06 Akim Demaille <akim@epita.fr>
5881
5882 Bind examples/calc++ to the package.
5883 * examples/calc++/Makefile: Remove, replaced by...
5884 * examples/calc++/Makefile.am: ... this new file.
5885 * examples/calc++/test: Remove input.
5886 * examples/calc++/compile: Remove.
5887 * examples/Makefile.am: New.
5888 * configure.ac, Makefile.am: Adjust.
5889 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
5890
58912005-07-05 Paul Eggert <eggert@cs.ucla.edu>
5892
5893 * data/glr.c (yyFail): Drastically simplify; since the format argument
5894 never had any % directives, we can simply pass it to yyerror.
5895 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
5896 be modified later, as that is the usual style in glr.c.
5897 Problems reported by Paul Hilfinger.
5898
5899 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
5900 and size overflow errors.
5901 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
5902 in case the user prolog sets feature-test macros like _GNU_SOURCE.
5903 (YYSIZEMAX): New macro.
5904 (yystpcpy): New function, taken from yacc.c.
5905 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
5906 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
5907 so that we don't have to maintain their signatures.
5908 (yyFail): Check for buffer overflow, by using vsnprintf rather
5909 than vsprintf. Allocate a bigger buffer if possible.
5910 Report an error if buffer allocation fails.
5911 (yyStackOverflow): New function.
5912 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
5913 the initialization was successful. It might fail if storage was
5914 exhausted.
5915 (yyexpandGLRStack): Add more checks for storage allocation failure.
5916 Use yyStackOverflow to report failures.
5917 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
5918 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
5919 Don't assume stack number fits in int.
5920 (yysplitStack): Check for storage allocation failure.
5921 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
5922 can print diagnostics on storage allocation failure. All callers
5923 changed.
5924 (yyresolveValue): Use yybool for boolean.
5925 (yyreportSyntaxError): Check for size-calculation overflow.
5926 This code is taken from yacc.c.
5927 (yyparse): Check for storage allocation errors when allocating
5928 the initial stack.
5929
59302005-07-05 Akim Demaille <akim@epita.fr>
5931
5932 Extract calc++ from the documentation.
5933 * doc/bison.texinfo (Calc++): Add the extraction marks.
5934 * examples/extexi: New, from the aborted GNU Programming 2E.
5935 Separate the different paragraph of a file with empty lines.
5936 * examples/Makefile: Use it to extract the whole calc++ example.
5937
59382005-06-24 Akim Demaille <akim@epita.fr>
5939
5940 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
5941 class typedefs.
5942
59432005-06-22 Akim Demaille <akim@epita.fr>
5944
5945 * doc/bison.texinfo (C++ Language Interface): First stab.
5946 (C++ Parsers): Remove.
5947
59482005-06-22 Akim Demaille <akim@epita.fr>
5949
5950 * data/lalr1.cc (yylex_): Honor %lex-param.
5951
59522005-06-22 Akim Demaille <akim@epita.fr>
5953
5954 Start a set of simple examples.
5955 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
5956 * examples/calc++/calc++-driver.hh,
5957 * examples/calc++/calc++-parser.yy,
5958 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
5959 * examples/calc++/compile, examples/calc++/test: New.
5960
59612005-06-09 Paul Eggert <eggert@cs.ucla.edu>
5962
5963 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
5964 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
5965 which stems from the 2005-05-27 patch.
5966
59672005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5968
5969 * data/glr.c: Modify treatment of unused parameters to permit use
5970 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
5971
59722005-05-30 Paul Eggert <eggert@cs.ucla.edu>
5973
5974 Fix infringement on user name space reported by Janos Zoltan Szabo.
5975 * data/yacc.c (yyparse): strlen -> yystrlen.
5976
59772005-05-30 Akim Demaille <akim@epita.fr>
5978
5979 * data/lalr1.cc (_): New.
5980 Translate the various messages.
5981
59822005-05-27 Paul Eggert <eggert@cs.ucla.edu>
5983
5984 Fix infringement on user name space reported by Bruno Haible.
5985 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
5986 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
5987 the user's name space.
5988 (alloca): Include <stdlib.h> to get it, if it's not built in.
5989 (YYMALLOC, YYFREE): Define only if needed.
5990 (malloc, free): Declare, but only if needed, as this infringes on
5991 the user name space.
5992
59932005-05-25 Paul Eggert <eggert@cs.ucla.edu>
5994
5995 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
5996 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
5997 with %d format.
5998 * lib/ebitset.c (min, max): Undef before defining.
5999 * lib/vbitset.c (min, max): Likewise.
6000 * lib/subpipe.c (create_subpipe): Save local variables in case
6001 vfork clobbers them.
6002
60032005-05-24 Bruno Haible <bruno@clisp.org>
6004
6005 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
6006 error message syntax used by gcc-4.0.
6007
60082005-05-23 Paul Eggert <eggert@cs.ucla.edu>
6009
6010 * README: Mention m4 1.4.3. Remove obsolete advice about
6011 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
6012
6013 * bootstrap: Remove workaround for problem I encountered with
6014 gettext 0.14.1; it seems to be fixed now.
6015
60162005-05-22 Paul Eggert <eggert@cs.ucla.edu>
6017
6018 * NEWS: Version 2.0a.
6019
6020 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
6021 the previous change.
6022
6023 Various maintainer cleanups.
6024 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
6025 conftest*, for benefit of CVS commands run at the same time as
6026 "configure". Add build-aux, since "bootstrap" now creates it and
6027 its subfiles.
6028 * Makefile.cfg (move_if_change): Remove.
6029 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
6030 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
6031 (po_repo, do-po-update, po-update, wget_files, get-targets):
6032 (config.guess-url_prefix, config.sub-url_prefix):
6033 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
6034 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
6035 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
6036 Remove.
6037 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
6038 this is now the recommended name.
6039 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
6040 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
6041 ylwrap. These files now go into build-aux.
6042 * config/move-if-change: Remove.
6043 * config/prev-version.txt: Bump from 1.75 to 2.0.
6044
6045 * bootstrap: Add stdio-safer, unistd-safer modules.
6046 Remove m4/glibc2.m4 (introduced by latest gnulib, but
6047 we don't need it).
6048 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
6049 fopen-safer.c, stdio-safer.h, unistd-safer.h.
6050 * lib/subpipe.c: Include "unistd-safer.h".
6051 (create_subpipe): Make sure all the newly-created
6052 file descriptors are > 2, so that diagnostics don't
6053 get sent down them (which might cause Bison to hang, in theory).
6054 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
6055 * src/files.c (xfopen): Use fopen_safer, not fopen.
6056
6057 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
6058 yesterday's yacc.c fix.
6059
60602005-05-21 Paul Eggert <eggert@cs.ucla.edu>
6061
6062 * data/glr.c, data/lalr1.cc: Update copyright date.
6063
6064 Fix a destructor bug reported by Wolfgang Spraul in
6065 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
6066 * data/yacc.c (yyabortlab): Don't call destructor, and
6067 don't set yychar to EMPTY.
6068 (yyoverflowlab): Don't call destructor.
6069 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
6070 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
6071 since we no longer output the message "discarding lookahead token
6072 end of input ()".
6073
60742005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
6075
6076 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
6077 fix a small glitch in debugging output.
6078 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
6079 after YY_SYMBOL_PRINT where needed.
6080
6081 (struct yyGLRState): Add some comments.
6082 (struct yySemanticOption): Add some comments.
6083 (union yyGLRStackItem): Add comment.
6084
6085 (yymergeOptionSets): Correct this to properly perform the union,
6086 avoiding infinite reported by Michael Rosien.
6087 Update comment.
6088
6089 * tests/glr-regression.at: Add test for GLR merging error reported
6090 by M. Rosien.
6091
60922005-05-13 Paul Eggert <eggert@cs.ucla.edu>
6093
6094 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
6095 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
6096 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
6097 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
6098 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
6099 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
6100 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
6101 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
6102 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
6103 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
6104 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
6105 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
6106 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
6107 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
6108 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
6109 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
6110 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
6111 src/derives.h, src/files.c, src/files.h, src/getargs.c,
6112 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
6113 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
6114 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
6115 src/output.h, src/parse-gram.c, src/parse-gram.h,
6116 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
6117 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
6118 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
6119 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
6120 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
6121 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
6122 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
6123 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
6124 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
6125 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
6126 tests/reduce.at, tests/regression.at, tests/sets.at,
6127 tests/synclines.at, tests/testsuite.at, tests/torture.at:
6128 Update FSF postal mail address.
6129
61302005-05-11 Paul Eggert <eggert@cs.ucla.edu>
6131
6132 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
6133 Problem reported by Ralf Menzel.
6134
61352005-05-01 Paul Eggert <eggert@cs.ucla.edu>
6136
6137 * tests/actions.at: Test that stack overflow invokes destructors.
6138 From Marcus Holland-Moritz.
6139 * data/yacc.c (yyerrlab): Move the code that destroys the stack
6140 from here....
6141 (yyreturn): to here. That way, destructors are called properly
6142 even if the stack overflows, or the user calls YYACCEPT or
6143 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
6144 (yyoverflowlab): Destroy the lookahead.
6145
61462005-04-24 Paul Eggert <eggert@cs.ucla.edu>
6147
6148 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
6149
61502005-04-17 Paul Eggert <eggert@cs.ucla.edu>
6151
6152 * NEWS: Bison-generated C parsers no longer quote literal strings
6153 associated with tokens.
6154 * src/output.c (prepare_symbols): Don't escape strings,
6155 since users don't want to see C escapes.
6156 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
6157 in diagnostics.
6158 * tests/input.at (Torturing the Scanner): Likewise.
6159 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
6160
61612005-04-16 Paul Eggert <eggert@cs.ucla.edu>
6162
6163 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
6164 the data size is known to be too small and we can't increase it.
6165 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
6166
61672005-04-15 Paul Eggert <eggert@cs.ucla.edu>
6168
6169 * src/parse-gram.y: Include quotearg.h.
6170 (string_as_id): Quote $1 before using it as a key, since the
6171 lexer no longer quotes it for us.
6172 (string_content): Don't strip quotes, since lexer no longer
6173 quotes it for us.
6174 * src/scan-gram.l: Include quotearg.h.
6175 ("\""): Omit quote.
6176 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
6177 a key, since the rest of the lexer doesn't quote it.
6178 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
6179 * tests/regression.at (Token definitions): Check for backslashes
6180 in token strings.
6181
6182 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
6183 (YYSIZE_T): Define to unsigned long int when using an older compiler.
6184 (yyparse): Revamp code to generate long syntax error message, to
6185 make it easier to translate, and to avoid problems with arithmetic
6186 overflow. Change "virtual memory" to "memory" in diagnostic, since
6187 we don't know whether the memory is virtual.
6188
61892005-04-13 Paul Eggert <eggert@cs.ucla.edu>
6190
6191 * NEWS: Bison-generated C parsers now use the _ macro to
6192 translate strings.
6193 * data/yacc.c (_) [!defined _]: New macro.
6194 All English strings wrapped inside this macro.
6195 * doc/bison.texinfo (Bison Parser): Document _.
6196 * po/POTFILES.in: Include src/parse-gram.c, since it now
6197 includes translateable strings that parse-gram.y doesn't.
6198
61992005-04-12 Paul Eggert <eggert@cs.ucla.edu>
6200
6201 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
6202 reverting the 2004-10-11 change to this function.
6203 (symbol_check_alias_consistency): Don't call symbol_type_set
6204 if the type name is already correct.
6205 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
6206
62072005-03-25 Paul Eggert <eggert@cs.ucla.edu>
6208
6209 * tests/regression.at (Token definitions): Don't use a token named
6210 c, as that generates a "#define c ..." that runs afoul of buggy
6211 stdlib.h that uses the identifier c as a member of struct
6212 drand48_data. Problem reported by Horst Wente.
6213
62142005-03-21 Paul Eggert <eggert@cs.ucla.edu>
6215
6216 * bootstrap: Change translation URL from
6217 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
6218 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
6219 redirection glitches. Problem reported by twlevo@xs4all.nl.
6220
62212005-03-20 Paul Eggert <eggert@cs.ucla.edu>
6222
6223 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
6224 after operands; POSIX says this isn't portable for the c99 command.
6225
62262005-03-18 Paul Eggert <eggert@cs.ucla.edu>
6227
6228 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
6229 immediately if a data overrun has occurred; this may help us track
6230 down what may be a spurious failure on MacOS.
6231
62322005-03-17 Paul Eggert <eggert@cs.ucla.edu>
6233
6234 Respond to problems reported by twlevo@xs4all.nl.
6235
6236 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
6237
6238 * src/vcg.h: Comment fix.
6239 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
6240 (G_CMAX): Change to -1 instead of INT_MAX.
6241
6242 * data/yacc.c (yyparse): Omit spaces before #line.
6243
62442005-03-15 Paul Eggert <eggert@cs.ucla.edu>
6245
6246 * src/tables.c (state_number_to_vector_number): Put it inside an
6247 "#if 0", since it's not currently used. Problem reported by
6248 Roland McGrath.
6249
62502005-03-06 Paul Eggert <eggert@cs.ucla.edu>
6251
6252 * src/output.c (escaped_output): Renamed from
6253 escaped_file_name_output, since we now use it for symbol tags as
6254 well. All uses changed.
6255 (symbol_destructors_output, symbol_printers_output):
6256 Escape symbol tags too.
6257 Problem reported by Matyas Forstner in
6258 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
6259
6260 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
6261 not needed.
6262 * src/output.c (user_actions_output, token_definitions_output,
6263 symbol_destructors_output, symbol_printers_output): Likewise.
6264 * src/reader.c (prologue_augment): Likewise.
6265 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
6266
6267 * src/vcg.c (output_edge): Don't quote linestyle arg.
6268 Problem reported by twlevo@xs4all.nl.
6269
62702005-02-28 Paul Eggert <eggert@cs.ucla.edu>
6271
6272 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
6273 example, reported by Derek M Jones. Also, make the example even
6274 more outrageous, to better illustrate how bad the problem is.
6275
62762005-02-24 Paul Eggert <eggert@cs.ucla.edu>
6277
6278 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
6279 putsym. Typo reported by Sebastian Piping.
6280
62812005-02-23 Paul Eggert <eggert@cs.ucla.edu>
6282
6283 * doc/bison.texinfo (Language and Grammar): some -> same
6284 (Epilogue): int he -> in the
6285 Typos reported by Sebastian Piping via Justin Pence.
6286
62872005-02-07 Paul Eggert <eggert@cs.ucla.edu>
6288
6289 * tests/glr-regression.at (Improper handling of embedded actions
6290 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
6291 embedded actions and $-N in GLR parsers", work around an Autoconf bug
6292 with dollar signs in test names.
6293 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
6294 for a similar reason.
6295
62962005-01-28 Paul Eggert <eggert@cs.ucla.edu>
6297
6298 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
6299 wants to redefine G_VIEW.
6300
63012005-01-27 Paul Eggert <eggert@cs.ucla.edu>
6302
6303 * src/vcg.c (get_view_str): Remove case for normal_view.
6304 Problem reported by twlevo@xs4all.nl.
6305
63062005-01-24 Paul Eggert <eggert@cs.ucla.edu>
6307
6308 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
6309 Problem reported by twlevo@xs4all.nl.
6310
6311 * doc/bison.texinfo: Change @dircategory from "GNU programming
6312 tools" to "Software development". Requested by Richard Stallman
6313 via Karl Berry.
6314
63152005-01-23 Paul Eggert <eggert@cs.ucla.edu>
6316
6317 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
6318 Problem reported by twlevo@xs4all.nl.
6319
63202005-01-21 Paul Eggert <eggert@cs.ucla.edu>
6321
6322 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
6323 keyword; it's not needed with modern compilers, and it doesn't
6324 affect correctness with older compilers. Suggested by
6325 twlevo@xs4all.nl.
6326
63272005-01-17 Paul Eggert <eggert@cs.ucla.edu>
6328
6329 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
6330 gcc -Wswitch-default.
6331 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
6332 * data/yacc.c (yyparse): Likewise.
6333
63342005-01-12 Paul Eggert <eggert@cs.ucla.edu>
6335
6336 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
6337 already. Let config.h define any nonstandard values.
6338
63392005-01-10 Paul Eggert <eggert@cs.ucla.edu>
6340
6341 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
6342 for the benefit of slower hosts. Problem reported by
6343 Nelson H. F. Beebe.
6344
63452005-01-07 Paul Eggert <eggert@cs.ucla.edu>
6346
6347 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
6348 being defined and not used.
6349 * data/lalr1.cc (yyparse): Likewise.
6350 Use "if (false)" rather than "if (0)".
6351
63522005-01-05 Paul Eggert <eggert@cs.ucla.edu>
6353
6354 * TODO: Mention that we should allow NUL bytes in tokens.
6355
63562005-01-02 Paul Eggert <eggert@cs.ucla.edu>
6357
6358 * src/scan-skel.l (<<EOF>>): Don't close standard output.
6359 Problem reported by Hans Aberg.
6360
63612005-01-01 Paul Eggert <eggert@cs.ucla.edu>
6362
6363 * src/getargs.c (version): Happy new year; update overall
6364 program copyright date from 2004 to 2005.
6365
6366 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
6367 Problem reported by Hans Aberg.
6368 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
6369 (Output file names.): Add a test for the case when standard output
6370 is closed.
6371
63722004-12-26 Paul Eggert <eggert@cs.ucla.edu>
6373
6374 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
6375 to fix an oversight in the Bison 2.0 manual.
6376
63772004-12-25 Paul Eggert <eggert@cs.ucla.edu>
6378
6379 * NEWS: Version 2.0. Reformat the existing news items since
6380 1.875, so that related items are grouped together.
6381 * configure.ac (AC_INIT): Bump version to 2.0.
6382 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
6383
6384 * tests/torture.at (Exploding the Stack Size with Alloca): Set
6385 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
6386 otherwise, we're not testing alloca. Unfortunately there's no
6387 simple way to consult HAVE_ALLOCA here.
6388
6389 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
6390 for yymsg, too.
6391
6392 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
6393 hand. This avoids a warning about comparing int to size_t when
6394 GCC warnings are enabled.
6395
63962004-12-22 Paul Eggert <eggert@cs.ucla.edu>
6397
6398 * NEWS: Bison-generated parsers no longer default to using the
6399 alloca function (when available) to extend the parser stack, due
6400 to widespread problems in unchecked stack-overflow detection.
6401 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
6402 responsibility to set it to a positive value. This lets the user
6403 specify a value that is not a preprocessor constant.
6404 * data/yacc.c (YYMAXDEPTH): Likewise.
6405 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
6406 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
6407 to be a compile-time constant. However, explain the constraints on it.
6408 Also, explain the constraints on YYINITDEPTH.
6409 (Table of Symbols): Explain that alloca is no longer the default.
6410 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
6411 to 1.
6412
6413 * doc/bison.texinfo (Location Default Action): Mention that n must
6414 be zero when k is zero. Suggested by Frank Heckenbach.
6415
64162004-12-22 Akim Demaille <akim@epita.fr>
6417
6418 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
6419 (parser::state_type, parser::semantic_type, parser::location_type):
6420 Private, not public.
6421 (parser::parse): Return ints, not bool.
6422 Returning a bool introduces a problem: 0 corresponds to false, and
6423 it seems weird to return false on success. Returning true changes
6424 the conventions for yyparse.
6425 Alternatively we could return void and send an exception.
6426 There is no clear consensus (yet?).
6427 (state_stack, semantic_stack, location_stack): Rename as...
6428 (state_stack_type, semantic_stack_type, location_stack_type): these.
6429 Private, not public.
6430 * tests/c++.at: New.
6431 * tests/testsuite.at, tests/Makefile.am: Adjust.
6432
64332004-12-21 Akim Demaille <akim@epita.fr>
6434
6435 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
6436
64372004-12-21 Akim Demaille <akim@epita.fr>
6438
6439 Don't impose std::string for filenames.
6440
6441 * data/lalr1.cc (b4_filename_type): New.
6442 (position::filename): Use it.
6443 (parser.hh): Move the inclusion of stack.hh and location.hh below
6444 the user code, so that needed headers for the filename type can be
6445 included first.
6446 Forward declare them before the user code.
6447 * tests/Makefile.am (check-local, installcheck-local): Pass
6448 TESTSUITEFLAGS to the TESTSUITE.
6449
64502004-12-20 Akim Demaille <akim@epita.fr>
6451
6452 Use more STL like names: my_class instead of MyClass.
6453
6454 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
6455 (SemanticStack, SemanticType, StateStack, StateType)
6456 (TokenNumberType, Stack, Slice, Traits, Parser::location)
6457 (Parser::value): Rename as...
6458 (location_stack, location_type, rhs_number_type, semantic_stack)
6459 (semantic_type, state_stack, state_type, token_number_type, stack)
6460 (slice, traits, parser::yylloc, parser::yylval): these.
6461
6462 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
6463
64642004-12-19 Paul Eggert <eggert@cs.ucla.edu>
6465
6466 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
6467 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
6468
64692004-12-17 Paul Eggert <eggert@cs.ucla.edu>
6470
6471 Remove uses of 'short int' and 'unsigned short int'. This raises
6472 some arbitrary limits. It uses more memory but nowadays that's
6473 not much of an issue.
6474
6475 This change does not affect the generated parsers; that's a different
6476 task, as some users will want to conserve memory there.
6477
6478 Ideally we should use size_t to represent all object counts, and
6479 something like ptrdiff_t to represent signed differences of object
6480 counts; but that will require more code-cleanup than I have the
6481 time to do right now.
6482
6483 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
6484 Use size_t, not int or short int, to count objects.
6485 * src/closure.c (nritemset, closure): Likewise.
6486 * src/closure.h (nritemset, closure): Likewise.
6487 * src/nullable.c (nullable_compute): Likewise.
6488 * src/print.c (print_core): Likewise.
6489 * src/print_graph.c (print_core): Likewise.
6490 * src/state.c (state_compare, state_hash): Likewise.
6491 * src/state.h (struct state): Likewise.
6492 * src/tables.c (default_goto, goto_actions): Likewise.
6493
6494 * src/gram.h (rule_number, rule): Use int, not short int.
6495 * src/output.c (prepare_rules): Likewise.
6496 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
6497 errs, reductions): Likewise.
6498 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
6499 Likewise.
6500 * src/tables.c (vector_number, tally, action_number,
6501 ACTION_NUMBER_MINIMUM): Likewise.
6502 * src/output.c (muscle_insert_short_int_table): Remove.
6503
65042004-12-17 Akim Demaille <akim@epita.fr>
6505
6506 * data/lalr1.cc: Extensive Doxygenation.
6507 (error_): Rename as...
6508 (error): this, since it is visible to the user.
6509 Adjust callers.
6510 (Parser::message): Now an automatic variable from...
6511 (Parser::yyreport_syntax_error_): here.
6512 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
6513 Parser::error.
6514 * tests/input.at: Escape $.
6515
65162004-12-16 Paul Eggert <eggert@cs.ucla.edu>
6517
6518 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
6519 Parenthesize rhs to avoid obscure problems with mistakes like
6520 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
6521 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
6522 b4_rhs_location): Likewise.
6523 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
6524 b4_rhs_location): Likewise.
6525
65262004-12-16 Akim Demaille <akim@epita.fr>
6527
6528 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
6529 yacc.c: be sure to stay within yycheck_.
6530 * tests/actions.at: Re-enable C++ tests.
6531
65322004-12-16 Akim Demaille <akim@epita.fr>
6533
6534 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
6535 real.
6536
65372004-12-16 Akim Demaille <akim@epita.fr>
6538
6539 Use #define to handle the %name-prefix.
6540
6541 * data/glr.c, data/yacc.c: Comment changes.
6542 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
6543 so that one can refer to yylex in the parser file, and have it
6544 renamed, as is the case with other skeletons.
6545
65462004-12-16 Akim Demaille <akim@epita.fr>
6547
6548 Move lalr1.cc internals into yy*.
6549
6550 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
6551 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
6552 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
6553 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
6554 (empty_, final_, terror_, errcode_, ntokens_)
6555 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
6556 (looka_, ilooka_, error_range_, nerrs_):
6557 Rename as...
6558 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
6559 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
6560 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
6561 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
6562 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
6563 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
6564 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
6565 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
6566 these.
6567
65682004-12-15 Paul Eggert <eggert@cs.ucla.edu>
6569
6570 Fix some problems reported by twlevo at xs4all.
6571 * src/symtab.c (symbol_new): Report an error if the input grammar
6572 contains too many symbols. This is better than calling abort() later.
6573 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
6574 (struct node, struct graph):
6575 Rename member expand to stretch. All uses changed.
6576 (struct graph): Remove member layoutalgorithm. All uses removed.
6577 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
6578 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
6579 All uses changed.
6580 (N_STRETCH): Rename from N_EXPAND. All uses changed.
6581
65822004-12-15 Akim Demaille <akim@epita.fr>
6583
6584 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
6585 Add more Doxygen comments.
6586 (symprint_, stack_print_, reduce_print_, destruct_, pop)
6587 (report_syntax_error_, translate_): Rename as...
6588 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
6589 (yypop_, yyreport_syntax_error_, yytranslate_): this.
6590
65912004-12-15 Akim Demaille <akim@epita.fr>
6592
6593 * data/lalr1.cc (lex_): Rename as...
6594 (yylex_): this.
6595 Move the trace here.
6596 Take the %name-prefix into account.
6597 Reported by Alexandre Duret-Lutz.
6598
65992004-12-15 Akim Demaille <akim@epita.fr>
6600
6601 Simplify the C++ parser constructor.
6602
6603 * data/lalr1.cc (debug_): Rename as...
6604 (yydebug_): so that the parser's internals are always in the yy*
6605 pseudo namespace.
6606 Adjust uses.
6607 (b4_parse_param_decl): Remove the leading comma as it is now only
6608 called as unique argument list.
6609 (Parser::Parser): Remove the constructor accepting a location and
6610 an initial debugging level.
6611 Remove from the other ctor the argument for the debugging level.
6612 (debug_level_type, debug_level, set_debug_level): New.
6613
6614 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
6615 constructor calls.
6616
66172004-12-15 Akim Demaille <akim@epita.fr>
6618
6619 Remove b4_root related material: failure experiment
6620 (which goal was to allow to derive from a class).
6621
6622 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
6623 definitions and uses.
6624
66252004-12-14 Paul Eggert <eggert@cs.ucla.edu>
6626
6627 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
6628 not 2, since it's not portable to subtract 1 from the start of an
6629 array. The new item 0 is never set or used. All uses changed.
6630
6631 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
6632 the default definition of YYLLOC_DEFAULT. Problem reported
6633 by Frank Heckenbach.
6634
66352004-12-12 Paul Eggert <eggert@cs.ucla.edu>
6636
6637 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
6638 the normal case and one for the error case. Just use the
6639 first one uniformly. Problem reported by Frank Heckenbach.
6640 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
6641 use exactly the same macro in both places.
6642 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
6643 so that the normal-case YYRHSLOC works for the error case too.
6644 All uses changed.
6645 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
6646 (YYLLOC_DEFAULT): Use the same macro as glr.c.
6647 * doc/bison.texinfo (Location Default Action): Don't claim that
6648 we have an array of locations. Use the same macro for both glr
6649 and lalr parsers. Mention YYRHSLOC. Mention what happens when
6650 the index is 0.
6651
66522004-12-10 Paul Eggert <eggert@cs.ucla.edu>
6653
6654 * HACKING: Update email addresses to send announcements to.
6655
6656 * configure.ac (AC_INIT): Bump version to 1.875f.
6657
66582004-12-10 Paul Eggert <eggert@cs.ucla.edu>
6659
6660 * NEWS: Version 1.875e.
6661 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
6662
6663 * src/scan-skel.l: Include "complain.h", for "fatal".
6664
6665 * src/relation.h (relation_print, relation_digraph):
6666 Relation sizes are of type relation_node, not size_t (this is
6667 merely a doc fix, since the two types are equivalent).
6668 (relation_transpose): Relation sizes are of type relation_node,
6669 not int.
6670 * src/relation.c: Likewise.
6671 (top, infinity): Now of type relation_node, not int.
6672 (traverse, relation_transpose): Use relation_node, not int.
6673
6674 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
6675 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
6676 (yyparse): Remove unused local introduced in 2004-10-25 patch.
6677
6678 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
6679 specifying whether the test should be skipped. Use it tp
6680 specify that the [%defines %skeleton "lalr1.cc"] tests currently
6681 fail on some hosts, and should be skipped.
6682
66832004-12-08 Paul Eggert <eggert@cs.ucla.edu>
6684
6685 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
6686 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
6687 unless otherwise specified below.
6688
6689 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
6690 to allocate kernel_base, kernel_items, kernel_size, since
6691 they needn't be initialized to 0.
6692 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
6693 * src/closure.c (new_closure): Likewise, for itemset.
6694 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
6695 * src/lalr.c (set_goto_map): Likewise, for temp_map.
6696 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
6697 (build_relations): Likewise for edge, states1, includes.
6698 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
6699 * src/reader.c (packgram): Likewise, for ritem, rules.
6700 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
6701 * src/relation.c (relation_digraph): Likewise for VERTICES.
6702 (relation_transpose): Likewise for new_R, end_R.
6703 * src/symtab.c (symbols_token_translations_init): Likewise for
6704 token_translations.
6705 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
6706 (token_actions): Likewise for yydefact, actrow, conflrow,
6707 conflict_list.
6708 (save_column): Likewise for froms[symno], tos[symno].
6709 (goto_actions): Likewise for state_count.
6710 (pack_table): Likewise for base, pos, check.
6711 (tables_generate): Likewise for width.
6712
6713 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
6714 for initial core. Just have a separate core, so we needn't worry
6715 about whether kernel_size and kernel_base are initialized.
6716
6717 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
6718 kernel_size, kernel_items): Remove unnecessary initialization.
6719 * src/conflicts.c (conflicts): Likewise.
6720 * src/derives.c (derives): Likewise.
6721 * src/muscle_tablc (muscle_insert): Likewise.
6722 * src/relation.c (relation_digraph): Likewise.
6723 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
6724 conflrow, conflict_table, conflict_list, table, check):
6725 Likewise.
6726
6727 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
6728 This is because all callers pass unsigned int.
6729 * src/closure.h (new_closure): Likewise.
6730
6731 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
6732 (build_relations): Initialize includes[i] in all cases.
6733 * src/reader.c (packgram): Always initialize rules[ruleno].prec
6734 and rules[ruleno].precsym. Initialize members in order.
6735 * src/relation.c (relation_transpose): Always initialize new_R[i]
6736 and end_R[i].
6737 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
6738
6739 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
6740 conflict_list[0] was always 0, but now it isn't initialized.
6741
6742 * src/table.c (table_grow): When conflict_table grew, the grown
6743 area wasn't cleared. Fix this.
6744
6745 * lib/.cvsignore: Add strdup.c, strdup.h.
6746 * m4/.cvsignore: Add strdup.m4.
6747
67482004-12-07 Paul Eggert <eggert@cs.ucla.edu>
6749
6750 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
6751 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
6752 GOTO_NUMBER_MAXIMUM, since we occasionally compute
6753 ngotos + 1 without checking for overflow.
6754 (build_relations): Use END_NODE, not -1, to denote end of edges.
6755 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
6756 build_relations): Use goto_number, not int, for goto numbers.
6757 * src/tables.c (save_column, default_goto): Likewise.
6758
67592004-11-23 Akim Demaille <akim@epita.fr>
6760
6761 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
6762 of #defining from yystype.
6763 Don't typedef yystype, C++ does not need it.
6764 This lets it possible to forward declare it as union.
6765
67662004-11-23 Paul Eggert <eggert@cs.ucla.edu>
6767
6768 * bootstrap (gnulib_modules): Add extensions.
6769 Problem reported by Jim Meyering.
6770
67712004-11-22 Paul Eggert <eggert@cs.ucla.edu>
6772
6773 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
6774 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
6775 src/system.h, src/tables.c: XFREE -> free, to accommodate
6776 recent change to gnulib xalloc.h.
6777 Problem reported by Jim Meyering.
6778
67792004-11-17 Akim Demaille <akim@epita.fr>
6780
6781 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
6782
67832004-11-17 Akim Demaille <akim@epita.fr>,
6784 Alexandre Duret-Lutz <adl@gnu.org>
6785
6786 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
6787 changes.
6788 (YYCDEBUG): Adjust.
6789 Use it instead of cdebug_.
6790 (Parser::debug_stream, Parser::set_debug_stream): New.
6791 (Parser::symprint_): Define cdebug_ for temporary backward
6792 compatibility.
6793 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
6794 debug_stream ().
6795
67962004-11-17 Akim Demaille <akim@epita.fr>
6797
6798 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
6799 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
6800 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
6801 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
6802
68032004-10-27 Paul Eggert <eggert@cs.ucla.edu>
6804
6805 * data/glr.c (yyloc_default): Remove; not used.
6806 Problem reported by Frank Heckenbach.
6807
68082004-10-25 Akim Demaille <akim@epita.fr>
6809
6810 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
6811 Introduce another definition to address simple location arrays.
6812 (yyGLRStack): New member: yyerror_range.
6813 (yyrecoverSyntaxError, yyparse): Update it.
6814 (yyrecoverSyntaxError): Use it when shifting the error token to
6815 have an accurate range, equivalent to the one computed by both
6816 yacc.c and lalr1.cc.
6817 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
6818 that column numbers start at column 0, as per GNU Coding
6819 Standards, the others tests, and the doc.
6820 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
6821 Adjust to the above change (first column is 0).
6822 And adjust the location of the "<error>", now covering the whole
6823 line.
6824
68252004-10-22 Akim Demaille <akim@epita.fr>
6826 and Paul Eggert <eggert@cs.ucla.edu>
6827
6828 Remove some arbitrary limits on goto numbers and relations.
6829 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
6830 initial values, since they're never used.
6831 (set_goto_map): ngotos is now unsigned, so test for overflow
6832 by seeing whether it wraps around to zero.
6833 * src/lalr.h (goto_number): Now size_t, not short int.
6834 (GOTO_NUMBER_MAXIMUM): Remove.
6835 * src/relation.c (relation_print, traverse, relation_transpose):
6836 Check for END_NODE rather than looking at sign.
6837 * src/relation.h (END_NODE): New macro.
6838 (relation_node): Now size_t, not short int.
6839
68402004-10-22 Paul Eggert <eggert@cs.ucla.edu>
6841
6842 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
6843 keyword, not an identifier. Problem reported by Baron Schwartz in
6844 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
6845
68462004-10-11 Akim Demaille <akim@epita.fr>
6847
6848 * src/symtab.c (symbol_check_alias_consistency): Also check
6849 type names, destructors, and printers.
6850 Reported by Alexandre Duret-Lutz.
6851 Recode the handling of associativity and precedence in terms
6852 of symbol_precedence_set.
6853 Accept no redeclaration at all, not even equal to the previous
6854 value.
6855 (redeclaration): New.
6856 Use it to factor redeclaration complaints.
6857 (symbol_make_alias): Don't set the type of the alias, let
6858 symbol_check_alias_consistency do it as for other features.
6859 * src/symtab.h (symbol): Add new member prec_location, and
6860 type_location.
6861 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
6862 * tests/input.at (Incompatible Aliases): New.
6863
68642004-10-09 Paul Eggert <eggert@cs.ucla.edu>
6865
6866 .cvsignore fixes to accommodate gnulib changes,
6867 and the practice of naming build directories "_build".
6868 * .cvsignore: Add "_*". Sort.
6869 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
6870 * m4/.cvsignore: Add "*_gl.m4".
6871
68722004-10-06 Akim Demaille <akim@epita.fr>
6873
6874 * src/parse-gram.y (add_param): Fix the truncation of trailing
6875 spaces.
6876
68772004-10-05 Akim Demaille <akim@epita.fr>
6878
6879 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
6880 whether the reducion was empty or not. This leaves room to
6881 improve the use of YYLLOC_DEFAULT in such a case.
6882 lalr1.cc is still experimental, so changing this is acceptable.
6883 And finally, there are probably not many users who changed the
6884 handling of locations in GLR, so changing is admissible too.
6885
6886 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
6887 empty reduction, set @$ to an empty location ending the previously
6888 stacked symbol.
6889 Adjust uses to make sure the code is triggered on empty
6890 reductions.
6891 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
6892 expected output: empty reductions have empty locations.
6893
68942004-09-29 Akim Demaille <akim@epita.fr>
6895
6896 * data/lalr1.cc: Move towards a more standard C++ coding style
6897 for templates: Class < T > -> Class<T>.
6898
68992004-09-29 Akim Demaille <akim@epita.fr>
6900
6901 * data/lalr1.cc: Reinstall the former ctor, for sake of
6902 compatibility, but warn it will be removed.
6903 Move towards a more standard C++ coding style (i.e., type *var ->
6904 type* var).
6905
69062004-09-27 Paul Eggert <eggert@cs.ucla.edu>
6907
6908 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
6909 since it's less likely to work if NULs are involved in the future.
6910
69112004-09-27 Akim Demaille <akim@epita.fr>
6912
6913 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
6914
69152004-09-27 Akim Demaille <akim@epita.fr>
6916
6917 * data/lalr1.cc (b4_parse_param_decl_1): New.
6918 (b4_parse_param_decl): Use it to have different names between attribute
6919 and argument names.
6920 (b4_cc_constructor_call): Likewise.
6921
69222004-09-24 Akim Demaille <akim@epita.fr>
6923
6924 * src/parse-gram.y (add_param): Strip the leading and trailing
6925 blanks from a formal argument declaration.
6926 (YY_LOCATION_PRINT): New.
6927
69282004-09-24 Akim Demaille <akim@epita.fr>
6929
6930 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
6931 after the location.
6932
69332004-09-24 Akim Demaille <akim@epita.fr>
6934
6935 * doc/bison.texinfo (Table of Symbols): Sort.
6936
69372004-09-21 Akim Demaille <akim@epita.fr>
6938
6939 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
6940 the useless parentheses.
6941 Suggested by Paul Eggert.
6942
69432004-09-20 Akim Demaille <akim@epita.fr>
6944
6945 Let the initial-action act on the look-ahead, and use it for the
6946 "initial push" (corresponding to an hypothetical beginning-of-file).
6947 And let lalr1.cc honor %initial-action.
6948
6949 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
6950 example.
6951 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
6952 (Parser::Parser): Remove the ctor that used to initialize it.
6953 (Parser::parse): Like in the other skeletons, issue the "starting
6954 parse" message before any action.
6955 Honor %initial-action.
6956 Initialize the stacks with the lookahead.
6957 * data/yacc.c: Let $$ and @$ in %initial-action designate the
6958 look-ahead.
6959 Push them in the stacks.
6960 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
6961
69622004-09-20 Akim Demaille <akim@epita.fr>
6963
6964 * doc/bison.texinfo (Initial Action Decl): New.
6965
69662004-09-20 Akim Demaille <akim@epita.fr>
6967
6968 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
6969 clearer criterion to define it.
6970 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
6971 When reducing on an empty RHS, use the latest stacked location as
6972 location.
6973 yylloc is not always available.
6974 * data/glr.c: Likewise.
6975 Also, honor initial-actions.
6976
69772004-09-20 Akim Demaille <akim@epita.fr>
6978
6979 * data/yacc.c (YY_LOCATION_PRINT): New.
6980 Define when we know YYLTYPE's structure, i.e., when the default
6981 YYLLOC_DEFAULT is used.
6982 * data/c.m4 (b4_yysymprint_generate): Use it.
6983 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
6984 value of the result.
6985 (error_start_): Replace with...
6986 (error_range_): this location array.
6987 This allows to replace code relying on the implementation of
6988 locations by portable code.
6989 * data/yacc.c (yylerrsp): Replace with...
6990 (yyerror_range): this.
6991 Every time a token is popped, update yyerror_range[0], to have an
6992 accurate location for the error token.
6993 * data/glr.c (YY_LOCATION_PRINT): New.
6994 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
6995 deference a pointer.
6996 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
6997 report the location in %printers.
6998
6999 * src/scan-skel.l: Instead of abort, report error messages to ease
7000 understanding skeleton scanning failures.
7001
70022004-09-16 Akim Demaille <akim@epita.fr>
7003
7004 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
7005 (iterator, const_iterator): these, to be more in the C++ spirit.
7006 Also, return reverse iterators so that when displaying the stack
7007 we display its bottom first.
7008 (Parser::stack_print_, Parser::reduce_print_): Match the messages
7009 from yacc.c.
7010 We should probably use vector here though.
7011
70122004-09-16 Akim Demaille <akim@epita.fr>
7013
7014 Have more complete shift traces.
7015
7016 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
7017 to report Shifts instead of ad hoc YYDPRINTF invocations,
7018 including for the error token.
7019 * data/lalr1.cc (symprint_): Output the location.
7020 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
7021 output the location within the %printer.
7022 Activate GLR tests, at least to make sure they compile properly.
7023 They still don't pass though.
7024 * tests/calc.at: Adjust expect verbose output, since now "Entering
7025 state..." is on a different line than the "Shifting" message.
7026
70272004-09-08 Akim Demaille <akim@epita.fr>
7028
7029 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
7030 Bison directive from the Bison file to the invocation of this
7031 macro, so that these directives are passed to
7032 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
7033 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
7034 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
7035 the extra Bison directives instead of the whole series.
7036 Change the grammar so that there are recoverable errors, and
7037 unrecoverable errors. Now we can have the parser give up before
7038 consuming the whole input. As a result we now can observe that
7039 the lookahead is freed when needed.
7040 Change the parser source to parse argv[1] instead of a hard coded
7041 string.
7042 Simplify yylex, and give a value and location to EOF.
7043 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
7044 passed directives already coded in the file.
7045 Add some tests to check the location of "error".
7046 For some tests, the C++ parser is correct, and not yacc.c.
7047 For other tests, they provide different, but unsatisfying, values,
7048 so keep the C++ value so that at least one parser is "correct"
7049 according to the test suite.
7050 (Actions after errors): Remove, this is subsumed by the
7051 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
7052
70532004-09-06 Akim Demaille <akim@epita.fr>
7054
7055 * data/lalr1.cc: Adjust the indentation of the labels.
7056 (Parser::pop): New.
7057 Use it.
7058
70592004-09-06 Akim Demaille <akim@epita.fr>
7060
7061 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
7062 argument, an informative message.
7063 Call YY_SYMBOL_PRINT.
7064 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
7065 * data/lalr1.cc (destruct_): Likewise.
7066 In addition, no longer depend on b4_yysymprint_generate and
7067 b4_yydestruct_generate to generate these functions, do it "by
7068 hand".
7069
70702004-09-03 Akim Demaille <akim@epita.fr>
7071
7072 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
7073 invoked, yydestruct the lookahead.
7074 * tests/calc.at (Calculator $1): Update the expected lengths of
7075 traces: there is an added line for the discarded lookahead.
7076 * doc/bison.texinfo (Destructor Decl): Some rewording.
7077 Define "discarded" symbols.
7078
70792004-09-02 Akim Demaille <akim@epita.fr>
7080
7081 * data/lalr1.cc (translate_, destruct_): No reason to be static.
7082
70832004-09-02 Akim Demaille <akim@epita.fr>
7084
7085 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
7086 (YYDSYMPRINTF): Rename as...
7087 (YY_SYMBOL_PRINT): this.
7088 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
7089 two.
7090 Use it instead of direct symprint_ calls.
7091 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
7092 one.
7093
70942004-09-02 Akim Demaille <akim@epita.fr>
7095
7096 * data/lalr1.cc (b4_yysymprint_generate): New.
7097 (symprint_): New member function, defined when YYDEBUG.
7098 Use it consistently instead of token/nterm debugging output by
7099 hand.
7100 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
7101 %printer calls to use cdebug_ when using lalr1.cc.
7102
71032004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
7104
7105 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
7106 with #ifdef YYDEBUG.
7107
71082004-08-26 Akim Demaille <akim@epita.fr>
7109
7110 * doc/bison.texinfo (Implementing Loops): Rename as...
7111 (Implementing Gotos/Loops): this.
7112
71132004-08-13 Paul Eggert <eggert@cs.ucla.edu>
7114
7115 Adjust to latest gnulib.
7116 * bootstrap (gnulib_modules): Add xalloc-die.
7117 Set LC_ALL=C so that file names sort consistently.
7118 Prefer the gnulib copies of gettext.m4, glibc21.m4,
7119 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
7120 uintmax_t.m4, ulonglong.m4.
7121 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
7122 po.m4 since we are now using _gl.m4 instead.
7123
71242004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
7125
7126 * src/scan-action.l: Remove. Scanning of semantic actions is
7127 handled in scan-gram.l.
7128
71292004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
7130
7131 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
7132
7133 * src/location.h (struct): The file member is a uniqstr.
7134 (equal_boundaries): Use UNIQSTR_EQ for comparison.
7135
71362004-07-22 Paul Eggert <eggert@cs.ucla.edu>
7137
7138 Fix bug with non-%union parsers that have printers or destructors,
7139 which led to a Bison core dump. Reported by Peter Fales in
7140 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
7141
7142 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
7143 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
7144 not to our own type.
7145 * src/output.c (symbol_destructors_output, symbol_printers_output):
7146 Don't assume %union.
7147 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
7148 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
7149 UNION-FLAG. All callers changed.
7150 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
7151 Use type char, not unsigned int, when declaring an array of char;
7152 this lets us remove a cast.
7153 (Printers and Destructors): Add non-%union test cases.
7154
71552004-06-21 Paul Eggert <eggert@cs.ucla.edu>
7156
7157 * doc/bison.texinfo: Minor editorial changes, mostly to the new
7158 GLR writeups. E.g., avoid frenchspacing and the future tense,
7159 change "lookahead" to "look-ahead", and change "wrt" to "with
7160 respect to".
7161
71622004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7163
7164 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
7165 New sections, split off from the GLR Parsers section. Put the new
7166 Simple GLR Parser near the start of the GLR section, for clarity.
7167 Rewrite connective text.
7168
71692004-06-21 Frank Heckenbach <frank@g-n-u.de>
7170
7171 * doc/bison.texinfo (Simple GLR Parsers): New section.
7172
71732004-06-21 Paul Eggert <eggert@cs.ucla.edu>
7174
7175 * NEWS, TODO, doc/bison.texinfo:
7176 Use "look-ahead" instead of "lookahead", to be consistent.
7177 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
7178 while we're fixing "look-ahead".
7179 * src/conflicts.c (shift_set): Renamed from shiftset.
7180 (look_ahead_set): Renamed from lookaheadset.
7181 * src/print.c: Likewise.
7182 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
7183 name for "lookahead".
7184 (report_types, usage): Likewise.
7185 * src/getargs.h (report_look_ahead_tokens): Renamed from
7186 report_lookaheads.
7187 * src/lalr.c (compute_look_ahead_tokens): Renamed from
7188 compute_lookaheads.
7189 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
7190 (look_ahead_tokens_print): Renamed from lookaheads_print.
7191 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
7192 state_rule_lookaheads_print.
7193 * src/state.h: Likewise.
7194 (reductions.look_ahead_tokens): Renamed from lookaheads.
7195 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
7196 AT_DATA_LOOKAHEADS_GRAMMAR.
7197
71982004-06-03 Paul Eggert <eggert@cs.ucla.edu>
7199
7200 * README: Update location of patched M4 distribution.
7201
72022004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
7203
7204 Don't assume the C++ compiler takes the same arguments as the C compiler
7205 (trivial change).
7206 * configure.ac (O0CXXFLAGS): New var.
7207 * tests/atlocal.in (CXXFLAGS): Use it.
7208
72092004-05-29 Paul Eggert <eggert@cs.ucla.edu>
7210
7211 Fix some "make check" problems with C++ reported by
7212 Albert Chin-A-Young for Tru64 C++ in this thread:
7213 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
7214
7215 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
7216 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7217 Output to a .cc file for C++, not to a .c file.
7218 * tests/calc.at (AT_CHECK_CALC): Likewise.
7219 * tests/regression.at (AT_CHECK_DANCER): Likewise.
7220 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
7221
72222004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
7223
7224 * tests/calc.at, tests/actions.at: Workaround for SGI
7225 C++ compiler. (trivial change)
7226
72272004-05-27 Paul Eggert <eggert@cs.ucla.edu>
7228
7229 Spent a few hours checking out which prerequisite versions the
7230 current sources actually require. I went all the way back to
7231 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
7232 a seemingly endless set of combinations of versions more recent
7233 than that. The bottom line is that the current sources require
7234 fairly recent versions of the build tools, and it'll be some work
7235 to change this.
7236 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
7237 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
7238 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
7239 Add comments explaining why those particular versions are
7240 currently needed.
7241
7242 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
7243 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
7244 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
7245
7246 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
7247 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
7248
72492004-05-26 Paul Eggert <eggert@cs.ucla.edu>
7250
7251 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
7252 0.11.5. Suggested by Bruno Haible.
7253 * bootstrap: Remove gettext version checking.
7254
7255 * doc/bison.texinfo (Decl Summary): Also mention that %union
7256 can depend on prerequisite types. Problem reported by Tim
7257 Van Holder.
7258
72592004-05-25 Paul Eggert <eggert@cs.ucla.edu>
7260
7261 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
7262 * README-alpha: Don't tell people not to package this.
7263
7264 * bootstrap: Don't assume $(...) works; use `...` instead.
7265 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
7266 gettext better.
7267
7268 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
7269 put into the -d output file, and mention what to do if YYSTYPE is
7270 defined as a macro.
7271
72722004-05-24 Paul Eggert <eggert@cs.ucla.edu>
7273
7274 Undo change made earlier today: it caused autopoint to not bring
7275 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
7276 autopoint's.
7277
7278 * bootstrap: Check that gettext version matches what's in
7279 configure.ac. Warn users to ignore robots.txt ERROR 404.
7280 * bootstrap: Undo today's earlier change (logged below).
7281 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
7282
7283 The gettext version checking is causing more trouble than it's
7284 curing; remove it. Problem reported by Paul Hilfinger.
7285
7286 * bootstrap: Issue a warning that one can expect a message
7287 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
7288 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
7289
72902004-05-23 Paul Eggert <eggert@cs.ucla.edu>
7291
7292 Ensure that the C++ compiler used for testing actually works on a
7293 simple test program; if not, skip the C++-related tests. Problem
7294 reported by Vin Shelton in:
7295 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
7296
7297 * m4/cxx.m4: New file.
7298 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
7299 * tests/atlocal.in (BISON_CXX_WORKS): Add.
7300 * tests/local.at (AT_COMPILE_CXX): Use it.
7301
73022004-05-21 Paul Eggert <eggert@cs.ucla.edu>
7303
7304 * data/glr.c (yylloc): Output this macro even if locations are not
7305 being generated, as the GLR parser needs it even in that case.
7306 Problem reported by Troy A. Johnson
7307 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
7308
7309 * configure.ac (AC_INIT): Update to 1.875e.
7310
73112004-05-21 Paul Eggert <eggert@cs.ucla.edu>
7312
7313 * NEWS: Version 1.875d.
7314 * configure.ac (AC_INIT): Likewise.
7315 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
7316
7317 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
7318 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
7319 lalr1.cc runs afoul of the first, and the last two are no longer
7320 supported by GCC 3.4.0.
7321 * README: Mention GNU m4 1.4 or later; mention m4 patches.
7322 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
7323
73242004-05-06 Paul Eggert <eggert@cs.ucla.edu>
7325
7326 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
7327 unsigned int, for compatibility with latest gnulib hash module.
7328 * src/state.c (state_hash, state_hasher): Likewise.
7329 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
7330 * src/uniqstr.c (hash_uniqstr): Likewise.
7331
73322004-05-03 Paul Eggert <eggert@cs.ucla.edu>
7333
7334 * NEWS: Unescaped newlines are no longer allowed in char & strings.
7335
7336 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
7337 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
7338 character and string literals.
7339 (unexpected_end): New function.
7340 (unexpected_eof): Use it.
7341 (unexpected_newline): New function.
7342 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
7343 actions.
7344
7345 * NEWS: Document %expect-rr.
7346
7347 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
7348 Fix typo by replacing $1 with $option.
7349 Remove more 'intl'-related files.
7350 Don't DEFUN AM_INTL_SUBDIR twice.
7351
7352 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
7353 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
7354 strtoul.c.
7355 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
7356 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
7357 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
7358 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
7359 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
7360 * src/.cvsignore: Add *.output.
7361
7362 * src/parse-gram.y: Put copyright notice inside %{ %} so it
7363 gets copied to the output file.
7364
73652004-04-28 Paul Eggert <eggert@twinsun.com>
7366
7367 Get files from the gnulib and po repositories, instead of relying
7368 on them being in our CVS. Upgrade to latest versions of gnulib
7369 and Automake.
7370
7371 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
7372 * bootstrap: Bootstrap from gnulib and po repositories.
7373 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
7374 * README-cvs: Document these changes. Remove version numbers from
7375 mentions of build tools, since they change so often. Mention Flex.
7376
7377 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
7378 (gl_USE_SYSTEM_EXTENSIONS): Add.
7379 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
7380 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
7381 does this for us.
7382 (AC_ISC_POSIX): Remove; we no longer support this
7383 ancient OS, as it gets in the way of latest Autoconf & gnulib.
7384 (AC_HEADER_STDC): Remove: we now assume C89 or better.
7385 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
7386 Do not check for C89 headers, except for locale.h which is used
7387 by the Yacc library and must port to K&R hosts.
7388 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
7389 Do not check for C89 functions, except for setlocale which is
7390 used by the Yacc library.
7391 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
7392 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
7393 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
7394 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
7395 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
7396 AM_GNU_GETTEXT): Remove; now done by:
7397 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
7398 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
7399 for us.
7400
7401 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
7402 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
7403 Define to empty, as gnulib.mk will do the rest for us.
7404 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
7405 for us.
7406 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
7407 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
7408
7409 * src/files.c: Include gnulib's xstrndup.h.
7410
7411 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
7412 (REALLOC): Use xnrealloc, for likewise.
7413 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
7414 (strnlen, memrchr): Remove decls; functions no longer used.
7415 Include <stpcpy.h>.
7416
7417 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
7418 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
7419 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
7420 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
7421 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
7422 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
7423 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
7424 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
7425 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
7426 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
7427 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
7428 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
7429 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
7430 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
7431 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
7432 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
7433 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
7434 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
7435 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
7436 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
7437 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
7438 Remove, as these files are now generated automatically
7439 by bootstrap or automake.
7440
7441 * po/ChangeLog: Remove: all but one entry was a duplicate
7442 of this file, and I moved that 2000-11-02 entry here.
7443
7444 * config/.cvsignore: Add Makefile, depcomp, install-sh.
7445 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
7446 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
7447 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
7448 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
7449 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
7450 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
7451 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
7452 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
7453 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
7454 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
7455 xstrndup.h.
7456 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
7457 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
7458 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
7459 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
7460 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
7461 * src/.cvsignore: Remove *_.c.
7462
7463
7464 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
7465 support it. (The latest stable gzip doesn't.)
7466
74672004-04-27 Paul Eggert <eggert@twinsun.com>
7468
7469 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
7470 case, as stos_ is now used by destructors due to the 2004-02-09
7471 change.
7472
7473 Remove more K&R C support.
7474 * lib/libiberty.y (PARAMS): Remove. All uses removed.
7475 * lib/subpipe.c (errno): Remove decl.
7476 Include <stdlib.h> unconditionally.
7477 (EXIT_FAILURE): Remove macro.
7478 * src/complain.c (vfprintf, strerror): Remove.
7479 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
7480 unconditionally.
7481 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
7482 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
7483 (strchr, strspn, memchr): Remove decls.
7484 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
7485 unconditionally. Do not declare perror.
7486 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
7487 unconditionally.
7488
7489 * src/complain.c (_): Remove useless defn, as system.h defines this.
7490
7491 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
7492 with latest obstack.h.
7493 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
7494 to procedure types, as obstack.h now does that for us.
7495 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
7496
7497 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
7498 so that this include file can stand alone.
7499 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
7500 does this now. Include subpipe.h first after config.h, to
7501 test whether it can stand alone.
7502
7503 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
7504 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
7505 unused declaration.
7506
7507 * tests/synclines.at (%union synch line): Put a dummy member in
7508 the union, because empty unions aren't allowed in C. Caught
7509 by GCC 3.4.0.
7510
75112004-04-13 Jim Meyering <jim@meyering.net>
7512
7513 * src/conflicts.c (conflicts_print): Correct format string typo:
7514 use `%%' to produce literal `%'. (trivial change)
7515
75162004-03-30 Paul Eggert <eggert@twinsun.com>
7517
7518 * src/getargs.c (version): Update copyright year to 2004.
7519
7520 * data/c.m4 (b4_int_type): Use 'short int' rather than
7521 'short', and similarly for 'long', 'unsigned', etc.
7522 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
7523 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
7524 yy_yypstack, yydumpstack): Likewise.
7525 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
7526 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
7527 Likewise.
7528 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
7529 yy_stack_print, yyparse): Likewise.
7530 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
7531 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
7532 * lib/bitset.c (bitset_print): Likewise.
7533 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
7534 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
7535 * lib/bitsetv.c (bitsetv_dump): Likewise.
7536 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
7537 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
7538 Likewise.
7539 * src/LR0.c (allocate_itemsets): Likewise.
7540 * src/gram.h (rule_number, rule): Likewise.
7541 * src/lalr.h (goto_number): Likewise.
7542 * src/nullable.c (nullable_compute): Likewise.
7543 * src/output.c (prepare_rules): Likewise.
7544 * src/relation.c (relation_print, relation_digraph): Likewise.
7545 * src/relation.h (relation_node): Likewise.
7546 * src/state.h (state_number, transitions, errs, reductions,
7547 struct state): Likewise.
7548 * src/symtab.h (symbol_number, struct symbol): Likewise.
7549 * src/tables.c (vector_number, tally, action_number,
7550 default_goto, goto_actions): Likewise.
7551 * tests/existing.at (GNU Cim Grammar): Likewise.
7552 * tests/regression.at (Web2c Actions): Likewise.
7553
7554 * src/output.c (muscle_insert_short_int_table): Renamed from
7555 muscle_insert_short_table. All uses changed.
7556
75572004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7558
7559 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
7560 (declaration): Replace expected_conflicts with expected_sr_conflicts.
7561 Add %expect-rr rule.
7562
7563 * src/scan-gram.l: Recognize %expect-rr.
7564
7565 * src/conflicts.h (expected_sr_conflicts): Rename from
7566 expected_conflicts.
7567 (expected_rr_conflicts): Declare.
7568
7569 * src/conflicts.c (expected_sr_conflicts): Rename from
7570 expected_conflicts.
7571 (expected_rr_conflicts): Define.
7572 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
7573 for GLR parsers.
7574 Use expected_sr_conflicts in place of expected_conflicts.
7575 Warn if expected_rr_conflicts used in non-GLR parser.
7576
7577 * doc/bison.texinfo: Add documentation for %expect-rr.
7578
75792004-03-08 Paul Eggert <eggert@gnu.org>
7580
7581 Add support for hex token numbers. Suggested by Odd Arild Olsen in
7582 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
7583
7584 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
7585 in lalr1.cc.
7586 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
7587 * src/scan-gram.l (scan_integer): New function.
7588 ({int}): Use it.
7589 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
7590 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
7591 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
7592 Say "long int", not "long", for uniformity with GNU style.
7593
75942004-02-25 Paul Eggert <eggert@twinsun.com>
7595
7596 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
7597 compilers. This fixes a problem with Intel's C++ compiler being
7598 chatty, reported by Guido Trentalancia in
7599 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
7600
76012004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
7602
7603 Support %destructor and merge error locations in lalr1.cc.
7604
7605 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
7606 (Parser::stos_): Define unconditionally.
7607 (Parser::destruct_): New method. Generate its body with
7608 b4_yydestruct_generate.
7609 (Parser::error_start_): New attribute.
7610 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
7611 token which are discarded.
7612 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
7613 error_start_ when erroneous token are discarded.
7614 (Parser::parse) <yyerrlab1>: Compute the location of the error
7615 token so that it covers all the discarded tokens.
7616 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
7617 it can be called with `%skeleton "lalr1.cc"', and do that.
7618
76192004-02-02 Paul Eggert <eggert@twinsun.com>
7620
7621 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
7622 $(top_srcdir)/lib and ../lib. This fixes a bug reported
7623 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
7624 There's no need to mention top_builddir since Automake does that
7625 for us.
7626 (INCLUDES): Remove, as Automake says it's obsolescent.
7627 Contents migrated into AM_CPPFLAGS as described above.
7628 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
7629
76302004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7631
7632 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
7633 (yyreportSyntaxError): Handle case where lookahead token is
7634 YYEMPTY.
7635
76362004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7637
7638 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
7639 resulting parsers are compilable with C++.
7640
76412003-12-23 Paul Eggert <eggert@twinsun.com>
7642
7643 * config/depcomp, config/install-sh: Sync with Automake 1.8.
7644 * src/output.c (output_skeleton): Rename local var.
7645 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
7646 Bison tokens, as this runs afoul of the 2003-10-07 change that
7647 disallowed NUL bytes in character constants or string literals.
7648
7649 * tests/local.at: Require Autoconf 2.59's Autotest.
7650 * tests/testsuite.at: Don't include local.at, since we now assume
7651 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
7652 including it.
7653 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
7654 multiple inclusion warnings.
7655
76562003-12-02 Akim Demaille <akim@epita.fr>
7657
7658 * doc/bison.texinfo (How Can I Reset the Parser): More about start
7659 conditions.
7660 From Bruno Haible.
7661
76622003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
7663
7664 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
7665
76662003-10-07 Paul Eggert <eggert@twinsun.com>
7667
7668 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
7669 if testsuite doesn't exist.
7670
7671 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
7672 literals, unfortunately.
7673 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
7674 Complain about NUL bytes in character constants or string literals.
7675
76762003-10-05 Paul Eggert <eggert@twinsun.com>
7677
7678 * NEWS: Don't document %no-default-prec, as it's still
7679 too experimental.
7680 * doc/bison.texinfo: Document %no-default-prec only if
7681 the defaultprec flag is set. Normally it's not.
7682
76832003-10-04 Paul Eggert <eggert@twinsun.com>
7684
7685 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
7686 non-modifiable lvalue, instead of a modifiable one.
7687 * doc/bison.texinfo (Actions): Document that $$ can
7688 be assigned to. Do not claim that $$ and $N are
7689 array element references: user code should not rely on this.
7690
76912003-10-01 Paul Eggert <eggert@twinsun.com>
7692
7693 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
7694 (grammar_declaration): Use it.
7695 * src/scan-gram.l: New token %no-default-prec.
7696 * tests/conflicts.at: Revamp tests to use %no-default-prec.
7697 * NEWS, doc/bison.texinfo: Document the above.
7698
76992003-10-01 Akim Demaille <akim@epita.fr>
7700
7701 VCG no longer supports long_straight_phase.
7702
7703 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
7704 * src/print_graph.c (print_graph): Adjust.
7705
77062003-09-30 Frank Heckenbach <frank@g-n-u.de>
7707 and Paul Eggert <eggert@twinsun.com>
7708
7709 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
7710 Table of Symbols): Document %default-prec.
7711 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
7712 (grammar_declaration): Set default_prec on %default-prec.
7713 * src/scan-gram.l (%default-prec): New token.
7714 * src/reader.h (default_prec): New flag.
7715 * src/reader.c: Likewise.
7716 (packgram): Handle it.
7717 * tests/conflicts.at (%default-prec without %prec,
7718 %default-prec with %prec, %default-prec 1): New tests.
7719
77202003-09-30 Paul Eggert <eggert@twinsun.com>
7721
7722 * tests/testsuite.at: Include local.at, not input.at, fixing
7723 a typo in the 2003-08-25 patch.
7724
77252003-08-27 Akim Demaille <akim@epita.fr>
7726
7727 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
7728 GCC warnings.
7729
77302003-08-26 Akim Demaille <akim@epita.fr>
7731
7732 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
7733 "<\#" to avoid magic from Gnus when posting parts of this script.
7734
77352003-08-26 Akim Demaille <akim@epita.fr>
7736
7737 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
7738 (Parser::parse): here.
7739 Adjust: nerrs and errstatus is now replaced by...
7740 (Parser::nerrs_, Parser::errstatus_): New.
7741
77422003-08-25 Akim Demaille <akim@epita.fr>
7743
7744 * config/announce-gen, Makefile.cfg: New.
7745 * Makefile.am: Adjust.
7746 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
7747 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
7748
77492003-08-25 Akim Demaille <akim@epita.fr>
7750
7751 When reducing initial empty rules, Bison parser read an initial
7752 location that is not defined. This results in garbage, and that
7753 affects Bison's own parser. Therefore we need (i) to extend Bison
7754 to support a means to initialize this location, and (ii) to use
7755 this CVS Bison to fix CVS Bison's parser.
7756
7757 * src/reader.h, reader.c (epilogue_augment): Remove, replace
7758 with...
7759 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
7760 * src/parse-gram.y: Adjust.
7761 (%initial-action): New.
7762 (%error-verbose): Since we require CVS Bison, there is no reason
7763 not to use it.
7764 * src/scan-gram.l: Adjust.
7765 * src/Makefile.am (YACC): New, to make sure we use our own parser.
7766 * data/yacc.c (yyparse): Use b4_initial_action.
7767
77682003-08-25 Akim Demaille <akim@epita.fr>
7769
7770 * doc/bison.texinfo: Don't promote stdout for error messages.
7771
77722003-08-25 Akim Demaille <akim@epita.fr>
7773
7774 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
7775 From Alexandre Duret-Lutz.
7776
77772003-08-25 Akim Demaille <akim@epita.fr>
7778
7779 Version 1.875c.
7780
77812003-08-25 Akim Demaille <akim@epita.fr>
7782
7783 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
7784 Use them.
7785
77862003-08-25 Akim Demaille <akim@epita.fr>
7787
7788 * data/lalr1.cc (Parser::reduce_print_): New.
7789 Use it.
7790
77912003-08-25 Akim Demaille <akim@epita.fr>
7792
7793 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
7794 error recovery loops. This patch is based on
7795 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
7796 Also, augment the similarity between lalr1.cc and yacc.c.
7797 Note: the locations of error recovery rules are not correct yet.
7798
7799 * data/lalr1.cc: Comment changes to augment the similarity between
7800 lalr1.cc and yacc.c.
7801 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
7802 (yyerrlab1): Remove, but where it used to be (now the bottom part of
7803 yyerrlab), when hitting EOF, pop the whole stack here instead of
7804 merely falling thru the default error handling mechanism.
7805 (yyerrorlab): New label, with the old contents of YYERROR,
7806 plus the following change: pop the stack of rhs corresponding
7807 to the production that invoked YYERROR. That is how Yacc
7808 behaves (required by POSIX).
7809 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
7810 fail.
7811
78122003-08-25 Akim Demaille <akim@epita.fr>
7813
7814 Tune local.at so that people can "autom4te -l autotest calc.at -o
7815 calc" for instance, to extract a sub test suite.
7816
7817 * tests/testsuite.at: Move the initialization, Autotest version
7818 requirement, and AT_TESTED invocation into...
7819 * tests/local.at: here.
7820 * tests/testsuite.at: Include it for compatibility with Autoconf
7821 2.57.
7822 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
7823 be ignore.
7824
78252003-08-04 Paul Eggert <eggert@twinsun.com>
7826
7827 Rework code slightly to avoid gcc -Wtraditional warnings.
7828 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
7829 The returned value is now stored in *YY0. All callers changed.
7830 * src/output.c (merge_output): Adjust to the above change.
7831
78322003-07-26 Paul Eggert <eggert@twinsun.com>
7833
7834 * data/glr.c (YYASSERT): New macro.
7835 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
7836 yyresolveStates, yyprocessOneStack):
7837 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
7838 Derived from a suggestion by Frank Heckenbach.
7839
78402003-07-25 Paul Eggert <eggert@twinsun.com>
7841
7842 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
7843 for portability to K&R C (after ansi2knr, presumably). See
7844 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
7845 by Frank Heckenbach, though I have omitted the structure-initialization
7846 part of his glr-knr.diff patch since I recall that the Portable
7847 C Compiler didn't require that change.
7848
7849 Let the user specify how to allocate and free memory.
7850 Derived from a suggestion by Frank Heckenbach in
7851 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
7852 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
7853 All uses of free, malloc, realloc changed to use these macros,
7854 and unnecessary casts removed.
7855 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
7856
78572003-07-06 Matthias Mann <MatthiasMann@gmx.de>
7858
7859 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
7860 use s.empty() rather than s == "" to test for empty string; see
7861 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
7862 (trivial change)
7863
78642003-06-25 Akim Demaille <akim@epita.fr>
7865
7866 * config/depcomp, config/install-sh: Update from masters.
7867
78682003-06-20 Paul Eggert <eggert@twinsun.com>
7869
7870 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
7871 and return properly parenthesized result.
7872 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
7873 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
7874 Remove unnecessary parentheses from uses.
7875 * doc/bison.texinfo (Location Default Action): Describe the
7876 conventions for parentheses.
7877
78782003-06-19 Paul Eggert <eggert@twinsun.com>
7879
7880 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
7881 yyreportTree): Do not assume that size_t is the same width as int,
7882 when printing sizes. Print sizes using an unsigned format.
7883 Problem reported by Frank Heckenbach in
7884 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
7885
7886 Port to Forte Developer 7 C compiler.
7887 * data/glr.c (struct YYLTYPE): If locations are not being used,
7888 declare a single dummy member, as empty structs do not conform
7889 to the C standard.
7890 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
7891 the Forte Developer 7 C compiler complains that end-of-loop
7892 code is not reached.
7893
78942003-06-17 Paul Eggert <eggert@twinsun.com>
7895
7896 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
7897 avoid warnings from picky compilers about redefinition of PARAMS.
7898
78992003-06-17 Paul Eggert <eggert@twinsun.com>
7900
7901 Version 1.875b.
7902
7903 * NEWS: Document 1.875b.
7904
7905 * lib/bbitset.h: Do not include config.h; that's the includer's job.
7906 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
7907 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
7908 Don't use 'index' in comments, as it's a builtin fn on some hosts.
7909 * lib/bitset_stats.c: Include gettext.h unconditionally, as
7910 per recent gettext manual's suggestion.
7911 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
7912 Use prototypes, not old-style definitions.
7913 * lib/lbitset.c (lbitset_unused_clear): Likewise.
7914 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
7915 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
7916 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
7917 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
7918 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
7919 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
7920 vbitset_or_and_cmp, vbitset_copy): Likewise.
7921
7922 * lib/libiberty.h: Do not include config.h; that's the includer's job.
7923 Do not include <stdlib.h>.
7924 (PARAMS): Define unconditionally for C89.
7925 (ATTRIBUTE_NORETURN): Remove.
7926 (ATTRIBUTE_UNUSED): Define unconditionally.
7927
7928 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
7929 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
7930 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
7931 * lib/vbitset.c, lib/vbitset.h: New files.
7932 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
7933 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
7934 from libbitset.
7935
7936 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
7937 `How Can I Reset @code{yyparse}', since texinfo does not allow
7938 arbitrary @ in node names.
7939
7940 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
7941 shouldn't be needed according to the gettext 0.12.1 documentation
7942 but which seem to be needed anyway: codeset.m4 glibc21.m4
7943 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
7944 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
7945 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
7946
7947 * lib/.cvsignore: Add stdbool.h.
7948 * m4/.cvsignore: Add nls.m4, po.m4.
7949
7950 Upgrade to CVS gnulib.
7951 * stdbool_.h: File renamed from stdbool.h.in.
7952 * configure.ac (AM_STDBOOL_H): Invoke this instead of
7953 AC_HEADER_STDBOOL.
7954 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
7955 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
7956 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
7957 (MOSTLYCLEANFILES): New var.
7958 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
7959 (stdbool.h): New rule.
7960 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
7961 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
7962 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
7963 m4/quote.m4: Upgrade to today's gnulib.
7964
7965 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
7966 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
7967 the tests right now.
7968 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
7969 yyerror are declared before use; C99 requires this.
7970
79712003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7972
7973 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
7974 first.
7975 (yyrecoverSyntaxError): Correct the logic for setting and testing
7976 yyerrState.
7977 Correct comment on handling EOF.
7978 Allow states with only a default reduction, rather than failing
7979 (I can't quite reconstruct why these were not allowed before).
7980
7981 Fixes to avoid problem that $-N rules in GLR parsers can cause
7982 buffer overruns, corrupting state.
7983
7984 * src/output.c (prepare_rules): Output max_left_semantic_context
7985 definition.
7986 * src/reader.h (max_left_semantic_context): New variable declaration.
7987 * src/scan-gram.l (max_left_semantic_context): Define.
7988 (handle_action_dollar): Update max_left_semantic_context.
7989 * data/glr.c (YYMAXLEFT): New definition.
7990 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
7991 (yyresolveAction): Ditto.
7992
7993 Fixes to problems with location handling in GLR parsers reported by
7994 Frank Heckenbach (2003/06/05).
7995
7996 * data/glr.c (YYLTYPE): Make trivial if locations not used.
7997 (YYRHSLOC): Add parentheses, and define only if locations used.
7998 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
7999 locations not used.
8000 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
8001 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8002
8003 * tests/cxx-type.at: Exercise location information; update tests
8004 to differentiate output with and without locations.
8005 Remove forward declarations of yylex and yyerror---caused errors
8006 because default YYLTYPE not yet defined.
8007 Change semantic actions to compute strings, rather than printing
8008 them directly (to test proper passing of semantics values). Change
8009 output to prefix notation and update test data and expected results.
8010 (yylex): Track locations.
8011 (stmtMerge): Return value rather than printing, and include arguments
8012 in value.
8013
80142003-06-03 Paul Eggert <eggert@twinsun.com>
8015
8016 Avoid warnings generated by GCC 2.95.4 when Bison is
8017 configured with --enable-gcc-warnings.
8018 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
8019 yy::]b4_parser_class_name[::translate_,
8020 yy::Stack::operator[] (unsigned),
8021 yy::Stack::operator[] (unsigned) const,
8022 yy::Slice::operator[] (unsigned),
8023 yy::Slice::operator[] (unsigned) const):
8024 Rename local vars to avoid warnings.
8025 * tests/glr-regression.at (Improper handling of embedded actions
8026 and $-N in GLR parsers): Remove unused local variable from yylex.
8027 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
8028 (void) as arg when not pure, since we now assume C89 when building
8029 Bison. Pacify GCC by using parameter.
8030
80312003-06-02 Paul Eggert <eggert@twinsun.com>
8032
8033 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
8034 yy::Location::lines, yy::Location::columns): Rename arguments
8035 to avoid shadowing; this removes a warning generated by GCC 3.3.
8036
80372003-06-01 Paul Eggert <eggert@twinsun.com>
8038
8039 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
8040 to g++, as GCC 3.3 complains if you do it.
8041 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
8042 everything that WARNING_CFLAGS has, except omit warnings
8043 not suitable for C++.
8044 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
8045 * tests/atlocal.in (CXXFLAGS): New var.
8046 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
8047
8048 Fix a GLR parser bug I reported in February; see
8049 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
8050 The problem was that GLR parsers did not conform to the C standard,
8051 because actions like { $1 = $2 + $3; } expanded to expressions
8052 that invoked YYFILL in separate subexpressions, and YYFILL assigned
8053 to a local variable. The C standard says that expressions
8054 like (var = f ()) + (var = f ()) have undefined behavior.
8055 Another problem was that GCC sometimes issues warnings that
8056 yyfill and its parameters are unused.
8057
8058 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
8059 as possibly unused.
8060 (yyfill): New function.
8061 (YYFILL): Use it.
8062 (yyuserAction): Change type of yynormal to bool, so that it matches
8063 the new yyfill signature. Mark it as possibly unused.
8064
8065
8066 Follow up on a bug I reported in February, where a Bison-generated
8067 parser can loop. Provide a test case and a fix for yacc.c. I
8068 don't have a fix for lalr1.cc or for glr.c, unfortunately.
8069 The original bug report is in:
8070 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
8071
8072 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
8073 macro's size was becoming unwieldy.
8074 (yyerrlab): Do not discard an empty lookahead symbol, as this
8075 might destroy garbage.
8076 (yyerrorlab): New label, with the old contents of YYERROR,
8077 plus the following change: pop the stack of rhs corresponding
8078 to the production that invoked YYERROR. That is how Yacc
8079 behaves, and POSIX requires this behavior.
8080 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
8081 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
8082 Define 'alarm' to do nothing if unistd.h is not available.
8083 Add a new rule "exp: '-' error;" to test the above change to
8084 data/yacc.c. Use 'alarm' to abort any test taking longer than
8085 10 seconds, as it's probably looping.
8086 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
8087 Also, the new yacc.c generates two fewer diagnostics for an
8088 existing test.
8089
80902003-05-24 Paul Eggert <eggert@twinsun.com>
8091
8092 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
8093 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
8094 This fixes a problem reported by John Bowman when the Compaq/HP
8095 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
8096 -ansi -Wall -gall).
8097 * data/yacc.c (union yyalloc): Likewise.
8098 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
8099
8100 Switch from 'int' to 'bool' where that makes sense.
8101
8102 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
8103 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
8104 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
8105 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
8106 Return or accept bool, not int. All callers changed.
8107 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
8108 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
8109 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
8110 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
8111 bitset_or_and_cmp_): Likewise.
8112 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
8113 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
8114 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
8115 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
8116 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
8117 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
8118 bitset_stats_or_and_cmp): Likewise.
8119 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
8120 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
8121 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
8122 ebitset_xor_cmp): Likewise.
8123 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
8124 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
8125 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
8126 lbitset_xor_cmp): Likewise.
8127 * lib/bbitset.h: Include <stdbool.h>.
8128 (struct bitset_vtable): The following members now return bool, not
8129 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
8130 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
8131 or_and_cmp).
8132 * src/conflicts.c (count_rr_conflicts): Likewise.
8133 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
8134 All uses changed.
8135 * lib/ebitset.c (ebitset_obstack_init): Likewise.
8136 * lib/lbitset.c (lbitset_obstack_init): Likewise.
8137 * src/getargs.c (debug_flag, defines_flag, locations_flag,
8138 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
8139 graph_flag): Likewise.
8140 * src/getargs.h (debug_flag, defines_flag, locations_flag,
8141 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
8142 graph_flag): Likewise.
8143 * src/output.c (error_verbose): Likewise.
8144 * src/output.h (error_verbose): Likewise.
8145 * src/reader.c (start_flag, typed): Likewise.
8146 * src/reader.h (typed): Likewise.
8147 * src/getargs.c (LOCATIONS_OPTION): New constant.
8148 (long_options, getargs): Use it.
8149 * src/lalr.c (build_relations): Use bool, not int.
8150 * src/nullable.c (nullable_compute): Likewise.
8151 * src/print.c (print_reductions): Likewise.
8152 * src/tables.c (action_row, pack_vector): Likewise.
8153 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
8154 * src/output.c (prepare): Use it.
8155 * src/output.c (token_definitions_output,
8156 symbol_destructors_output, symbol_destructors_output): Use string,
8157 not boolean integer, to keep track of whether to output separator.
8158 * src/print_graph.c (print_core): Likewise.
8159 * src/state.c (state_rule_lookaheads_print): Likewise.
8160
8161 * config/install-sh: Sync from automake 1.7.5.
8162
81632003-05-14 Paul Eggert <eggert@twinsun.com>
8164
8165 * src/parse-gram.y (rules_or_grammar_declaration): Require a
8166 semicolon after a grammar declaration, in the interest of possible
8167 future changes to the Bison input language.
8168 Do not allow a stray semicolon at the start of the grammar.
8169 (rhses.1): Allow one or more semicolons after any rule, including
8170 just before "|" as required by POSIX.
8171 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
8172 grammar.
8173
81742003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
8175
8176 %parse-param support for lalr1.cc.
8177
8178 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
8179 b4_cc_constructor_calls, b4_cc_constructor_call,
8180 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
8181 definitions.
8182 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
8183 parse-param arguments.
8184 (yy::b4_parser_class_name): Declare instance variables to
8185 hold parse-param arguments.
8186 * tests/calc.at: s/value/semantic_value/ because value clashes
8187 with a member of yy::b4_parser_class_name. Adjust C++ code
8188 to handle %parse-param. Enable %parse-param test in C++.
8189
81902003-05-12 Paul Eggert <eggert@twinsun.com>
8191
8192 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
8193 English a bit. Fix fclose typo. Change "const char" to "char
8194 const", and use ANSI C rather than K&R for "main". Suggest
8195 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
8196 and suggest yy_switch_to_buffer.
8197
81982003-05-05 Paul Eggert <eggert@twinsun.com>
8199
8200 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
8201 C89. This avoids a diagnostic on compilers that define __STDC__
8202 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
8203 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
8204
82052003-05-03 Paul Eggert <eggert@twinsun.com>
8206
8207 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
8208 Do not overrun array bounds.
8209 This should fix a bug reported today by Olatunji Oluwabukunmi in
8210 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
8211
82122003-04-29 Akim Demaille <akim@epita.fr>
8213
8214 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
8215 * src/getargs.c, src/getargs.h: here, as bool, not int.
8216 (nondeterministic_parser): New.
8217 * src/parse-gram.y, src/scan-gram.l: Support
8218 %nondeterministic-parser.
8219 * src/output.c (prepare): Use nondeterministic_parser instead
8220 of glr_parser where appropriate.
8221 * src/tables.c (conflict_row, action_row, save_row)
8222 (token_actions, token_actions, pack_vector): Ditto.
8223
82242003-04-29 Akim Demaille <akim@epita.fr>
8225
8226 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
8227
82282003-04-29 Akim Demaille <akim@epita.fr>
8229
8230 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
8231 with %pure-parser and %locations to exercise the patch from Yakov
8232 Markovitch below.
8233
82342003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
8235
8236 * data/yacc.c: (b4_lex_param): Corrected for the case where
8237 %lex-param is provided and %pure-parser isn't.
8238
82392003-04-27 Paul Eggert <eggert@twinsun.com>
8240
8241 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
8242 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
8243 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
8244 if it is not defined.
8245 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
8246
82472003-04-26 Paul Eggert <eggert@twinsun.com>
8248
8249 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
8250 Declare to be of type suitable for the ninf value itself, not of
8251 type suitable for the corresponding table, since the latter might
8252 be unsigned but the ninf value might be negative. This fixes a
8253 bug reported by Alexandre Duret-Lutz in
8254 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
8255
8256 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
8257 invokes it. We shouldn't invoke it twice because it will attempt
8258 to put error.o in the archive twice. This fixes a glitch reported
8259 by Martin Mokrejs in
8260 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
8261
82622003-04-21 Paul Eggert <eggert@twinsun.com>
8263
8264 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
8265 to gnulib.
8266
82672003-04-21 Yakov Markovitch <Markovitch@iso.ru>
8268
8269 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
8270 Fix obvious typo that results in uncompilable GLR parsers
8271 when both %pure-parser and %locations are used. (trivial change)
8272
82732003-04-17 Paul Eggert <eggert@twinsun.com>
8274
8275 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
8276 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
8277 Do not insert the expected token via unput, as this runs afoul
8278 of a POSIX-compatibility bug in flex 2.5.31.
8279 All uses changed to BEGIN the parent state,
8280 since we no longer insert the expected token via unput.
8281 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
8282 that is no longer emitted after the above change.
8283
8284 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
8285 the first one. This change is from Paul Hilfinger, and it fixes
8286 regression reported by Werner Lemberg in
8287 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
8288
8289 (resolve_sr_conflict): Don't invoke state_errs_set
8290 unless one or more tokens have been explicitly made errors.
8291 Otherwise, the above change causes Bison to abort.
8292
8293 * tests/existing.at (GNU pic Grammar): New test case, taken from
8294 Lemberg's email.
8295
82962003-03-31 Akim Demaille <akim@epita.fr>
8297
8298 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
8299
83002003-03-31 Akim Demaille <akim@epita.fr>
8301
8302 * src/output.c (prepare_symbols): Avoid trailing spaces in the
8303 output.
8304
83052003-03-31 Akim Demaille <akim@epita.fr>
8306
8307 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
8308 From Paul Hilfinger.
8309
83102003-03-29 Akim Demaille <akim@epita.fr>
8311
8312 * m4/error.m4: Do not put under dynamic conditions some code which
8313 expansion is under static control.
8314
83152003-03-29 Akim Demaille <akim@epita.fr>
8316
8317 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
8318
83192003-03-29 Akim Demaille <akim@epita.fr>
8320
8321 * doc/bison.texinfo (Strings are Destroyed): New.
8322
83232003-03-13 Paul Eggert <eggert@twinsun.com>
8324
8325 * .cvsignore: Add configure.lineno.
8326 * src/.cvsignore: Add yacc.
8327 * tests/.cvsignore: Add testsuite.log.
8328 * doc/fdl.texi: Sync with latest FSF version.
8329
83302003-03-12 Paul Eggert <eggert@twinsun.com>
8331
8332 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
8333 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
8334 cursor, instead of leaving it undefined. This fixes a bug
8335 reported by Tim Van Holder in
8336 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
8337 * tests/input.at (Torturing the Scanner): Test the scanner on
8338 an empty input file, which was Tim Van Holder's test case.
8339
8340 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
8341 <sys/resource.h> can be included, include sys/time.h and
8342 sys/times.h first, if available. This works around the SunOS
8343 4.1.4 porting bug reported by Bruce Becker in
8344 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
8345
8346 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
8347 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
8348 AC_HEADER_SYS_WAIT.
8349
8350 Merge changes from gnulib. This was prompted because the CVS
8351 snapshot didn't build on Solaris 7 due to strnlen problems.
8352
8353 These changes need to be merged back into gnulib:
8354 * lib/hash.c: Include <stdbool.h> unconditionally.
8355 * m4/onceonly.m4 (m4_quote): New macro.
8356 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
8357 Quote AC_FOREACH variable-expansions properly.
8358 The 2003-01-03 obstack.h change also needs merging.
8359 {end of changes requiring merging}
8360
8361 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
8362 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
8363 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
8364 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
8365 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
8366 New files, imported from gnulib.
8367 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
8368 above.
8369
8370 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
8371 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
8372 gnulib sources.
8373
8374 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
8375 Add.
8376 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
8377 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
8378 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
8379 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
8380 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
8381 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
8382 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
8383 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
8384 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
8385 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
8386 (jm_PREREQ_ARGMATCH): Remove.
8387 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
8388 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
8389
8390 * src/system.h: Include <stdbool.h> unconditionally.
8391
8392 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
8393 assuming at least C89 in the bitset code for some time now.
8394
83952003-03-03 Akim Demaille <akim@epita.fr>
8396
8397 * ro.po: New.
8398
83992003-03-02 Akim Demaille <akim@epita.fr>
8400
8401 * doc/bison.texinfo (Table of Symbols): Reactivate the
8402 documentation for %lex-param, and %parse-param.
8403
84042003-03-02 Akim Demaille <akim@epita.fr>
8405
8406 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
8407 generate verbose error messages.
8408 Use the number of tokens as an upper bound in yytname, as it
8409 cannot be a non terminal.
8410
84112003-03-02 Akim Demaille <akim@epita.fr>
8412
8413 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
8414 message.
8415
84162003-03-02 Akim Demaille <akim@epita.fr>
8417
8418 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
8419 Use them to exercise yycheck overrun.
8420 Based on Andrew Suffield's grammar.
8421
84222003-03-02 Akim Demaille <akim@epita.fr>
8423
8424 Create tests/local.at for Bison generic testing macros.
8425
8426 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
8427 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
8428 This new file.
8429 * tests/calc.at (AT_CHECK_CALC): Adjust.
8430 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
8431 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
8432 * tests/local.at: here.
8433 (AT_COMPILE_CXX): Tags the tests using it as c++.
8434 Ignore the test if CXX is not functional.
8435
84362003-03-01 Paul Eggert <eggert@twinsun.com>
8437
8438 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
8439 not loc->end, since loc->end might contain garbage and this leads
8440 to undefined behavior on some platforms.
8441 (id_loc, token_start): Use (IF_LINTed) initial values that do not
8442 depend on *loc, so that the reader doesn't give the the false
8443 impression that *loc is initialized.
8444 (<INITIAL>"%%"): Do not bother setting code_start, since its value
8445 does not survive the return.
8446
84472003-03-01 Akim Demaille <akim@epita.fr>
8448
8449 * src/scan-gram.l (code_start): Always initialize it when entering
8450 into yylex, as SC_EPILOGUE is activated *before* the corresponding
8451 yylex invocation. An alternative would be making it static, but
8452 then it starts with the second %%'s beginning, instead of its end.
8453
84542003-02-28 Paul Eggert <eggert@twinsun.com>
8455
8456 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
8457 around a UnixWare 7.1.1 porting bug reported by John Hughes in
8458 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
8459
84602003-02-26 Paul Eggert <eggert@twinsun.com>
8461
8462 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
8463 Remove Sequent/Pyramid discussion (nobody uses them any more).
8464 Merge VMS and MS-DOS discussion; these ports may well be dead
8465 but let's keep mentioning them for now. Put <> around email
8466 addresses. Add copyright notice.
8467
84682003-02-24 Paul Eggert <eggert@twinsun.com>
8469
8470 * data/glr.c (yy_reduce_print): yylineno -> yylno,
8471 to avoid collision with flex use of yylineno.
8472 Problem reported by Bruce Lilly in
8473 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
8474 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
8475 * data/yacc.c (yy_reduce_print): Likewise.
8476
8477 * config/depcomp: Sync with Automake 1.7.3.
8478
84792003-02-21 Akim Demaille <akim@epita.fr>
8480
8481 * data/lalr1.cc: Use temporary variables instead of casts to
8482 change integer types.
8483 Suggested by Paul Eggert.
8484
84852003-02-21 Akim Demaille <akim@epita.fr>
8486
8487 * doc/bison.texinfo: Use "location" consistently to refer to @n,
8488 to avoid confusions with lalr1.cc's notion of Position.
8489 Suggested by Paul Eggert.
8490
84912003-02-20 Akim Demaille <akim@epita.fr>
8492
8493 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
8494 before initial_columns.
8495 (location.hh): Use consistent variable names when defining the
8496 operator<<.
8497 Use "last" so that we subtract from Positions, not from unsigned.
8498
84992003-02-20 Akim Demaille <akim@epita.fr>
8500
8501 * data/lalr1.cc (position.hh): New subfile, including the extended
8502 and Doxygen'ed documentation of class Position.
8503 (location.hh): Use it.
8504 Document a` la Doxygen.
8505 With the help of Benoit Perrot.
8506
85072003-02-20 Akim Demaille <akim@epita.fr>
8508
8509 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
8510 AT_YACC_IF.
8511 Redefine AT_YYERROR_SEES_LOC_IF using it.
8512 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
8513 not defined.
8514 Don't use the location in yy::Parser::error_ and
8515 yy::Parser::print_ when not %locations.
8516 Activate more lalr1.cc tests.
8517
85182003-02-19 Akim Demaille <akim@epita.fr>
8519
8520 * data/lalr1.cc: When displaying a line number, be sure to make it
8521 an int.
8522
85232003-02-19 Akim Demaille <akim@epita.fr>
8524
8525 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
8526 Remove, useless.
8527 (YYABORT, YYACCEPT, YYERROR): New.
8528 * tests/calc.at: Renable the lalr1.cc test.
8529
85302003-02-19 Akim Demaille <akim@epita.fr>
8531
8532 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
8533 error recovery, mixing with/without pops and discarding of the
8534 lookahead.
8535 Exercise YYERROR.
8536 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
8537
85382003-02-17 Paul Eggert <eggert@twinsun.com>
8539
8540 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
8541 * tests/testsuite.at (AT_COMPILE): Use them.
8542 This fixes the testsuite problem reported by Robert Lentz in
8543 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
8544
85452003-02-12 Paul Eggert <eggert@twinsun.com>
8546
8547 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
8548 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
8549 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
8550 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
8551 Check for malloc failure, for consistency with yacc.c.
8552 (yytname_size): Remove, for consistency with yacc.c.
8553
8554 The bug still remains in data/lalr1.cc, as I didn't have time
8555 to fix it there.
8556
85572003-02-06 Akim Demaille <akim@epita.fr>
8558
8559 * configure.ac (GXX): Rename as...
8560 (CXX): this, to keep the original Autoconf semantics.
8561 Require 2.57.
8562 * data/lalr1.cc: Fix b4_copyright invocations.
8563 If YYDEBUG is not defined, don't depend upon name_ being defined.
8564 (location.hh): Include string and iostream.
8565 (Position::filename): New member.
8566 (Position::Position ()): New.
8567 (operator<< (Position)): New.
8568 (operator- (Position, int)): New.
8569 (Location::first, Location::last): Rename as...
8570 (Location::begin, Location::end): these, to mock the conventional
8571 iterator names.
8572 (operator<< (Location)): New.
8573 * tests/atlocal.in (CXX): New.
8574 * tests/testsuite.at (AT_COMPILE_CXX): New.
8575 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
8576 locations in a more synthetic way.
8577 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
8578 lalr1.cc is used.
8579 Adjust the C locations to match those from Emacs: first column is
8580 column 0.
8581 Change all the expected results.
8582 Conform to the GCS: simplify the locations when applicable.
8583 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
8584 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
8585 these CPP macros with the m4 macros new defined by...
8586 (AT_CHECK_PUSHDEFS): this, i.e.:
8587 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
8588 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
8589 New macros.
8590 (AT_CHECK_POPDEFS): Undefine them.
8591 (AT_CHECK_CALC_LALR1_CC): New.
8592 Use it for the first lalr1.cc test.
8593
85942003-02-04 Akim Demaille <akim@epita.fr>
8595
8596 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
8597 Location as is defined.
8598
85992003-02-04 Akim Demaille <akim@epita.fr>
8600
8601 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
8602 name_ being defined.
8603
86042003-02-03 Paul Eggert <eggert@twinsun.com>
8605
8606 * src/gram.h (start_symbol): Remove unused decl.
8607
8608 Use more-consistent naming conventions for local vars.
8609
8610 * src/derives.c (derives_compute): Change type of local var from
8611 int to rule_number.
8612 * src/gram.c (grammar_rules_partial_print): Likewise.
8613 * src/print.c (print_core): Likewise.
8614 * src/reduce.c (reduce_grammar_tables): Likewise.
8615
8616 * src/gram.c (grammar_dump): Change name of item_number *
8617 local var from r to rp.
8618 * src/nullable.c (nullable_compute): Likewise.
8619
8620 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
8621
8622 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
8623 for symbol or symbol_number var.
8624 * src/reader.c (grammar_start_symbol_set): Likewise.
8625 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
8626 Likewise.
8627 * src/state.c (transitions_to): Likewise.
8628 * src/state.h: Likewise.
8629 * src/tables.c (symbol_number_to_vector_number): Likewise.
8630
8631 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
8632 char * var.
8633
8634 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
8635 var.
8636
8637 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
8638 var.
8639
8640 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
8641 Use str, not s, for char * var. Use ch, not c, for character var.
8642 Use size for size var.
8643
8644 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
8645 char * var.
8646 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
8647 uniqstr var.
8648 * src/uniqstr.h: Likewise.
8649
8650 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
8651 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
8652 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
8653 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
8654 param to have same name as that of enum, so that we don't use
8655 "s" to stand for a non-state.
8656
86572003-02-02 Akim Demaille <akim@epita.fr>
8658
8659 * src/scan-skel.l: Scan more than one inert character per yylex
8660 invocation.
8661
86622003-02-01 Paul Eggert <eggert@twinsun.com>
8663
8664 Version 1.875a.
8665
8666 * po/LINGUAS: Add ms.
8667
86682003-01-30 Akim Demaille <akim@epita.fr>
8669
8670 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
8671
86722003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8673
8674 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
8675 of $1.
8676
8677 Changes in response to error report by S. Eken: GLR mode does not
8678 handle negative $ indices or $ indices in embedded rules correctly.
8679 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
8680
8681 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
8682 (b4_rhs_location): Ditto.
8683 (yyfill): New function to copy from stack tree into array
8684 incrementally.
8685 (yyuserAction): Modify to allow incremental move of semantic values
8686 to rhs array when in GLR mode.
8687 Define YYFILL to use in user-defined actions to fill semantic array
8688 as needed.
8689 Remove dummy use of yystack, as there is now a guaranteed use.
8690 (yydoAction): Modify to allow incremental move of semantic values
8691 to rhs array when in GLR mode.
8692 (yyresolveAction): Ditto.
8693 (yyglrShiftDefer): Update comment.
8694 (yyresolveStates): Use X == NULL for pointers, not !X.
8695 (yyglrReduce): Ditto.
8696 (yydoAction): Ditto
8697
8698 * tests/glr-regr1.at: Rename to ...
8699 * tests/glr-regression.at: Add new regression test for the problems
8700 described above (adapted from S. Eken).
8701 Update copyright notice.
8702 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
8703 * tests/Makefile.am: Ditto.
8704
87052003-01-28 Paul Eggert <eggert@twinsun.com>
8706
8707 * data/lalr1.cc: Do not use @output_header_name@ unless
8708 b4_defines_flag is set. This fixes two bugs reported by
8709 Tim Van Holder in
8710 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
8711 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
8712
87132003-01-21 Paul Eggert <eggert@twinsun.com>
8714
8715 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
8716 we don't need to worry about yyerrlab1 being reported as an
8717 "unused label" by non-GCC C compilers. The downside is that if
8718 locations are used then a couple of statements are duplicated each
8719 time YYERROR is invoked, but the upside is that the warnings
8720 should vanish.
8721 (yyerrlab1): Move code to YERROR.
8722 (yyerrlab2): Remove. Change uses back to yyerrlab1.
8723 This reverts some of the 2002-12-27 change.
8724
87252003-01-17 Paul Eggert <eggert@twinsun.com>
8726
8727 * src/output.c (symbol_printers_output): Fix typo that led
8728 to core dump. Problem reported by Antonio Rus in
8729 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
8730
87312003-01-13 Akim Demaille <akim@epita.fr>,
8732 Quoc Peyrot <chojin@lrde.epita.fr>,
8733 Robert Anisko <anisko_r@lrde.epita.fr>
8734
8735 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
8736 when the stacks contain one element, as the loop would otherwise
8737 free the last state, and then use the top state (the one we just
8738 popped). This means that the initial elements will not be freed
8739 explicitly, as is the case in yacc.c; it is not a problem, as
8740 these elements have fake values.
8741
87422003-01-11 Paul Eggert <eggert@twinsun.com>
8743
8744 * NEWS: %expect-violations are now just warnings, reverting
8745 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
8746 bootstrapping problem reported by Matthias Klose; see
8747 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
8748 * src/conflicts.c (conflicts_print): Likewise.
8749 * tests/conflicts.at (%expect not enough, %expect too much,
8750 %expect with reduce conflicts): Likewise.
8751 * doc/bison.texinfo (Expect Decl): Document this. Also mention
8752 that the warning is enabled if the number of conflicts changes
8753 (not necessarily increases).
8754
8755 * src/getargs.c (version): Update copyright year.
8756
87572003-01-09 Akim Demaille <akim@epita.fr>
8758
8759 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
8760
87612003-01-08 Paul Eggert <eggert@twinsun.com>
8762
8763 * Makefile.maint (WGETFLAGS):
8764 New macro, containing "-C off" to disable proxy caches.
8765 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
8766 (rel-check): Use $(WGET) instead of wget.
8767
87682003-01-06 Paul Eggert <eggert@twinsun.com>
8769
8770 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
8771 the GLR paper of Scott, Johnstone and Hussain.
8772
87732003-01-04 Paul Eggert <eggert@twinsun.com>
8774
8775 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
8776 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
8777 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
8778 (EXTRA_LIBRARIES): New var, for liby.a.
8779 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
8780 (EXTRA_SCRIPTS): New var, for yacc.
8781
8782 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
8783 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
8784 Problem reported by Nelson H. F. Beebe.
8785
87862003-01-03 Paul Eggert <eggert@twinsun.com>
8787
8788 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
8789 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
8790 when compiling Bison 1.875's `bitset bset = obstack_alloc
8791 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
8792
8793 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
8794 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
8795 grow to a huge size with typical invocation.
8796
8797 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
8798 Use the pattern recommended by Autoconf 2.57, except also protect
8799 against double-definition.
8800 * src/system.h: Likewise.
8801 Portability issues reported by Nelson H. F. Beebe.
8802
8803 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
8804 All uses changed. Provide a definition in both C and C++.
8805 (yytrue, yyfalse): Define even if defined (__cplusplus).
8806
8807 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
8808 Reported by Nelson H. F. Beebe.
8809
8810 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
8811
88122003-01-02 Paul Eggert <eggert@twinsun.com>
8813
8814 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
8815 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
8816 Bug reported by Nelson H. F. Beebe.
8817
88182003-01-01 Paul Eggert <eggert@twinsun.com>
8819
8820 * Version 1.875.
8821
88222002-12-30 Paul Eggert <eggert@twinsun.com>
8823
8824 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
8825 Moved here from...
8826 (<INITIAL>","): Here. This causes stray "," to be treated
8827 more uniformly.
8828
8829 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
8830 last brace in braced code when not in Yacc mode, for compatibility
8831 with Bison 1.35. This resurrects the 2001-12-15 patch to
8832 src/reader.c.
8833
8834 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
8835 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
8836
88372002-12-28 Paul Eggert <eggert@twinsun.com>
8838
8839 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
8840 that of SYM's type. This fixes Debian bug 168069, reported by
8841 Thomas Olsson.
8842
88432002-12-28 Paul Eggert <eggert@twinsun.com>
8844
8845 Version 1.75f.
8846
8847 Switch back to the Yacc style of conflict reports, undoing some
8848 of the 2002-07-30 change.
8849 * doc/bison.texinfo (Understanding): Use Yacc style for
8850 conflict reports. Also, use new way of locating rules.
8851 * src/conflicts.c (conflict_report):
8852 Renamed from conflict_report_yacc, removing the old
8853 'conflict_report'. Translate the entire conflict report at once,
8854 so that we don't assume that "," has the same interpretation in
8855 all languages.
8856 (conflicts_output): Use Yacc-style conflict report for each state,
8857 instead of our more-complicated style.
8858 (conflicts_print): Use Yacc-style conflict report, except print
8859 the input file name when not emulating Yacc.
8860 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
8861 Conflicted Reduction, %expect not enough, %expect too much,
8862 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
8863 * tests/existing.at (GNU Cim Grammar): Likewise.
8864 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
8865
8866 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
8867 fatal): Don't invoke fflush; it's not needed and it might even be
8868 harmful for stdout, as stdout might not be open.
8869 * src/reduce.c (reduce_print): Likewise.
8870
88712002-12-27 Paul Eggert <eggert@twinsun.com>
8872
8873 Fix a bug where error locations were not being recorded correctly.
8874 This problem was originally reported by Paul Hilfinger in
8875 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
8876
8877 * data/yacc.c (yyparse): New local var yylerrsp, to record the
8878 top of the location stack's error locations.
8879 (yyerrlab): Set it. When discarding a token, push its location
8880 onto yylerrsp so that we don't lose track of the error's end.
8881 (yyerrlab1): Now is only the target of YYERROR, so that we can
8882 properly record the location of the action that failed. For GCC
8883 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
8884 GCC warning about yyerrlab1 being unused if YYERROR is unused.
8885 (yyerrlab2): New label, which yyerrlab now falls through to.
8886 Compute the error's location by applying YYLLOC_DEFAULT to
8887 the locations of all the symbols that went into the error.
8888 * doc/bison.texinfo (Location Default Action): Mention that
8889 YYLLOC_DEFAULT is also invoked for syntax errors.
8890 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8891 Error locations include the locations of all the tokens that were
8892 discarded, not just the last token.
8893
88942002-12-26 Paul Eggert <eggert@twinsun.com>
8895
8896 * src/files.c: Include quote.h.
8897 (compute_output_file_names): Warn if we detect conflicting
8898 outputs to the same file. This should catch the misunderstanding
8899 exemplified by Debian Bug 165349, reported by Bruce Stephens..
8900
8901 * src/conflicts.c (conflicts_print): If the user specifies
8902 "%expect N", report an error if there are any reduce/reduce
8903 conflicts. This is what the manual says should happen.
8904 This fixes Debian bug 130890, reported by Anthony DeRobertis.
8905 * tests/conflicts.at (%expect with reduce conflicts): New test.
8906
8907 Don't use m4_include on relative file names, as it doesn't work as
8908 desired if there happens to be a file with that name under ".".
8909
8910 * m4sugar/version.m4: Remove; it was included but it wasn't used.
8911 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
8912 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
8913 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
8914 * src/output.c (output_skeleton): Use full path names when
8915 specifying a file to include; don't rely on include path, as
8916 it's unreliable when the working file contains a file with
8917 that name.
8918
89192002-12-25 Paul Eggert <eggert@twinsun.com>
8920
8921 Remove obsolete references to bison.simple and bison.hairy.
8922 Problem mentioned by Aubin Mahe in
8923 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
8924 * data/glr.c: Comment fix.
8925 * doc/bison.1: Remove references. Also, mention "yacc".
8926
8927 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
8928 with -g option.
8929
8930 * src/parse-gram.y (declaration): Use enum "report_states" rather
8931 than its numeric value 1.
8932
8933 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
8934 opening a new one. This fixes Debian bug 165349, reported by
8935 Bruce Stephens.
8936
89372002-12-24 Paul Eggert <eggert@twinsun.com>
8938
8939 Version 1.75e.
8940
8941 * Makefile.maint (cvs-update): Don't assume that the shell
8942 supports $(...), as Solaris sh doesn't.
8943
8944 * src/parse-gram.y (lloc_default): Remove test for empty
8945 nonterminals at the end, since it didn't change the result.
8946
89472002-12-24 Paul Eggert <eggert@twinsun.com>
8948
8949 If the user does not define YYSTYPE as a macro, Bison now declares it
8950 using typedef instead of defining it as a macro. POSIX requires this.
8951 For consistency, YYLTYPE is also declared instead of defined.
8952
8953 %union directives can now have a tag before the `{', e.g., the
8954 directive `%union foo {...}' now generates the C code
8955 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
8956 The default union tag is `YYSTYPE', for compatibility with Solaris 9
8957 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
8958 instead of `yyltype'.
8959
8960 `yystype' and `yyltype' are now obsolescent macros instead of being
8961 typedefs or tags; they are no longer documented and will be
8962 withdrawn in a future release.
8963
8964 * data/glr.c (b4_location_type): Remove.
8965 (YYSTYPE): Renamed from yystype.
8966 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
8967 (struct YYLTYPE): Renamed from struct yyltype.
8968 (YYLTYPE): Renamed from yyltype.
8969 (yyltype, yystype): New (and obsolescent) macros,
8970 for backward compatibility.
8971 * data/yacc.c: Likewise.
8972
8973 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
8974 does not specify a union tag. This is for compatibility with
8975 Solaris 9 yacc.
8976
8977 * src/parse-gram.y (add_param): 2nd arg is now char * not char
8978 const *, since it is now modified by stripping surrounding { }.
8979 (current_braced_code): Remove.
8980 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
8981 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
8982 trailing " {...}". Now of type <chars>.
8983 (grammar_declaration): Adjust to bundled tokens.
8984 (code_content): Remove; stripping is now done by add_param.
8985 (print_token_value): Print contents of bundled tokens.
8986 (token_name): New function.
8987
8988 * src/reader.h (braced_code, current_braced_code): Remove.
8989 (token_name): New decl.
8990
8991 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
8992 token_type, not braced_code code_kind. All uses changed.
8993 (SC_PRE_CODE): New state, for scanning after a keyword that
8994 has (or usually has) an immediately-following braced code.
8995 (token_type): New local var, to keep track of which token type
8996 to return when scanning braced code.
8997 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
8998 <INITIAL>"%parse-param", <INITIAL>"%printer",
8999 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
9000 instead of returning a token type immediately.
9001 (<INITIAL>"{"): Set token type.
9002 (<SC_BRACED_CODE>"}"): Use it.
9003 (handle_action_dollar, handle_action_at): Now returns bool
9004 indicating success. Fail if ! current_rule; this prevents a core dump.
9005 (handle_symbol_code_dollar, handle_symbol_code_at):
9006 Remove; merge body into caller.
9007 (handle_dollar, handle_at): Complain in invalid contexts.
9008
9009 * NEWS, doc/bison.texinfo: Document the above.
9010 * NEWS: Fix years and program names in copyright notice.
9011
90122002-12-17 Paul Eggert <eggert@twinsun.com>
9013
9014 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
9015 Reporting, Table of Symbols): Omit mentions of %lex-param and
9016 %parse-param from the documentation for now.
9017
90182002-12-15 Paul Eggert <eggert@twinsun.com>
9019
9020 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
9021 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
9022 lookahead symbol, and which sets yychar in parser actions) and it
9023 disagreed with the Bison documentation. Bug
9024 reported by Andrew Walrond.
9025
9026 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
9027 as the caller now does that.
9028 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
9029 (YYEMPTY): Parenthesize right hand side, since others use it.
9030 (yyparse): Don't assume that our generated code is the only code
9031 that sets yychar.
9032
90332002-12-13 Paul Eggert <eggert@twinsun.com>
9034
9035 Version 1.75d.
9036
9037 POSIX requires a "yacc" command.
9038 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
9039 (MOSTLYCLEANFILES): Add yacc.
9040 (yacc): New rule.
9041 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
9042 as an alias for bison y.
9043
9044 * po/LINGUAS: Add da.
9045
9046 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
9047 problem with latest <getopt.h>.
9048 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
9049
9050 * doc/fdl.texi: Upgrade to 1.2.
9051 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
9052 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
9053 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
9054 gnulib.
9055 * config/install-sh: Sync with autotools.
9056
9057 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
9058 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
9059 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
9060 locations are requested.
9061 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
9062 locations are requested.
9063
90642002-12-12 Paul Eggert <eggert@twinsun.com>
9065
9066 Remove unportable casts and storage allocation tricks.
9067 While we're at it, remove almost all casts, since they
9068 usually aren't needed and are a sign of trouble.
9069
9070 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
9071
9072 * src/derives.c (derives_compute): Do not subtract NTOKENS from
9073 the pointer DSET returned by malloc; this isn't portable.
9074 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
9075 Similarly for DERIVES.
9076 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
9077 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
9078 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
9079
9080 * src/derives.c (derives_compute): Do not bother invoking
9081 int_of_rule_number, since rule numbers are integers.
9082
9083 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
9084 rather than XMALLOC (char, N).
9085
9086 * src/files.c (filename_split): Rewrite to avoid cast.
9087
9088 * src/gram.h (symbol_number_as_item_number,
9089 item_number_as_symbol_number, rule_number_as_item_number,
9090 item_number_as_rule_number):
9091 Now inline functions rather than macros, to avoid casts.
9092 * src/state.h (state_number_as_int): Likewise.
9093 * src/tables.c (state_number_to_vector_number,
9094 symbol_number_to_vector_number): Likewise.
9095
9096 * src/gram.h (int_of_rule_number): Remove; no longer used.
9097
9098 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
9099 since the resulting storage is always stored into.
9100
9101 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
9102 where it's needed.
9103
9104 * src/muscle_tab.c (muscle_m4_output):
9105 Now inline. Return bool, not int.
9106 * src/state.c (state_compare): Likewise.
9107 * src/symtab.c (symbol_check_defined,
9108 symbol_check_alias_consistency, symbol_pack, symbol_translation,
9109 hash_compare_symbol, hash_symbol):
9110 Likewise.
9111 * src/uniqstr.c (uniqstr_print): Likewise.
9112 * src/muscle_tab.c (muscle_m4_output_processor):
9113 New function, to avoid casts.
9114 * src/state.c (state_comparator, stage_hasher): Likewise.
9115 * src/symtab.c (symbol_check_defined_processor,
9116 symbol_check_alias_consistency_processor, symbol_pack_processor,
9117 symbol_translation_processor, hash_symbol_comparator,
9118 hash_symbol_hasher): Likewise.
9119 * src/uniqstr.c (uniqstr_print_processor): Likewise.
9120 * src/muscle_tab.c (muscles_m4_output):
9121 Use new functions instead of casting old functions unportably.
9122 * src/state.c (state_hash_new): Likewise.
9123 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
9124 symbols_token_translations_init):
9125 Likewise.
9126 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
9127
9128 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
9129 var instead of casting to long, to avoid casts.
9130 (prepare_states): Use MALLOC rather than alloca, so that we don't
9131 have to worry about alloca.
9132 * src/state.c (state_hash_lookup): Likewise.
9133
9134 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
9135 local var instead of casting to unsigned char, to avoid casts.
9136
9137 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
9138 STATE_ALLOC): Remove.
9139 (transitions_new, errs_new, reductions_new, state_new): Use malloc
9140 rather than calloc, and use offsetof to avoid allocating slightly
9141 too much storage.
9142 (state_new): Initialize all members.
9143
9144 * src/state.c (state_hash): Use unsigned accumulator, not signed.
9145
9146 * src/symtab.c (symbol_free): Remove; unused.
9147 (symbol_get): Remove cast in lhs of assignment.
9148 (symbols_do): Now static. Accept generic arguments, not
9149 hashing-related ones.
9150
9151 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
9152 (symbol_processor): Remove.
9153 (symbols_do): Remove decl; now static.
9154
9155 * src/system.h (alloca): Remove; decl no longer needed.
9156 (<stddef.h>): Include, for offsetof.
9157 (<inttypes.>, <stdint.h>): Include if available.
9158 (uintptr_t): New type, if system lacks it.
9159 (CALLOC, MALLOC, REALLOC): New macros.
9160 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
9161 new macros.
9162
9163 * src/tables.c (table_size): Now int, to pacify GCC.
9164 (table_grow, table_ninf_remap): Use signed table size.
9165 (save_row): Don't bother initializing locals when not needed.
9166 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
9167 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
9168
9169 * src/vcg.h: Correct misspellings.
9170
9171 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
9172
9173
9174 * src/getargs.c (getargs): Don't assume EOF == -1.
9175
91762002-12-09 Paul Eggert <eggert@twinsun.com>
9177
9178 Change identifier spellings to avoid collisions with names
9179 that are reserved by POSIX.
9180
9181 Don't use names ending in _t, since POSIX reserves them.
9182 For consistency, remove _e and _s endings -- they're weren't
9183 needed to remove ambiguity. All uses changed.
9184 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
9185 turn was just renamed from struniq_t.
9186 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
9187 which in turn was just renamed from struniq_processor_t.
9188 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
9189 in turn was renamed from hash_compare_struniq_t.
9190 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
9191 (state_list): Renamed from state_list_t.
9192 * src/assoc.h (assoc): Renamed from assoc_t.
9193 * src/conflicts.c (enum conflict_resolution): Renamed from
9194 enum conflict_resolution_e.
9195 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
9196 (rule_list): Renamed from rule_list_t.
9197 * src/getargs.h (enum trace): Renamed from enum trace_e.
9198 (enum report): Renamed from enum report_e.
9199 * src/gram.h (item_number): Renamed from item_number_t.
9200 (rule_number): Renamed from rule_number_t.
9201 (struct rule_s): Remove the "rule_s" part; not used.
9202 (rule): Renamed from rule_t.
9203 (rule_filter): Renamed from rule_filter_t.
9204 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
9205 (goto_list): Renamed from goto_list_t.
9206 * src/lalr.h (goto_number): Renamed from goto_number_t.
9207 * src/location.h (location): Renamed from location_t.
9208 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
9209 and moved here from:
9210 * src/muscle_tab.h (muscle_entry_t): here.
9211 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
9212 (rule_list): Renamed from rule_list_t.
9213 * src/print_graph.c (static_graph): Renamed from graph.
9214 * src/reader.h (braced_code): Renamed from braced_code_t.
9215 Remove brace_code_e tag.
9216 * src/relation.h (relation_node): Renamed from relation_node_t.
9217 (relation_nodes): Renamed from relation_nodes_t.
9218 (relation): Renamed from relation_t.
9219 * src/state.h (state_number): Renamed from state_number_t.
9220 (struct state): Renamed from struct state_s.
9221 (state): Renamed from state_t.
9222 (transitions): Renamed from transitions_t. Unused (and
9223 misspelled) transtion_s tag removed.
9224 (errs): Renamed from errs_t. Unused errs_s tag removed.
9225 (reductions): Renamed from reductions_t. Unused tag
9226 reductions_s removed.
9227 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
9228 (struct symbol_list): Renamed from struct symbol_list_s.
9229 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
9230 (struct symbol): Renamed from struct symbol_s.
9231 (symbol): Renamed from symbol_t.
9232 * src/tables.c (vector_number): Renamed from vector_number_t.
9233 (action_number): Renamed from action_t.
9234 * src/tables.h (base_number): Renamed from base_t.
9235 * src/vcg.h (enum color): Renamed from enum color_e.
9236 (enum textmode): Renamed from enum textmode_e.
9237 (enum shape): Renamed from enum shape_e.
9238 (struct colorentry): Renamed from struct colorentry_s.
9239 (struct classname): Renamed from struct classname_s.
9240 (struct infoname): Renamed from struct infoname_s.
9241 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
9242 (enum decision): Renamed from enum decision_e.
9243 (enum orientation): Renamed from enum orientation_e.
9244 (enum alignment): Renamed from enum alignment_e.
9245 (enum arrow_mode): Renamed from enum arrow_mode_e.
9246 (enum crossing_type): Renamed from enum crossing_type_e.
9247 (enum view): Renamed from enum view_e.
9248 (struct node): Renamed from struct node_s.
9249 (node): Renamed from node_t.
9250 (enum linestyle): Renamed from enum linestyle_e.
9251 (enum arrowstyle): Renamed from enum arrowstyle_e.
9252 (struct edge): Renamed from struct edge.
9253 (edge): Renamed from edge_t.
9254 (struct graph): Renamed from struct graph_s.
9255 (graph): Renamed from graph_t.
9256 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
9257 Rename value_t -> value.
9258 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
9259 value_t_as_yystype -> value_as_yystype.
9260
9261 Don't include <errno.h> in the mainstream code, since it
9262 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
9263 * lib/get-errno.c, lib/get-errno.h: New files.
9264 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
9265 get-errno.c.
9266 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
9267 * src/output.c (output_skeleton): Likewise.
9268 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
9269 instead of errno.
9270 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
9271 Likewise.
9272 (handle_action_dollar, handle_action_at): Likewise.
9273 * src/system.h: Do not include <errno.h>.
9274 (TAB_EXT): Renamed from EXT_TAB.
9275 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
9276
9277 Avoid str[a-z]*, since <string.h> reserves that name space.
9278 Change all instances of "struniq" in names to "uniqstr", and
9279 likewise for "STRUNIQ" and "UNIQSTR".
9280 * src/uniqstr.c: Renamed from src/struniq.c.
9281 * src/uniqstr.h: Renamed from src/struniq.h.
9282 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
9283 * src/files.c (strsuffix): Remove; unused.
9284 (concat2): Renamed from stringappend. Now static.
9285 * src/files.h (strsuffix, stringappend): Remove; unused.
9286 * src/parse-gram.y (<chars>): Renamed from <string>.
9287 (<uniqstr>): Renamed from <struniq>.
9288 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
9289 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
9290 (struct graph_s.expand): Renamed from struct graph_s.stretch.
9291 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
9292 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
9293 (N_EXPAND): Renamed from N_STRETCH.
9294
9295 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
9296 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
9297 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
9298 Remove; unused.
9299 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
9300 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
9301 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
9302 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
9303 (BASE_MAXIMUM): Renamed from BASE_MAX.
9304 (BASE_MINIMUM): Renamed from BASE_MIN.
9305 (ACTION_MAX): Remove; unused.
9306 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
9307 Unnecessary casts removed from above defines.
9308
9309
9310 Fix misspelling in names.
9311 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
9312 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
9313 G_NODE_ALIGNEMENT.
9314
9315
9316 * lib/timevar.c (timevar_report): Renamed from time_report,
9317 for consistency with other names.
9318 * lib/timevar.h (timevar_report): New decl.
9319 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
9320
9321
9322 Sort include-file uses.
9323
9324 Reorder all include files under src to be in the order "system.h".
9325 then the ../lib include files in angle brackets (alphabetized),
9326 then the . include files in double-quotes (alphabetized). Fix
9327 dependency breakages encountered in this process, as follows:
9328 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
9329 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
9330 * src/state.h: Include "symtab.h".
9331
93322002-12-08 Paul Eggert <eggert@twinsun.com>
9333
9334 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
9335 since this causes problems when __file__ contains character
9336 sequences like "@" that are treated specially by src/scan-skel.l.
9337 Instead, just use the file's basename. This fixes the bug
9338 reported by Martin Mokrejs in
9339 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
9340
93412002-12-06 Paul Eggert <eggert@twinsun.com>
9342
9343 Add support for rules that do not have trailing semicolons, as
9344 POSIX requires. Improve the quality of locations in Bison
9345 diagnostics.
9346
9347 * src/location.c: Include <quotearg.h>.
9348 (empty_location): Now const.
9349 (location_print): New function. Follow the recommendation of the
9350 GNU Coding Standards for locations that span file boundaries.
9351 * src/location.h: Do not include <quotearg.h>; no longer needed.
9352 (boundary): New type.
9353 (location_t): Use it. This allows locations to span file boundaries.
9354 All member uses changed: file -> start.file or end.file (as needed),
9355 first_line -> start.line, first_column -> start.column,
9356 last_line -> end.line, last_column -> end.column.
9357 (equal_boundaries): New function.
9358 (LOCATION_RESET, LOCATION_STEP): Remove.
9359 (LOCATION_PRINT): Remove. All callers changed to use location_print.
9360 (empty_location): Now const.
9361 (location_print): New decl.
9362 * src/parse-gram.y (lloc_default): New function, which handles
9363 empty locations more accurately.
9364 (YYLLOC_DEFAULT): Use it.
9365 (%token COLON): Remove.
9366 (%token ID_COLON): New token.
9367 (rules): Use it.
9368 (declarations, rules): Remove trailing semicolon.
9369 (declaration, rules_or_grammar_declaration):
9370 Allow empty (";") declaration.
9371 (symbol_def): Remove empty actions; no longer needed.
9372 (rules_or_grammar_declaration): Remove trailing semicolon.
9373 (semi_colon.opt): Remove.
9374 * src/reader.h: Include location.h.
9375 (scanner_cursor): New decl.
9376 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
9377 rolling our own.
9378 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
9379 of *loc.
9380 (STEP): Remove. No longer needed, now that adjust_location does
9381 the work. All uses removed.
9382 (scanner_cursor): New var.
9383 (adjust_location): Renamed from extend_location. It now sets
9384 *loc and adjusts the scanner cursor. All uses changed.
9385 Don't bother testing for CR.
9386 (handle_syncline): Remove location arg; now updates scanner cursor.
9387 All callers changed.
9388 (unexpected_end_of_file): Now accepts start boundary of token or
9389 comment, not location. All callers changed. Update scanner cursor,
9390 not the location.
9391 (SC_AFTER_IDENTIFIER): New state.
9392 (context_state): Renamed from c_context. All uses changed.
9393 (id_loc, code_start, token_start): New local vars.
9394 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
9395 processing of Yacc white space and equivalents here.
9396 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
9397 instead of returning ID immediately, since we need to search for
9398 a subsequent colon.
9399 (<INITIAL>"'", "\""): Save token_start.
9400 (<INITIAL>"%{", "{", "%%"): Save code_start.
9401 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
9402 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
9403 BEGIN context_state at end, not INITIAL.
9404 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
9405 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
9406 Return correct token start.
9407 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
9408 the start of a character, string or multiline comment is found.
9409 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
9410 Reduction): Adjust reported locations to match the more-precise
9411 results now expected.
9412 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
9413 * tests/reduce.at (Useless Rules, Reduced Automaton,
9414 Underivable Rules): Likewise.
9415 * tests/regression.at (Invalid inputs): No longer `expecting ";"
9416 or "|"' now that so many other tokens are allowed by the new grammar.
9417
9418 * src/complain.h (current_file): Remove duplicate decl;
9419 current_file is now owned by files.h.
9420 * src/complain.c, src/scan-gram.l: Include files.h.
9421
94222002-12-06 Paul Eggert <eggert@twinsun.com>
9423
9424 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
9425 promotes to int; it might be unsigned int.
9426 * data/yacc.c (yy_reduce_print): Likewise.
9427
9428 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
9429 be #defined in the prologue, not in the Bison declarations.
9430 This fixes Debian Bug 102878, reported by Shaul Karl.
9431
94322002-12-02 Paul Eggert <eggert@twinsun.com>
9433
9434 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
9435 * lib/strtoul.c: New file, from gnulib.
9436 This fixes a porting bug reported by Peter Klein in
9437 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
9438
94392002-11-30 Paul Eggert <eggert@twinsun.com>
9440
9441 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
9442 and put only a forward declaration in the prologue. This is for
9443 consistency with the other scanner helper functions.
9444
9445 Type clashes now generate warnings, not errors, since it
9446 appears that POSIX may allow some grammars with type clashes.
9447 * src/reader.c (grammar_current_rule_check): Warn about
9448 type clashes instead of complaining.
9449 * tests/input.at (Type Clashes): Expect warnings, not complaints.
9450
9451 Add Yacc library, since POSIX requires it.
9452 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
9453 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
9454 * lib/main.c, lib/yyerror.c: New files.
9455
9456 gram_error can be static; it need not be extern.
9457 * src/reader.h (gram_error): Remove decl.
9458 * src/parse-gram.y (gram_error): Now static. Add static decl.
9459 (print_token_value): Omit parameter names from forward decl,
9460 for consistency.
9461
94622002-11-29 Paul Eggert <eggert@twinsun.com>
9463
9464 * doc/bison.texinfo: Emphasize that yylex and yyerror must
9465 be declared before being used. E.g., one should typically
9466 declare them in the prologue. Use GNU coding style in examples.
9467 Put "const" consistently after the type it modifies. Mention
9468 that C99 supports "inline". Mention that yyerror traditionally
9469 returns "int".
9470
9471 %parse-param and %lex-param now take just one argument, the
9472 declaration; the argument name is deduced from the declaration.
9473
9474 * doc/bison.texinfo (Parser Function, Pure Calling, Error
9475 Reporting, Table of Symbols): Document this.
9476 * src/parse-gram.y (add_param): New function.
9477 (COMMA): Remove.
9478 (declaration): Implement new rule for %parse-param and %lex-param.
9479 * src/scan-gram.l: "," now elicits a warning, rather than being
9480 a token; this is more compatible with byacc.
9481 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
9482
94832002-11-27 Paul Eggert <eggert@twinsun.com>
9484
9485 Rename identifiers to avoid real and potential collisions.
9486
9487 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
9488 to avoid collision with lex macro described by Bruce Lilly in
9489 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
9490 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9491 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
9492 * src/parse-gram.y (print_token_value): Renamed from yyprint.
9493 All uses changed.
9494 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
9495 The name "yycontrol" violates the name space rules, and this stuff
9496 wasn't being used anyway.
9497 (input): Remove action; this stuff wasn't being used.
9498 (gram_error): Rename local variable yylloc -> loc.
9499 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
9500 (YY_DECL): Don't use "yy" at start of local variables.
9501 All uses changed, e.g., yylloc -> loc.
9502 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
9503 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
9504 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
9505 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
9506
9507 * src/parse-gram.y (gram_error): loc is now const *.
9508 * src/reader.h (gram_error): Likewise.
9509
95102002-11-24 Paul Eggert <eggert@twinsun.com>
9511
9512 Version 1.75c.
9513
9514 * tests/actions.at (Actions after errors): Use an output format
9515 more similar to that of the Printers and Destructors test.
9516 Test the position of the ';' token too.
9517 (Printers and Destructors): Likewise.
9518 (Printers and Destructors: %glr-parser): Remove for now, to avoid
9519 unnecessarily alarming people when the test fails.
9520
9521 * data/yacc.c (yyerrlab1): Move this label down, so that the
9522 parser does not discard the lookahead token if the user code
9523 invokes YYERROR. This change is required for POSIX conformance.
9524
9525 * lib/error.c: Sync with gnulib.
9526
95272002-11-22 Paul Eggert <eggert@twinsun.com>
9528
9529 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
9530 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
9531 * lib/xmalloc.c: Likewise.
9532
95332002-11-20 Paul Eggert <eggert@twinsun.com>
9534
9535 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
9536
95372002-11-20 Paul Eggert <eggert@twinsun.com>
9538
9539 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
9540 should use `if (! x) abort ();' rather than `assert (x);', and
9541 anyway it's one less thing to worry about configuring.
9542
9543 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
9544 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
9545 and replace all instances of assert with abort.
9546 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9547 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
9548
9549 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
9550 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
9551 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
9552 hash_find_entry, hash_rehash, hash_insert): Likewise.
9553 * src/conflicts.c (resolve_sr_conflict): Likewise.
9554 * src/lalr.c (set_goto_map, map_goto): Likewise.
9555 * src/nullable.c (nullable_compute): Likewise.
9556 * src/output.c (prepare_rules, token_definitions_output): Likewise.
9557 * src/reader.c (packgram, reader): Likewise.
9558 * src/state.c (state_new, state_free, state_transitions_set,
9559 state_reduction_find): Likewise.
9560 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
9561 symbol_pack): Likewise.
9562 * src/tables.c (conflict_row, pack_vector): Likewise.
9563 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
9564 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
9565 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
9566 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
9567
9568 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
9569 (ARGMATCH_CONSTRAINT): New macro.
9570 (ARGMATCH_ASSERT): Use it.
9571
9572 * src/system.h (verify): New macro.
9573 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
9574 rather than assert.
9575 * src/tables.c (tables_generate): Likewise.
9576
9577 * src/struniq.c (struniq_assert): Now returns void, and aborts
9578 if the assertion is false.
9579 (struniq_assert_p): Remove.
9580 * src/struniq.h: Likewise.
9581
95822002-11-18 Paul Eggert <eggert@twinsun.com>
9583
9584 * data/glr.c (yygetLRActions): Replace `yyindex' with
9585 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
9586 This fixes the regression with Sun ONE Studio 7 cc that I reported in
9587 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
9588
95892002-11-18 Akim Demaille <akim@epita.fr>
9590
9591 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
9592 space.
9593 From Tim Van Holder.
9594
95952002-11-17 Paul Eggert <eggert@twinsun.com>
9596
9597 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
9598 to "SyntaxError" for consistency with my 2002-11-15 change.
9599
9600 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
9601 not define to {}, since this breaks the common use of `YYDPRINTF
9602 ((...));' if a single statement is desired (e.g. before `else').
9603 Work around GCC warnings by surrounding corresponding calls with
9604 {} if needed.
9605 (yyhasResolvedValue): Remove unused function.
9606 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
9607 loop body.
9608 (yyreportSyntaxError): Renamed from yyreportParseError.
9609 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
9610 All uses changed.
9611 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
9612 extern when possible. Remove unused initializations.
9613
96142002-11-16 Akim Demaille <akim@epita.fr>
9615
9616 Augment the similarity between GLR and LALR traces.
9617
9618 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
9619 (YY_REDUCE_PRINT): New.
9620 (yyparse): Use them.
9621 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
9622 YYDPRINT here.
9623 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
9624 state reached after the reduction/recovery, since...
9625 (yyparse, yyprocessOneStack): Report the state we are entering in.
9626
96272002-11-16 Akim Demaille <akim@epita.fr>
9628
9629 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
9630 Add support for --trace=skeleton.
9631 * src/scan-skel.l: %option debug.
9632 Scan strings of non-@ or \n instead of character by character.
9633 (scan_skel): Handle trace_skeleton.
9634 (QPUTS): New.
9635 (@output_parser_name@, @output_header_name@): ``Restore'' their
9636 support (used to be M4 macros).
9637 * data/yacc.c: Quote larger chunks, a la glr.c.
9638 * data/lalr1.cc: Likewise.
9639 The header guards are no longer available, so use some other
9640 string than `YYLSP_NEEDED'.
9641
96422002-11-16 Akim Demaille <akim@epita.fr>
9643
9644 Make the ``Printers and Destructors'' test more verbose, taking
9645 `yacc.c''s behavior as (possibly wrong) reference.
9646
9647 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
9648 instead of fprint on stdout.
9649 Set and report the last_line of the symbols.
9650 Consistently display values and locations.
9651
96522002-11-16 Paul Eggert <eggert@twinsun.com>
9653
9654 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
9655
96562002-11-15 Paul Eggert <eggert@twinsun.com>
9657
9658 * tests/actions.at (Actions after errors): New test case.
9659
9660 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
9661 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
9662 tests/action.at, tests/calc.at, tests/conflicts.at,
9663 tests/cxx-type.at, tests/regression.at:
9664 "parse error" -> "syntax error" for POSIX compatibility.
9665 "parsing stack overflow..." -> "parser stack overflow" so
9666 that code matches Bison documentation.
9667
96682002-11-15 Akim Demaille <akim@epita.fr>
9669
9670 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
9671 take two BRACED_CODE, not two string_content.
9672 Free the scanner's obstack when we are done.
9673 (code_content): New.
9674 * tests/calc.at: Adjust.
9675 * doc/bison.texinfo: Adjust.
9676 Also, make sure to include the `,' for these declarations.
9677
96782002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
9679
9680 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
9681 definition; avoids potential autoreconf problems.
9682
96832002-11-15 Akim Demaille <akim@epita.fr>
9684
9685 Always check the value returned by yyparse.
9686
9687 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
9688 returned by yyparse.
9689 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
9690 Adjust calls.
9691 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
9692 returned by yyparse.
9693
96942002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9695
9696 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
9697 on input.at test.
9698
96992002-11-14 Paul Eggert <eggert@twinsun.com>
9700
9701 * src/output.c (output_skeleton): Call xfopen instead of
9702 duplicating xfopen's body.
9703
9704 Fix bugs reported by Nelson H. F. Beebe in
9705 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
9706
9707 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
9708 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
9709 Group compiler. Instead, use "$CC -E bar.c". Include the .h
9710 file twice in the grammar, as an extra check.
9711
9712 * tests/input.at (Torturing the Scanner): Surround the
9713 backslash-newline tests with "#if 0", to make it less likely that
9714 we'll run into compiler bugs. Bring back solitary \ inside
9715 comment, but add a closing comment to work around HP C bug. Don't
9716 test backslash-newline in C character constant.
9717
97182002-11-14 Akim Demaille <akim@epita.fr>
9719
9720 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
9721 status of the compiler.
9722 Calling `exit 1' is no longer needed.
9723 Reported by Nelson H. F. Beebe.
9724
97252002-11-14 Akim Demaille <akim@epita.fr>
9726
9727 * tests/atlocal.in (CPPFLAGS): We have config.h.
9728 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
9729 New.
9730 * tests/actions.at, tests/calc.at, tests/conflicts.at,
9731 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
9732 * tests/regression.at, tests/torture.at: Use them for all the
9733 grammars that are to be compiled.
9734 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
9735 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
9736 * doc/bison.texinfo (GLR Parsers): Document `inline'.
9737
97382002-11-14 Akim Demaille <akim@epita.fr>
9739
9740 * doc/bison.texinfo: Various formatting changes (alignments in
9741 samples, additional @group/@end group, GCS in samples.
9742 Use @deffn instead of simple @table to define the directives,
9743 macros, variables etc.
9744
97452002-11-13 Paul Eggert <eggert@twinsun.com>
9746
9747 Fix some bugs reported by Albert Chin-A-Young in
9748 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
9749
9750 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
9751 -o c"; the HP C compiler chatters during compilation.
9752 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
9753 * tests/headers.at (export YYLTYPE): Likewise.
9754
9755 * tests/input.at (Torturing the Scanner): Remove lines containing
9756 solitary backslashes, as they tickle a bug in the HP C compiler.
9757
9758 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
9759 comments, since they're not portable. Use GNU coding style.
9760
97612002-11-13 Akim Demaille <akim@epita.fr>
9762
9763 * data/yacc.c: Leave bigger chunks of quoted text.
9764 (YYDSYMPRINTF): New.
9765 Use it to report symbol activities.
9766 * data/glr.c (YYDSYMPRINTF): New.
9767 Use it.
9768
97692002-11-12 Paul Eggert <eggert@twinsun.com>
9770
9771 Version 1.75b.
9772
9773 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
9774 (yyglrReduce): Return yyok, not 0.
9775 This should avoid the enumerated-type warnings reported
9776 by Nelson H. F. Beebe in
9777 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
9778
9779 * lib/bbitset.h (BITSET_INLINE): Remove.
9780 * lib/bitset.h [! BITSET_INLINE]: Remove.
9781 (bitset_set, bitset_reset, bitset_test): Rename local vars
9782 to avoid shadowing warnings by GCC.
9783
9784 * data/glr.c (inline): Remove #define. It's the user's
9785 responsibility to #define it away, just like 'const'.
9786 This fixes one of the bugs reported by Nelson H. F. Beebe in
9787 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
9788
9789 * Makefile.maint (po-check): Scan .l and .y files instead of the
9790 .c and the .h files that they generate. This fixes the bug
9791 reported by Tim Van Holder in:
9792 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
9793 Look for N_ as well as for _. Try to avoid matching #define for
9794 N_ and _.
9795 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
9796 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
9797 * src/scan-gram.l: Revamp regular expressions so that " and '
9798 do not confuse xgettext.
9799
9800 * src/struniq.h (struniq_new): Do not declare the return type
9801 to be 'const'; this violates the C standard.
9802 * src/struniq.c (struniq_new): Likewise.
9803
98042002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
9805
9806 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
9807 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
9808 linker.
9809
98102002-11-12 Akim Demaille <akim@epita.fr>
9811
9812 * Makefile.maint: Sync with Autoconf:
9813 (local_updates): New.
9814
98152002-11-12 Akim Demaille <akim@epita.fr>
9816
9817 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
9818
98192002-11-12 Akim Demaille <akim@epita.fr>
9820
9821 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
9822 locations.
9823
98242002-11-12 Akim Demaille <akim@epita.fr>
9825
9826 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
9827 not yyvalue.
9828
98292002-11-12 Akim Demaille <akim@epita.fr>
9830
9831 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
9832 Use it to test the GLR parser.
9833
98342002-11-12 Akim Demaille <akim@epita.fr>
9835
9836 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
9837 defines it.
9838 * data/glr.c (yystos): New.
9839 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
9840 (YYDSYMPRINT): New.
9841 (yyval): Don't define it, it is handled via M4.
9842 (yyrecoverParseError): Free verbosely the discarded symbols.
9843 * data/yacc.c (yysymprint): Remove, rather...
9844 (b4_yysymprint_generate): invoke.
9845 * data/c.m4 (b4_yysymprint_generate): New.
9846 Accept pointers as arguments, as opposed to the version from
9847 yacc.c.
9848 (b4_yydestruct_generate): Likewise.
9849 * tests/cations.at (Printers and Destructors): Use Bison directives
9850 instead of CPP macros.
9851 Don't rely on internal details.
9852
98532002-11-12 Akim Demaille <akim@epita.fr>
9854
9855 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
9856 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
9857 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
9858 it against YYEMPTY and so forth), work on yytoken (i.e., set
9859 it to YYEMPTY etc.).
9860 (yydestruct): Replace with a b4_yydestruct_generate invocation.
9861 (b4_symbol_actions): Remove.
9862 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
9863 for 0, end-of-input.
9864
98652002-11-12 Akim Demaille <akim@epita.fr>
9866
9867 * doc/bison.texinfo (Destructor Decl): New.
9868
98692002-11-12 Akim Demaille <akim@epita.fr>
9870
9871 * src/tables.c (tables_generate): Use free for pointers that
9872 cannot be NULL, not XFREE.
9873 (pack_vector): Use assert, not fatal, for bound violations.
9874 * src/state.c (state_new): Likewise.
9875 * src/reader.c (reader): Likewise.
9876 * src/lalr.c (set_goto_map): Likewise.
9877 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
9878 the file name.
9879
98802002-11-12 Akim Demaille <akim@epita.fr>
9881
9882 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
9883 Restore.
9884 * src/scan-gram.l (last_string): Is global to the file, not to
9885 yylex.
9886 * src/parse-gram.y (input): Don't append the epilogue here,
9887 (epilogue.opt): do it here, and free the scanner's obstack.
9888 * src/reader.c (epilogue_set): Rename as...
9889 (epilogue_augment): this.
9890 * data/c.m4 (b4_epilogue): Defaults to empty.
9891
98922002-11-12 Akim Demaille <akim@epita.fr>
9893
9894 * src/getargs.c (long_options): Remove duplicates.
9895 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
9896 Remove.
9897 * doc/bison.rnh: Remove.
9898 * doc/bison.texinfo (VMS Invocation): Remove.
9899
99002002-11-12 Akim Demaille <akim@epita.fr>
9901
9902 * src/struniq.h, src/struniq.c (struniq_t): Is const.
9903 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
9904
9905 Use struniq for symbols.
9906
9907 * src/symtab.h (symbol_t): The tag member is a struniq.
9908 (symbol_type_set): Adjust.
9909 * src/symtab.c (symbol_new): Takes a struniq.
9910 (symbol_free): Don't free the tag member.
9911 (hash_compare_symbol_t, hash_symbol_t): Rename as...
9912 (hash_compare_symbol, hash_symbol): these.
9913 Use the fact that tags as struniqs.
9914 (symbol_get): Use struniq_new.
9915 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
9916 Returns a strniq.
9917 * src/reader.h (merger_list, grammar_currentmerge_set): The name
9918 and type members are struniqs.
9919 * src/reader.c (get_merge_function)
9920 (grammar_current_rule_merge_set): Adjust.
9921 (TYPE, current_type): Are struniq.
9922
9923 Use struniq for file names.
9924
9925 * src/files.h, src/files.c (infile): Split into...
9926 (grammar_file, current_file): these.
9927 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
9928 * src/reduce.c (reduce_print): Likewise.
9929 * src/getargs.c (getargs): Likewise.
9930 * src/complain.h, src/complain.c: Likewise.
9931 * src/main.c (main): Call struniqs_new early enough to use it for
9932 file names.
9933 Don't free the input file name.
9934
99352002-11-12 Akim Demaille <akim@epita.fr>
9936
9937 * src/symtab.c (symbol_free): Remove dead deactivated code:
9938 type_name are properly removed.
9939 Don't use XFREE to free items that cannot be NULL.
9940 * src/struniq.h, src/struniq.c: New.
9941 * src/main.c (main): Initialize/free struniqs.
9942 * src/parse-gram.y (%union): Add astruniq member.
9943 (yyprint): Adjust.
9944 * src/scan-gram.l (<{tag}>): Return a struniq.
9945 Free the obstack bit that used to store it.
9946 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
9947
99482002-11-11 Paul Eggert <eggert@twinsun.com>
9949
9950 Revamp to fix many (but not all) of the C- and M4-related quoting
9951 problems. Among other things, this fixes the Bison bug reported
9952 by Jan Hubicka when processing the Bash grammar; see:
9953 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
9954
9955 Use new @ escapes consistently. Represent brackets with @{ and @}
9956 rather than @<:@ and @:>@, since this works a bit better with dumb
9957 editors like vi. Represent @ with @@, since @ is now consistently
9958 an escape. Use @oline@ and @ofile@ rather than __oline__ and
9959 __ofile__, to avoid unexpected expansions. Similarly, use @output
9960 rather than #output.
9961
9962 * data/c.m4 (b4_copyright): Omit file name from comment, since
9963 the file name could contain "*/".
9964 (b4_synclines_flag): Don't quote the 2nd argument; it should already
9965 be quoted. All uses changed.
9966
9967 * data/glr.c: Use new @ escapes consistently.
9968 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
9969 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
9970 Remove, since they couldn't handle arbitrary characters in file
9971 names.
9972 * data/lalr1.cc: Likewise.
9973 * data/yacc.c: Likewise.
9974
9975 * src/files.c (output_infix): Remove; all uses removed.
9976 * src/files.h: Likewise.
9977
9978 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
9979 mishandled funny characters in file names, and anyway it isn't
9980 needed any more.
9981 * data/yacc.c: Likewise.
9982 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
9983
9984 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
9985 * data/yacc.c: Likewise.
9986
9987 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
9988 strings now.
9989 (muscle_init): Quote filename as a C string.
9990 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
9991 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
9992 * src/output.c (escaped_file_name_output): New function.
9993 (prepare_symbols): Quote tokens for M4.
9994 (prepare): Don't insert output_infix, output_prefix,
9995 output_parser_name, output_header_name; this is now down by scan-skel.
9996 Insert skeleton as a C string.
9997
9998 * src/output.c (user_actions_output, symbol_destructors_output,
9999 symbol_printers_output): Quote filenames for C and M4.
10000 * src/reader.c (prologue_augment, epilogue_set): Likewise.
10001
10002 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
10003 escapes other than \\ and \'; this simplifies the code.
10004 (<SC_STRING>): Likewise, for \\ and \".
10005 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
10006 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
10007 Use new escapes @{ and @} for [ and ].
10008
10009 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
10010 them with auto vars.
10011 Switch to new escape scheme, where @ is the escape character uniformly.
10012 Abort if a stray escape character is found. Avoid unbounded input
10013 buffer when parsing non-escaped text.
10014
10015 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
10016 __oline__, #output, $@, and @{ do not have unintended meanings.
10017
100182002-11-09 Paul Eggert <eggert@twinsun.com>
10019
10020 Fix the test failure due to GCC warnings described in
10021 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
10022 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
10023 evaluate to 0 if it's impossible for NINF to be in the respective
10024 table.
10025 (yygetLRActions, yyrecoverParseError): Use them.
10026
10027 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
10028 counted in the token inserted at end of file. Now takes
10029 location_t *, not location_t, so that the location can be
10030 adjusted. All uses changed.
10031
10032 * tests/regression.at (Invalid inputs): Adjust wording in
10033 diagnostic to match the new behavior.
10034
10035 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
10036 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
10037 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
10038 abort ();'. This reduces the runtime of the "Many lookaheads"
10039 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
10040 GCC 3.2.
10041
100422002-11-07 Paul Eggert <eggert@twinsun.com>
10043
10044 * src/parse-gram.y (CHARACTER): Remove unused token.
10045 All uses removed.
10046
10047 * src/scan-gram.l: Remove stack option. We no longer use the
10048 stack, since the stack was never deeper than 1; instead, use the
10049 new auto var c_context to record the stacked value.
10050
10051 Remove nounput option. At an unexpected end of file, we now unput
10052 the minimal input necessary to end cleanly; this simplifies the
10053 code.
10054
10055 Avoid unbounded token sizes where this is easy.
10056
10057 (unexpected_end_of_file): New function.
10058 Use it to systematize the error message on unexpected EOF.
10059 (last-string): Now auto, not static.
10060 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
10061 (scanner_last_string_free): Remove; not used.
10062 (percent_percent_count): Move decl to just before use.
10063 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
10064 not the (never otherwised-used) CHARACTER.
10065
100662002-11-07 Akim Demaille <akim@epita.fr>
10067
10068 Let yyerror always receive the msg as last argument, so that
10069 yyerror can be variadic.
10070
10071 * data/yacc.c (b4_yyerror_args): New.
10072 Use it when calling yyerror.
10073 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
10074 Use it when calling yyerror.
10075 * doc/bison.texinfo (Error Reporting): Adjust.
10076 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
10077 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
10078
100792002-11-06 Akim Demaille <akim@epita.fr>
10080
10081 #line should have quoted strings.
10082 Ideally, this should be done by m4_quotearg.
10083
10084 * src/scan-skel.l: Include quotearg.h.
10085 Quote __ofile__.
10086 * src/output.c (symbol_printers_output)
10087 (symbol_destructors_output): Quote the file name.
10088
100892002-11-06 Akim Demaille <akim@epita.fr>
10090
10091 * tests/regression.at (Invalid inputs): Adjust to the recent
10092 messages.
10093
100942002-11-06 Akim Demaille <akim@epita.fr>
10095
10096 Restore --no-lines.
10097 Reported by Jim Kent.
10098
10099 * data/c.m4 (b4_syncline): New.
10100 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
10101 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
10102 * src/output.c (user_actions_output): Likewise.
10103 (prepare): Define 'b4_synclines_flag'.
10104 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
10105
101062002-11-06 Akim Demaille <akim@epita.fr>
10107
10108 * src/main.c (main): Free `infile'.
10109 * src/scan-gram.l (handle_syncline): New.
10110 Recognize `#line'.
10111 * src/output.c (user_actions_output, symbol_destructors_output)
10112 (symbol_printers_output): Use the location's file name, not
10113 infile.
10114 * src/reader.c (prologue_augment, epilogue_set): Likewise.
10115
101162002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10117
10118 * src/tables.c (matching_state): Don't allow states to match if
10119 either has GLR conflict entries.
10120
101212002-11-05 Paul Eggert <eggert@twinsun.com>
10122
10123 * src/scan-gram.l: Use more accurate diagnostics, e.g.
10124 "integer out of range" rather than "invalid value".
10125 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
10126 accordingly.
10127
10128 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
10129 Also, remove one static variable in the scanner.
10130
10131 * src/scan-gram.l (braces_level): Now auto, not static.
10132 Initialize to zero if the compiler is being picky.
10133 (INITIAL): Clear braces_level instead of incrementing it.
10134 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
10135 as POSIX 1003.1-2001 requires.
10136 * src/system.h (IF_LINT): New macro, taken from coreutils.
10137 * configure.ac: Define "lint" if --enable-gcc-warnings.
10138
101392002-11-05 Akim Demaille <akim@epita.fr>
10140
10141 * src/scan-gram.l: When it starts with `%', complain about the
10142 whole directive, not just that `invalid character: %'.
10143
101442002-11-04 Akim Demaille <akim@epita.fr>
10145
10146 * Makefile.maint: Update from Autoconf.
10147 (update, cvs-update, po-update, do-po-update): New.
10148
101492002-11-04 Akim Demaille <akim@epita.fr>
10150
10151 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
10152 and yyerror.
10153 Have yyerror `use' its arguments.
10154 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
10155 returns true when location & yacc & pure & parse-param.
10156 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
10157
101582002-11-04 Akim Demaille <akim@epita.fr>
10159
10160 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
10161 clashes.
10162 * src/scan-gram.l: Use [\'] instead of ['] to pacify
10163 font-lock-mode.
10164 Use complain_at.
10165 Use quote, not quote_n since LOCATION_PRINT no longer uses the
10166 slot 0.
10167
101682002-11-03 Paul Eggert <eggert@twinsun.com>
10169
10170 * src/reader.c (get_merge_function, grammar_current_rule_check):
10171 Use consistent diagnostics for reporting type name clashes.
10172 Quote the types with <>, for consistency with Yacc.
10173 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
10174
101752002-11-03 Akim Demaille <akim@epita.fr>
10176
10177 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
10178 New.
10179 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
10180 (b4_parse_param): Remove.
10181 Use b4_identification.
10182 Propagate b4_pure_args where needed to pass them to yyerror.
10183 * data/glr.m4 (b4_parse_param): Remove.
10184 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
10185 (b4_lpure_formals): New.
10186 Use b4_identification.
10187 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
10188 b4_user_formals and b4_user_args.
10189 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
10190 (yyreportAmbiguity): When using a pure parser, also need
10191 the location, and the parse-params.
10192 Adjust callers.
10193 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
10194 When using a pure parser, also need the parse-params.
10195 Adjust callers.
10196 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
10197 (%pure-parser + %parse-param) LALR and GLR parsers.
10198 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
10199 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
10200 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
10201 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
10202 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
10203 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
10204 * doc/bison.texinfo: Untabify the whole file.
10205 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
10206 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
10207 (Error Reporting): Adjust to these new directives.
10208 Document %error-verbose, deprecate YYERROR_VERBOSE.
10209
102102002-11-03 Akim Demaille <akim@epita.fr>
10211
10212 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
10213 AT_CHECK_CALC_GLR invocations to use % directives, instead of
10214 command line options.
10215 * tests/cxx-type.at: Formatting changes.
10216
102172002-11-03 Paul Eggert <eggert@twinsun.com>
10218
10219 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
10220 to count columns correctly, and to check for invalid inputs.
10221
10222 Use mbsnwidth to count columns correctly. Account for tabs, too.
10223 Include mbswidth.h.
10224 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
10225 (extend_location): New function.
10226 (YY_LINES): Remove.
10227
10228 Handle CRLF in C code rather than in Lex code.
10229 (YY_INPUT): New macro.
10230 (no_cr_read): New function.
10231
10232 Scan UCNs, even though we don't fully handle them yet.
10233 (convert_ucn_to_byte): New function.
10234
10235 Handle backslash-newline correctly in C code.
10236 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
10237 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
10238 all uses changed.
10239 (tag, splice): New EREs. Do not allow NUL or newline in tags.
10240 Use {splice} wherever C allows backslash-newline.
10241 YY_STEP after space, newline, vertical-tab.
10242 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
10243
10244 (letter, id): Don't assume ASCII; e.g., spell out a-z.
10245
10246 ({int}, handle_action_dollar, handle_action_at): Check for integer
10247 overflow.
10248
10249 (YY_STEP): Omit trailing semicolon, so that it's more like C.
10250
10251 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
10252 as well as \000. Check for UCHAR_MAX, not 255.
10253 Allow \x with an arbitrary positive number of digits, as in C.
10254 Check for overflow here.
10255 Allow \? and UCNs, for compatibility with C.
10256
10257 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
10258 with quote slot used by complain_at.
10259
10260 * tests/input.at: Add tests for backslash-newline, m4 quotes
10261 in symbols, long literals, and funny escapes in strings.
10262
10263 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
10264 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
10265 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
10266 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
10267 * m4/mbswidth.m4: New file, from GNU coreutils.
10268
10269 * doc/bison.texinfo (Grammar Outline): Document // comments.
10270 (Symbols): Document that trigraphs have no special meaning in Bison,
10271 nor is backslash-newline allowed.
10272 (Actions): Document that trigraphs have no special meaning.
10273
10274 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
10275 no longer used.
10276
102772002-11-02 Paul Eggert <eggert@twinsun.com>
10278
10279 * src/reader.c: Don't include quote.h; not needed.
10280 (get_merge_function): Reword warning to be consistent with
10281 type clash diagnostic in grammar_current_rule_check.
10282
10283 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
10284 bug in trigraph handling.
10285
10286 * src/output.c (prepare_symbols): When printing token names,
10287 escape "[" as "@<:@" and likewise for "]".
10288
10289 * src/system.h (errno): Remove declaration, as we are now
10290 assuming C89 or better, and C89 guarantees errno.
10291
102922002-10-30 Paul Eggert <eggert@twinsun.com>
10293
10294 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
10295 Check for close failures.
10296 * src/files.h (xfclose): Return void, not int, since it always
10297 returned zero.
10298 * src/files.c (xfclose): Likewise. Report I/O error if ferror
10299 indicates one.
10300 * src/output.c (output_skeleton): Use xfclose rather than fclose
10301 and ferror. xfclose now checks ferror.
10302
10303 * data/glr.c (YYLEFTMOST_STATE): Remove.
10304 (yyreportTree): Use a stack-based leftmost state. This avoids
10305 our continuing battles with bogus warnings about initializers.
10306
103072002-10-30 Akim Demaille <akim@epita.fr>
10308
10309 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
10310 #if.
10311
103122002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10313
10314 * tests/glr-regr1.at: New test for reported regressions.
10315 * tests/testsuite.at: Add glr-regr1.at test.
10316 * tests/Makefile.am: Add glr-regr1.at test.
10317
103182002-10-24 Paul Eggert <eggert@twinsun.com>
10319
10320 Version 1.75a.
10321
10322 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
10323 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
10324 we use malloc. Don't assume 'A' through 'Z' are contiguous.
10325 Don't assume strdup exists; POSIX says its an XSI extension.
10326 Check for buffer overflow on input.
10327
103282002-10-24 Akim Demaille <akim@epita.fr>
10329
10330 * src/output.c (output_skeleton): Don't disable M4sugar comments
10331 too soon: it results in comments being expanded.
10332 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
10333 first output.
10334
103352002-10-24 Akim Demaille <akim@epita.fr>
10336
10337 * data/yacc.c (m4_int_type): New.
10338 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
10339 char' as only yacc.c wants K&R portability.
10340 * data/glr.c (yysigned_char): Remove.
10341 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
10342 Reported by Quoc Peyrot.
10343
103442002-10-23 Paul Eggert <eggert@twinsun.com>
10345
10346 * src/main.c (main): With --trace=time, report times even if a
10347 non-fatal error occurs. Formerly, the times were reported in some
10348 such cases but not in others.
10349 * src/reader.c (reader): Just return if a complaint has been issued,
10350 instead of exiting, so that 'main' can report times.
10351
103522002-10-22 Akim Demaille <akim@epita.fr>
10353
10354 * src/system.h: Include sys/types.
10355 Reported by Bert Deknuydt.
10356
103572002-10-23 Paul Eggert <eggert@twinsun.com>
10358
10359 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
10360 Suggested by Art Haas.
10361
103622002-10-22 Paul Eggert <eggert@twinsun.com>
10363
10364 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
10365 decl; not needed any more.
10366 * src/main.c (main): Use return to exit, undoing yesterday's change.
10367 The last OS that we could find where this wouldn't work is
10368 SunOS 3.5, and that's too old to worry about now.
10369
10370 * data/glr.c (struct yyltype): Define members even when not
10371 doing locations. This is more consistent with yacc.c, and it
10372 works around the following bug reports:
10373 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
10374 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
10375
10376 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
10377 @acronym consistently. Standardize on "Yacc" instead of "YACC",
10378 "Algol" instead of "ALGOL". Give a bit more history about BNF.
10379
103802002-10-22 Akim Demaille <akim@epita.fr>
10381
10382 * data/README: New.
10383
103842002-10-21 Paul Eggert <eggert@twinsun.com>
10385
10386 Be consistent about 'bool'; the old code used an enum in one
10387 module and an int in another, and this violates the C standard.
10388 * m4/stdbool.m4: New file, from coreutils 4.5.3.
10389 * configure.ac (AC_HEADER_STDBOOL): Add.
10390 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
10391 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
10392 * src/symtab.c (hash_compare_symbol_t): Likewise.
10393 * src/system.h (bool, false, true): Use a definition consistent
10394 with ../lib/hash.c. All uses changed.
10395
10396 * src/complain.c (warning_issued): Renamed from warn_message_count,
10397 so that we needn't worry about integer overflow (!).
10398 Now of type bool. All uses changed.
10399 (complaint_issued): Renamed from complain_message_count; likewise.
10400
10401 * src/main.c (main): Use exit to exit with failure.
10402
10403 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
10404 rather than 1 and 0.
10405 * src/main.c (main): Likewise.
10406 * src/getargs.c (getargs): Likewise.
10407 * src/reader.c (reader): Likewise.
10408
10409 * src/getarg.c (getargs): Remove duplicate code for
10410 "Try `bison --help'".
10411
10412 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
10413 What was that "2" for?
10414
10415 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
10416 * src/getargs.c (usage): Likewise.
10417
10418 * src/getargs.c (getargs): When there are too few operands, report
10419 the last one. When there are too many, report the first extra
10420 one. This is how diffutils does it.
10421
104222002-10-20 Paul Eggert <eggert@twinsun.com>
10423
10424 Remove K&R vestiges.
10425 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
10426 * src/complain.c (VA_START): Remove. Assume prototypes.
10427 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
10428 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
10429 fatal): Assume prototypes.
10430 * src/complain.h: Assume prototypes.
10431 * src/system.h (PARAMS): Remove.
10432 Include <limits.h> unconditionally, since it's guaranteeed even
10433 for a freestanding C89 compiler.
10434 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
10435 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
10436
104372002-10-20 Akim Demaille <akim@epita.fr>
10438
10439 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
10440 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
10441 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
10442 (yyresolveStates, yyresolveAction, yyresolveStack)
10443 (yyprocessOneStack): Use them.
10444 (yy_reduce_print): New.
10445 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
10446
104472002-10-20 Akim Demaille <akim@epita.fr>
10448
10449 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
10450 arguments and output `void'.
10451 (b4_c_function): Rename as...
10452 (b4_c_function_def): this.
10453 (b4_c_function_decl, b4_c_ansi_function_def)
10454 (b4_c_ansi_function_decl): New.
10455 Change the interpretation of the arguments: before `int, foo', now
10456 `int foo, foo'.
10457 * data/yacc.c (yyparse): Prototype and define thanks to these.
10458 Adjust b4_c_function_def uses.
10459 * data/glr.c (yyparse): Likewise, but ANSI only.
10460
104612002-10-20 Akim Demaille <akim@epita.fr>
10462
10463 * src/output.c (prepare): Move the definition of `tokens_number',
10464 `nterms_number', `undef_token_number', `user_token_number_max'
10465 to...
10466 (prepare_tokens): Here.
10467 (prepare_tokens): Rename as...
10468 (prepare_symbols): this.
10469 (prepare): Move the definition of `rules_number' to...
10470 (prepare_rules): here.
10471 (prepare): Move the definition of `last', `final_state_number',
10472 `states_number' to...
10473 (prepare_states): here.
10474 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
10475
104762002-10-20 Akim Demaille <akim@epita.fr>
10477
10478 * src/tables.h, src/tables.c, src/output.c: Comment changes.
10479
104802002-10-20 Akim Demaille <akim@epita.fr>
10481
10482 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
10483 * data/c.m4: here.
10484
104852002-10-20 Akim Demaille <akim@epita.fr>
10486
10487 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
10488 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
10489 `pair'.
10490 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
10491 `name' to...
10492 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
10493 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
10494 These.
10495
104962002-10-19 Paul Eggert <eggert@twinsun.com>
10497
10498 Do not create a temporary file, as that involves security and
10499 cleanup headaches. Instead, use a pair of pipes.
10500 Derived from a suggestion by Florian Krohm.
10501 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
10502 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
10503 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
10504 (BISON_PREREQ_SUBPIPE): Add.
10505 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
10506 Add subpipe.h, subpipe.c.
10507 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
10508 * po/POTFILES.in: Add lib/subpipe.c.
10509 * src/output.c: Include "subpipe.h".
10510 (m4_invoke): Remove decl.
10511 (scan_skel): New decl.
10512 (output_skeleton): Use pipe rather than temporary file for m4 input.
10513 Check that m4sugar.m4 is readable, to avoid deadlock.
10514 Check for pipe I/O error.
10515 * src/scan-skel.l (readpipe): Remove decl.
10516 (scan_skel): New function, to be used in place of m4_invoke.
10517 Read from stream rather than file.
10518
10519 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
10520 float, as this generates a warning on Solaris 8 + GCC 3.2 with
10521 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
10522 this generates a more-accurate value anyway.
10523
10524 * lib/timevar.c (timervar_accumulate): Rename locals to
10525 avoid confusion with similarly-named more-global.
10526 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
10527
10528 * src/output.c (prepare): Use xstrdup to convert char const *
10529 to char *, to avoid GCC warning.
10530
105312002-10-19 Akim Demaille <akim@epita.fr>
10532
10533 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
10534 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
10535 Use them to have `calc.y' ready for %pure-parser.
10536 * data/yacc.c (YYLEX): Pass a yylex return type to
10537 b4_c_function_call.
10538
105392002-10-19 Akim Demaille <akim@epita.fr>
10540
10541 Prototype support of %lex-param and %parse-param.
10542
10543 * src/parse-gram.y: Add the definition of the %lex-param and
10544 %parse-param tokens, plus their rules.
10545 Drop the `_' version of %glr-parser.
10546 Add the "," token.
10547 * src/scan-gram.l (INITIAL): Scan them.
10548 * src/muscle_tab.c: Comment changes.
10549 (muscle_insert, muscle_find): Rename `pair' as `probe'.
10550 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
10551 (muscle_entry_s): The `value' member is no longer const.
10552 Adjust all dependencies.
10553 * src/muscle_tab.c (muscle_init): Adjust: use
10554 MUSCLE_INSERT_STRING.
10555 Initialize the obstack earlier.
10556 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
10557 (muscle_pair_list_grow): New.
10558 * data/c.m4 (b4_c_function_call, b4_c_args): New.
10559 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
10560 * tests/calc.at: Use %locations, not --locations.
10561 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
10562
105632002-10-19 Akim Demaille <akim@epita.fr>
10564
10565 * src/getargs.c (usage): Take status as argument and exit
10566 accordingly.
10567 Report the traditional `Try ... --help' message when status != 0.
10568 (usage, version): Don't take a FILE * as arg, it is pointless.
10569 (getargs): When there is an incorrect number of arguments, make it
10570 an error, and report it GNUlically thanks to `usage ()'.
10571
105722002-10-18 Paul Eggert <eggert@twinsun.com>
10573
10574 * data/glr.c (yyreportParseError): Don't assume that sprintf
10575 yields the length of the printed string, as this is not true
10576 on SunOS 4.1.4. Reported by Peter Klein.
10577
10578 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
10579 * tests/conflicts.at (%nonassoc and eof): Likewise.
10580 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
10581
105822002-10-17 Akim Demaille <akim@epita.fr>
10583
10584 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
10585 * src/getargs.c (trace_types, trace_args): Adjust.
10586 * src/reader.c (grammar_current_rule_prec_set)
10587 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
10588 Standardize error messages.
10589 And s/@prec/%prec/!
10590 (reader): Use trace_flag to enable scanner/parser debugging,
10591 instead of an adhoc scheme.
10592 * src/scan-gram.l: Remove trailing debugging code.
10593
105942002-10-16 Paul Eggert <eggert@twinsun.com>
10595
10596 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
10597 MUSCLE_TAB_H.
10598
10599 * NEWS: Officially drop support for building Bison with K&R C,
10600 since it didn't work anyway and it's not worth worrying about.
10601 * Makefile.maint (wget_files): Remove ansi2knr.c.
10602 (ansi2knr.c-url_prefix): Remove.
10603 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
10604 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
10605 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
10606
106072002-10-15 Paul Eggert <eggert@twinsun.com>
10608
10609 Stop using the "enum_" trick for K&R-style function definitions;
10610 it confused me, and I was the author! Instead, assume that people
10611 who want to use K&R C compilers (when using these modules in GCC,
10612 perhaps?) will run ansi2knr.
10613
10614 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
10615 All uses of "enum_" changed to "enum ".
10616 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
10617 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
10618
10619 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
10620 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
10621 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
10622 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
10623 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
10624 abitset_not, abitset_ones, abitset_or, abitset_or_and,
10625 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
10626 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
10627 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
10628 Use function prototypes; this removes the need for declaring
10629 static functions simply to provide their prototypes.
10630 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
10631 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
10632 bitset_count_, bitset_create, bitset_dump, bitset_first,
10633 bitset_free, bitset_init, bitset_last, bitset_next,
10634 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
10635 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
10636 bitset_print, bitset_release_memory, bitset_toggle_,
10637 bitset_type_choose, bitset_type_get, bitset_type_name_get,
10638 debug_bitset): Likewise.
10639 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
10640 * lib/bitset_stats.c (bitset_log_histogram_print,
10641 bitset_percent_histogram_print, bitset_stats_and,
10642 bitset_stats_and_cmp, bitset_stats_and_or,
10643 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
10644 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
10645 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
10646 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
10647 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
10648 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
10649 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
10650 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
10651 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
10652 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
10653 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
10654 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
10655 bitset_stats_zero): Likewise.
10656 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
10657 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
10658 bitsetv_dump, debug_bitsetv): Likewise.
10659 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
10660 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
10661 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
10662 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
10663 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
10664 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
10665 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
10666 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
10667 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
10668 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
10669 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
10670 Likewise.
10671 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
10672 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
10673 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
10674 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
10675 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
10676 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
10677 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
10678 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
10679 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
10680 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
10681 lbitset_xor_cmp, lbitset_zero): Likewise.
10682
106832002-10-14 Akim Demaille <akim@epita.fr>
10684
10685 Version 1.75.
10686
106872002-10-14 Akim Demaille <akim@epita.fr>
10688
10689 * tests/Makefile.am (maintainer-check-posix): New.
10690
106912002-10-14 Akim Demaille <akim@epita.fr>
10692
10693 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
10694 member.
10695
106962002-10-14 Akim Demaille <akim@epita.fr>
10697
10698 * src/tables.c (table_ninf_remap): base -> tab.
10699 Reported by Matt Rosing.
10700
107012002-10-14 Paul Eggert <eggert@twinsun.com>
10702
10703 * tests/action.at, tests/calc.at, tests/conflicts.at,
10704 tests/cxx-type.at, tests/headers.at, tests/input.at,
10705 tests/regression.at, tests/synclines.at, tests/torture.at:
10706 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
10707 so that the tests still work even if POSIXLY_CORRECT is set.
10708 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
10709
10710 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
10711 for portability to K&R hosts. Fix typo: signed char is guaranteed
10712 only to 127, not to 128.
10713 * data/glr.c (yysigned_char): New type.
10714 * data/yacc.c (yysigned_char): Likewise.
10715 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
10716
107172002-10-13 Paul Eggert <eggert@twinsun.com>
10718
10719 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
10720 true due to limited range of data type" warning from GCC.
10721
10722 * data/c.m4 (b4_token_defines): Protect against double-inclusion
10723 by wrapping enum yytokentype's definition inside #ifndef
10724 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
10725
107262002-10-13 Akim Demaille <akim@epita.fr>
10727
10728 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
10729 Un yy- yyrhs to avoid the name clash with the global YYRHS.
10730
107312002-10-13 Akim Demaille <akim@epita.fr>
10732
10733 * Makefile.maint: Update from Autoconf 2.54.
10734 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
10735
107362002-10-13 Akim Demaille <akim@epita.fr>
10737
10738 * src/print.c (print_state): Separate the list of solved conflicts
10739 from the other items.
10740 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
10741
107422002-10-13 Akim Demaille <akim@epita.fr>
10743
10744 Let nondeterministic skeletons be usable with deterministic
10745 tables.
10746
10747 With the patch, GAWK compiled by GCC without -O2 passes its test
10748 suite using a GLR parser driven by LALR tables. It fails with -O2
10749 because `struct stat' gives two different answers on my machine:
10750 88 (definition of an auto var) and later 96 (memset on this var).
10751 Hence the stack is badly corrumpted. The headers inclusion is to
10752 blame: if I move the awk.h inclusion before GLR's system header
10753 inclusion, the two struct stat have the same size.
10754
10755 * src/tables.c (pack_table): Always create conflict_table.
10756 (token_actions): Always create conflict_list.
10757 * data/glr.c (YYFLAG): Remove, unused.
10758
107592002-10-13 Akim Demaille <akim@epita.fr>
10760
10761 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
10762 (O0FLAGS): New.
10763 (VALGRIND, GXX): New.
10764 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
10765 * tests/bison.in: Run $PREBISON a pre-command.
10766 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
10767 (maintainer-check-g++): New.
10768 * Makefile.am (maintainer-check): New.
10769
107702002-10-13 Akim Demaille <akim@epita.fr>
10771
10772 * data/glr.c: Formatting changes.
10773 Tweak some trace messages to match yacc.c's.
10774
107752002-10-13 Akim Demaille <akim@epita.fr>
10776
10777 GLR parsers sometimes raise parse errors instead of performing the
10778 default reduction.
10779 Reported by Charles-Henry de Boysson.
10780
10781 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
10782 check the length of the traces when %glr.
10783 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
10784 GLR's traces.
10785 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
10786 Test GLR parsers.
10787 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
10788 (yyltype): Remove the yy prefix from the member names.
10789 (yytable): Complete its comment.
10790 (yygetLRActions): Map error action number from YYTABLE from
10791 YYTABLE_NINF to 0.
10792 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
10793 (which was a bug: it should have been YYTABEL_NINF, and yet it was
10794 not satisfying as we could compare an YYACTION computed from
10795 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
10796 only value for error actions.
10797 (yyreportParseError): In verbose parse error messages, don't issue
10798 `error' in the list of expected tokens.
10799 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
10800 next action to perform to match glr.c's decoding.
10801 (yytable): Complete its comment.
10802
108032002-10-13 Paul Eggert <eggert@twinsun.com>
10804
10805 Fix problem reported by Henrik Grubbstroem in
10806 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
10807 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
10808 because the Bison parser reads the second action before reducing
10809 the first one.
10810 * src/scan-gram.l (rule_length): New static var.
10811 Use it to keep track of the rule length in the scanner, since
10812 we can't expect the parser to be in lock-step sync with the scanner.
10813 (handle_action_dollar, handle_action_at): Use this var.
10814 * tests/actions.at (Exotic Dollars): Test for the problem.
10815
108162002-10-12 Paul Eggert <eggert@twinsun.com>
10817
10818 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
10819 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
10820 Include <sys/time.h> when checking for clock_t and struct tms.
10821 Use same include order as source.
10822 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
10823 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
10824
10825 * lib/timevar.c: Update copyright date and clarify comments.
10826 (get_time) [IN_GCC]: Keep the GCC version for reference.
10827
10828 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
10829 GCC version as of today, then merge Bison's changes.
10830 Change "GCC" to "Bison" in copyright notice. timevar.def's
10831 author is Akim, so change that too.
10832
10833 * src/reader.c (grammar_current_rule_check):
10834 Don't worry about the default action if $$ is untyped.
10835 Prevents bogus warnings reported by Jim Gifford in
10836 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
10837
10838 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
10839 * data/glr.c, data/lalr1.cc, data/yacc.c:
10840 Output token definitions before the first part of user declarations.
10841 Fixes compatibility problem reported by Jim Gifford for kbd in
10842 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
10843
108442002-10-11 Paul Eggert <eggert@twinsun.com>
10845
10846 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
10847 (yyparse): here. This undoes some of the 2002-07-25 change.
10848 Compatibility problem reported by Ralf S. Engelschall with
10849 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
10850
108512002-10-11 Akim Demaille <akim@epita.fr>
10852
10853 * tests/regression.at Characters Escapes): New.
10854 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
10855 characters.
10856 Reported by Jan Nieuwenhuizen.
10857
108582002-10-11 Akim Demaille <akim@epita.fr>
10859
10860 * po/id.po: New.
10861
108622002-10-10 Paul Eggert <eggert@twinsun.com>
10863
10864 Portability fixes for bitsets; this also avoids several GCC
10865 warnings.
10866
10867 * lib/abitset.c: Include <stddef.h>, for offsetof.
10868 * lib/lbitset.c: Likewise.
10869
10870 * lib/abitset.c (abitset_bytes): Return a size that is aligned
10871 properly for vectors of objects. Do not assume that adding a
10872 header size to a multiple of a word size yields a value that is
10873 properly aligned for the whole union.
10874 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10875
10876 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
10877 unique names for structures.
10878 * lib/ebitset.c (ebitset_bytes): Likewise.
10879 * lib/lbitset.c (lbitset_bytes): Likewise.
10880
10881 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
10882 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
10883 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
10884 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
10885 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
10886 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
10887 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
10888 to improve the type-checking that GCC can do.
10889 * lib/bitset.c (bitset_op4_cmp): Likewise.
10890 * lib/bitset_stats.c (bitset_stats_count,
10891 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
10892 bitset_stats_copy, bitset_stats_disjoint_p,
10893 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
10894 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
10895 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
10896 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
10897 bitset_stats_and_or_cmp, bitset_stats_andn_or,
10898 bitset_stats_andn_or_cmp, bitset_stats_or_and,
10899 bitset_stats_or_and_cmp): Likewise.
10900 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
10901 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
10902 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
10903 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
10904
10905 * lib/abitset.h: Include bitset.h, not bbitset.h.
10906 * lib/ebitset.h: Likewise.
10907 * lib/lbitset.h: Likewise.
10908
10909 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
10910 All instances of parameters of type enum bitset_opts are now of
10911 type enum_bitset_opts, to conform to the C Standard, and similarly
10912 for enum_bitset_type.
10913 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
10914 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
10915
10916 Do not use "struct bitset_struct" to mean different things in
10917 different modules. Not only is this confusing, it violates
10918 the C Standard, which requires that structure types in different
10919 modules must be compatible if one is to be passed to the other.
10920 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
10921 All instances of "struct bitset_struct *" replaced with "bitset".
10922 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
10923 (union bitset_union, struct abitset_struct, struct ebitset_struct,
10924 struct lbitset_struct, struct bitset_stats_struct): New types.
10925 All uses of struct bitset_struct changed to union bitset_union,
10926 etc.
10927 * lib/abitset.c (struct abitset_struct, abitset,
10928 struct bitset_struct): Remove.
10929 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
10930 struct bitset_struct): Remove.
10931 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
10932 bitset_struct): Remove.
10933 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
10934 Likewise.
10935
10936 Do not call a function of type T using a call that assumes the
10937 function is of a different type U. Standard C requires that a
10938 function must be called with a type that is compatible with its
10939 definition.
10940 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
10941 New decls.
10942 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
10943 New functions.
10944 * lib/ebitset.c (PFV): Remove.
10945 * lib/lbitset.c (PFV): Likewise.
10946 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
10947 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
10948 decls.
10949 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
10950 (ebitset_vtable): Use them.
10951 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
10952 lbitset_xor): New functions.
10953 (lbitset_vtable): Use them.
10954
10955 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
10956 Declare.
10957
10958 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
10959 GCC warning.
10960 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
10961 Use offsetof, for simplicity.
10962
109632002-10-06 Paul Eggert <eggert@twinsun.com>
10964
10965 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
10966 the same width as int. This reapplies a hunk of the 2002-08-12 patch
10967 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
10968 which was inadvertently undone by the 2002-09-30 patch.
10969 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
10970 the same width as int.
10971
109722002-10-04 Paul Eggert <eggert@twinsun.com>
10973
10974 Version 1.50.
10975
10976 * configure.ac (AC_INIT), NEWS: Increment version number.
10977
10978 * doc/bison.texinfo: Minor spelling, grammar, and white space
10979 fixes.
10980 (Symbols): Mention that any negative value returned from yylex
10981 signifies end-of-input. Warn about negative chars. Mention
10982 the portable Standard C character set.
10983
10984 The GNU coding standard says CFLAGS and YFLAGS are reserved
10985 for the installer to set.
10986 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
10987 * src/Makefile.am (AM_CFLAGS): Likewise.
10988 (AM_YFLAGS): Renamed from YFLAGS.
10989
10990 Fix some MAX and MIN problems.
10991 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
10992 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
10993 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
10994 * src/reader.c (reader): Use it.
10995
10996 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
10997 POSIX 1003.1-2001 has removed fgrep.
10998
109992002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
11000
11001 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
11002 interpreted as signed.
11003 * lib/ebitset.c (ebitset_list): Fix bug.
11004
110052002-10-01 Paul Eggert <eggert@twinsun.com>
11006
11007 More fixes for 64-bit hosts and large bitsets.
11008
11009 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
11010 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
11011 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
11012 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
11013 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
11014 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
11015 bitset_count_): Likewise.
11016 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
11017 bitset_first, bitset_last): Likewise.
11018 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
11019 bitset_stats_list_reverse, bitset_stats_size,
11020 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
11021 Likewise.
11022 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11023 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
11024 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
11025 bitsetv_reflexive_transitive_closure): Likewise.
11026 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
11027 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
11028 Likewise.
11029 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
11030 Likewise.
11031
11032 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
11033 Use size_t, not unsigned int, to count bytes.
11034 * lib/abitset.h (abitset_bytes): Likewise.
11035 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
11036 Likewise.
11037 * lib/bitset.h (bitset_bytes): Likewise.
11038 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
11039 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
11040 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11041 * lib/ebitset.c (ebitset_bytes): Likewise.
11042 * lib/ebitset.h (ebitset_bytes): Likewise.
11043 * lib/lbitset.c (lbitset_bytes): Likewise.
11044 * lib/lbitset.h (lbitset_bytes): Likewise.
11045
11046 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
11047 abitset_subset_p, abitset_disjoint_p, abitset_and,
11048 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
11049 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
11050 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
11051 abitset_or_and, abitset_or_and_cmp):
11052 Use bitset_windex instead of unsigned int.
11053 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
11054 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
11055 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
11056 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
11057 Likewise.
11058 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
11059
11060 * lib/bitset.c (bitset_print):
11061 Use proper printf formats for widths of integer types.
11062 * lib/bitset_stats.c (bitset_percent_histogram_print,
11063 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
11064 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11065 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
11066 * lib/lbitset.c (lbitset_bytes): Likewise.
11067
11068 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
11069 BITSET_SIZE_MAX): New macros.
11070 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
11071 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
11072 to BITSET_WINDEX_MAX.
11073
11074 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
11075 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
11076 since we now return the bitset_bindex type (not int).
11077
11078 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
11079 when computing sizes.
11080 * lib/ebitset.c (ebitset_elts_grow): Likewise.
11081
11082 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
11083 and avoid cast to unsigned.
11084
110852002-09-30 Akim Demaille <akim@epita.fr>
11086
11087 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11088 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
11089 Updates from Michael Hayes.
11090
110912002-09-30 Art Haas <ahaas@neosoft.com>
11092
11093 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
11094 invocations.
11095 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
11096 defined.
11097
110982002-09-27 Akim Demaille <akim@epita.fr>
11099
11100 Version 1.49c.
11101
111022002-09-27 Akim Demaille <akim@epita.fr>
11103
11104 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
11105 (Because of AC_LIBSOURCE).
11106
111072002-09-27 Akim Demaille <akim@epita.fr>
11108
11109 Playing with Autoscan.
11110
11111 * configure.ac: Remove the old LIBOBJ tweaks.
11112 (AC_REPLACE_FUNCS): Add strrchr and strtol.
11113 * lib/strrchr.c: New.
11114 * lib/strtol.c: New, from the Coreutils 4.5.1.
11115
111162002-09-27 Akim Demaille <akim@epita.fr>
11117
11118 Playing with Autoscan.
11119
11120 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
11121 * lib/Makefile.am (libbison_a_SOURCES): No longer include
11122 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
11123 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
11124 Coreutils 4.5.1.
11125
111262002-09-24 Akim Demaille <akim@epita.fr>
11127
11128 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
11129 (Frequently Asked Questions, Parser Stack Overflow): New.
11130
111312002-09-13 Akim Demaille <akim@epita.fr>
11132
11133 Playing with autoscan.
11134
11135 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
11136 * src/files.c (skeleton_find): Remove, unused.
11137 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
11138 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
11139
111402002-09-13 Akim Demaille <akim@epita.fr>
11141
11142 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
11143 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
11144
111452002-09-13 Akim Demaille <akim@epita.fr>
11146
11147 * configure.ac: Require 2.54.
11148 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
11149 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
11150 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
11151 Remove, provided by Autoconf macros.
11152
111532002-09-12 Akim Demaille <akim@epita.fr>
11154
11155 * m4/prereq.m4: Update, from Coreutils 4.5.1.
11156
111572002-09-12 Akim Demaille <akim@epita.fr>
11158
11159 * m4/prereq.m4: Update, from Fileutils 4.1.5.
11160 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
11161 Reported by Martin Mokrejs.
11162
111632002-09-10 Akim Demaille <akim@epita.fr>
11164
11165 * src/parse-gram.y: Associate a human readable string to each
11166 token type.
11167 * tests/regression.at (Invalid inputs): Adjust.
11168
111692002-09-10 Gary V. Vaughan <gary@gnu.org>
11170
11171 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
11172 with an Autoconf-2.5x style configure.ac.
11173
111742002-09-06 Paul Eggert <eggert@twinsun.com>
11175
11176 * doc/bison.texinfo (Conditions): Make explicit that the GPL
11177 exception applies only to yacc.c. This is a modification of a
11178 patch originally suggested by Akim Demaille.
11179
111802002-09-06 Akim Demaille <akim@epita.fr>
11181
11182 * data/c.m4 (b4_copyright): Move the GPL exception comment from
11183 here to...
11184 * data/yacc.c: here.
11185
11186 * data/lalr1.cc (struct yyltype): Don't define it, since we use
11187 LocationType.
11188 (b4_ltype): Default to yy::Location from location.hh.
11189
111902002-09-04 Jim Meyering <jim@meyering.net>
11191
11192 * data/yacc.c: Guard the declaration of yytoknum also with
11193 `#ifdef YYPRINT', so it is declared only when used.
11194
111952002-09-04 Akim Demaille <akim@epita.fr>
11196
11197 * configure.in: Rename as...
11198 * configure.ac: this.
11199 Bump to 1.49c.
11200
112012002-09-04 Akim Demaille <akim@epita.fr>
11202
11203 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
11204 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
11205 translate maintainer only messages.
11206
112072002-08-12 Paul Eggert <eggert@twinsun.com>
11208
11209 Version 1.49b.
11210
11211 * Makefile.am (SUBDIRS): Remove intl.
11212 (DISTCLEANFILES): Remove.
11213 * NEWS: Mention that GNU M4 is now required. Clarify what is
11214 meant by "larger grammars". Mention the pt_BR translation.
11215 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
11216 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
11217 Bump version from 0.11.2 to 0.11.5.
11218 (BISON_PREREQ_STAGE): Remove.
11219 (AM_GNU_GETTEXT): Use external gettext.
11220 (AC_OUTPUT): Remove intl/Makefile.
11221
11222 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
11223
11224 * data/glr.c: Include string.h, for strlen.
11225 (yyreportParseError): Use size_t for yysize.
11226 (yy_yypstack): No longer nested inside yypstates, as nested
11227 functions are not portable. Do not assume size_t is the
11228 same width as int.
11229 (yypstates): Do not assume that ptrdiff_t is the same width
11230 as int, and similarly for yyposn and YYINDEX.
11231
11232 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
11233
11234 * lib/Makefile.am (INCLUDES): Do not include from the intl
11235 directory, which has been removed.
11236 * src/Makefile.am (INCLUDES): Likewise.
11237
11238 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
11239 (bitsets_sources, additional_bitsets_sources, timevars_sources):
11240 New vars.
11241
11242 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
11243 * tests/Makefile.am (EXTRA_DIST): Likewise.
11244
11245 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
11246 Do not assume that bitset_windex is the same width as unsigned.
11247
11248 * lib/abitset.c (abitset_unused_clear): Do not assume that
11249 bitset_word is the same width as int.
11250 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
11251 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
11252 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
11253 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
11254 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
11255
11256 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
11257 portability to one's complement hosts!).
11258 * lib/ebitset.c (ebitset_op1): Likewise.
11259 * lib/lbitset.c (lbitset_op1): Likewise.
11260
11261 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
11262 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11263 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
11264 Sync with fileutils.
11265 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
11266 lib/gettext.h: Sync with diffutils.
11267
11268 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
11269 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
11270
11271 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
11272 PROTOTYPES to check for prototypes, and "defined __STDC__" to
11273 check for void *.
11274
11275 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
11276 size_t; the old version tried to do this but casted improperly.
11277 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
11278 (bitset_test): Now returns int, not unsigned long.
11279
11280 * lib/bitset_stats.c: Include "gettext.h".
11281 (_): New macro.
11282 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
11283 name locals "index", as it generates unnecessary warnings on some
11284 hosts that have an "index" function.
11285
11286 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
11287 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
11288 they need translation.
11289 * src/LR0.c (state_list_append, new_itemsets, get_state,
11290 append_states, generate_states): Likewise.
11291 * src/assoc.c (assoc_to_string): Likewise.
11292 * src/closure.c (print_closure, set_firsts, closure): Likewise.
11293 * src/gram.c (grammar_dump): Likewise.
11294 * src/injections.c (injections_compute): Likewise.
11295 * src/lalr.c (lookaheads_print): Likewise.
11296 * src/relation.c (relation_transpose): Likewise.
11297 * src/scan-gram.l: Likewise.
11298 * src/tables.c (table_grow, pack_vector): Likewise.
11299
11300 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
11301 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
11302 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
11303 * m4/mbstate_t.m4: Sync with fileutils.
11304 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
11305
11306 * po/LINGUAS: Add pt_BR.
11307 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
11308 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
11309 lib/timevar.c.
11310 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
11311 manual recommends.
11312 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
11313
11314 * src/complain.c (strerror_r): Remove decl; not needed.
11315 (strerror): Use same pattern as ../lib/error.c.
11316
11317 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
11318
11319 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
11320
11321 * src/main.c (main): Cast result of bindtextdomain and textdomain
11322 to void, to avoid a GCC warning when --disable-nls is in effect.
11323
11324 * src/scan-gram.l: Use strings rather than escapes when possible,
11325 to minimize the number of warnings from xgettext.
11326 (handle_action_dollar, handle_action_at): Don't use isdigit,
11327 as it mishandles negative chars and it may not work as expected
11328 outside the C locale.
11329
11330 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
11331 this is a GCC extension and is not portable to other compilers.
11332
11333 * src/system.h (alloca): Use same pattern as ../lib/error.c.
11334 Do not include <ctype.h>; no longer needed.
11335 Do not include <malloc.h>; no longer needed (and generates
11336 warnings on OpenBSD 3.0).
11337
11338 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
11339 it's not portable.
11340
11341 * tests/regression.at: Do not use 'cc -c input.c -o input';
11342 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
11343
11344 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
11345 exit status as failure, not just exit status 1. Sun C exits
11346 with status 2 sometimes.
11347
11348 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
11349 Use it for the two large tests.
11350
113512002-08-02 Akim Demaille <akim@epita.fr>
11352
11353 * src/conflicts.c (conflicts_output): Don't output rules never
11354 reduced here, since anyway that computation doesn't work.
11355 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
11356 (rule_useless_p, rule_never_reduced_p): New.
11357 (grammar_rules_partial_print): Use a filter instead of a range.
11358 Display the title only if needed.
11359 (grammar_rules_print): Adjust.
11360 (grammar_rules_never_reduced_report): New.
11361 * src/tables.c (action_row): Move the computation of rules never
11362 reduced to...
11363 (token_actions): here.
11364 * src/main.c (main): Make the parser before making the report, so
11365 that rules never reduced are computed.
11366 Call grammar_rules_never_reduced_report.
11367 * src/print.c (print_results): Report rules never reduced.
11368 * tests/conflicts.at, tests/reduce.at: Adjust.
11369
113702002-08-01 Akim Demaille <akim@epita.fr>
11371
11372 Instead of attaching lookaheads and duplicating the rules being
11373 reduced by a state, attach the lookaheads to the reductions.
11374
11375 * src/state.h (state_t): Remove the `lookaheads',
11376 `lookaheads_rule' member.
11377 (reductions_t): Add a `lookaheads' member.
11378 Use a regular array for the `rules'.
11379 * src/state.c (reductions_new): Initialize the lookaheads member
11380 to 0.
11381 (state_rule_lookaheads_print): Adjust.
11382 * src/state.h, src/state.c (state_reductions_find): New.
11383 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
11384 (count_rr_conflicts): Adjust.
11385 * src/lalr.c (LArule): Remove.
11386 (add_lookback_edge): Adjust.
11387 (state_lookaheads_count): New.
11388 (states_lookaheads_initialize): Merge into...
11389 (initialize_LA): this.
11390 (lalr_free): Adjust.
11391 * src/main.c (main): Don't free nullable and derives too early: it
11392 is used by --verbose.
11393 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
11394
113952002-08-01 Akim Demaille <akim@epita.fr>
11396
11397 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
11398 `rule_number_t**'.
11399 (set_derives, free_derives): Rename as...
11400 (derives_compute, derives_free): this.
11401 Adjust all dependencies.
11402 * src/nullable.c (set_nullable, free_nullable): Rename as...
11403 (nullable_compute, nullable_free): these.
11404 (rule_list_t): Store rule_t *, not rule_number_t.
11405 * src/state.c (state_rule_lookaheads_print): Directly compare rule
11406 pointers, instead of their numbers.
11407 * src/main.c (main): Call nullable_free, and derives_free earlier,
11408 as they were lo longer used.
11409
114102002-08-01 Akim Demaille <akim@epita.fr>
11411
11412 * lib/timevar.c (get_time): Include children time.
11413 * src/lalr.h (LA, LArule): Don't export them: used with the
11414 state_t.
11415 * src/lalr.c (LA, LArule): Static.
11416 * src/lalr.h, src/lalr.c (lalr_free): New.
11417 * src/main.c (main): Call it.
11418 * src/tables.c (pack_vector): Check whether loc is >= to the
11419 table_size, not >.
11420 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
11421 (tables_generate): do it, since that's also it which allocates
11422 them.
11423 Don't free LA and LArule, main does.
11424
114252002-07-31 Akim Demaille <akim@epita.fr>
11426
11427 Separate parser tables computation and output.
11428
11429 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
11430 (conflict_list, conflict_list_cnt, table, check, table_ninf)
11431 (yydefgoto, yydefact, high): Move to...
11432 * src/tables.h, src/tables.c: here.
11433 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
11434 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
11435 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
11436 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
11437 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
11438 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
11439 (action_row, save_row, token_actions, save_column, default_goto)
11440 (goto_actions, sort_actions, matching_state, pack_vector)
11441 (table_ninf_remap, pack_table, prepare_actions): Move to...
11442 * src/tables.c: here.
11443 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
11444 * src/output.c (token_actions, output_base, output_conflicts)
11445 (output_check): Merge into...
11446 (prepare_actions): this.
11447 (actions_output): Rename as...
11448 (user_actions_output): this.
11449 * src/main.c (main): Call tables_generate and tables_free.
11450
114512002-07-31 Akim Demaille <akim@epita.fr>
11452
11453 Steal GCC's --time-report support.
11454
11455 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
11456 stolen/adjusted from GCC.
11457 * m4/stage.m4: Remove time related checks.
11458 * m4/timevar.m4: New.
11459 * configure.in: Adjust.
11460 * src/system.h: Adjust to using timevar.h.
11461 * src/getargs.h, src/getargs.c: Support trace_time for
11462 --trace=time.
11463 * src/main.c (stage): Remove.
11464 (main): Replace `stage' invocations with timevar calls.
11465 * src/output.c: Insert pertinent timevar calls.
11466
114672002-07-31 Akim Demaille <akim@epita.fr>
11468
11469 Let --trace have arguments.
11470
11471 * src/getargs.h (enum trace_e): New.
11472 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
11473 (long_options, short_options): --trace/-T takes an optional
11474 argument.
11475 Change all the uses of trace_flag to reflect the new flags.
11476 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
11477
11478 Strengthen `stage' portability.
11479
11480 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
11481 * configure.in: Use it.
11482 Don't check for malloc.h and sys/times.h.
11483 * src/system.h: Include them when appropriate.
11484 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
11485 times and struct tms are available.
11486
114872002-07-30 Akim Demaille <akim@epita.fr>
11488
11489 In verbose parse error message, don't report `error' as an
11490 expected token.
11491 * tests/actions.at (Printers and Destructors): Adjust.
11492 * tests/calc.at (Calculator $1): Adjust.
11493 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
11494 error message, do not report the parser accepts the error token in
11495 that state.
11496
114972002-07-30 Akim Demaille <akim@epita.fr>
11498
11499 Normalize conflict related messages.
11500
11501 * src/complain.h, src/complain.c (warn, complain): New.
11502 * src/conflicts.c (conflicts_print): Use them.
11503 (conflict_report_yacc): New, extracted from...
11504 (conflicts_print): here.
11505 * tests/conflicts.at, tests/existing.at: Adjust.
11506
115072002-07-30 Akim Demaille <akim@epita.fr>
11508
11509 Report rules which are never reduced by the parser: those hidden
11510 by conflicts.
11511
11512 * src/LR0.c (save_reductions): Don't make the final state too
11513 different: save its reduction (accept) instead of having a state
11514 without any action (no shift or goto, no reduce).
11515 Note: the final state is now a ``regular'' state, i.e., the
11516 parsers now contain `reduce 0' as default reduction.
11517 Nevertheless, since they decide to `accept' when yystate =
11518 final_state, they still will not reduce rule 0.
11519 * src/print.c (print_actions, print_reduction): Adjust.
11520 * src/output.c (action_row): Track reduced rules.
11521 (token_actions): Report rules never reduced.
11522 * tests/conflicts.at, tests/regression.at: Adjust.
11523
115242002-07-30 Akim Demaille <akim@epita.fr>
11525
11526 `stage' was accidently included in a previous patch.
11527 Initiate its autoconfiscation.
11528
11529 * configure.in: Look for malloc.h and sys/times.h.
11530 * src/main.c (stage): Adjust.
11531 Report only when trace_flag.
11532
115332002-07-29 Akim Demaille <akim@epita.fr>
11534
11535 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
11536 state_number_t.
11537 (errs_t): symbol_t*, not symbol_number_t.
11538 (reductions_t): rule_t*, not rule_number_t.
11539 (FOR_EACH_SHIFT): New.
11540 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
11541 * src/print.c, src/print_graph.c: Adjust.
11542
115432002-07-29 Akim Demaille <akim@epita.fr>
11544
11545 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
11546
11547 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
11548 (endtoken, accept): these.
11549 * src/reader.c (reader): Set endtoken's default tag to "$end".
11550 Set undeftoken's tag to "$undefined" instead of "$undefined.".
11551 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
11552 Adjust.
11553
115542002-07-29 Akim Demaille <akim@epita.fr>
11555
11556 * src/reduce.c (reduce_grammar): When the language is empty,
11557 complain about the start symbol, not the axiom.
11558 Use its location.
11559 * tests/reduce.at (Empty Language): New.
11560
115612002-07-26 Akim Demaille <akim@epita.fr>
11562
11563 * src/reader.h, src/reader.c (gram_error): ... can't get
11564 yycontrol without making too strong assumptions on the parser
11565 itself.
11566 * src/output.c (prepare_tokens): Use the real 0th value of
11567 token_translations instead of `0'.
11568 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
11569 visible here.
11570 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
11571 for the time being: %locations ought to provide it to yyerror.
11572
115732002-07-25 Akim Demaille <akim@epita.fr>
11574
11575 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
11576 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
11577 * tests/regression.at (Web2c Actions): Adjust.
11578
115792002-07-25 Akim Demaille <akim@epita.fr>
11580
11581 Stop storing rules from 1 to nrules + 1.
11582
11583 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
11584 * src/nullable.c, src/output.c, src/print.c, src/reader.c
11585 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
11586 Iterate from 0 to nrules.
11587 Use rule_number_as_item_number and item_number_as_rule_number.
11588 Adjust to `derive' now containing possibly 0.
11589 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
11590 Handle the `- 1' part in rule numbers from/to item numbers.
11591 * src/conflicts.c (log_resolution): Fix the message which reversed
11592 shift and reduce.
11593 * src/output.c (action_row): Initialize default_rule to -1.
11594 (token_actions): Adjust.
11595 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
11596 expected output.
11597 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
11598
115992002-07-25 Akim Demaille <akim@epita.fr>
11600
11601 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
11602 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
11603 (b4_c_knr_arg_decl): New.
11604 * data/yacc.c: Use it to define yysymprint, yydestruct, and
11605 yyreport_parse_error.
11606
116072002-07-25 Akim Demaille <akim@epita.fr>
11608
11609 * data/yacc.c (yyreport_parse_error): New, extracted from...
11610 (yyparse): here.
11611 (yydestruct, yysymprint): Move above yyparse.
11612 Be K&R compliant.
11613
116142002-07-25 Akim Demaille <akim@epita.fr>
11615
11616 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
11617 replace...
11618 (b4_sint_type, b4_uint_type): these.
11619 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
11620 * tests/regression.at (Web2c Actions): Adjust.
11621
116222002-07-25 Akim Demaille <akim@epita.fr>
11623
11624 * src/gram.h (TIEM_NUMBER_MAX): New.
11625 (item_number_of_rule_number, rule_number_of_item_number): Rename
11626 as...
11627 (rule_number_as_item_number, item_number_as_rule_number): these.
11628 Adjust dependencies.
11629 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
11630 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
11631 (symbol_number_to_vector_number): New.
11632 (order): Of vector_number_t* type.
11633 (base_t, BASE_MAX, BASE_MIN): New.
11634 (froms, tos, width, pos, check): Of base_t type.
11635 (action_number_t, ACTION_MIN, ACTION_MAX): New.
11636 (actrow): Of action_number_t type.
11637 (conflrow): Of unsigned int type.
11638 (table_ninf, base_ninf): New.
11639 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
11640 (muscle_insert_int_table, muscle_insert_base_table)
11641 (muscle_insert_rule_number_table): New.
11642 (prepare_tokens): Output `toknum' as int_table.
11643 (action_row): Returns a rule_number_t.
11644 Use ACTION_MIN, not SHRT_MIN.
11645 (token_actions): yydefact is rule_number_t*.
11646 (table_ninf_remap): New.
11647 (pack_table): Use it for `base' and `table'.
11648 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
11649 replaced with...
11650 (YYPACT_NINF, YYTABLE_NINF): these.
11651 (yypact, yytable): Compute their types instead of hard-coded
11652 `short'.
11653 * tests/regression.at (Web2c Actions): Adjust.
11654
116552002-07-19 Akim Demaille <akim@epita.fr>
11656
11657 * src/scan-gram.l (id): Can start with an underscore.
11658
116592002-07-16 Akim Demaille <akim@epita.fr>
11660
11661 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
11662 Adjust all former `associativity' dependencies.
11663 * src/symtab.c (symbol_new): Default associativity is `undef', not
11664 `right'.
11665 (symbol_check_alias_consistence): Adjust.
11666
116672002-07-09 Akim Demaille <akim@epita.fr>
11668
11669 * doc/bison.texinfo: Properly set the ``header'' part.
11670 Use @dircategory ``GNU programming tools'' as per Texinfo's
11671 documentation.
11672 Use @copying.
11673
116742002-07-09 Akim Demaille <akim@epita.fr>
11675
11676 * lib/quotearg.h: Protect against multiple inclusions.
11677 * src/location.h (location_t): Add a `file' member.
11678 (LOCATION_RESET, LOCATION_PRINT): Adjust.
11679 * src/complain.c (warn_at, complain_at, fatal_at): Drop
11680 `error_one_per_line' support.
11681
116822002-07-09 Akim Demaille <akim@epita.fr>
11683
11684 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
11685 * src/reader.c (lineno): Remove.
11686 Adjust all dependencies.
11687 (get_merge_function): Take a location and use complain_at.
11688 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
11689 * tests/regression.at (Invalid inputs, Mixing %token styles):
11690 Adjust.
11691
116922002-07-09 Akim Demaille <akim@epita.fr>
11693
11694 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
11695 recovery rule, and forbid extensions when --yacc.
11696 (gram_error): Use complain_at.
11697 * src/reader.c (reader): Exit if there were parse errors.
11698
116992002-07-09 Akim Demaille <akim@epita.fr>
11700
11701 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
11702 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
11703 Reported by R Blake <blakers@mac.com>.
11704
117052002-07-09 Akim Demaille <akim@epita.fr>
11706
11707 * data/yacc.c: Output the copyright notive in the header.
11708
117092002-07-03 Akim Demaille <akim@epita.fr>
11710
11711 * src/output.c (froms, tos): Are state_number_t.
11712 (save_column): sp, sp1, and sp2 are state_number_t.
11713 (prepare): Rename `final' as `final_state_number', `nnts' as
11714 `nterms_number', `nrules' as `rules_number', `nstates' as
11715 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
11716 unused.
11717 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
11718 * data/lalr1.cc (nsym_): Remove, unused.
11719
117202002-07-03 Akim Demaille <akim@epita.fr>
11721
11722 * src/lalr.h, src/lalr.c (goto_number_t): New.
11723 * src/lalr.c (goto_list_t): New.
11724 Propagate them.
11725 * src/nullable.c (rule_list_t): New.
11726 Propagate.
11727 * src/types.h: Remove.
11728
117292002-07-03 Akim Demaille <akim@epita.fr>
11730
11731 * src/closure.c (print_fderives): Use rule_rhs_print.
11732 * src/derives.c (print_derives): Use rule_rhs_print.
11733 (rule_list_t): New, replaces `shorts'.
11734 (set_derives): Add comments.
11735 * tests/sets.at (Nullable, Firsts): Adjust.
11736
117372002-07-03 Akim Demaille <akim@epita.fr>
11738
11739 * src/output.c (prepare_actions): Free `tally' and `width'.
11740 (prepare_actions): Allocate and free `order'.
11741 * src/symtab.c (symbols_free): Free `symbols'.
11742 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
11743 * src/output.c (m4_invoke): Move to...
11744 * src/scan-skel.l: here.
11745 (<<EOF>>): Close yyout, and free its name.
11746
117472002-07-03 Akim Demaille <akim@epita.fr>
11748
11749 Fix some memory leaks, and fix a bug: state 0 was examined twice.
11750
11751 * src/LR0.c (new_state): Merge into...
11752 (state_list_append): this.
11753 (new_states): Merge into...
11754 (generate_states): here.
11755 (set_states): Don't ensure a proper `errs' state member here, do it...
11756 * src/conflicts.c (conflicts_solve): here.
11757 * src/state.h, src/state.c: Comment changes.
11758 (state_t): Rename member `shifts' as `transitions'.
11759 Adjust all dependencies.
11760 (errs_new): For consistency, also take the values as argument.
11761 (errs_dup): Remove.
11762 (state_errs_set): New.
11763 (state_reductions_set, state_transitions_set): Assert that no
11764 previous value was assigned.
11765 (state_free): New.
11766 (states_free): Use it.
11767 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
11768 temporary storage: use `errs' and `nerrs' as elsewhere.
11769 (set_conflicts): Allocate and free this `errs'.
11770
117712002-07-02 Akim Demaille <akim@epita.fr>
11772
11773 * lib/libiberty.h: New.
11774 * lib: Update the bitset implementation from upstream.
11775 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
11776 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
11777 * src/main.c: Adjust bitset stats calls.
11778
117792002-07-01 Paul Eggert <eggert@twinsun.com>
11780
11781 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
11782 char, so that negative chars don't collide with $.
11783
117842002-06-30 Akim Demaille <akim@epita.fr>
11785
11786 Have the GLR tests be `warning' checked, and fix the warnings.
11787
11788 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
11789 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
11790 (yyremoveDeletes): `yyi' and `yyj' are size_t.
11791 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
11792 (yyaddDeferredAction): static.
11793 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
11794 (yyreportParseError): yyprefix is const.
11795 yytokenp is used only when verbose.
11796 (yy__GNUC__): Replace with __GNUC__.
11797 (yypdumpstack): yyi is size_t.
11798 (yypreference): Un-yy local variables and arguments, to avoid
11799 clashes with `yyr1'. Anyway, we are not in the user name space.
11800 (yytname_size): be an int, as is compared with ints.
11801 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
11802 Use them.
11803 * tests/cxx-gram.at: Use quotation to protect $1.
11804 Use AT_COMPILE to enable warnings hunts.
11805 Prototype yylex and yyerror.
11806 `Use' argc.
11807 Include `string.h', not `strings.h'.
11808 Produce and prototype stmtMerge only when used.
11809 yylex takes a location.
11810
118112002-06-30 Akim Demaille <akim@epita.fr>
11812
11813 We spend a lot of time in quotearg, in particular when --verbose.
11814
11815 * src/symtab.c (symbol_get): Store a quoted version of the key.
11816 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
11817 Adjust all callers.
11818
118192002-06-30 Akim Demaille <akim@epita.fr>
11820
11821 * src/state.h (reductions_t): Rename member `nreds' as num.
11822 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
11823 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
11824
118252002-06-30 Akim Demaille <akim@epita.fr>
11826
11827 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
11828 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
11829 (shifts_to): Rename as...
11830 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
11831 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
11832 (TRANSITION_IS_DISABLED, transitions_to): these.
11833
118342002-06-30 Akim Demaille <akim@epita.fr>
11835
11836 * src/print.c (print_shifts, print_gotos): Merge into...
11837 (print_transitions): this.
11838 (print_transitions, print_errs, print_reductions): Align the
11839 lookaheads columns.
11840 (print_core, print_transitions, print_errs, print_state,
11841 print_grammar): Output empty lines separator before, not after.
11842 (state_default_rule_compute): Rename as...
11843 (state_default_rule): this.
11844 * tests/conflicts.at (Defaulted Conflicted Reduction),
11845 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
11846 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
11847
118482002-06-30 Akim Demaille <akim@epita.fr>
11849
11850 Display items as we display rules.
11851
11852 * src/gram.h, src/gram.c (rule_lhs_print): New.
11853 * src/gram.c (grammar_rules_partial_print): Use it.
11854 * src/print.c (print_core): Likewise.
11855 * tests/conflicts.at (Defaulted Conflicted Reduction),
11856 (Unresolved SR Conflicts): Adjust.
11857 (Unresolved SR Conflicts): Adjust and rename as...
11858 (Resolved SR Conflicts): this, as was meant.
11859 * tests/regression.at (Web2c Report): Adjust.
11860
118612002-06-30 Akim Demaille <akim@epita.fr>
11862
11863 * src/print.c (state_default_rule_compute): New, extracted from...
11864 (print_reductions): here.
11865 Pessimize, but clarify the code.
11866 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
11867
118682002-06-30 Akim Demaille <akim@epita.fr>
11869
11870 * src/output.c (action_row): Let default_rule be always a rule
11871 number.
11872
118732002-06-30 Akim Demaille <akim@epita.fr>
11874
11875 * src/closure.c (print_firsts, print_fderives, closure):
11876 Use BITSET_EXECUTE.
11877 * src/lalr.c (lookaheads_print): Likewise.
11878 * src/state.c (state_rule_lookaheads_print): Likewise.
11879 * src/print_graph.c (print_core): Likewise.
11880 * src/print.c (print_reductions): Likewise.
11881 * src/output.c (action_row): Likewise.
11882 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
11883
118842002-06-30 Akim Demaille <akim@epita.fr>
11885
11886 * src/print_graph.c: Use report_flag.
11887
118882002-06-30 Akim Demaille <akim@epita.fr>
11889
11890 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
11891 to...
11892 * src/relation.h, src/relation.c (traverse, relation_digraph)
11893 (relation_print, relation_transpose): New.
11894
118952002-06-30 Akim Demaille <akim@epita.fr>
11896
11897 * src/state.h, src/state.c (shifts_to): New.
11898 * src/lalr.c (build_relations): Use it.
11899
119002002-06-30 Akim Demaille <akim@epita.fr>
11901
11902 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
11903 (item_number_of_rule_number, rule_number_of_item_number): New.
11904 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
11905 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
11906 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
11907 Propagate their use.
11908 Much remains to be done, in particular wrt `shorts' from types.h.
11909
119102002-06-30 Akim Demaille <akim@epita.fr>
11911
11912 * src/symtab.c (symbol_new): Initialize the `printer' member.
11913
119142002-06-30 Akim Demaille <akim@epita.fr>
11915
11916 * src/LR0.c (save_reductions): Remove, replaced by...
11917 * src/state.h, src/state.c (state_reductions_set): New.
11918 (reductions, errs): Rename as...
11919 (reductions_t, errs_t): these.
11920 Adjust all dependencies.
11921
119222002-06-30 Akim Demaille <akim@epita.fr>
11923
11924 * src/LR0.c (state_list_t, state_list_append): New.
11925 (first_state, last_state): Now symbol_list_t.
11926 (this_state): Remove.
11927 (new_itemsets, append_states, save_reductions): Take a state_t as
11928 argument.
11929 (set_states, generate_states): Adjust.
11930 (save_shifts): Remove, replaced by...
11931 * src/state.h, src/state.c (state_shifts_set): New.
11932 (shifts): Rename as...
11933 (shifts_t): this.
11934 Adjust all dependencies.
11935 * src/state.h (state_t): Remove the `next' member.
11936
119372002-06-30 Akim Demaille <akim@epita.fr>
11938
11939 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
11940 escaped in slot 0.
11941
119422002-06-30 Akim Demaille <akim@epita.fr>
11943
11944 Use hash.h for the state hash table.
11945
11946 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
11947 (allocate_storage): Use state_hash_new.
11948 (free_storage): Use state_hash_free.
11949 (new_state, get_state): Adjust.
11950 * src/lalr.h, src/lalr.c (states): Move to...
11951 * src/states.h (state_t): Remove the `link' member, no longer
11952 used.
11953 * src/states.h, src/states.c: here.
11954 (state_hash_new, state_hash_free, state_hash_lookup)
11955 (state_hash_insert, states_free): New.
11956 * src/states.c (state_table, state_compare, state_hash): New.
11957 * src/output.c (output_actions): Do not free states now, since we
11958 still need to know the final_state number in `prepare', called
11959 afterwards. Do it...
11960 * src/main.c (main): here: call states_free after `output'.
11961
119622002-06-30 Akim Demaille <akim@epita.fr>
11963
11964 * src/state.h, src/state.c (state_new): New, extracted from...
11965 * src/LR0.c (new_state): here.
11966 * src/state.h (STATE_ALLOC): Move to...
11967 * src/state.c: here.
11968 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
11969 * src/state.h, src/state.c: here.
11970
119712002-06-30 Akim Demaille <akim@epita.fr>
11972
11973 * src/reader.c (gensym): Rename as...
11974 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
11975 (getsym): Rename as...
11976 (symbol_get): this.
11977
119782002-06-30 Akim Demaille <akim@epita.fr>
11979
11980 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
11981 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
11982 * src/output.c, src/print.c, src/print_graph.c: Propagate.
11983 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
11984
119852002-06-30 Akim Demaille <akim@epita.fr>
11986
11987 Make the test suite pass with warnings checked.
11988
11989 * tests/actions.at (Printers and Destructors): Improve.
11990 Avoid unsigned vs. signed issues.
11991 * tests/calc.at: Don't exercise the scanner here, do it...
11992 * tests/input.at (Torturing the Scanner): here.
11993
119942002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11995
11996 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
11997 reorganize first lines parallel to yacc.c.
11998
119992002-06-28 Akim Demaille <akim@epita.fr>
12000
12001 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
12002 (b4_token_enum, b4_token_defines): New, factored from...
12003 * data/lalr1.cc, data/yacc.c, glr.c: here.
12004
120052002-06-28 Akim Demaille <akim@epita.fr>
12006
12007 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
12008 unused variables.
12009 * src/output.c (merger_output): static.
12010
120112002-06-28 Akim Demaille <akim@epita.fr>
12012
12013 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
12014 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
12015 pacify GCC.
12016 * src/output.c (save_row): Initialize all the variables to pacify GCC.
12017
120182002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12019
12020 Accumulated changelog for new GLR parsing features.
12021
12022 * src/conflicts.c (count_total_conflicts): Change name to
12023 conflicts_total_count.
12024 * src/conflicts.h: Ditto.
12025 * src/output.c (token_actions): Use the new name.
12026 (output_conflicts): Change conflp => conflict_list_heads, and
12027 confl => conflict_list for better readability.
12028 * data/glr.c: Use the new names.
12029 * NEWS: Add self to GLR announcement.
12030
12031 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
12032
12033 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
12034 Akim Demaille.
12035
12036 * data/bison.glr: Change name to glr.c
12037 * data/glr.c: Renamed from bison.glr.
12038 * data/Makefile.am: Add glr.c
12039
12040 * src/getargs.c:
12041
12042 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
12043 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
12044
12045 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12046
12047 * data/bison.glr: Be sure to restore the
12048 current #line when returning to the skeleton contents after having
12049 exposed the input file's #line.
12050
12051 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12052
12053 * data/bison.glr: Bring up to date with changes to bison.simple.
12054
12055 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12056
12057 * data/bison.glr: Correct definitions that use b4_prefix.
12058 Various reformatting.
12059 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
12060 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
12061 yytokenp argument; now part of stack.
12062 (yychar): Define to behave as documented.
12063 (yyclearin): Ditto.
12064
12065 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12066
12067 * src/reader.h: Add declaration for free_merger_functions.
12068
12069 * src/reader.c (merge_functions): New variable.
12070 (get_merge_function): New function.
12071 (free_merger_functions): New function.
12072 (readgram): Check for %prec that is not followed by a symbol.
12073 Handle %dprec and %merge declarations.
12074 (packgram): Initialize dprec and merger fields in rules array.
12075
12076 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
12077 conflict_list_cnt, conflict_list_free): New variables.
12078 (table_grow): Also grow conflict_table.
12079 (prepare_rules): Output dprec and merger tables.
12080 (conflict_row): New function.
12081 (action_row): Output conflict lists for GLR parser. Don't use
12082 default reduction in conflicted states for GLR parser so that there
12083 are spaces for the conflict lists.
12084 (save_row): Also save conflict information.
12085 (token_actions): Allocate conflict list.
12086 (merger_output): New function.
12087 (pack_vector): Pack conflict table, too.
12088 (output_conflicts): New function to output yyconflp and yyconfl.
12089 (output_check): Allocate conflict_tos.
12090 (output_actions): Output conflict tables, also.
12091 (output_skeleton): Output b4_mergers definition.
12092 (prepare): Output b4_max_rhs_length definition.
12093 Use 'bison.glr' as default skeleton for GLR parsers.
12094
12095 * src/gram.c (glr_parser): New flag.
12096 (grammar_free): Call free_merger_functions.
12097
12098 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
12099 all pairs of conflicting reductions, rather than just all tokens
12100 causing conflicts. Needed to size conflict tables.
12101 (conflicts_output): Modify call to count_rr_conflicts for new
12102 interface.
12103 (conflicts_print): Ditto.
12104 (count_total_conflicts): New function.
12105
12106 * src/reader.h (merger_list): New type.
12107 (merge_functions): New variable.
12108
12109 * src/lex.h (tok_dprec, tok_merge): New token types.
12110
12111 * src/gram.h (rule_s): Add dprec and merger fields.
12112 (glr_parser): New flag.
12113
12114 * src/conflicts.h (count_total_conflicts): New function.
12115
12116 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
12117
12118 * doc/bison.texinfo (Generalized LR Parsing): New section.
12119 (GLR Parsers): New section.
12120 (Language and Grammar): Mention GLR parsing.
12121 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
12122 Correct typo ("tge" -> "the").
12123
12124 * data/bison.glr: New skeleton for GLR parsing.
12125
12126 * tests/cxx-gram.at: New tests for GLR parsing.
12127
12128 * tests/testsuite.at: Include cxx-gram.at.
12129
12130 * tests/Makefile.am: Add cxx-gram.at.
12131
12132 * src/parse-gram.y:
12133
12134 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
12135
12136 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
12137
121382002-06-27 Akim Demaille <akim@epita.fr>
12139
12140 * src/options.h, src/options.c: Remove.
12141 * src/getargs.c (short_options, long_options): New.
12142
121432002-06-27 Akim Demaille <akim@epita.fr>
12144
12145 * data/bison.simple, data/bison.c++: Rename as...
12146 * data/yacc.c, data/lalr1.cc: these.
12147 * doc/bison.texinfo (Environment Variables): Remove.
12148
121492002-06-25 Raja R Harinath <harinath@cs.umn.edu>
12150
12151 * src/getargs.c (report_argmatch): Initialize strtok().
12152
121532002-06-20 Akim Demaille <akim@epita.fr>
12154
12155 * data/bison.simple (b4_symbol_actions): New, replaces...
12156 (b4_symbol_destructor, b4_symbol_printer): these.
12157 (yysymprint): Be sure to call YYPRINT only for tokens, and using
12158 user token numbers.
12159
121602002-06-20 Akim Demaille <akim@epita.fr>
12161
12162 * data/bison.simple (yydestructor): Rename as...
12163 (yydestruct): this.
12164
121652002-06-20 Akim Demaille <akim@epita.fr>
12166
12167 * src/symtab.h, src/symtab.c (symbol_type_set)
12168 (symbol_destructor_set, symbol_precedence_set): The location is
12169 the last argument.
12170 Adjust all callers.
12171
121722002-06-20 Akim Demaille <akim@epita.fr>
12173
12174 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
12175 internals.
12176 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
12177 Takes a location.
12178 * src/symtab.h, src/symtab.c (symbol_class_set)
12179 (symbol_user_token_number_set): Likewise.
12180 Adjust all callers.
12181 Promote complain_at.
12182 * tests/input.at (Type Clashes): Adjust.
12183
121842002-06-20 Akim Demaille <akim@epita.fr>
12185
12186 * data/bison.simple (YYLEX): Fix the declaration when
12187 %pure-parser.
12188
121892002-06-20 Akim Demaille <akim@epita.fr>
12190
12191 * data/bison.simple (yysymprint): Don't print the token number,
12192 just its name.
12193 * tests/actions.at (Destructors): Rename as...
12194 (Printers and Destructors): this.
12195 Also exercise %printer.
12196
121972002-06-20 Akim Demaille <akim@epita.fr>
12198
12199 * data/bison.simple (YYDSYMPRINT): New.
12200 Use it to remove many of the #if YYDEBUG/if (yydebug).
12201
122022002-06-20 Akim Demaille <akim@epita.fr>
12203
12204 * src/symtab.h, src/symtab.c (symbol_t): printer and
12205 printer_location are new members.
12206 (symbol_printer_set): New.
12207 * src/parse-gram.y (PERCENT_PRINTER): New token.
12208 Handle its associated rule.
12209 * src/scan-gram.l: Adjust.
12210 (handle_destructor_at, handle_destructor_dollar): Rename as...
12211 (handle_symbol_code_at, handle_symbol_code_dollar): these.
12212 * src/output.c (symbol_printers_output): New.
12213 (output_skeleton): Call it.
12214 * data/bison.simple (yysymprint): New. Cannot be named yyprint
12215 since there are already many grammar files with a user `yyprint'.
12216 Replace the calls to YYPRINT to calls to yysymprint.
12217 * tests/calc.at: Adjust.
12218 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
12219 taking advantage of parser very internal details (stack size!).
12220
122212002-06-20 Akim Demaille <akim@epita.fr>
12222
12223 * src/scan-gram.l: Complete the scanner with the missing patterns
12224 to pacify Flex.
12225 Use `quote' and `symbol_tag_get' where appropriate.
12226
122272002-06-19 Akim Demaille <akim@epita.fr>
12228
12229 * tests/actions.at (Destructors): Augment to test locations.
12230 * data/bison.simple (yydestructor): Pass it the current location
12231 if locations are enabled.
12232 Prototype only when __STDC__ or C++.
12233 Change the argument names to move into the yy name space: there is
12234 user code here.
12235
122362002-06-19 Akim Demaille <akim@epita.fr>
12237
12238 * data/bison.simple (b4_pure_if): New.
12239 Use it instead of #ifdef YYPURE.
12240
122412002-06-19 Akim Demaille <akim@epita.fr>
12242
12243 * data/bison.simple (b4_location_if): New.
12244 Use it instead of #ifdef YYLSP_NEEDED.
12245
122462002-06-19 Akim Demaille <akim@epita.fr>
12247
12248 Prepare @$ in %destructor, but currently don't bind it in the
12249 skeleton, as %location use is not cleaned up yet.
12250
12251 * src/scan-gram.l (handle_dollar, handle_destructor_at)
12252 (handle_action_at): New.
12253 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
12254 a braced_code_t and a location as additional arguments.
12255 (handle_destructor_dollar): Instead of requiring `b4_eval', just
12256 unquote one when outputting `b4_dollar_dollar'.
12257 Adjust callers.
12258 * data/bison.simple (b4_eval): Remove.
12259 (b4_symbol_destructor): Adjust.
12260 * tests/input.at (Invalid @n): Adjust.
12261
122622002-06-19 Zack Weinberg <zack@codesourcery.com>
12263
12264 * doc/bison.texinfo: Document ability to have multiple
12265 prologue sections.
12266
122672002-06-18 Akim Demaille <akim@epita.fr>
12268
12269 * src/files.c (compute_base_names): When computing the output file
12270 names from the input file name, strip the directory part.
12271
122722002-06-18 Akim Demaille <akim@epita.fr>
12273
12274 * data/bison.simple.new: Comment changes.
12275 Reported by Andreas Schwab.
12276
122772002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
12278
12279 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
12280 there are no `label `yyoverflowlab' defined but not used' warnings
12281 when yyoverflow is defined.
12282
122832002-06-18 Akim Demaille <akim@epita.fr>
12284
12285 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
12286 new member.
12287 (symbol_destructor_set): Adjust.
12288 * src/output.c (symbol_destructors_output): Output the destructor
12289 locations.
12290 Output the symbol name.
12291 * data/bison.simple (b4_symbol_destructor): Adjust.
12292
122932002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
12294 and Akim Demaille <akim@epita.fr>
12295
12296 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
12297 what's left on the stack when the error recovery hits EOF.
12298 * tests/actions.at (Destructors): Complete to exercise this case.
12299
123002002-06-17 Akim Demaille <akim@epita.fr>
12301
12302 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
12303 arguments is really empty, not only equal to `[]'.
12304 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
12305 member.
12306 (symbol_destructor_set): New.
12307 * src/output.c (symbol_destructors_output): New.
12308 * src/reader.h (brace_code_t, current_braced_code): New.
12309 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
12310 (handle_dollar): Rename as...
12311 (handle_action_dollar): this.
12312 (handle_destructor_dollar): New.
12313 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
12314 (grammar_declaration): Use it.
12315 * data/bison.simple (yystos): Is always defined.
12316 (yydestructor): New.
12317 * tests/actions.at (Destructors): New.
12318 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
12319
123202002-06-17 Akim Demaille <akim@epita.fr>
12321
12322 * src/symlist.h, src/symlist.c (symbol_list_length): New.
12323 * src/scan-gram.l (handle_dollar, handle_at): Compute the
12324 rule_length only when needed.
12325 * src/output.c (actions_output, token_definitions_output): Output
12326 the full M4 block.
12327 * src/symtab.c: Don't access directly to the symbol tag, use
12328 symbol_tag_get.
12329 * src/parse-gram.y: Use symbol_list_free.
12330
123312002-06-17 Akim Demaille <akim@epita.fr>
12332
12333 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
12334 (symbol_list_prepend, get_type_name): Move to...
12335 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
12336 (symbol_list_prepend, symbol_list_n_type_name_get): here.
12337 Adjust all callers.
12338 (symbol_list_free): New.
12339 * src/scan-gram.l (handle_dollar): Takes a location.
12340 * tests/input.at (Invalid $n): Adjust.
12341
123422002-06-17 Akim Demaille <akim@epita.fr>
12343
12344 * src/reader.h, src/reader.c (symbol_list_new): Export it.
12345 (symbol_list_prepend): New.
12346 * src/parse-gram.y (%union): `list' is a new member.
12347 (symbols.1): New, replaces...
12348 (terms_to_prec.1, nterms_to_type.1): these.
12349 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
12350 Take a location as additional argument.
12351 Adjust all callers.
12352
123532002-06-15 Akim Demaille <akim@epita.fr>
12354
12355 * src/parse-gram.y: Move %token in the declaration section so that
12356 we don't depend upon CVS Bison.
12357
123582002-06-15 Akim Demaille <akim@epita.fr>
12359
12360 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
12361 * src/print.c (print_core): Use it.
12362
123632002-06-15 Akim Demaille <akim@epita.fr>
12364
12365 * src/conflicts.c (log_resolution): Accept the rule involved in
12366 the sr conflicts instead of the lookahead number that points to
12367 that rule.
12368 (flush_reduce): Accept the current lookahead vector as argument,
12369 instead of the index in LA.
12370 (resolve_sr_conflict): Accept the current number of lookahead
12371 bitset to consider for the STATE, instead of the index in LA.
12372 (set_conflicts): Adjust.
12373 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
12374
123752002-06-15 Akim Demaille <akim@epita.fr>
12376
12377 * src/state.h (state_t): Replace the `lookaheadsp' member, a
12378 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
12379 Adjust all dependencies.
12380 * src/lalr.c (initialize_lookaheads): Split into...
12381 (states_lookaheads_count, states_lookaheads_initialize): these.
12382 (lalr): Adjust.
12383
123842002-06-15 Akim Demaille <akim@epita.fr>
12385
12386 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
12387 out of...
12388 (grammar_rules_print): here.
12389 * src/reduce.c (reduce_output): Use it.
12390 * tests/reduce.at (Useless Rules, Reduced Automaton)
12391 (Underivable Rules): Adjust.
12392
123932002-06-15 Akim Demaille <akim@epita.fr>
12394
12395 Copy BYacc's nice way to report the grammar.
12396
12397 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
12398 New.
12399 Don't print the rules' location, it is confusing and useless.
12400 (rule_print): Use grammar_rhs_print.
12401 * src/print.c (print_grammar): Use grammar_rules_print.
12402
124032002-06-15 Akim Demaille <akim@epita.fr>
12404
12405 Complete and rationalize `useless thing' warnings.
12406
12407 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
12408 (symbol_tag_print): New.
12409 Use them everywhere in place of accessing directly the tag member.
12410 * src/gram.h, src/gram.c (rule_print): New.
12411 Use it where a rule used to be printed `by hand'.
12412 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
12413 (reduce_grammar_tables): Report the useless rules.
12414 (reduce_print): Useless things are a warning, not an error.
12415 Report it as such.
12416 * tests/reduce.at (Useless Nonterminals, Useless Rules):
12417 (Reduced Automaton, Underivable Rules): Adjust.
12418 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
12419 * tests/conflicts.at (Unresolved SR Conflicts)
12420 (Solved SR Conflicts): Adjust.
12421
124222002-06-15 Akim Demaille <akim@epita.fr>
12423
12424 Let symbols have a location.
12425
12426 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
12427 (getsym): Adjust.
12428 Adjust all callers.
12429 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
12430 Use location_t, not int.
12431 * src/symtab.c (symbol_check_defined): Take advantage of the
12432 location.
12433 * tests/regression.at (Invalid inputs): Adjust.
12434
124352002-06-15 Akim Demaille <akim@epita.fr>
12436
12437 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
12438 (input): Don't try to initialize yylloc here, do it in the
12439 scanner.
12440 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
12441 * src/gram.h (rule_t): Change line and action_line into location
12442 and action_location, of location_t type.
12443 Adjust all dependencies.
12444 * src/location.h, src/location.c (empty_location): New.
12445 * src/reader.h, src/reader.c (grammar_start_symbol_set)
12446 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
12447 (grammar_current_rule_symbol_append)
12448 (grammar_current_rule_action_append): Expect a location as argument.
12449 * src/reader.c (grammar_midrule_action): Adjust to attach an
12450 action's location as dummy symbol location.
12451 * src/symtab.h, src/symtab.c (startsymbol_location): New.
12452 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
12453 the line numbers.
12454
124552002-06-14 Akim Demaille <akim@epita.fr>
12456
12457 Grammar declarations may be found in the grammar section.
12458
12459 * src/parse-gram.y (rules_or_grammar_declaration): New.
12460 (declarations): Each declaration may end with a semicolon, not
12461 just...
12462 (grammar_declaration): `"%union"'.
12463 (grammar): Branch to rules_or_grammar_declaration.
12464
124652002-06-14 Akim Demaille <akim@epita.fr>
12466
12467 * src/main.c (main): Invoke scanner_free.
12468
124692002-06-14 Akim Demaille <akim@epita.fr>
12470
12471 * src/output.c (m4_invoke): Extracted from...
12472 (output_skeleton): here.
12473 Free tempfile.
12474
124752002-06-14 Akim Demaille <akim@epita.fr>
12476
12477 * src/parse-gram.y (directives, directive, gram)
12478 (grammar_directives, precedence_directives, precedence_directive):
12479 Rename as...
12480 (declarations, declaration, grammar, grammar_declaration)
12481 (precedence_declaration, precedence_declarator): these.
12482 (symbol_declaration): New.
12483
124842002-06-14 Akim Demaille <akim@epita.fr>
12485
12486 * src/files.c (action_obstack): Remove, unused.
12487 (output_obstack): Remove it, and all its dependencies, as it is no
12488 longer needed.
12489 * src/reader.c (epilogue_set): Build the epilogue in the
12490 muscle_obstack.
12491 * src/output.h, src/output.c (muscle_obstack): Move to...
12492 * src/muscle_tab.h, src/muscle_tab.h: here.
12493 (muscle_init): Initialize muscle_obstack.
12494 (muscle_free): New.
12495 * src/main.c (main): Call it.
12496
124972002-06-14 Akim Demaille <akim@epita.fr>
12498
12499 * src/location.h: New, extracted from...
12500 * src/reader.h: here.
12501 * src/Makefile.am (noinst_HEADERS): Merge into
12502 (bison_SOURCES): this.
12503 Add location.h.
12504 * src/parse-gram.y: Use location_t instead of Bison's.
12505 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
12506 Use location_t instead of ints.
12507
125082002-06-14 Akim Demaille <akim@epita.fr>
12509
12510 * data/bison.simple, data/bison.c++: Be sure to restore the
12511 current #line when returning to the skeleton contents after having
12512 exposed the input file's #line.
12513
125142002-06-12 Akim Demaille <akim@epita.fr>
12515
12516 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
12517 eager.
12518 * tests/actions.at (Exotic Dollars): New.
12519
125202002-06-12 Akim Demaille <akim@epita.fr>
12521
12522 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
12523 ['"/] too eagerly.
12524 * tests/input.at (Torturing the Scanner): New.
12525
125262002-06-11 Akim Demaille <akim@epita.fr>
12527
12528 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
12529 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
12530 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
12531 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
12532 * src/reader.c (reader): Use it.
12533
125342002-06-11 Akim Demaille <akim@epita.fr>
12535
12536 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
12537 Adjust all callers.
12538 (scanner_last_string_free): New.
12539
125402002-06-11 Akim Demaille <akim@epita.fr>
12541
12542 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
12543 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
12544 (last_string, YY_OBS_FREE): New.
12545 Use them when returning an ID.
12546
125472002-06-11 Akim Demaille <akim@epita.fr>
12548
12549 Have Bison grammars parsed by a Bison grammar.
12550
12551 * src/reader.c, src/reader.h (prologue_augment): New.
12552 * src/reader.c (copy_definition): Remove.
12553
12554 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
12555 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
12556 (grammar_current_rule_prec_set, grammar_current_rule_check)
12557 (grammar_current_rule_symbol_append)
12558 (grammar_current_rule_action_append): Export.
12559 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
12560 (symbol_list_action_append): Remove.
12561 Hook the routines from reader.
12562 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
12563 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
12564
12565 * src/reader.c (read_declarations): Remove, unused.
12566
12567 * src/parse-gram.y: Handle the epilogue.
12568 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
12569 (grammar_start_symbol_set): this.
12570 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
12571 * src/reader.c (readgram): Remove, unused.
12572 (reader): Adjust to insert eoftoken and axiom where appropriate.
12573
12574 * src/reader.c (copy_dollar): Replace with...
12575 * src/scan-gram.h (handle_dollar): this.
12576 * src/parse-gram.y: Remove `%thong'.
12577
12578 * src/reader.c (copy_at): Replace with...
12579 * src/scan-gram.h (handle_at): this.
12580
12581 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
12582 New.
12583
12584 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
12585 time being.
12586
12587 * src/reader.h, src/reader.c (grammar_rule_end): New.
12588
12589 * src/parse.y (current_type, current_class): New.
12590 Implement `%nterm', `%token' support.
12591 Merge `%term' into `%token'.
12592 (string_as_id): New.
12593 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
12594 type name.
12595
12596 * src/parse-gram.y: Be sure to handle properly the beginning of
12597 rules.
12598
12599 * src/parse-gram.y: Handle %type.
12600 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
12601
12602 * src/parse-gram.y: More directives support.
12603 * src/options.c: No longer handle source directives.
12604
12605 * src/parse-gram.y: Fix %output.
12606
12607 * src/parse-gram.y: Handle %union.
12608 Use the prologue locations.
12609 * src/reader.c (parse_union_decl): Remove.
12610
12611 * src/reader.h, src/reader.c (epilogue_set): New.
12612 * src/parse-gram.y: Use it.
12613
12614 * data/bison.simple, data/bison.c++: b4_stype is now either not
12615 defined, then default to int, or to the contents of %union,
12616 without `union' itself.
12617 Adjust.
12618 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
12619
12620 * src/output.c (actions_output): Don't output braces, as they are
12621 already handled by the scanner.
12622
12623 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
12624 characters to themselves.
12625
12626 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
12627 that the epilogue has a proper #line.
12628
12629 * src/parse-gram.y: Handle precedence/associativity.
12630
12631 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
12632 a terminal.
12633 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
12634 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
12635 at all to define terminals that cannot be emitted.
12636
12637 * src/scan-gram.l: Escape M4 characters.
12638
12639 * src/scan-gram.l: Working properly with escapes in user
12640 strings/characters.
12641
12642 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
12643 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
12644 grammar.
12645 Use more modest sizes, as for the time being the parser does not
12646 release memory, and therefore the process swallows a huge amount
12647 of memory.
12648
12649 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
12650 stricter %token grammar.
12651
12652 * src/symtab.h (associativity): Add `undef_assoc'.
12653 (symbol_precedence_set): Do nothing when passed an undef_assoc.
12654 * src/symtab.c (symbol_check_alias_consistence): Adjust.
12655
12656 * tests/regression.at (Invalid %directive): Remove, as it is now
12657 meaningless.
12658 (Invalid inputs): Adjust to the new error messages.
12659 (Token definitions): The new grammar doesn't allow too many
12660 eccentricities.
12661
12662 * src/lex.h, src/lex.c: Remove.
12663 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
12664 (copy_character, copy_string2, copy_string, copy_identifier)
12665 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
12666 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
12667 (parse_action): Remove.
12668 * po/POTFILES.in: Adjust.
12669
126702002-06-11 Akim Demaille <akim@epita.fr>
12671
12672 * src/reader.c (parse_action): Don't store directly into the
12673 rule's action member: return the action as a string.
12674 Don't require `rule_length' as an argument: compute it.
12675 (grammar_current_rule_symbol_append)
12676 (grammar_current_rule_action_append): New, eved out from
12677 (readgram): here.
12678 Remove `action_flag', `rulelength', unused now.
12679
126802002-06-11 Akim Demaille <akim@epita.fr>
12681
12682 * src/reader.c (grammar_current_rule_prec_set).
12683 (grammar_current_rule_check): New, eved out from...
12684 (readgram): here.
12685 Remove `xaction', `first_rhs': useless.
12686 * tests/input.at (Type clashes): New.
12687 * tests/existing.at (GNU Cim Grammar): Adjust.
12688
126892002-06-11 Akim Demaille <akim@epita.fr>
12690
12691 * src/reader.c (grammar_midrule_action): New, Eved out from
12692 (readgram): here.
12693
126942002-06-11 Akim Demaille <akim@epita.fr>
12695
12696 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
12697 New.
12698 (readgram): Use them as replacement of inlined code, crule and
12699 crule1.
12700
127012002-06-11 Akim Demaille <akim@epita.fr>
12702
12703 * src/reader.c (grammar_end, grammar_symbol_append): New.
12704 (readgram): Use them.
12705 Make the use of `p' as local as possible.
12706
127072002-06-10 Akim Demaille <akim@epita.fr>
12708
12709 GCJ's parser requires the tokens to be defined before the prologue.
12710
12711 * data/bison.simple: Output the token definition before the user's
12712 prologue.
12713 * tests/regression.at (Braces parsing, Duplicate string)
12714 (Mixing %token styles): Check the output from bison.
12715 (Early token definitions): New.
12716
127172002-06-10 Akim Demaille <akim@epita.fr>
12718
12719 * src/symtab.c (symbol_user_token_number_set): Don't complain when
12720 assigning twice the same user number to a token, so that we can
12721 use it in...
12722 * src/lex.c (lex): here.
12723 Also use `symbol_class_set' instead of hand written code.
12724 * src/reader.c (parse_assoc_decl): Likewise.
12725
127262002-06-10 Akim Demaille <akim@epita.fr>
12727
12728 * src/symtab.c, src/symtab.c (symbol_class_set)
12729 (symbol_user_token_number_set): New.
12730 * src/reader.c (parse_token_decl): Use them.
12731 Use a switch instead of ifs.
12732 Use a single argument.
12733
127342002-06-10 Akim Demaille <akim@epita.fr>
12735
12736 Remove `%thong' support as it is undocumented, unused, duplicates
12737 `%token's job, and creates useless e-mail traffic with people who
12738 want to know what it is, why it is undocumented, unused, and
12739 duplicates `%token's job.
12740
12741 * src/reader.c (parse_thong_decl): Remove.
12742 * src/options.c (option_table): Remove "thong".
12743 * src/lex.h (tok_thong): Remove.
12744
127452002-06-10 Akim Demaille <akim@epita.fr>
12746
12747 * src/symtab.c, src/symtab.c (symbol_type_set)
12748 (symbol_precedence_set): New.
12749 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
12750 (value_components_used): Remove, unused.
12751
127522002-06-09 Akim Demaille <akim@epita.fr>
12753
12754 Move symbols handling code out of the reader.
12755
12756 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
12757 (axiom): Move to...
12758 * src/symtab.h, src/symtab.c: here.
12759
12760 * src/gram.c (start_symbol): Remove: use startsymbol->number.
12761 * src/reader.c (startval): Rename as...
12762 * src/symtab.h, src/symtab.c (startsymbol): this.
12763 * src/reader.c: Adjust.
12764
12765 * src/reader.c (symbol_check_defined, symbol_make_alias)
12766 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
12767 (token_translations_init)
12768 Move to...
12769 * src/symtab.c: here.
12770 * src/reader.c (packsymbols): Move to...
12771 * src/symtab.h, src/symtab.c (symbols_pack): here.
12772 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
12773 argument.
12774
127752002-06-03 Akim Demaille <akim@epita.fr>
12776
12777 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
12778 then statements.
12779
127802002-06-03 Akim Demaille <akim@epita.fr>
12781
12782 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
12783 structs with non literals.
12784 * src/scan-skel.l: never-interactive.
12785 * src/conflicts.c (enum conflict_resolution_e): No trailing
12786 comma.
12787 * src/getargs.c (usage): Split long literal strings.
12788 Reported by Hans Aberg.
12789
127902002-05-28 Akim Demaille <akim@epita.fr>
12791
12792 * data/bison.c++: Use C++ ostreams.
12793 (cdebug_): New member.
12794
127952002-05-28 Akim Demaille <akim@epita.fr>
12796
12797 * src/output.c (output_skeleton): Be sure to allocate enough room
12798 for `/' _and_ for `\0' in full_skeleton.
12799
128002002-05-28 Akim Demaille <akim@epita.fr>
12801
12802 * data/bison.c++: Catch up with bison.simple:
12803 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12804 and Paul Eggert <eggert@twinsun.com>: `error' handing.
12805 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
12806 and popping traces.
12807
128082002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12809
12810 * src/output.c (output_skeleton): Put an explicit path in front of
12811 the skeleton file name, rather than relying on the -I directory,
12812 to partially alleviate effects of having a skeleton file lying around
12813 in the current directory.
12814
128152002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12816
12817 * src/conflicts.c (log_resolution): Correct typo:
12818 obstack_printf should be obstack_fgrow1.
12819
128202002-05-26 Akim Demaille <akim@epita.fr>
12821
12822 * src/state.h (state_t): `solved_conflicts' is a new member.
12823 * src/LR0.c (new_state): Set it to 0.
12824 * src/conflicts.h, src/conflicts.c (print_conflicts)
12825 (free_conflicts, solve_conflicts): Rename as...
12826 (conflicts_print, conflicts_free, conflicts_solve): these.
12827 Adjust callers.
12828 * src/conflicts.c (enum conflict_resolution_e)
12829 (solved_conflicts_obstack): New, used by...
12830 (log_resolution): this.
12831 Adjust to attach the conflict resolution to each state.
12832 Complete the description with the precedence/associativity
12833 information.
12834 (resolve_sr_conflict): Adjust.
12835 * src/print.c (print_state): Output its solved_conflicts.
12836 * tests/conflicts.at (Unresolved SR Conflicts)
12837 (Solved SR Conflicts): Exercise --report=all.
12838
128392002-05-26 Akim Demaille <akim@epita.fr>
12840
12841 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
12842 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
12843 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
12844 (token_number_t, item_number_as_token_number)
12845 (token_number_as_item_number, muscle_insert_token_number_table):
12846 Rename as...
12847 (symbol_number_t, item_number_as_symbol_number)
12848 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
12849 these, since it is more appropriate.
12850
128512002-05-26 Akim Demaille <akim@epita.fr>
12852
12853 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
12854 `Error:' lines.
12855 * data/bison.simple (yystos) [YYDEBUG]: New.
12856 (yyparse) [YYDEBUG]: Display the symbols which are popped during
12857 error recovery.
12858 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
12859
128602002-05-25 Akim Demaille <akim@epita.fr>
12861
12862 * doc/bison.texinfo (Debugging): Split into...
12863 (Tracing): this new section, its former contents, and...
12864 (Understanding): this new section.
12865 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
12866 by...
12867 (report_flag): this.
12868 Adjust all dependencies.
12869 (report_args, report_types, report_argmatch): New.
12870 (usage, getargs): Report/support -r, --report.
12871 * src/options.h
12872 (struct option_table_struct): Rename as..,
12873 (struct option_table_s): this.
12874 Rename the `set_flag' member to `flag' to match with getopt_long's
12875 struct.
12876 * src/options.c (option_table): Split verbose into an entry for
12877 %verbose, and another for --verbose.
12878 Support --report/-r, so remove -r from the obsolete --raw.
12879 * src/print.c: Attach full item sets and lookaheads reports to
12880 report_flag instead of trace_flag.
12881 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
12882
128832002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12884 and Paul Eggert <eggert@twinsun.com>
12885
12886 * data/bison.simple (yyparse): Correct error handling to conform to
12887 POSIX and yacc. Specifically, after syntax error is discovered,
12888 do not reduce further before shifting the error token.
12889 Clean up the code a bit by removing the labels yyerrdefault,
12890 yyerrhandle, yyerrpop.
12891 * NEWS: Document the above.
12892
128932002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12894
12895 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
12896 type; it isn't always big enough, since it doesn't necessarily
12897 include non-terminals.
12898 (yytranslate): Expand definition of yy_token_number_type, so that
12899 the latter can be removed.
12900 (yy_token_number_type): Remove, only one use.
12901 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
12902 don't use TokenNumberType as element type.
12903
12904 * tests/regression.at: Modify expected output to agree with change
12905 to yyr1 and yytranslate.
12906
129072002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
12908
12909 * src/reader.c (parse_action): Use copy_character instead of
12910 obstack_1grow.
12911
129122002-05-13 Akim Demaille <akim@epita.fr>
12913
12914 * tests/regression.at (Token definitions): Prototype yylex and
12915 yyerror.
12916
129172002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12918
12919 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
12920 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
12921 32-bit arithmetic.
12922 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
12923
129242002-05-07 Akim Demaille <akim@epita.fr>
12925
12926 * tests/synclines.at: Be sure to prototype yylex and yyerror to
12927 avoid GCC warnings.
12928
129292002-05-07 Akim Demaille <akim@epita.fr>
12930
12931 Kill GCC warnings.
12932
12933 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
12934 over the RHS of each rule.
12935 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
12936 * src/state.h (state_t): Member `nitems' is unsigned short.
12937 * src/LR0.c (get_state): Adjust.
12938 * src/reader.c (packgram): Likewise.
12939 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
12940 `Type'.
12941 (muscle_insert_int_table): Remove, unused.
12942 (prepare_rules): Remove `max'.
12943
129442002-05-06 Akim Demaille <akim@epita.fr>
12945
12946 * src/closure.c (print_firsts): Display of the symbol tags.
12947 (bitmatrix_print): Move to...
12948 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
12949 here.
12950 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
12951
129522002-05-06 Akim Demaille <akim@epita.fr>
12953
12954 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
12955 hash_do_for_each.
12956
129572002-05-06 Akim Demaille <akim@epita.fr>
12958
12959 * src/LR0.c (new_state, get_state): Instead of using the global
12960 `kernel_size' and `kernel_base', have two new arguments:
12961 `core_size' and `core'.
12962 Adjust callers.
12963
129642002-05-06 Akim Demaille <akim@epita.fr>
12965
12966 * src/reader.c (packgram): No longer end `ritem' with a 0
12967 sentinel: it is not used.
12968
129692002-05-05 Akim Demaille <akim@epita.fr>
12970
12971 New experimental feature: display the lookaheads in the report and
12972 graph.
12973
12974 * src/print (print_core): When --trace-flag, display the rules
12975 lookaheads.
12976 * src/print_graph.c (print_core): Likewise.
12977 Swap the arguments.
12978 Adjust caller.
12979
129802002-05-05 Akim Demaille <akim@epita.fr>
12981
12982 * tests/torture.at (Many lookaheads): New test.
12983
129842002-05-05 Akim Demaille <akim@epita.fr>
12985
12986 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
12987 (GENERATE_MUSCLE_INSERT_TABLE): this.
12988 (output_int_table, output_unsigned_int_table, output_short_table)
12989 (output_token_number_table, output_item_number_table): Replace with...
12990 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
12991 (muscle_insert_short_table, muscle_insert_token_number_table)
12992 (muscle_insert_item_number_table): these.
12993 Adjust all callers.
12994 (prepare_tokens): Don't free `translations', since...
12995 * src/reader.h, src/reader.c (grammar_free): do it.
12996 Move to...
12997 * src/gram.h, src/gram.c (grammar_free): here.
12998 * data/bison.simple, data/bison.c++: b4_token_number_max is now
12999 b4_translate_max.
13000
130012002-05-05 Akim Demaille <akim@epita.fr>
13002
13003 * src/output.c (output_unsigned_int_table): New.
13004 (prepare_rules): `i' is unsigned.
13005 `prhs', `rline', `r2' are unsigned int.
13006 Rename muscle `rhs_number_max' as `rhs_max'.
13007 Output muscles `prhs_max', `rline_max', and `r2_max'.
13008 Free rline and r1.
13009 * data/bison.simple, data/bison.c++: Adjust to use these muscles
13010 to compute types instead of constant types.
13011 * tests/regression.at (Web2c Actions): Adjust.
13012
130132002-05-04 Akim Demaille <akim@epita.fr>
13014
13015 * src/symtab.h (SALIAS, SUNDEF): Rename as...
13016 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
13017 Adjust dependencies.
13018 * src/output.c (token_definitions_output): Be sure not to output a
13019 `#define 'a'' when fed with `%token 'a' "a"'.
13020 * tests/regression.at (Token definitions): New.
13021
130222002-05-03 Paul Eggert <eggert@twinsun.com>
13023
13024 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
13025 for K&R C.
13026
130272002-05-03 gettextize <bug-gnu-gettext@gnu.org>
13028
13029 * Makefile.am (SUBDIRS): Remove intl.
13030 (EXTRA_DIST): Add config/config.rpath.
13031
130322002-05-03 Akim Demaille <akim@epita.fr>
13033
13034 * data/bison.simple (m4_if): Don't output empty enums.
13035 And actually, output valid enum definitions :(.
13036
130372002-05-03 Akim Demaille <akim@epita.fr>
13038
13039 * configure.bat: Remove, completely obsolete.
13040 * Makefile.am (EXTRA_DIST): Adjust.
13041 Don't distribute config.rpath...
13042 * config/Makefile.am (EXTRA_DIST): Do it.
13043
130442002-05-03 Akim Demaille <akim@epita.fr>
13045
13046 * configure.in (GETTEXT_VERSION): New.
13047 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
13048
130492002-05-03 Akim Demaille <akim@epita.fr>
13050
13051 * data/bison.simple (b4_token_enum): New.
13052 (b4_token_defines): Use it to output tokens both as #define and
13053 enums.
13054 Suggested by Paul Eggert.
13055 * src/output.c (token_definitions_output): Don't output spurious
13056 white spaces.
13057
130582002-05-03 Akim Demaille <akim@epita.fr>
13059
13060 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
13061
130622002-05-02 Robert Anisko <robert@lrde.epita.fr>
13063
13064 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
13065 Update the stack class, give a try to deque as the default container.
13066
130672002-05-02 Akim Demaille <akim@epita.fr>
13068
13069 * data/bison.simple (yyparse): Do not implement @$ = @1.
13070 (YYLLOC_DEFAULT): Adjust to do it.
13071 * doc/bison.texinfo (Location Default Action): Fix.
13072
130732002-05-02 Akim Demaille <akim@epita.fr>
13074
13075 * src/reader.c (parse_braces): Merge into...
13076 (parse_action): this.
13077
130782002-05-02 Akim Demaille <akim@epita.fr>
13079
13080 * configure.in (ALL_LINGUAS): Remove.
13081 * po/LINGUAS, hr.po: New.
13082
130832002-05-02 Akim Demaille <akim@epita.fr>
13084
13085 Remove the so called hairy (semantic) parsers.
13086
13087 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
13088 * src/gram.h, src/gram.c (semantic_parser): Remove.
13089 (rule_t): Remove the guard and guard_line members.
13090 * src/lex.h (token_t): remove tok_guard.
13091 * src/options.c (option_table): Remove %guard and %semantic_parser
13092 support.
13093 * src/output.c, src/output.h (guards_output): Remove.
13094 (prepare): Adjust.
13095 (token_definitions_output): Don't output the `T'
13096 tokens (???).
13097 (output_skeleton): Don't output the guards.
13098 * src/files.c, src/files.c (attrsfile): Remove.
13099 * src/reader.c (symbol_list): Remove the guard and guard_line
13100 members.
13101 Adjust dependencies.
13102 (parse_guard): Remove.
13103 * data/bison.hairy: Remove.
13104 * doc/bison.texinfo (Environment Variables): Remove occurrences of
13105 BISON_HAIRY.
13106
131072002-05-02 Akim Demaille <akim@epita.fr>
13108
13109 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
13110 (parse_guard): Rename the formal argument `stack_offset' as
13111 `rule_length', which is more readable.
13112 Adjust callers.
13113 (copy_at, copy_dollar): Instead of outputting the hard coded
13114 values of $$, $n and so forth, output invocation to b4_lhs_value,
13115 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
13116 Note: this patch partially drops `semantic-parser' support: it
13117 always does `rule_length - n', where semantic parsers ought to
13118 always use `-n'.
13119 * data/bison.simple, data/bison.c++ (b4_lhs_value)
13120 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
13121
131222002-05-02 Akim Demaille <akim@epita.fr>
13123
13124 * configure.in (AC_INIT): Bump to 1.49b.
13125 (AM_INIT_AUTOMAKE): Short invocation.
13126
131272002-05-02 Akim Demaille <akim@epita.fr>
13128
13129 Version 1.49a.
13130
131312002-05-01 Akim Demaille <akim@epita.fr>
13132
13133 * src/skeleton.h: Remove.
13134
131352002-05-01 Akim Demaille <akim@epita.fr>
13136
13137 * src/skeleton.h: Fix the #endif.
13138 Reported by Magnus Fromreide.
13139
131402002-04-26 Paul Eggert <eggert@twinsun.com>
13141
13142 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
13143 Define if we define YYSTYPE and YYLTYPE, respectively.
13144 (YYCOPY): Fix [] quoting problem in the non-GCC case.
13145
131462002-04-25 Robert Anisko <robert@lrde.epita.fr>
13147
13148 * src/scan-skel.l: Postprocess quadrigraphs.
13149
13150 * src/reader.c (copy_character): New function, used to output
13151 single characters while replacing `[' and `]' with quadrigraphs, to
13152 avoid troubles with M4 quotes.
13153 (copy_comment): Output characters with copy_character.
13154 (read_additionnal_code): Likewise.
13155 (copy_string2): Likewise.
13156 (copy_definition): Likewise.
13157
13158 * tests/calc.at: Exercise M4 quoting.
13159
131602002-04-25 Akim Demaille <akim@epita.fr>
13161
13162 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
13163 between `!' and the command.
13164 Reported by Paul Eggert.
13165
131662002-04-24 Robert Anisko <robert@lrde.epita.fr>
13167
13168 * tests/calc.at: Exercise prologue splitting.
13169
13170 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
13171 `b4_post_prologue' instead of `b4_prologue'.
13172
13173 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
13174 muscles.
13175 (output): Free pre_prologue_obstack and post_prologue_obstack.
13176 * src/files.h, src/files.c (attrs_obstack): Remove.
13177 (pre_prologue_obstack, post_prologue_obstack): New.
13178 * src/reader.c (copy_definition): Add a parameter to specify the
13179 obstack to fill, instead of using attrs_obstack unconditionally.
13180 (read_declarations): Pass pre_prologue_obstack to copy_definition if
13181 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
13182
131832002-04-23 Paul Eggert <eggert@twinsun.com>
13184
13185 * data/bison.simple: Remove unnecessary commentary and white
13186 space differences from 1_29-branch.
13187 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
13188
13189 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
13190 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
13191 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
13192 constructors or destructors.
13193
13194 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
13195
131962002-04-23 Akim Demaille <akim@epita.fr>
13197
13198 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
13199 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
13200 location with columns.
13201 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
13202 All reported by Paul Eggert.
13203
132042002-04-22 Akim Demaille <akim@epita.fr>
13205
13206 * src/reduce.c (dump_grammar): Move to...
13207 * src/gram.h, src/gram.c (grammar_dump): here.
13208 Be sure to separate long item numbers.
13209 Don't read the members of a rule's prec if its nil.
13210
132112002-04-22 Akim Demaille <akim@epita.fr>
13212
13213 * src/output.c (table_size, table_grow): New.
13214 (MAXTABLE): Remove, replace uses with table_size.
13215 (pack_vector): Instead of dying when the table is too big, grow it.
13216
132172002-04-22 Akim Demaille <akim@epita.fr>
13218
13219 * data/bison.simple (yyr1): Its type is that of a token number.
13220 * data/bison.c++ (r1_): Likewise.
13221 * tests/regression.at (Web2c Actions): Adjust.
13222
132232002-04-22 Akim Demaille <akim@epita.fr>
13224
13225 * src/reader.c (token_translations_init): 256 is now the default
13226 value for the error token, i.e., it will be assigned another
13227 number if the user assigned 256 to one of her tokens.
13228 (reader): Don't force 256 to error.
13229 * doc/bison.texinfo (Symbols): Adjust.
13230 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
13231 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
13232 etc. instead of 10, 20, 30 (which was used to `jump' over error
13233 (256) and undefined (2)).
13234
132352002-04-22 Akim Demaille <akim@epita.fr>
13236
13237 Propagate more token_number_t.
13238
13239 * src/gram.h (token_number_as_item_number)
13240 (item_number_as_token_number): New.
13241 * src/output.c (GENERATE_OUTPUT_TABLE): New.
13242 Use it to create output_item_number_table and
13243 output_token_number_table.
13244 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
13245 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
13246 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
13247 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
13248
132492002-04-22 Akim Demaille <akim@epita.fr>
13250
13251 * src/output.h, src/output.c (get_lines_number): Remove.
13252
132532002-04-19 Akim Demaille <akim@epita.fr>
13254
13255 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
13256 as Lex/Flex'.
13257 (Debugging): More details about enabling the debugging features.
13258 (Table of Symbols): Describe $$, $n, @$, and @n.
13259 Suggested by Tim Josling.
13260
132612002-04-19 Akim Demaille <akim@epita.fr>
13262
13263 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
13264
132652002-04-10 Akim Demaille <akim@epita.fr>
13266
13267 * src/system.h: Rely on HAVE_LIMITS_H.
13268 Suggested by Paul Eggert.
13269
132702002-04-09 Akim Demaille <akim@epita.fr>
13271
13272 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
13273 full stderr, and strip it according to the bison options, instead
13274 of composing the error message from different bits.
13275 This makes it easier to check for several error messages.
13276 Adjust all the invocations.
13277 Add an invocation exercising the error token.
13278 Add an invocation demonstrating a stupid error message.
13279 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
13280 Adjust the tests.
13281 Error message are for stderr, not stdout.
13282
132832002-04-09 Akim Demaille <akim@epita.fr>
13284
13285 * src/gram.h, src/gram.c (error_token_number): Remove, use
13286 errtoken->number.
13287 * src/reader.c (reader): Don't specify the user token number (2)
13288 for $undefined, as it uselessly prevents using it.
13289 * src/gram.h (token_number_t): Move to...
13290 * src/symtab.h: here.
13291 (state_t.number): Is a token_number_t.
13292 * src/print.c, src/reader.c: Use undeftoken->number instead of
13293 hard coded 2.
13294 (Even though this 2 is not the same as above: the number of the
13295 undeftoken remains being 2, it is its user token number which
13296 might not be 2).
13297 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
13298 `user_token_number_max'.
13299 Output `undef_token_number'.
13300 * data/bison.simple, data/bison.c++: Use them.
13301 Be sure to map invalid yylex return values to
13302 `undef_token_number'. This saves us from gratuitous SEGV.
13303
13304 * tests/conflicts.at (Solved SR Conflicts)
13305 (Unresolved SR Conflicts): Adjust.
13306 * tests/regression.at (Web2c Actions): Adjust.
13307
133082002-04-08 Akim Demaille <akim@epita.fr>
13309
13310 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
13311 Adding #line.
13312 Remove the duplicate `typedefs'.
13313 (RhsNumberType): Fix the declaration and various other typos.
13314 Use __ofile__.
13315 * data/bison.simple: Use __ofile__.
13316 * src/scan-skel.l: Handle __ofile__.
13317
133182002-04-08 Akim Demaille <akim@epita.fr>
13319
13320 * src/gram.h (item_number_t): New, the type of item numbers in
13321 RITEM. Note that it must be able to code symbol numbers as
13322 positive number, and the negation of rule numbers as negative
13323 numbers.
13324 Adjust all dependencies (pretty many).
13325 * src/reduce.c (rule): Remove this `short *' pointer: use
13326 item_number_t.
13327 * src/system.h (MINSHORT, MAXSHORT): Remove.
13328 Include `limits.h'.
13329 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
13330 (shortcpy): Remove.
13331 (MAXTABLE): Move to...
13332 * src/output.c (MAXTABLE): here.
13333 (prepare_rules): Use output_int_table to output rhs.
13334 * data/bison.simple, data/bison.c++: Adjust.
13335 * tests/torture.at (Big triangle): Move the limit from 254 to
13336 500.
13337 * tests/regression.at (Web2c Actions): Ajust.
13338
13339 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
13340 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
13341 passes, but produces negative #line number, once fixed, GCC is
13342 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
13343 C), it passes.
13344 * src/state.h (state_h): Code input lines on ints, not shorts.
13345
133462002-04-08 Akim Demaille <akim@epita.fr>
13347
13348 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
13349 and then the grammar.
13350
133512002-04-08 Akim Demaille <akim@epita.fr>
13352
13353 * src/system.h: No longer using strndup.
13354
133552002-04-07 Akim Demaille <akim@epita.fr>
13356
13357 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
13358 * src/output.c (output_table_data): Return the longest number.
13359 (prepare_tokens): Output `token_number_max').
13360 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
13361 New.
13362 Use them to define yy_token_number_type/TokenNumberType.
13363 Use this type for yytranslate.
13364 * tests/torture.at (Big triangle): Push the limit from 124 to
13365 253.
13366 * tests/regression.at (Web2c Actions): Adjust.
13367
133682002-04-07 Akim Demaille <akim@epita.fr>
13369
13370 * tests/torture.at (Big triangle): New.
13371 (GNU AWK Grammar, GNU Cim Grammar): Move to...
13372 * tests/existing.at: here.
13373
133742002-04-07 Akim Demaille <akim@epita.fr>
13375
13376 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
13377 nritems.
13378 Adjust dependencies.
13379
133802002-04-07 Akim Demaille <akim@epita.fr>
13381
13382 * src/reader.c: Normalize increments to prefix form.
13383
133842002-04-07 Akim Demaille <akim@epita.fr>
13385
13386 * src/reader.c, symtab.c: Remove debugging code.
13387
133882002-04-07 Akim Demaille <akim@epita.fr>
13389
13390 Rename all the `bucket's as `symbol_t'.
13391
13392 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
13393 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
13394 * src/symtab.c, src/symtab.h (bucket): Rename as...
13395 (symbol_t): this.
13396 (symbol_list_new, bucket_check_defined, bucket_make_alias)
13397 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
13398 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
13399 (buckets_new, buckets_free, buckets_do): Rename as...
13400 (symbol_list_new, symbol_check_defined, symbol_make_alias)
13401 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
13402 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
13403 (symbols_new, symbols_free, symbols_do): these.
13404
134052002-04-07 Akim Demaille <akim@epita.fr>
13406
13407 Use lib/hash for the symbol table.
13408
13409 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
13410 EOF.
13411 * src/lex.c (lex): Set the `number' member of new terminals.
13412 * src/reader.c (bucket_check_defined, bucket_make_alias)
13413 (bucket_check_alias_consistence, bucket_translation): New.
13414 (reader, grammar_free, readgram, token_translations_init)
13415 (packsymbols): Adjust.
13416 (reader): Number the predefined tokens.
13417 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
13418 for predefined tokens.
13419 * src/symtab.h (bucket): Remove all the hash table related
13420 members.
13421 * src/symtab.c (symtab): Replace by...
13422 (bucket_table): this.
13423 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
13424 (buckets_new, buckets_do): New.
13425
134262002-04-07 Akim Demaille <akim@epita.fr>
13427
13428 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
13429 (start_symbol, max_user_token_number, semantic_parser)
13430 (error_token_number): Initialize.
13431 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
13432 Initialize.
13433 (reader): Don't.
13434 (errtoken, eoftoken, undeftoken, axiom): Extern.
13435
134362002-04-07 Akim Demaille <akim@epita.fr>
13437
13438 * src/gram.h (rule_s): prec and precsym are now pointers
13439 to the bucket giving the priority/associativity.
13440 Member `associativity' removed: useless.
13441 * src/reduce.c, src/conflicts.c: Adjust.
13442
134432002-04-07 Akim Demaille <akim@epita.fr>
13444
13445 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
13446 Properly escape the symbols' TAG when outputting them.
13447
134482002-04-07 Akim Demaille <akim@epita.fr>
13449
13450 * src/lalr.h (LA): Is a bitsetv, not bitset*.
13451
134522002-04-07 Akim Demaille <akim@epita.fr>
13453
13454 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
13455 (LArule): this, which is an array to rule_t*.
13456 * src/print.c, src/conflicts.c: Adjust.
13457
134582002-04-07 Akim Demaille <akim@epita.fr>
13459
13460 * src/gram.h (rule_t): Rename `number' as `user_number'.
13461 `number' is a new member.
13462 Adjust dependencies.
13463 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
13464
134652002-04-07 Akim Demaille <akim@epita.fr>
13466
13467 As a result of the previous patch, it is no longer needed
13468 to reorder ritem itself.
13469
13470 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
13471
134722002-04-07 Akim Demaille <akim@epita.fr>
13473
13474 Be sure never to walk through RITEMS, but use only data related to
13475 the rules themselves. RITEMS should be banished.
13476
13477 * src/output.c (output_token_translations): Rename as...
13478 (prepare_tokens): this.
13479 In addition to `translate', prepare the muscles `tname' and
13480 `toknum', which were handled by...
13481 (output_rule_data): this.
13482 Remove, and move the remainder of its outputs into...
13483 (prepare_rules): this new routines, which also merges content from
13484 (output_gram): this.
13485 (prepare_rules): Be sure never to walk through RITEMS.
13486 (output_stos): Rename as...
13487 (prepare_stos): this.
13488 (output): Always invoke prepare_states, after all, just don't use it
13489 in the output if you don't need it.
13490
134912002-04-07 Akim Demaille <akim@epita.fr>
13492
13493 * src/LR0.c (new_state): Display `nstates' as the name of the
13494 newly created state.
13495 Adjust to initialize first_state and last_state if needed.
13496 Be sure to distinguish the initial from the final state.
13497 (new_states): Create the itemset of the initial state, and use
13498 new_state.
13499 * src/closure.c (closure): Now that the initial state has its
13500 items properly set, there is no need for a special case when
13501 creating `ruleset'.
13502
13503 As a result, now the rule 0, reducing to $axiom, is visible in the
13504 outputs. Adjust the test suite.
13505
13506 * tests/conflicts.at (Solved SR Conflicts)
13507 (Unresolved SR Conflicts): Adjust.
13508 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
13509 * tests/conflicts.at (S/R in initial): New.
13510
135112002-04-07 Akim Demaille <akim@epita.fr>
13512
13513 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
13514 the RHS of the rules.
13515 * src/output.c (output_gram): Likewise.
13516
135172002-04-07 Akim Demaille <akim@epita.fr>
13518
13519 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
13520 bucket.
13521 Adjust all dependencies.
13522 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
13523 `number' of the buckets too.
13524 * src/gram.h: Include `symtab.h'.
13525 (associativity): Move to...
13526 * src/symtab.h: here.
13527 No longer include `gram.h'.
13528
135292002-04-07 Akim Demaille <akim@epita.fr>
13530
13531 * src/gram.h, src/gram.c (rules_rhs_length): New.
13532 (ritem_longest_rhs): Use it.
13533 * src/gram.h (rule_t): `number' is a new member.
13534 * src/reader.c (packgram): Set it.
13535 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
13536 the end of `rules', and count them out of `nrules'.
13537 (reduce_output, dump_grammar): Adjust.
13538 * src/print.c (print_grammar): It is no longer needed to check for
13539 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
13540 * tests/reduce.at (Reduced Automaton): New test.
13541
135422002-04-07 Akim Demaille <akim@epita.fr>
13543
13544 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
13545 lacking `+ 1' to nrules, Bison reported as useless a token if it
13546 was used solely to set the precedence of the last rule...
13547
135482002-04-07 Akim Demaille <akim@epita.fr>
13549
13550 * data/bison.c++, data/bison.simple: Don't output the current file
13551 name in #line, to avoid useless diffs between two identical
13552 outputs under different names.
13553
135542002-04-07 Akim Demaille <akim@epita.fr>
13555
13556 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
13557 Normalize loops to using `< nrules + 1', not `<= nrules'.
13558
135592002-04-07 Akim Demaille <akim@epita.fr>
13560
13561 * TODO: Update.
13562
135632002-04-07 Akim Demaille <akim@epita.fr>
13564
13565 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
13566 bucket.value as bucket.number.
13567
135682002-04-07 Akim Demaille <akim@epita.fr>
13569
13570 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
13571 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
13572 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
13573 RHS, instead of being an index in RITEMS.
13574
135752002-04-04 Paul Eggert <eggert@twinsun.com>
13576
13577 * doc/bison.texinfo: Update copyright date.
13578 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
13579 (Symbols): Warn about running Bison in one character set,
13580 but compiling and/or running in an incompatible one.
13581 Warn about character code 256, too.
13582
135832002-04-03 Paul Eggert <eggert@twinsun.com>
13584
13585 * src/bison.data (YYSTACK_ALLOC): Depend on whether
13586 YYERROR_VERBOSE is nonzero, not whether it is defined.
13587
13588 Merge changes from bison-1_29-branch.
13589
135902002-03-20 Paul Eggert <eggert@twinsun.com>
13591
13592 Merge fixes from Debian bison_1.34-1.diff.
13593
13594 * configure.in (AC_PREREQ): 2.53.
13595
135962002-03-20 Akim Demaille <akim@epita.fr>
13597
13598 * src/conflicts.c (log_resolution): Argument `resolution' is const.
13599
136002002-03-19 Paul Eggert <eggert@twinsun.com>
13601
13602 * src/bison.simple (YYCOPY): New macro.
13603 (YYSTACK_RELOCATE): Use it.
13604 Remove Type arg; no longer needed. All callers changed.
13605 (yymemcpy): Remove; no longer needed.
13606
13607 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
13608 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13609
136102002-03-19 Akim Demaille <akim@epita.fr>
13611
13612 Test and fix the #line outputs.
13613
13614 * tests/atlocal.at (GCC): New.
13615 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
13616 (Prologue synch line, %union synch line, Postprologue synch line)
13617 (Action synch line, Epilogue synch line): New tests.
13618 * src/reader.c (parse_union_decl): Define the muscle stype_line.
13619 * data/bison.simple, data/bison.c++: Use it.
13620
136212002-03-19 Akim Demaille <akim@epita.fr>
13622
13623 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
13624 (Solved SR Conflicts, %expect not enough, %expect right)
13625 (%expect too much): Move to...
13626 * tests/conflicts.at: this new file.
13627
136282002-03-19 Akim Demaille <akim@epita.fr>
13629
13630 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
13631 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
13632 that we can move to enums for instance.
13633 * src/output.c (token_definitions_output): Output a list of
13634 `token-name, token-number' instead of the #define.
13635 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
13636
136372002-03-14 Akim Demaille <akim@epita.fr>
13638
13639 Use Gettext 0.11.1.
13640
136412002-03-09 Robert Anisko <robert@lrde.epita.fr>
13642
13643 * data/bison.c++: Make the user able to add members to the generated
13644 parser by subclassing.
13645
136462002-03-05 Robert Anisko <robert@lrde.epita.fr>
13647
13648 * src/reader.c (read_additionnal_code): `c' should be an integer, not
13649 a character.
13650 Reported by Nicolas Tisserand and Nicolas Burrus.
13651
136522002-03-04 Robert Anisko <robert@lrde.epita.fr>
13653
13654 * src/reader.c: Warn about lacking semi-colons, do not complain.
13655
136562002-03-04 Robert Anisko <robert@lrde.epita.fr>
13657
13658 * data/bison.c++: Remove a debug line.
13659
136602002-03-04 Robert Anisko <robert@lrde.epita.fr>
13661
13662 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
13663 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
13664 provide a default implementation.
13665
136662002-03-04 Akim Demaille <akim@epita.fr>
13667
13668 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
13669 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
13670 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
13671 * tests/semantic.at (Parsing Guards): Similarly.
13672 * src/reader.at (readgram): Complain if the last rule is not ended
13673 with a semi-colon.
13674
136752002-03-04 Akim Demaille <akim@epita.fr>
13676
13677 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
13678 * src/closure.c: here.
13679 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
13680 RTC.
13681 * src/warshall.h, src/warshall.c: Remove.
13682 * tests/sets.at (Broken Closure): Adjust.
13683
136842002-03-04 Akim Demaille <akim@epita.fr>
13685
13686 * src/output.c (output_skeleton): tempdir is const.
13687 bytes_read is unused.
13688
136892002-03-04 Akim Demaille <akim@epita.fr>
13690
13691 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
13692 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
13693 Update.
13694 From Michael Hayes.
13695
136962002-03-04 Akim Demaille <akim@epita.fr>
13697
13698 * src/closure.c (closure): `r' is unused.
13699
137002002-03-04 Akim Demaille <akim@epita.fr>
13701
13702 * tests/sets.at (Broken Closure): Add the ending `;'.
13703 * src/reader.at (readgram): Complain if a rule is not ended with a
13704 semi-colon.
13705
137062002-03-04 Akim Demaille <akim@epita.fr>
13707
13708 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
13709 (count_sr_conflicts): Use bitset_count.
13710 * src/reduce.c (inaccessable_symbols): Ditto.
13711 (bits_size): Remove.
13712 * src/warshall.h, src/warshall.c: Convert to bitsetv.
13713
137142002-03-04 Akim Demaille <akim@epita.fr>
13715
13716 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
13717 * src/reduce.c: Remove the `bitset_zero's following the
13718 `bitset_create's, as now it is performed by the latter.
13719
137202002-03-04 Akim Demaille <akim@epita.fr>
13721
13722 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
13723 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
13724 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
13725 latest sources from Michael.
13726
137272002-03-04 Akim Demaille <akim@epita.fr>
13728
13729 * src/output.c (output): Don't free the grammar.
13730 * src/reader.c (grammar_free): New.
13731 * src/main.c (main): Call it and don't free symtab here.
13732
137332002-03-04 Akim Demaille <akim@epita.fr>
13734
13735 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
13736 before returning.
13737 Reported by Benoit Perrot.
13738
137392002-03-04 Akim Demaille <akim@epita.fr>
13740
13741 Use bitset operations when possible, not loops over bits.
13742
13743 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
13744 bitset_or.
13745 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
13746 * src/reduce.c (useless_nonterminals): Formatting changes.
13747 * src/warshall.c (TC): Use bitset_or.
13748
137492002-03-04 Akim Demaille <akim@epita.fr>
13750
13751 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
13752 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
13753 Ditto.
13754
137552002-03-04 Akim Demaille <akim@epita.fr>
13756
13757 * src/lalr.c (F): Now a bitset*.
13758 Adjust all dependencies.
13759
137602002-03-04 Akim Demaille <akim@epita.fr>
13761
13762 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
13763 Adjust all dependencies.
13764
137652002-03-04 Akim Demaille <akim@epita.fr>
13766
13767 * src/L0.c, src/LR0.h (nstates): Be size_t.
13768 Adjust comparisons (signed vs unsigned).
13769 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
13770 bitset*.
13771 Adjust all dependencies.
13772
137732002-03-04 Akim Demaille <akim@epita.fr>
13774
13775 * src/closure.c (firsts): Now, also a bitset.
13776 Adjust all dependencies.
13777 (varsetsize): Remove, now unused.
13778 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
13779
137802002-03-04 Akim Demaille <akim@epita.fr>
13781
13782 * src/print.c: Convert to use bitset.h, not hand coded iterations
13783 over ints.
13784
137852002-03-04 Akim Demaille <akim@epita.fr>
13786
13787 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
13788
137892002-03-04 Akim Demaille <akim@epita.fr>
13790
13791 * src/closure.c (ruleset): Be a bitset.
13792 (rulesetsize): Remove.
13793
137942002-03-04 Akim Demaille <akim@epita.fr>
13795
13796 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
13797 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
13798 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
13799 * src/closure.c (fderives): Be an array of bitsets.
13800
138012002-02-28 Robert Anisko <robert@lrde.epita.fr>
13802
13803 * data/bison.c++: Merge the two generated headers. Insert a copyright
13804 notice in each output file.
13805
138062002-02-28 Akim Demaille <akim@epita.fr>
13807
13808 * data/bison.c++: Copy the prologue of bison.simple to fetch
13809 useful M4 definitions, such as b4_header_guard.
13810
138112002-02-25 Akim Demaille <akim@epita.fr>
13812
13813 * src/getargs.c (version): Give the name of the authors, and use a
13814 translator friendly scheme for the bgr
13815 copyright notice.
13816
138172002-02-25 Akim Demaille <akim@epita.fr>
13818
13819 * src/output.c (header_output): Remove, now handled completely via
13820 M4.
13821
138222002-02-25 Akim Demaille <akim@epita.fr>
13823
13824 * m4/m4.m4: New, from CVS Autoconf.
13825 * configure.in: Invoke it.
13826 * src/output.c (output_skeleton): Use its result instead of the
13827 hard coded name.
13828
138292002-02-25 Akim Demaille <akim@epita.fr>
13830
13831 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
13832 Fileutils 4.1.5.
13833 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
13834 * src/output.c (output_skeleton): Use mkstemp to create a real
13835 temporary file.
13836 Move the filling of `skeleton' and its muscle to...
13837 (prepare): here.
13838 (output): Move the definition of the prologue muscle to...
13839 (prepare): here.
13840 * src/system.h (DEFAULT_TMPDIR): New.
13841
138422002-02-14 Paul Eggert <eggert@twinsun.com>
13843
13844 Remove the support for C++ namespace cleanliness; it was
13845 causing more problems than it was curing, since it didn't work
13846 properly on some nonstandard C++ compilers. This can wait
13847 for a proper C++ parser.
13848
13849 * NEWS: Document this.
13850 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
13851 of C++, as it's treated like C now.
13852 * src/bison.simple (YYSTD): Remove.
13853 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
13854 Treat C++ just like Standard C instead of trying to support
13855 namespace cleanliness.
13856
138572002-02-14 Akim Demaille <akim@epita.fr>
13858
13859 * tests/regression.at (else): Adjust to Andreas' change.
13860
138612002-02-14 Akim Demaille <akim@epita.fr>
13862
13863 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
13864
138652002-02-13 Andreas Schwab <schwab@suse.de>
13866
13867 * src/output.c (output_rule_data): Don't output NULL, it might
13868 not be defined yet.
13869
138702002-02-11 Robert Anisko <robert@lrde.epita.fr>
13871
13872 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
13873 (Copyright notice): Update.
13874
138752002-02-11 Akim Demaille <akim@epita.fr>
13876
13877 * tests/regression.at (%nonassoc and eof): Don't include
13878 nonportable headers.
13879
138802002-02-08 Robert Anisko <robert@lrde.epita.fr>
13881
13882 * data/bison.c++: Correct error recovery. Make the user able to
13883 initialize the starting location.
13884
138852002-02-07 Akim Demaille <akim@epita.fr>
13886
13887 * tests/input.at: New.
13888
138892002-02-07 Robert Anisko <robert@lrde.epita.fr>
13890
13891 * data/bison.c++: Replace some direct m4 expansions by constants. Be
13892 more consistent when naming methods and variables. Put preprocessor
13893 directives around tables only needed for debugging.
13894
138952002-02-07 Robert Anisko <robert@lrde.epita.fr>
13896
13897 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
13898 C++ parsers.
13899 (yy::b4_name::parse): Use print_.
13900
139012002-02-07 Robert Anisko <robert@lrde.epita.fr>
13902
13903 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
13904
139052002-02-07 Robert Anisko <robert@lrde.epita.fr>
13906
13907 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
13908 C++ parsers.
13909 (yy::b4_name::parse): Build verbose error messages, and use error_.
13910
139112002-02-06 Robert Anisko <robert@lrde.epita.fr>
13912
13913 * data/bison.c++: Fix m4 quoting in comments.
13914
139152002-02-06 Robert Anisko <robert@lrde.epita.fr>
13916
13917 * data/bison.c++: Adjust the parser code. Fix some muscles that were
13918 not expanded by m4.
13919
139202002-02-05 Akim Demaille <akim@epita.fr>
13921
13922 * data/bison.c++: Adjust to the M4 back end.
13923 More is certainly needed.
13924
139252002-02-05 Akim Demaille <akim@epita.fr>
13926
13927 Give a try to M4 as a back end.
13928
13929 * lib/readpipe.c: New, from wdiff.
13930 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
13931 BISON_HAIRY.
13932 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
13933 specific values. Now it is m4 that performs the lookup.
13934 * src/parse-skel.y: Remove.
13935 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
13936 * src/output.c (actions_output, guards_output)
13937 (token_definitions_output): No longer keeps track of the output
13938 line number, hence remove the second argument.
13939 (guards_output): Check against the guard member of a rule, not the
13940 action member.
13941 Adjust callers.
13942 (output_skeleton): Don't look for the skeleton location, let m4 do
13943 that.
13944 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
13945 file will be used.
13946 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
13947 (prepare): Given that for the time being changesyntax is not
13948 usable in M4, rename the muscles using `-' to `_'.
13949 Define `defines_flag', `output_parser_name' and `output_header_name'.
13950 * src/output.h (actions_output, guards_output)
13951 (token_definitions_output): Adjust prototypes.
13952 * src/scan-skel.l: Instead of scanning the skeletons, it now
13953 processes the output of m4: `__oline__' and `#output'.
13954 * data/bison.simple: Adjust to be used by M4(sugar).
13955 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
13956 to date.
13957 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
13958 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
13959 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
13960 shamelessly stolen from CVS Autoconf.
13961
139622002-02-05 Akim Demaille <akim@epita.fr>
13963
13964 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
13965 * configure.in: Check for the declarations of free and malloc.
13966 * src/muscle_tab.c: Adjust.
13967
139682002-02-05 Akim Demaille <akim@epita.fr>
13969
13970 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
13971 which have no values.
13972
139732002-02-05 Akim Demaille <akim@epita.fr>
13974
13975 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
13976 * data/: here.
13977
139782002-01-29 Paul Eggert <eggert@twinsun.com>
13979
13980 * src/bison.simple (YYSIZE_T): Do not define merely because
13981 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
13982 On some platforms, <alloca.h> does not declare YYSTD (size_t).
13983
139842002-01-27 Akim Demaille <akim@epita.fr>
13985
13986 Fix `%nonassoc and eof'.
13987
13988 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
13989 which were not properly copied! Replace
13990 memcpy (res->errs, src->errs, src->nerrs);
13991 with
13992 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
13993 !!!
13994 * tests/regression.at (%nonassoc and eof): Adjust to newest
13995 Autotest: `.' is not in the PATH.
13996
139972002-01-27 Akim Demaille <akim@epita.fr>
13998
13999 * tests/sets.at (AT_EXTRACT_SETS): New.
14000 (Nullable): Use it.
14001 (Firsts): New.
14002
140032002-01-26 Akim Demaille <akim@epita.fr>
14004
14005 * tests/actions.at, tests/calc.at, tests/headers.at,
14006 * tests/torture.at: Adjust to the newest Autotest which no longer
14007 forces `.' in the PATH.
14008
140092002-01-25 Akim Demaille <akim@epita.fr>
14010
14011 * tests/regression.at (%nonassoc and eof): New.
14012 Suggested by Robert Anisko.
14013
140142002-01-24 Akim Demaille <akim@epita.fr>
14015
14016 Bison dumps core when trying to complain about broken input files.
14017 Reported by Cris van Pelt.
14018
14019 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
14020 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
14021 into...
14022 (Invalid inputs): Strengthen: exercise parse_percent_token.
14023
140242002-01-24 Robert Anisko <robert.anisko@epita.fr>
14025
14026 * src/Makefile.am: Add bison.c++.
14027 * src/bison.c++: New skeleton.
14028
140292002-01-21 Paolo Bonzini <bonzini@gnu.org>
14030
14031 * po/it.po: New.
14032
140332002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
14034
14035 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
14036
140372002-01-20 Marc Autret <marc@gnu.org>
14038
14039 * src/files.c (compute_output_file_names): Fix
14040
140412002-01-20 Marc Autret <marc@gnu.org>
14042
14043 * tests/output.at: New test.
14044 * src/files.c (compute_base_names): Don't map extensions when
14045 the YACC flag is set, use defaults.
14046 Reported by Evgeny Stambulchik.
14047
140482002-01-20 Marc Autret <marc@gnu.org>
14049
14050 * src/system.h: Need to define __attribute__ away for non-GCC
14051 compilers as well (i.e., the vendor C compiler).
14052 Suggested by Albert Chin-A-Young.
14053
140542002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
14055
14056 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
14057 canonical definition.
14058 * src/system.h: Use the canonical definition for PARAMS (avoids
14059 a conflict with the macro from lib/hash.h).
14060
140612002-01-11 Akim Demaille <akim@epita.fr>
14062
14063 * configure.in: Use AC_FUNC_STRNLEN.
14064 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
14065
140662002-01-09 Akim Demaille <akim@epita.fr>
14067
14068 * src/files.c, src/files.h (output_infix): New.
14069 (tab_extension): Remove.
14070 (compute_base_names): Compute the former, drop the latter.
14071 * src/output.c (prepare): Insert the muscles `output-infix', and
14072 `output-suffix'.
14073 * src/parse-skel.y (string, string.1): New.
14074 (section.header): Use it.
14075 (section.yacc): Remove.
14076 (prefix): Remove too.
14077 * src/scan-skel.l: Adjust.
14078 * src/bison.simple, src/bison.hairy: Adjust.
14079
140802002-01-09 Akim Demaille <akim@epita.fr>
14081
14082 * configure.in (WERROR_CFLAGS): Compute it.
14083 * src/Makefile.am (CFLAGS): Pass it.
14084 * tests/atlocal.in (CFLAGS): Idem.
14085 * src/files.c: Fix a few warnings.
14086 (get_extension_index): Remove, unused.
14087
140882002-01-08 Akim Demaille <akim@epita.fr>
14089
14090 * src/getargs.c (AS_FILE_NAME): New.
14091 (getargs): Use it to convert DOSish file names.
14092 * src/files.c (base_name): Rename as full_base_name to avoid
14093 clashes with `base_name ()'.
14094 (filename_split): New.
14095 (compute_base_names): N-th rewrite, using filename_split.
14096
140972002-01-08 Akim Demaille <akim@epita.fr>
14098
14099 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
14100 New, stolen from the Fileutils 4.1.
14101 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
14102 * configure.in: Check for the presence of memrchr, and of its
14103 prototype.
14104
141052002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
14106
14107 * lib/hash.h (__P): Added definition for this macro.
14108 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
14109 BUILT_SOURCES, to ensure they are generated first.
14110 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
14111 %error-verbose to allow bootstrapping with bison 1.30x.
14112
141132002-01-06 Akim Demaille <akim@epita.fr>
14114
14115 * src/reader.c (parse_braces): Don't fetch the next char, the
14116 convention is to fetch on entry.
14117 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
14118 'switch' without a following semicolon.
14119 * tests/regression.at (braces parsing): New.
14120
141212002-01-06 Akim Demaille <akim@epita.fr>
14122
14123 Bison is dead wrong in its RR conflict reports.
14124
14125 * tests/torture.at (GNU Cim Grammar): New.
14126 * src/conflicts.c (count_rr_conflicts): Fix.
14127
141282002-01-06 Akim Demaille <akim@epita.fr>
14129
14130 Creating package.m4 from configure.ac causes too many problems.
14131
14132 * tests/Makefile.am (package.m4): Create it by hand,
14133 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
14134
141352002-01-06 Akim Demaille <akim@epita.fr>
14136
14137 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
14138 skeleton.h.
14139
141402002-01-04 Paul Eggert <eggert@twinsun.com>
14141
14142 * doc/bison.texinfo (Debugging):
14143 Remove YYSTDERR; it's no longer defined or used.
14144 Also, s/cstdio.h/cstdio/.
14145
141462002-01-03 Akim Demaille <akim@epita.fr>
14147
14148 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
14149
141502002-01-03 Akim Demaille <akim@epita.fr>
14151
14152 * src/parse-skel.y (process_skeleton): Don't bind the parser's
14153 tracing code to --trace, wait for a better --trace option, with
14154 args.
14155
141562002-01-03 Akim Demaille <akim@epita.fr>
14157
14158 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
14159 The ISO C++ standard is extremely clear about it: stderr is
14160 considered a macro, not a regular symbol (see table 94 `Header
14161 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
14162 Therefore std:: does not apply to it. It still does with fprintf.
14163 Also, s/cstdio.h/cstdio/.
14164
141652002-01-03 Akim Demaille <akim@epita.fr>
14166
14167 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
14168 for non system headers.
14169
141702002-01-02 Akim Demaille <akim@epita.fr>
14171
14172 Equip the skeleton chain with location tracking, runtime trace,
14173 pure parser and scanner.
14174
14175 * src/parse-skel.y: Request a pure parser, locations, and prefix
14176 renaming.
14177 (%union): Having several members with the same type does not help
14178 type mismatches, simplify.
14179 (YYPRINT, yyprint): New.
14180 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
14181 (skel_error): this.
14182 Handle locations.
14183 * src/scan-skel.l: Adjust to these changes.
14184 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
14185 (LOCATION_PRINT, skel_control_t): New.
14186
141872001-12-30 Akim Demaille <akim@epita.fr>
14188
14189 * src/parse-skel.y: Get rid of the shift/reduce conflict:
14190 replace `gb' with BLANKS.
14191 * src/scan-skel.l: Adjust.
14192
141932001-12-30 Akim Demaille <akim@epita.fr>
14194
14195 * src/system.h: We don't need nor want bcopy.
14196 Throw away MS-DOS crap: we don't need getpid.
14197 * configure.in: We don't need strndup. It was even causing
14198 problems: because Flex includes the headers *before* us,
14199 _GNU_SOURCE is not defined by config.h, and therefore strndup was
14200 not visible.
14201 * lib/xstrndup.c: New.
14202 * src/scan-skel.l: Use it.
14203 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
14204 * src/parse-skel.y: Use %directives instead of #defines.
14205
142062001-12-30 Akim Demaille <akim@epita.fr>
14207
14208 * src/skeleton.h: New.
14209 * src/output.c (output_parser, output_master_parser): Remove, dead
14210 code.
14211 * src/output.h (get_lines_number, actions_output, guards_output)
14212 (token_definitions_output): Prototype them.
14213 * src/parse-skel.y: Add the license notice.
14214 Include output.h and skeleton.h.
14215 (process_skeleton): Returns void, and takes a single parameter.
14216 * src/scan-skel.l: Add the license notice.
14217 Include skeleton.h.
14218 Don't use %option yylineno: it seems that then Flex imagines
14219 REJECT has been used, and therefore it won't reallocate its
14220 buffers (which makes no other sense to me than a bug). It results
14221 in warnings for `unused: yy_flex_realloc'.
14222
142232001-12-30 Robert Anisko <robert.anisko@epita.fr>
14224
14225 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
14226 (MUSCLE_INSERT_PREFIX): ...to there.
14227 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
14228 (MUSCLE_INSERT_PREFIX): Move from here...
14229
14230 * src/bison.hairy: Add a section directive. Put braces around muscle
14231 names. This parser skeleton is still broken, but Bison should not
14232 choke on a bad muscle 'syntax'.
14233 * src/bison.simple: Add a section directive. Put braces around muscle
14234 names.
14235
14236 * src/files.h (strsuffix, stringappend): Add declarations.
14237 (tab_extension): Add declaration.
14238 (short_base_name): Add declaration.
14239
14240 * src/files.c (strsuffix, stringappend): No longer static. These
14241 functions are used in the skeleton parser.
14242 (tab_extension): New.
14243 (compute_base_names): Use the computations done in this function
14244 to guess if the generated parsers should have '.tab' in their
14245 names.
14246 (short_base_name): No longer static.
14247
14248 * src/output.c (output_skeleton): New.
14249 (output): Disable call to output_master_parser, and give a try to
14250 a new skeleton handling system.
14251 (guards_output, actions_output): No longer static.
14252 (token_definitions_output, get_lines_number): No longer static.
14253
14254 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
14255
14256 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
14257 parse-skel.y.
14258
14259 * src/parse-skel.y: New file.
14260 * src/scan-skel.l: New file.
14261
142622001-12-29 Akim Demaille <akim@epita.fr>
14263
14264 %name-prefix is broken.
14265
14266 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
14267 Adjust all dependencies.
14268 * tests/headers.at (export YYLTYPE): Strengthen this test: use
14269 %name-prefix.
14270
14271 Renaming yylval but not yylloc is not consistent. Now we do.
14272
14273 * src/bison.simple: Prefix yylloc if used.
14274 * doc/bison.texinfo (Decl Summary): Document that.
14275
142762001-12-29 Akim Demaille <akim@epita.fr>
14277
14278 * doc/bison.texinfo: Promote `%long-directive' over
14279 `%long_directive'.
14280 Remove all references to fixed-output-files, yacc is enough.
14281
142822001-12-29 Akim Demaille <akim@epita.fr>
14283
14284 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
14285 user prologue. These are defaults.
14286 * tests/actions.at (Mid-rule actions): Make sure the user can
14287 define YYDEBUG and YYERROR_VERBOSE.
14288
142892001-12-29 Akim Demaille <akim@epita.fr>
14290
14291 * src/output.c (header_output): Don't forget to export YYLTYPE and
14292 yylloc.
14293 * tests/headers.at (export YYLTYPE): New, make sure it does.
14294 * tests/regression.at (%union and --defines, Invalid CPP headers):
14295 Move to...
14296 * tests/headers.at: here.
14297
142982001-12-29 Akim Demaille <akim@epita.fr>
14299
14300 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
14301
143022001-12-29 Akim Demaille <akim@epita.fr>
14303
14304 * tests/actions.at (Mid-rule actions): Output on a single line
14305 instead of several.
14306
143072001-12-29 Akim Demaille <akim@epita.fr>
14308
14309 * doc/bison.texinfo: Formatting changes.
14310
143112001-12-29 Akim Demaille <akim@epita.fr>
14312
14313 Don't store the token defs in a muscle, just be ready to output it
14314 on command. Now possible via `symbols'. Fixes a memory leak.
14315
14316 * src/output.c (token_definitions_output): New.
14317 (output_parser, header_output): Use it.
14318 * src/reader.c (symbols_save): Remove.
14319
143202001-12-29 Akim Demaille <akim@epita.fr>
14321
14322 * src/bison.simple: Do not provide a default for YYSTYPE and
14323 YYLTYPE before the user's prologue. Otherwise it's hardly... a
14324 default.
14325
143262001-12-29 Akim Demaille <akim@epita.fr>
14327
14328 Mid-rule actions are simply... ignored!
14329
14330 * src/reader.c (readgram): Be sure to attach mid-rule actions to
14331 the empty-rule associated to the dummy symbol, not to the host
14332 rule.
14333 * tests/actions.at (Mid-rule actions): New.
14334
143352001-12-29 Akim Demaille <akim@epita.fr>
14336
14337 Memory leak.
14338
14339 * src/reader.c (reader): Free grammar.
14340
143412001-12-29 Akim Demaille <akim@epita.fr>
14342
14343 Memory leak.
14344
14345 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
14346 since it allocates it for each state, although only one is needed.
14347 (allocate_storage): Do it here.
14348
143492001-12-29 Akim Demaille <akim@epita.fr>
14350
14351 * src/options.h, src/options.c (create_long_option_table): Rename
14352 as...
14353 (long_option_table_new): this, with a clearer prototype.
14354 (percent_table): Remove, unused,
14355 * src/getargs.c (getargs): Adjust.
14356
143572001-12-29 Akim Demaille <akim@epita.fr>
14358
14359 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
14360 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
14361 as states.
14362
143632001-12-29 Akim Demaille <akim@epita.fr>
14364
14365 * src/lalr.c (build_relations): Rename `states' as `states1'.
14366 Sorry, I don't understand exactly what it is, no better name...
14367
143682001-12-29 Akim Demaille <akim@epita.fr>
14369
14370 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
14371 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
14372 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
14373 as rules.
14374
143752001-12-29 Akim Demaille <akim@epita.fr>
14376
14377 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
14378 ago.
14379
143802001-12-29 Akim Demaille <akim@epita.fr>
14381
14382 * src/reader.c, src/reader.h (user_toknums): Remove.
14383 Adjust all users to use symbols[i]->user_token_number.
14384
143852001-12-29 Akim Demaille <akim@epita.fr>
14386
14387 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
14388 Adjust all users to use symbols[i]->prec or ->assoc.
14389
143902001-12-29 Akim Demaille <akim@epita.fr>
14391
14392 * src/reader.c, src/reader.h (tags): Remove.
14393 Adjust all users to use symbols[i]->tag.
14394
143952001-12-29 Akim Demaille <akim@epita.fr>
14396
14397 * src/gram.h, src/gram.c (symbols): New, similar to state_table
14398 and rule_table.
14399 * src/reader.c (packsymbols): Fill this table.
14400 Drop sprec.
14401 * src/conflicts.c (resolve_sr_conflict): Adjust.
14402 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
14403 single table.
14404 Use symbols[i]->tag instead of tags[i].
14405
144062001-12-29 Akim Demaille <akim@epita.fr>
14407
14408 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
14409 In addition, put a comment in there, to replace...
14410 * tests/regression.at (%union and C comments): Remove.
14411
144122001-12-29 Akim Demaille <akim@epita.fr>
14413
14414 * tests/regression.at (Web2c Actions): Blindly move the actual
14415 output as expected output. The contents *seem* right to me, but I
14416 can't pretend reading perfectly parser tables... Nonetheless, all
14417 the other tests pass correctly, the table look OK, even though the
14418 presence of `$axiom' is to be noted: AFAICS it is useless (but
14419 harmless).
14420
144212001-12-29 Akim Demaille <akim@epita.fr>
14422
14423 * src/reader.c (readgram): Don't add the rule 0 if there were no
14424 rules read. In other words, add it _after_ having performed
14425 grammar sanity checks.
14426 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
14427
144282001-12-29 Akim Demaille <akim@epita.fr>
14429
14430 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
14431 visible, and some states have now a different number.
14432
144332001-12-29 Akim Demaille <akim@epita.fr>
14434
14435 * src/reader.c (readgram): Bind the initial rule's lineno to that
14436 of the first rule.
14437 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
14438 (Solved SR Conflicts): Adjust rule 0's line number.
14439
144402001-12-29 Akim Demaille <akim@epita.fr>
14441
14442 Fix the `GAWK Grammar' failure.
14443
14444 * src/LR0.c (final_state): Initialize to -1 so that we do compute
14445 the reductions of the first state which was mistakenly confused
14446 with the final state because precisely final_state was initialized
14447 to 0.
14448 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
14449 now noticed by Bison.
14450 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
14451 have a reduction on $default.
14452
144532001-12-29 Akim Demaille <akim@epita.fr>
14454
14455 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
14456 rule line numbers.
14457 * src/closure.c (print_closure): Likewise.
14458 * src/derives.c (print_derives): Likewise.
14459 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
14460 now.
14461
144622001-12-29 Akim Demaille <akim@epita.fr>
14463
14464 * src/lalr.c (lookaheads_print): New.
14465 (lalr): Call it when --trace-flag.
14466 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
14467 are dumped.
14468
144692001-12-29 Akim Demaille <akim@epita.fr>
14470
14471 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
14472 when walking through ritem, even via rule->rhs.
14473 * src/reduce.c (dump_grammar, useful_production, reduce_output)
14474 (useful_production, useless_nonterminals): Likewise.
14475 (reduce_grammar_tables): Likewise, plus update nritems.
14476 * src/nullable.c (set_nullable): Likewise.
14477 * src/lalr.c (build_relations): Likewise.
14478 * tests/sets.at (Nullable): Adjust.
14479 Fortunately, now, the $axiom is no longer nullable.
14480
144812001-12-29 Akim Demaille <akim@epita.fr>
14482
14483 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
14484 the 0-sentinel.
14485 * src/gram.c (ritem_longest_rhs): Likewise.
14486 * src/reduce.c (nonterminals_reduce): Likewise.
14487 * src/print_graph.c (print_graph): Likewise.
14488 * src/output.c (output_rule_data): Likewise.
14489 * src/nullable.c (set_nullable): Likewise.
14490
144912001-12-29 Akim Demaille <akim@epita.fr>
14492
14493 * src/output.c: Comment changes.
14494
144952001-12-27 Paul Eggert <eggert@twinsun.com>
14496
14497 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
14498 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
14499 Sparc, as they were causing more porting problems than the
14500 (minor) performance improvement was worth.
14501
14502 Also, catch up with 1.31's YYSTD.
14503
145042001-12-27 Akim Demaille <akim@epita.fr>
14505
14506 * src/output.c (output_gram): Rely on nritems, not the
14507 0-sentinel. See below.
14508 Use -1 as separator, not 0.
14509 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
14510 Rely on -1 as separator in yyrhs, instead of 0.
14511 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
14512 twice `Now at end of input', therefore there are two lines less to
14513 expect.
14514
145152001-12-27 Akim Demaille <akim@epita.fr>
14516
14517 * tests/regression.at (Unresolved SR Conflicts):
14518 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
14519 below.
14520
145212001-12-27 Akim Demaille <akim@epita.fr>
14522
14523 * src/LR0.c (new_state): Recognize the final state by the fact it
14524 is reached by eoftoken.
14525 (insert_start_shifting_state, insert_eof_shifting_state)
14526 (insert_accepting_state, augment_automaton): Remove, since now
14527 these states are automatically computed from the initial state.
14528 (generate_states): Adjust.
14529 * src/print.c: When reporting a rule number to the user, substract
14530 1, so that the axiom rule is rule 0, and the first user rule is 1.
14531 * src/reduce.c: Likewise.
14532 * src/print_graph.c (print_core): For the time being, just as for
14533 the report, depend upon --trace-flags to dump the full set of
14534 items.
14535 * src/reader.c (readgram): Once the grammar read, insert the rule
14536 0: `$axiom: START-SYMBOL $'.
14537 * tests/set.at: Adjust: rule 0 is now displayed, and since the
14538 number of the states has changed (the final state is no longer
14539 necessarily the last), catch up.
14540
145412001-12-27 Akim Demaille <akim@epita.fr>
14542
14543 Try to make the use of the eoftoken valid. Given that its value
14544 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
14545 is used instead of > 0 where appropriate, (ii), depend upon nritems
14546 instead of the 0-sentinel.
14547
14548 * src/gram.h, src/gram.c (nritems): New.
14549 Expected to be duplication of nitems, but for the time being...
14550 * src/reader.c (packgram): Assert nritems and nitems are equal.
14551 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
14552 * src/closure.c (print_closure, print_fderives): Likewise.
14553 * src/gram.c (ritem_print): Likewise.
14554 * src/print.c (print_core, print_grammar): Likewise.
14555 * src/print_graph.c: Likewise.
14556
145572001-12-27 Akim Demaille <akim@epita.fr>
14558
14559 * src/main.c (main): If there are complains after grammar
14560 reductions, then output the report anyway if requested, then die.
14561 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
14562 * src/reader.c (eoftoken): New.
14563 (parse_token_decl): If the token being defined has value `0', it
14564 is the eoftoken.
14565 (packsymbols): No longer hack `tags' to insert `$' by hand.
14566 Be sure to preserve the value of the eoftoken.
14567 (reader): Make sure eoftoken is defined.
14568 Initialize nsyms to 0: now eoftoken is created just like the others.
14569 * src/print.c (print_grammar): Don't special case the eof token.
14570 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
14571 lie anyway, albeit pleasant.
14572 * tests/calc.at: Exercise error messages with eoftoken.
14573 Change the grammar so that empty input is invalid.
14574 Adjust expectations.
14575 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
14576
145772001-12-27 Akim Demaille <akim@epita.fr>
14578
14579 * configure.in: Check the protos of strchr ans strspn.
14580 Replace strchr if needed.
14581 * src/system.h: Provide the protos of strchr, strspn and memchr if
14582 missing.
14583 * lib/strchr.c: New.
14584 * src/reader.c (symbols_save): Use strchr.
14585
145862001-12-27 Akim Demaille <akim@epita.fr>
14587
14588 * src/print.c, src/print_graph.c (escape): New.
14589 Use it to quote the TAGS outputs.
14590 * src/print_graph.c (print_state): Now errors are in red, and
14591 reductions in green.
14592 Prefer high to wide: output the state number on a line of its own.
14593
145942001-12-27 Akim Demaille <akim@epita.fr>
14595
14596 * src/state.h, src/state.c (reductions_new): New.
14597 * src/LR0.c (set_state_table): Let all the states have a
14598 `reductions', even if reduced to 0.
14599 (save_reductions): Adjust.
14600 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
14601 * src/print.c (print_reductions, print_actions): Adjust.
14602 * src/output.c (action_row): Adjust.
14603
146042001-12-27 Akim Demaille <akim@epita.fr>
14605
14606 * src/state.h, src/state.c (errs_new, errs_dup): New.
14607 * src/LR0.c (set_state_table): Let all the states have an errs,
14608 even if reduced to 0.
14609 * src/print.c (print_errs, print_reductions): Adjust.
14610 * src/output.c (output_actions, action_row): Adjust.
14611 * src/conflicts.c (resolve_sr_conflict): Adjust.
14612
146132001-12-27 Akim Demaille <akim@epita.fr>
14614
14615 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
14616
146172001-12-27 Akim Demaille <akim@epita.fr>
14618
14619 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
14620 * src/print.c: here.
14621 (lookaheadset, shiftset): New, used as additional storage by
14622 print_reductions.
14623 (print_results): Adjust.
14624 (print_shifts, print_gotos, print_errs): New, extracted from...
14625 (print_actions): here.
14626 * src/print_graph.c (print_actions): Remove dead code.
14627
146282001-12-27 Akim Demaille <akim@epita.fr>
14629
14630 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
14631 `$n' and `@n'.
14632
146332001-12-27 Akim Demaille <akim@epita.fr>
14634
14635 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
14636 (build_relations): Adjust.
14637
146382001-12-27 Akim Demaille <akim@epita.fr>
14639
14640 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
14641 duplication.
14642
146432001-12-27 Akim Demaille <akim@epita.fr>
14644
14645 * src/reader.c (packgram): Catch nitems overflows.
14646
146472001-12-27 Akim Demaille <akim@epita.fr>
14648
14649 * src/files.c, src/files.h (guard_obstack): Remove.
14650 * src/output.c (output): Adjust.
14651 * src/reader.c (parse_braces): New, factoring...
14652 (copy_action, copy_guard): these two which are renamed as...
14653 (parse_action, parse_guard): these.
14654 As a voluntary consequence, using braces around guards is now
14655 mandatory.
14656
146572001-12-27 Akim Demaille <akim@epita.fr>
14658
14659 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
14660 * src/reader.c (symbol_list): `guard' and `guard_line' are new
14661 members.
14662 (symbol_list_new): Adjust.
14663 (copy_action): action_line is the first line, not the last.
14664 (copy_guard): Just as for actions, store the `action' only, not
14665 the switch/case/break flesh.
14666 Don't parse the user action that might follow the guard, let...
14667 (readgram): do it, i.e., now, there can be an action after a
14668 guard.
14669 In other words the guard is just explicitly optional.
14670 (packgram): Adjust.
14671 * src/output.c (guards_output): New.
14672 (output_parser): Call it when needed.
14673 (output): Also free the guard and attrs obstacks.
14674 * src/files.c, src/files.h (obstack_save): Remove.
14675 (output_files): Remove.
14676 As a result, if one needs the former `.act' file, using an
14677 appropriate skeleton which requires actions and guards is now
14678 required.
14679 * src/main.c (main): Adjust.
14680 * tests/semantic.at: New.
14681 * tests/regression.at: Use `input.y' as input file name.
14682 Avoid 8+3 problems by requiring input.c when the test needs the
14683 parser.
14684
146852001-12-27 Akim Demaille <akim@epita.fr>
14686
14687 * src/reader.c (symbol_list_new): Be sure to initialize all the
14688 fields.
14689
146902001-12-27 Akim Demaille <akim@epita.fr>
14691
14692 All the hacks using a final pseudo state are now useless.
14693
14694 * src/LR0.c (set_state_table): state_table holds exactly nstates.
14695 * src/lalr.c (nLA): New.
14696 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
14697 instead of lookaheadsp from the pseudo state (nstate + 1).
14698
146992001-12-27 Akim Demaille <akim@epita.fr>
14700
14701 * src/output.c (action_row, token_actions): Use a state_t instead
14702 of a integer, and nlookaheads instead of the following state's
14703 lookaheadsp.
14704
147052001-12-27 Akim Demaille <akim@epita.fr>
14706
14707 * src/conflicts.c (log_resolution, flush_shift)
14708 (resolve_sr_conflict, set_conflicts, solve_conflicts)
14709 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
14710 (conflicts_print, print_reductions): Use a state_t instead of an
14711 integer when referring to a state.
14712 As much as possible, depend upon nlookaheads, instead of the
14713 `lookaheadsp' member of the following state (since lookaheads of
14714 successive states are successive, the difference between state n + 1
14715 and n served as the number of lookaheads for state n).
14716 * src/lalr.c (add_lookback_edge): Likewise.
14717 * src/print.c (print_core, print_actions, print_state)
14718 (print_results): Likewise.
14719 * src/print_graph.c (print_core, print_actions, print_state)
14720 (print_graph): Likewise.
14721 * src/conflicts.h: Adjust.
14722
147232001-12-27 Akim Demaille <akim@epita.fr>
14724
14725 * src/bison.hairy: Formatting/comment changes.
14726 ANSIfy.
14727 Remove `register' indications.
14728 Add plenty of `static'.
14729
147302001-12-27 Akim Demaille <akim@epita.fr>
14731
14732 * src/output.c (prepare): Drop the muscle `ntbase' which
14733 duplicates ntokens.
14734 * src/bison.simple: Formatting/comment changes.
14735 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
14736 is an undocumented synonym.
14737
147382001-12-22 Akim Demaille <akim@epita.fr>
14739
14740 * src/output.c (output_table_data): Change the prototype to use
14741 `int' for array ranges: some invocations do pass an int, not a
14742 short.
14743 Reported by Wayne Green.
14744
147452001-12-22 Akim Demaille <akim@epita.fr>
14746
14747 Some actions of web2c.y are improperly triggered.
14748 Reported by Mike Castle.
14749
14750 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
14751 * tests/regression.at (Web2c): Rename as...
14752 (Web2c Report): this.
14753 (Web2c Actions): New.
14754
147552001-12-22 Akim Demaille <akim@epita.fr>
14756
14757 Reductions in web2c.y are improperly reported.
14758 Reported by Mike Castle.
14759
14760 * src/conflicts.c (print_reductions): Fix.
14761 * tests/regression.at (Web2c): New.
14762
147632001-12-18 Akim Demaille <akim@epita.fr>
14764
14765 Some host fail on `assert (!"foo")', which expands to
14766 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
14767 Reported by Nelson Beebee.
14768
14769 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
14770 `#define it_succeeded 0' and `assert (it_succeeded)'.
14771
147722001-12-17 Marc Autret <autret_m@epita.fr>
14773
14774 * src/bison.simple: Don't hard code the skeleton line and filename.
14775 * src/output.c (output_parser): Rename 'line' as 'output_line'.
14776 New line counter 'skeleton_line' (skeleton-line muscle).
14777
147782001-12-17 Paul Eggert <eggert@twinsun.com>
14779
14780 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
14781 YYDEBUG must be defined to a nonzero value.
14782
14783 * src/bison.simple (yytname): Do not assume that the user defines
14784 YYDEBUG to a properly parenthesized expression.
14785
147862001-12-17 Akim Demaille <akim@epita.fr>
14787
14788 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
14789 nlookaheads is a new member.
14790 Adjust all users.
14791 * src/lalr.h (nlookaheads): Remove this orphan declaration.
14792 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
14793 state.
14794
147952001-12-17 Akim Demaille <akim@epita.fr>
14796
14797 * src/files.h, src/files.c (open_files, close_files): Remove.
14798 * src/main.c (main): Don't open/close files, nor invoke lex_free,
14799 let...
14800 * src/reader.c (reader): Do it.
14801
148022001-12-17 Akim Demaille <akim@epita.fr>
14803
14804 * src/conflicts.c (print_reductions): Formatting changes.
14805
148062001-12-17 Akim Demaille <akim@epita.fr>
14807
14808 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
14809 (flush_reduce): New.
14810 (resolve_sr_conflict): Adjust.
14811
148122001-12-17 Akim Demaille <akim@epita.fr>
14813
14814 * src/output.c (output_obstack): Be static and rename as...
14815 (format_obstack): this, to avoid any confusion with files.c's
14816 output_obstack.
14817 * src/reader.h (muscle_obstack): Move to...
14818 * src/output.h: here, since it's defined in output.c.
14819
148202001-12-17 Akim Demaille <akim@epita.fr>
14821
14822 * src/output.c (action_row, save_column, default_goto)
14823 (sort_actions, matching_state, pack_vector): Better variable
14824 locality.
14825
148262001-12-17 Akim Demaille <akim@epita.fr>
14827
14828 * src/output.c: Various formatting changes.
14829
148302001-12-17 Akim Demaille <akim@epita.fr>
14831
14832 * src/files.c (output_files): Free the output_obstack.
14833 * src/main.c (main): Call print and print_graph conditionally.
14834 * src/print.c (print): Work unconditionally.
14835 * src/print_graph.c (print_graph): Work unconditionally.
14836 * src/conflicts.c (log_resolution): Output only if verbose_flag.
14837
148382001-12-16 Marc Autret <autret_m@epita.fr>
14839
14840 * src/output.c (actions_output): Fix. When we use %no-lines,
14841 there is one less line per action.
14842
148432001-12-16 Marc Autret <autret_m@epita.fr>
14844
14845 * src/bison.simple: Remove a useless #line directive.
14846 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
14847 * src/output.c (get_lines_number): New.
14848 (output_parser): Adjust, now takes care about the lines of a
14849 output muscles.
14850 Fix line numbering.
14851 (actions_output): Computes the number of lines taken by actions.
14852 (output_master_parser): Insert new skeleton which is the name of
14853 the output parser file name.
14854
148552001-12-15 Marc Autret <autret_m@epita.fr>
14856
14857 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
14858
148592001-12-15 Marc Autret <autret_m@epita.fr>
14860
14861 * src/output.c (output_gram): Keep track of the hairy one.
14862
148632001-12-15 Akim Demaille <akim@epita.fr>
14864
14865 Make `make distcheck' work.
14866
14867 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
14868 system.h which uses libgettext.h.
14869
148702001-12-15 Akim Demaille <akim@epita.fr>
14871
14872 * src/nullable.c (set_nullable): Useless rules must be skipped,
14873 otherwise, since we range over their symbols, we might look at a
14874 nonterminal which no longer ``exists'', i.e., it is not counted in
14875 `nvars', hence we overflow our arrays.
14876
148772001-12-15 Akim Demaille <akim@epita.fr>
14878
14879 The header can also be produced directly, without any obstack!
14880 Yahoo!
14881
14882 * src/files.c, src/files.h (defines_obstack): Remove.
14883 (compute_header_macro): Global.
14884 (defines_obstack_save): Remove.
14885 * src/reader.c (parse_union_decl): No longer output to
14886 defines_obstack: its content can be found in the `stype' muscle
14887 anyway.
14888 (output_token_translations): Merge into...
14889 (symbols_output): this.
14890 Rename as...
14891 (symbols_save): this.
14892 (reader): Adjust.
14893 * src/output.c (header_output): New.
14894 (output): Call it.
14895
148962001-12-15 Akim Demaille <akim@epita.fr>
14897
14898 * src/reader.c (parse_union_decl): Instead of handling two obstack
14899 simultaneously, use one to define the `stype' muscle, and use the
14900 value of the latter to fill defines_obstack.
14901 (copy_comment): Remove.
14902 (copy_comment2): Work for a single obstack.
14903 Rename as...
14904 (copy_comment): this.
14905
149062001-12-15 Akim Demaille <akim@epita.fr>
14907
14908 * src/lex.c, src/lex.h (xgetc): No longer static.
14909 * src/reader.c (parse_union_decl): Revamp.
14910
149112001-12-15 Akim Demaille <akim@epita.fr>
14912
14913 Still making progress in separating Bison into (i) input, (ii)
14914 process, (iii) output: now we can directly output the parser file
14915 without using table_obstack at all.
14916
14917 * src/files.c, src/files.h (table_obstack): Bye bye.
14918 (parser_file_name): New.
14919 * src/files.c (compute_output_file_names): Compute it.
14920 * src/output.c (actions_output, output_parser)
14921 (output_master_parser): To a file instead of an obstack.
14922
149232001-12-15 Akim Demaille <akim@epita.fr>
14924
14925 Attach actions to rules, instead of pre-outputting them to
14926 actions_obstack.
14927
14928 * src/gram.h (rule_t): action and action_line are new members.
14929 * src/reader.c (symbol_list): Likewise.
14930 (copy_action): Save the actions within the rule.
14931 (packgram): Save them in rule_table.
14932 * src/output.c (actions_output): New.
14933 (output_parser): Use it on `%%actions'.
14934 (output_rule_data): Don't free rule_table.
14935 (output): Do it.
14936 (prepare): Don't save the `action' muscle.
14937 * src/bison.simple: s/%%action/%%actions/.
14938
149392001-12-15 Akim Demaille <akim@epita.fr>
14940
14941 * src/reader.c (copy_action): When --yacc, don't append a `;'
14942 to the user action: let it fail if lacking.
14943 Suggested by Arnold Robbins and Tom Tromey.
14944
149452001-12-14 Akim Demaille <akim@epita.fr>
14946
14947 * src/lex.c (literalchar): Simply return the char you decoded, non
14948 longer mess around with obstacks and int pointers.
14949 Adjust all callers.
14950
149512001-12-14 Akim Demaille <akim@epita.fr>
14952
14953 * src/lex.c (literalchar): Don't escape the special characters,
14954 just decode them, and keep them as char (before, eol was output as
14955 the 2 char string `\n' etc.).
14956 * src/output.c (output_rule_data): Use quotearg to output the
14957 token strings.
14958
149592001-12-13 Paul Eggert <eggert@twinsun.com>
14960
14961 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
14962 Do not infringe on the global user namespace when using C++.
14963 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
14964 All uses of `fprintf' and `stderr' changed.
14965
14966 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
14967
149682001-12-13 Akim Demaille <akim@epita.fr>
14969
14970 The computation of nullable is broken: it doesn't handle empty
14971 RHS's properly.
14972
14973 * tests/torture.at (GNU AWK Grammar): New.
14974 * tests/sets.at (Nullable): New.
14975 * src/nullable.c (set_nullable): Instead of blindly looping over
14976 `ritems', loop over the rules, and then over their rhs's.
14977
14978 Work around Autotest bugs.
14979
14980 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
14981 frame, because Autotest understand lines starting with a `+' as
14982 traces from the shell. Then, they are not processed properly.
14983 Admittedly an Autotest bug, but we don't have time to wait for
14984 Autotest to catch up.
14985 * tests/regression.at (Broken Closure): Adjust to the new table
14986 frames.
14987 Move to...
14988 * tests/sets.at: here.
14989
149902001-12-13 Akim Demaille <akim@epita.fr>
14991
14992 * src/closure.c (closure): Use nrules instead of playing tricks
14993 with BITS_PER_WORD.
14994
149952001-12-13 Akim Demaille <akim@epita.fr>
14996
14997 * src/print.c (print_actions): Output the handling of `$' as the
14998 traces do: shifting the token EOF. Before EOF was treated as a
14999 nonterminal.
15000 * tests/regression.at: Adjust some tests.
15001 * src/print_graph.c (print_core): Complete the set of items via
15002 closure. The next-to-final and final states are still unsatisfying,
15003 but that's to be addressed elsewhere.
15004 No longer output the rule numbers, but do output the state number.
15005 A single loop for the shifts + gotos is enough, but picked a
15006 distinct color for each.
15007 (print_graph): Initialize and finalize closure.
15008
150092001-12-13 Akim Demaille <akim@epita.fr>
15010
15011 * src/reader.c (readgram): Remove dead code, an strip useless
15012 braces.
15013 (get_type): Remove, unused.
15014
150152001-12-12 Akim Demaille <akim@epita.fr>
15016
15017 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
15018 on that of lib/error.c.
15019
150202001-12-12 Akim Demaille <akim@epita.fr>
15021
15022 Some hosts don't like `/' in includes.
15023
15024 * src/system.h: Include libgettext.h without qualifying the path.
15025 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
15026 $(top_srcdir).
15027
150282001-12-11 Marc Autret <autret_m@epita.fr>
15029
15030 * src/output.c (output_parser): Remove useless muscle.
15031
150322001-12-11 Marc Autret <autret_m@epita.fr>
15033
15034 * src/bison.simple: Remove #line just before %%epilogue. It
15035 is now handled in ...
15036 * src/reader.c (read_additionnal_code): Add the output of a
15037 #line for the epilogue.
15038
150392001-12-10 Marc Autret <autret_m@epita.fr>
15040
15041 * src/reader.c (copy_definition): Re-use CPP-outed code which
15042 replace precedent remove.
15043 * src/bison.simple: Remove #line before %%prologue because
15044 %%input-line is wrong at this time.
15045
150462001-12-10 Marc Autret <autret_m@epita.fr>
15047
15048 * src/reader.c (symbols_output): Clean up.
15049 * src/output.c (output_gram, output): Clean up.
15050
150512001-12-10 Akim Demaille <akim@epita.fr>
15052
15053 * src/lalr.c (initialize_lookaheads): New. Extracted from...
15054 * src/LR0.c (set_state_table): here.
15055 * src/lalr.c (lalr): Call it.
15056
150572001-12-10 Akim Demaille <akim@epita.fr>
15058
15059 * src/state.h (shifts): Remove the `number' member: shifts are
15060 attached to state, hence no longer need to be labelled with a
15061 state number.
15062
150632001-12-10 Akim Demaille <akim@epita.fr>
15064
15065 Now that states have a complete set of members, the linked list of
15066 shifts is useless: just fill directly the state's shifts member.
15067
15068 * src/state.h (shifts): Remove the `next' member.
15069 * src/LR0.c (first_state, last_state): Remove.
15070 Adjust the callers.
15071 (augment_automaton): Don't look for the shifts that must be added
15072 a shift on EOF: it is those of the state we looked for! But now,
15073 since shifts are attached, it is no longer needed to looking
15074 merely by its id: its number.
15075
150762001-12-10 Akim Demaille <akim@epita.fr>
15077
15078 * src/LR0.c (augment_automaton): Better variable locality.
15079 Remove an impossible branch: if there is a state corresponding to
15080 the start symbol being shifted, then there is shift for the start
15081 symbol from the initial state.
15082
150832001-12-10 Akim Demaille <akim@epita.fr>
15084
15085 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
15086 only when appropriate: when insert_start_shifting_state' is not
15087 invoked.
15088 * tests/regression.at (Rule Line Numbers): Adjust.
15089
150902001-12-10 Akim Demaille <akim@epita.fr>
15091
15092 * src/LR0.c (augment_automaton): Now that all states have shifts,
15093 merge the two cases addition shifts to the initial state.
15094
150952001-12-10 Akim Demaille <akim@epita.fr>
15096
15097 * src/lalr.c (set_state_table): Move to...
15098 * src/LR0.c: here.
15099 * src/lalr.c (lalr): Don't call it...
15100 * src/LR0.c (generate_states): do it.
15101 * src/LR0.h (first_state): Remove, only the table is used.
15102
151032001-12-10 Akim Demaille <akim@epita.fr>
15104
15105 * src/LR0.h (first_shift, first_reduction): Remove.
15106 * src/lalr.c: Don't use first_shift: find shifts through the
15107 states.
15108
151092001-12-10 Akim Demaille <akim@epita.fr>
15110
15111 * src/LR0.c: Attach shifts to states as soon as they are
15112 computed.
15113 * src/lalr.c (set_state_table): Instead of assigning shifts to
15114 state, just assert that the mapping was properly done.
15115
151162001-12-10 Akim Demaille <akim@epita.fr>
15117
15118 * src/LR0.c (insert_start_shift): Rename as...
15119 (insert_start_shifting_state): this.
15120 (insert_eof_shifting_state, insert_accepting_state): New.
15121 (augment_automaton): Adjust.
15122 Better locality of the variables.
15123 When looking if the start_symbol is shifted from the initial
15124 state, using `while (... symbol != start_symbol ...)' sounds
15125 better than `while (... symbol < start_symbol ...)': If fail
15126 to see how the order between symbols could be relevant!
15127
151282001-12-10 Akim Demaille <akim@epita.fr>
15129
15130 * src/getargs.h: Don't declare `spec_name_prefix' and
15131 `spec_file_prefix', declared by src/files.h.
15132 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
15133 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
15134 * src/output.c (prepare): Adjust.
15135 * src/reader.c (symbols_output): Likewise.
15136 * src/vmsgetargs.c: Vaguely adjust, but who cares?
15137
151382001-12-10 Akim Demaille <akim@epita.fr>
15139
15140 * src/muscle_tab.c (muscle_init): NULL is a better default than
15141 `"0"'.
15142
151432001-12-10 Akim Demaille <akim@epita.fr>
15144
15145 * src/reader.c (reader): Calling symbols_output once is enough.
15146
151472001-12-10 Akim Demaille <akim@epita.fr>
15148
15149 Now that states have a complete set of members, the linked list of
15150 reductions is useless: just fill directly the state's reductions
15151 member.
15152
15153 * src/state.h (struct reductions): Remove member `number' and
15154 `next'.
15155 * src/LR0.c (first_reduction, last_reduction): Remove.
15156 (save_reductions): Don't link the new reductions, store them in
15157 this_state.
15158 * src/lalr.c (set_state_table): No need to attach reductions to
15159 states, it's already done.
15160 * src/output.c (output_actions): No longer free the shifts, then
15161 the reductions, then the states: free all the states and their
15162 members.
15163
151642001-12-10 Akim Demaille <akim@epita.fr>
15165
15166 * src/options.c (OPTN, DRTV, BOTH): New.
15167 (option_table): Use them.
15168
15169 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
15170 the job of system.h.
15171 * src/options.c: Don't include stdio.h and xalloc.h for the same
15172 reasons.
15173
151742001-12-10 Akim Demaille <akim@epita.fr>
15175
15176 * src/output.c (output, prepare): Make sure the values of the
15177 muscles `action' and `prologue' are 0-terminated.
15178
151792001-12-10 Akim Demaille <akim@epita.fr>
15180
15181 Clean up GCC warnings.
15182
15183 * src/reader.c (copy_action): `buf' is not used.
15184 (parse_skel_decl): Be static.
15185 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
15186 * src/options.h (create_long_option_table): Have a real prototype.
15187 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
15188 (hash_delete_at): Return const void *.
15189 Adjust casts to preserve the const.
15190
151912001-12-10 Akim Demaille <akim@epita.fr>
15192
15193 * configure.in: Require 2.52g.
15194 M4 is not needed, but AUTOM4TE is.
15195 * m4/m4.m4: Remove.
15196 * tests/Makefile.am: Adjust.
15197
151982001-12-10 Akim Demaille <akim@epita.fr>
15199
15200 One structure for states is enough, even though theoretically
15201 there are LR(0) states and LALR(1) states.
15202
15203 * src/lalr.h (state_t): Remove.
15204 (state_table): Be state_t **, not state_t *.
15205 * src/state.h (core, CORE_ALLOC): Rename as...
15206 (state_t, STATE_ALLOC): this.
15207 Add the LALR(1) members: shifts, reductions, errs.
15208 * src/LR0.c (state_table): Rename as...
15209 (state_hash): this, to avoid name clashes with the global
15210 `state_table'.
15211 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
15212 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
15213
152142001-12-10 Akim Demaille <akim@epita.fr>
15215
15216 Bison dumps core on bash.y.
15217 Reported by Pascal Bart.
15218
15219 * src/warshall.c (bitmatrix_print): New.
15220 (TC): Use it.
15221 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
15222 j must be the outer loop.
15223 * tests/regression.at (Broken Closure): New.
15224
152252001-12-05 Akim Demaille <akim@epita.fr>
15226
15227 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
15228 its argument.
15229 Reported by Peter Hamorsky.
15230
152312001-12-05 Akim Demaille <akim@epita.fr>
15232
15233 * src/conflicts.c (err_table): Remove.
15234 (resolve_sr_conflict): Adjust.
15235 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
15236 Rename as...
15237 (state_t.reductions, state_t.shifts): this.
15238
152392001-12-05 Akim Demaille <akim@epita.fr>
15240
15241 * src/reduce.c (reduce_grammar_tables): No longer disable the
15242 removal of useless rules via CPP but via `if (0)', so that the
15243 compiler still check the code is valid.
15244 For instance, it should have noticed `rline' no longer exists: use
15245 the `line' member of rule_t.
15246 * src/gram.c (dummy, rline): Remove, unused.
15247
152482001-12-05 Akim Demaille <akim@epita.fr>
15249
15250 * src/output.c (pack_vector): Use assert, not berror.
15251 * src/main.c (berror): Remove, unused.
15252
152532001-12-05 Akim Demaille <akim@epita.fr>
15254
15255 New experimental feature: if --verbose --trace output all the
15256 items of a state, not only its kernel.
15257
15258 * src/print.c (print_core): If `trace_flag', then invoke closure
15259 before outputting the items of the state (print_core is no longer
15260 a correct name them).
15261 (print_results): Invoke new_closure/free_closure if needed.
15262
152632001-12-05 Akim Demaille <akim@epita.fr>
15264
15265 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
15266 * src/closure.c, src/closure.h (itemsetsize): Rename as...
15267 (nitemset): for consistency with the rest of the project.
15268
152692001-12-05 Akim Demaille <akim@epita.fr>
15270
15271 * src/closure.c (print_closure): Improve.
15272 (closure): Use it for printing input and output.
15273
152742001-12-05 Akim Demaille <akim@epita.fr>
15275
15276 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
15277 indexed by nonterminals.
15278
152792001-12-05 Akim Demaille <akim@epita.fr>
15280
15281 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
15282 what it was!).
15283 * src/warshall.h: Remove accidental duplication of the content.
15284
152852001-12-05 Akim Demaille <akim@epita.fr>
15286
15287 * src/closure.c (set_fderives): De-obfuscate.
15288
152892001-12-05 Akim Demaille <akim@epita.fr>
15290
15291 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
15292
152932001-12-05 Akim Demaille <akim@epita.fr>
15294
15295 * src/closure.c (set_firsts): De-obfuscate.
15296
152972001-12-05 Akim Demaille <akim@epita.fr>
15298
15299 * src/output.c (action_row): De-obfuscate
15300 using the good o' techniques: arrays not pointers, variable
15301 locality, BITISSET, RESETBIT etc.
15302
153032001-12-05 Akim Demaille <akim@epita.fr>
15304
15305 Pessimize the code to simplify it: from now on, all the states
15306 have a valid SHIFTS, which NSHIFTS is possibly 0.
15307
15308 * src/LR0.c (shifts_new): Be global and move to..
15309 * src/state.c, src/state.h: here.
15310 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
15311 * src/print_graph: Adjust.
15312
153132001-12-05 Akim Demaille <akim@epita.fr>
15314
15315 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
15316 * src/conflicts.c: Use it.
15317 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
15318 incorrectly ``simplified''.
15319
153202001-12-05 Akim Demaille <akim@epita.fr>
15321
15322 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
15323 using the good o' techniques: arrays not pointers, variable
15324 locality, BITISSET, RESETBIT etc.
15325
153262001-12-05 Akim Demaille <akim@epita.fr>
15327
15328 * src/state.h (SHIFT_SYMBOL): New.
15329 * src/conflicts.c: Use it to deobfuscate.
15330
153312001-12-05 Akim Demaille <akim@epita.fr>
15332
15333 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
15334 (print_reductions): De-obfuscate using the good o' techniques:
15335 arrays not pointers, variable locality, BITISSET.
15336
153372001-12-05 Akim Demaille <akim@epita.fr>
15338
15339 * src/conflicts.c (print_reductions): Arrays, not pointers.
15340 Use BITISSET.
15341
153422001-12-05 Akim Demaille <akim@epita.fr>
15343
15344 * src/conflicts.c (print_reductions): Pessimize, but clarify.
15345
153462001-12-05 Akim Demaille <akim@epita.fr>
15347
15348 * src/conflicts.c (print_reductions): Improve variable locality.
15349
153502001-12-05 Akim Demaille <akim@epita.fr>
15351
15352 * src/conflicts.c (print_reductions): Pessimize, but clarify.
15353
153542001-12-05 Akim Demaille <akim@epita.fr>
15355
15356 * src/conflicts.c (print_reductions): Improve variable locality.
15357
153582001-12-05 Akim Demaille <akim@epita.fr>
15359
15360 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
15361 * src/lalr.c: Use them.
15362
153632001-12-05 Akim Demaille <akim@epita.fr>
15364
15365 * src/LR0.c (augment_automaton): Formatting changes.
15366 Better variable locality.
15367
153682001-12-05 Akim Demaille <akim@epita.fr>
15369
15370 * src/lalr.c (matrix_print): New.
15371 (transpose): Use it.
15372 Use arrays instead of pointers.
15373
153742001-12-05 Akim Demaille <akim@epita.fr>
15375
15376 * src/lalr.c (maxrhs): Move to...
15377 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
15378 * src/lalr.c (build_relations): Adjust.
15379
153802001-12-05 Akim Demaille <akim@epita.fr>
15381
15382 * src/lalr.c (transpose): Free the memory allocated to the
15383 argument, as it is replaced by the results by the unique caller.
15384 (build_relations): Merely invoke transpose: it handles the memory
15385 deallocation.
15386 Improve variable locality.
15387 Avoid variables used as mere abbreviations.
15388 (compute_lookaheads): Use arrays instead of pointers.
15389
153902001-12-05 Akim Demaille <akim@epita.fr>
15391
15392 * src/lalr.c (initialize_F): Improve variable locality.
15393 Avoid variables used as mere abbreviations.
15394
153952001-12-05 Akim Demaille <akim@epita.fr>
15396
15397 * src/derives.c (print_derives): Display the ruleno.
15398 * src/lalr.c (initialize_F, transpose): Better variable locality
15399 to improve readability.
15400 Avoid variables used as mere abbreviations.
15401
154022001-12-05 Akim Demaille <akim@epita.fr>
15403
15404 * src/lalr.c (traverse): Use arrays instead of pointers.
15405
154062001-12-05 Akim Demaille <akim@epita.fr>
15407
15408 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
15409 the handling of squeue.
15410 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
15411
154122001-12-05 Akim Demaille <akim@epita.fr>
15413
15414 Because useless nonterminals are now kept alive (instead of being
15415 `destroyed'), we now sometimes examine them, and store information
15416 related to them. Hence we need to know their number, and adjust
15417 memory allocations.
15418
15419 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
15420 static.
15421 * src/LR0.c (allocate_itemsets): The memory allocated to
15422 `symbol_count' was used for two different purpose: once to count
15423 the number of occurrences of each symbol, and later reassigned to
15424 `shift_symbol', containing the symbol that can be shifted from a
15425 given state.
15426 Deobfuscate, i.e., allocate, use and free `symbol_count' here
15427 only, and...
15428 (new_itemsets): Allocate `shift_symbol' here.
15429 (allocate_itemsets): symbol_count includes useless nonterminals.
15430 Make room for them.
15431 (free_storage): Use `free', not `XFREE', for pointers that cannot
15432 be null.
15433
154342001-12-05 Akim Demaille <akim@epita.fr>
15435
15436 * src/nullable.c (set_nullable): Deobfuscate the handling of
15437 ritem.
15438 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
15439
154402001-12-05 Akim Demaille <akim@epita.fr>
15441
15442 * src/gram.c, src/gram.h (ritem_print): New.
15443 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
15444 (This useless function was defined only to work around VMS linkers
15445 that can't handle compilation units with variables only).
15446 * src/reduce.c (dump_grammar): Use it to trace the construction of
15447 ritem.
15448
154492001-12-04 Paul Eggert <eggert@twinsun.com>
15450
15451 * src/bison.simple (union yyalloc): Change member names
15452 to be the same as the stack names.
15453 (yyparse): yyptr is now union yyalloc *, not char *.
15454 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
15455 and may generate better code on some machines.
15456 (yystpcpy): Use prototype if __STDC__ is defined, not just
15457 if __cplusplus is defined.
15458
154592001-11-30 Akim Demaille <akim@epita.fr>
15460
15461 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
15462 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
15463 Gettext doesn't compile cleanly, and dies with -Werror.
15464 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
15465 Include WARNING_CFLAGS here.
15466 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
15467 before being defined.
15468
154692001-11-27 Paul Eggert <eggert@twinsun.com>
15470
15471 * lib/quotearg.h (quotearg_n, quotearg_n_style):
15472 First arg is int, not unsigned.
15473 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
15474 (SIZE_MAX, UINT_MAX): New macros.
15475 (quotearg_n_options): Abort if N is negative.
15476 Avoid overflow check on hosts where size_t is 64 bits and int
15477 is 32 bits, as overflow is impossible there.
15478 Fix off-by-one typo that caused unnecessary reallocation.
15479
154802001-11-29 Paul Eggert <eggert@twinsun.com>
15481
15482 Name space cleanup in generated parser.
15483
15484 * doc/bison.texinfo (Bison Parser): Discuss system headers
15485 and their effect on the user name space.
15486
15487 * src/bison.simple:
15488 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
15489 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
15490 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
15491
15492 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
15493 on user names when possible.
15494
15495 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
15496 Simplify test for whather <alloca.h> exists.
15497
15498 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
15499
15500 (<stdio.h>): Include if YYDEBUG.
15501
15502 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
15503 ! defined (yyoverflow) && ! defined (yymemcpy).
15504
15505 (yymemcpy, yyparse): Rename local variables as needed so that
15506 they all begin with 'yy'.
15507
15508 (yystrlen, yystpcpy): New functions.
15509
15510 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
15511 All uses changed.
15512
15513 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
15514 instead of relying on string.h functions. Use YYSTACK_ALLOC
15515 and YYSTACK_FREE instead of malloc and free.
15516
155172001-11-30 Akim Demaille <akim@epita.fr>
15518
15519 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
15520 before their first uses.
15521 (YYBISON, YYPURE): Move to the top of the output.
15522
155232001-11-30 Akim Demaille <akim@epita.fr>
15524
15525 * tests/reduce.at (Useless Nonterminals): Fix.
15526
155272001-11-30 Akim Demaille <akim@epita.fr>
15528
15529 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
15530 if body instead of `;' to pacify GCC's warnings.
15531
155322001-11-30 Akim Demaille <akim@epita.fr>
15533
15534 Instead of mapping the LHS of unused rules to -1, keep the LHS
15535 valid, but flag the rules as invalid.
15536
15537 * src/gram.h (rule_t): `useful' is a new member.
15538 * src/print.c (print_grammar): Adjust.
15539 * src/derives.c (set_derives): Likewise.
15540 * src/reader.c (packgram, reduce_output): Likewise.
15541 * src/reduce.c (reduce_grammar_tables): Likewise.
15542 * tests/reduce.at (Underivable Rules, Useless Rules): New.
15543
155442001-11-30 Akim Demaille <akim@epita.fr>
15545
15546 * src/reduce.c (reduce_output): Formatting changes.
15547 * src/print.c (print_results, print_grammar): Likewise.
15548 * tests/regression.at (Rule Line Numbers)
15549 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
15550
155512001-11-30 Akim Demaille <akim@epita.fr>
15552
15553 * src/reduce.c (nonterminals_reduce): Instead of throwing away
15554 useless nonterminals, move them at the end of the symbol arrays.
15555 (reduce_output): Adjust.
15556 * tests/reduce.at (Useless Nonterminals): Adjust.
15557
155582001-11-30 Akim Demaille <akim@epita.fr>
15559
15560 * src/reduce.c: Various comment/formatting changes.
15561 (nonterminals_reduce): New, extracted from...
15562 (reduce_grammar_tables): here.
15563 (reduce_grammar): Call nonterminals_reduce.
15564
155652001-11-29 Paul Eggert <eggert@twinsun.com>
15566
15567 * src/bison.simple (YYSTACK_REALLOC): Remove.
15568 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
15569 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
15570 New macros.
15571 (union yyalloc): New type.
15572 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
15573 an arbitrary restriction on hosts where size_t is wider than int.
15574
15575 (yyparse): Don't dump core if alloca or malloc fails; instead, report
15576 a parser stack overflow. Allocate just one block of memory for all
15577 three stacks, instead of allocating three blocks; this typically is
15578 faster and reduces fragmentation.
15579
15580 Do not limit the number of items in the stack to a value that fits
15581 in 'int', as this is an arbitrary limit on hosts with 64-bit
15582 size_t and 32-bit int.
15583
155842001-11-29 Marc Autret <autret_m@epita.fr>
15585
15586 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
15587 of defining YYERROR_VERBOSE.
15588 [AT_DATA]: $4 is now out of C declarations in the prologue.
15589
155902001-11-28 Marc Autret <autret_m@epita.fr>
15591
15592 * src/reader.c (parse_dquoted_param): New.
15593 (parse_skel_decl): Use it.
15594 * src/lex.h: Add its prototype.
15595 * src/lex.c (literalchar): Become not static.
15596
155972001-11-28 Marc Autret <autret_m@epita.fr>
15598
15599 * src/output.h: And put its extern declaration here.
15600 * src/output.c (error_verbose): Define here.
15601 (prepare): Echo name modification.
15602 * src/getargs.h: Clean its extern declaration.
15603 * src/getargs.c (error_verbose_flag): Remove.
15604 (getargs): Remove case 'e'.
15605 * src/options.c (option_table): 'error-verbose' is now seen as simple
15606 percent option.
15607 Include output.h.
15608
15609 * src/reader.c (read_declarations): Remove case tok_include.
15610 (parse_include_decl): Remove.
15611 * src/lex.h (token_t): Remove tok_include.
15612 * src/options.c (option_table): 'include' is now a simple command line
15613 option.
15614
156152001-11-28 Marc Autret <autret_m@epita.fr>
15616
15617 * src/bison.simple: Adjust muscle names.
15618 * src/muscle_tab.c (muscle_init): Also rename the muscles.
15619 * src/output.c (prepare): s/_/-/ for the muscles names.
15620 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
15621
156222001-11-28 Marc Autret <autret_m@epita.fr>
15623
15624 * src/bison.simple: Fix debug.
15625 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
15626
156272001-11-28 Akim Demaille <akim@epita.fr>
15628
15629 * src/LR0.c (shifts_new): New.
15630 (save_shifts, insert_start_shift, augment_automaton): Use it.
15631
156322001-11-28 Akim Demaille <akim@epita.fr>
15633
15634 * src/closure.c (closure): `b' and `ruleno' denote the same value:
15635 keep ruleno only.
15636
156372001-11-28 Akim Demaille <akim@epita.fr>
15638
15639 * src/closure.c (closure): Instead of looping over word in array
15640 then bits in words, loop over bits in array.
15641
156422001-11-28 Akim Demaille <akim@epita.fr>
15643
15644 * src/closure.c (closure): No longer optimize the special case
15645 where all the bits of `ruleset[r]' are set to 0, to make the code
15646 clearer.
15647
156482001-11-28 Akim Demaille <akim@epita.fr>
15649
15650 * src/closure.c (closure): `r' and `c' are new variables, used to
15651 de-obfuscate accesses to RULESET and CORE.
15652
156532001-11-28 Akim Demaille <akim@epita.fr>
15654
15655 * src/reduce.c (reduce_print): Use ngettext.
15656 (dump_grammar): Improve the trace accuracy.
15657
156582001-11-28 Akim Demaille <akim@epita.fr>
15659
15660 * src/reduce.c (dump_grammar): Don't translate trace messages.
15661
156622001-11-28 Akim Demaille <akim@epita.fr>
15663
15664 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
15665 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
15666 as all tags are free'ed afterwards.
15667 From Enrico Scholz.
15668
156692001-11-27 Paul Eggert <eggert@twinsun.com>
15670
15671 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
15672 use alloca when we didn't want to, and vice versa.
15673
156742001-11-27 Marc Autret <autret_m@epita.fr>
15675
15676 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
15677 initialization.
15678 * src/output.c (prepare): Remove its update.
15679
156802001-11-27 Marc Autret <autret_m@epita.fr>
15681
15682 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
15683 Use %error-verbose.
15684
156852001-11-27 Marc Autret <autret_m@epita.fr>
15686
15687 * src/bison.simple: Remove YYERROR_VERBOSE using.
15688 Use %%error_verbose.
15689 (yyparse): Likewise.
15690 * src/output.c (prepare): Give its final value.
15691 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
15692 * src/getargs.h: Add its extern declaration.
15693 * src/getargs.c (error_verbose_flag): New int.
15694 (getargs): Update to catch new case.
15695 * src/options.c (option_table): 'error-verbose' is a new option.
15696 (shortopts): Update.
15697
156982001-11-27 Akim Demaille <akim@epita.fr>
15699
15700 * src/system.h: Use intl/libgettext.h.
15701 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
15702
157032001-11-27 Akim Demaille <akim@epita.fr>
15704
15705 * tests/torture.at (Exploding the Stack Size with Malloc):
15706 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
15707
157082001-11-27 Akim Demaille <akim@epita.fr>
15709
15710 * src/files.c: Include error.h.
15711 Reported by Hans Aberg.
15712
157132001-11-26 Marc Autret <autret_m@epita.fr>
15714
15715 * src/reader.c (parse_include_decl): New, not yet implemented.
15716 (read_declarations): Add case tok_include.
15717 * src/getargs.h (include): Add its extern definition.
15718 * src/getargs.c (include): New const char *.
15719 (getargs): Add case '-I'.
15720 * src/options.c (option_table): Add include as command line and
15721 percent option.
15722 * src/lex.h (token_t): Add tok_include.
15723
157242001-11-26 Akim Demaille <akim@epita.fr>
15725
15726 * src/reader.c (readgram): Make sure rules for mid-rule actions
15727 have a lineno equal to that of their host rule.
15728 Reported by Hans Aberg.
15729 * tests/regression.at (Rule Line Numbers): New.
15730
157312001-11-26 Akim Demaille <akim@epita.fr>
15732
15733 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
15734 size_ts.
15735
157362001-11-26 Akim Demaille <akim@epita.fr>
15737
15738 * src/complain.c, src/complain.h (error): Remove, provided by
15739 lib/error.[ch].
15740
157412001-11-26 Akim Demaille <akim@epita.fr>
15742
15743 * src/reader.c (read_declarations): Don't abort on tok_illegal,
15744 issue an error message.
15745 * tests/regression.at (Invalid %directive): New.
15746 Reported by Hans Aberg.
15747
157482001-11-26 Akim Demaille <akim@epita.fr>
15749
15750 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
15751 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
15752
157532001-11-26 Akim Demaille <akim@epita.fr>
15754
15755 * src/conflicts.c (conflicts_print): Don't complain at all when
15756 there are no reduce/reduce conflicts, and as many shift/reduce
15757 conflicts as expected.
15758 * tests/regression.at (%expect right): Adjust.
15759
157602001-11-23 Akim Demaille <akim@epita.fr>
15761
15762 * lib/alloca.c: Update, from fileutils.
15763
157642001-11-23 Akim Demaille <akim@epita.fr>
15765
15766 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
15767
157682001-11-23 Akim Demaille <akim@epita.fr>
15769
15770 * src/system.h: Include alloca.h.
15771 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
15772
157732001-11-23 Akim Demaille <akim@epita.fr>
15774
15775 * src/print_graph.c (print_actions): Remove `rule', unused.
15776 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
15777 pacify GCC's signed < unsigned warnings.
15778 * src/closure.c (itemsetsize): Likewise.
15779 * src/reader.c (symbol_list_new): Static.
15780
157812001-11-23 Akim Demaille <akim@epita.fr>
15782
15783 Attaching lineno to buckets is stupid, since only one copy of each
15784 symbol is kept, only the line of the first occurrence is kept too.
15785
15786 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
15787 * src/reader.c (rline_allocated): Remove, unused.
15788 (symbol_list): Have a `line' member.
15789 (symbol_list_new): New.
15790 (readgram): Use it.
15791 * src/print.c (print_grammar): Output the rule line numbers.
15792 * tests/regression.at (Solved SR Conflicts)
15793 (Unresolved SR Conflicts): Adjust.
15794 Reported by Hans Aberg.
15795
157962001-11-22 Marc Autret <autret_m@epita.fr>
15797
15798 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
15799
158002001-11-22 Marc Autret <autret_m@epita.fr>
15801
15802 * src/muscle_tab.c (muscle_init): Remove initialization of
15803 skeleton muscle.
15804 * src/output.c (output_master_parser): Do it here.
15805
158062001-11-20 Akim Demaille <akim@epita.fr>
15807
15808 * po/sv.po: New.
15809 * configure.in (ALL_LINGUAS): Adjust.
15810 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
15811 longer contains strings to translate.
15812
158132001-11-19 Akim Demaille <akim@epita.fr>
15814
15815 * src/conflicts.c (conflicts_print): Add a missing \n.
15816
158172001-11-19 Akim Demaille <akim@epita.fr>
15818
15819 * src/nullable.c (nullable_print): New.
15820 (set_nullable): Call it when tracing.
15821 Better locality of variables.
15822
158232001-11-19 Akim Demaille <akim@epita.fr>
15824
15825 * src/print.c (print_actions): Better locality of variables.
15826
158272001-11-19 Akim Demaille <akim@epita.fr>
15828
15829 * src/derives.c (print_derives): Fix and enrich.
15830 * src/closure.c (print_fderives): Likewise.
15831
158322001-11-19 Akim Demaille <akim@epita.fr>
15833
15834 * src/closure.c (itemsetend): Remove, replaced with...
15835 (itemsetsize): new.
15836
158372001-11-19 Akim Demaille <akim@epita.fr>
15838
15839 * src/LR0.c (kernel_end): Remove, replaced with...
15840 (kernel_size): new.
15841
158422001-11-19 Akim Demaille <akim@epita.fr>
15843
15844 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
15845 to clarify.
15846
158472001-11-19 Akim Demaille <akim@epita.fr>
15848
15849 * src/closure.c (closure): Use arrays instead of pointers to clarify.
15850
158512001-11-19 Akim Demaille <akim@epita.fr>
15852
15853 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
15854 trace messages.
15855 * src/LR0.c: Likewise.
15856 (allocate_itemsets): Use arrays instead of pointers to clarify.
15857
158582001-11-19 Akim Demaille <akim@epita.fr>
15859
15860 * src/getargs.c (statistics_flag): Replace with...
15861 (trace_flag): New.
15862 (longopts): Accept --trace instead of --statistics.
15863 * src/getargs.h, src/options.c: Adjust.
15864 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
15865 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
15866
158672001-11-19 Akim Demaille <akim@epita.fr>
15868
15869 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
15870 pointers to clarify the code.
15871 (save_reductions, save_shifts): Factor common parts of alternatives.
15872
158732001-11-19 Akim Demaille <akim@epita.fr>
15874
15875 * src/LR0.c (new_state, get_state): Complete TRACE code.
15876 * src/closure.c: Include `reader.h' to get `tags', needed by the
15877 trace code.
15878 Rename the conditional DEBUG as TRACE.
15879 Output consistently TRACEs to stderr, not stdout.
15880 * src/derives.c: Likewise.
15881 * src/reduce.c: (inaccessable_symbols): Using if is better style
15882 than goto.
15883 Use `#if TRACE' instead of `#if 0' for tracing code.
15884
158852001-11-19 Akim Demaille <akim@epita.fr>
15886
15887 * src/system.h (LIST_FREE, shortcpy): New.
15888 * src/LR0.c: Use them.
15889 * src/output.c (free_itemsets, free_reductions, free_shifts):
15890 Remove, replaced by LIST_FREE.
15891
158922001-11-19 Akim Demaille <akim@epita.fr>
15893
15894 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
15895 (REDUCTIONS_ALLOC): New.
15896 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
15897 allocation.
15898
158992001-11-19 Akim Demaille <akim@epita.fr>
15900
15901 * src/LR0.c (new_state): Complete trace code.
15902 * src/nullable.c (set_nullable): Don't translate traces.
15903
159042001-11-19 Akim Demaille <akim@epita.fr>
15905
15906 * src/print_graph.c (print_core): Better locality of variables.
15907 * src/print.c (print_core): Likewise.
15908
159092001-11-19 Akim Demaille <akim@epita.fr>
15910
15911 * src/vcg.c: You do the output, so you are responsible of the
15912 handling of VCG syntax, in particular: use quotearg.
15913 * src/print_graph.c: Don't.
15914 (print_actions): Don't output the actions as part of the nodes,
15915 since that's the job of the edges.
15916 (print_state): Don't output by hand: fill the node description,
15917 and ask for its output.
15918
159192001-11-19 Akim Demaille <akim@epita.fr>
15920
15921 * src/bison.simple (yyparse): When verbosely reporting an error,
15922 no longer put additional quotes around token names.
15923 * tests/calc.at: Adjust.
15924
159252001-11-19 Akim Demaille <akim@epita.fr>
15926
15927 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
15928 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
15929 * src/output.c: Adjust.
15930
159312001-11-19 Akim Demaille <akim@epita.fr>
15932
15933 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
15934 (rule_t): this.
15935 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
15936
159372001-11-19 Akim Demaille <akim@epita.fr>
15938
15939 * src/gram.h (rule_t): New.
15940 (rule_table): New.
15941 (rrhs, rlhs): Remove, part of state_t.
15942 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
15943 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
15944 * src/reader.c, src/reduce.c: Adjust.
15945
159462001-11-19 Akim Demaille <akim@epita.fr>
15947
15948 * src/reader.c (symbols_output): New, extracted from...
15949 (packsymbols): Here.
15950 (reader): Call it.
15951
159522001-11-19 Akim Demaille <akim@epita.fr>
15953
15954 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
15955 (maxrhs): this new function.
15956
159572001-11-19 Akim Demaille <akim@epita.fr>
15958
15959 * src/lalr.c (F): New macro to access the variable F.
15960 Adjust.
15961
159622001-11-19 Akim Demaille <akim@epita.fr>
15963
15964 * src/lalr.h (LA): New macro to access the variable LA.
15965 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
15966 * src/lalr.c: Adjust.
15967
159682001-11-19 Akim Demaille <akim@epita.fr>
15969
15970 * src/lalr.c (initialize_LA): Only initialize LA. Let...
15971 (set_state_table): handle the `lookaheads' members.
15972
159732001-11-19 Akim Demaille <akim@epita.fr>
15974
15975 * src/lalr.h (lookaheads): Removed array, whose contents is now
15976 a member of...
15977 (state_t): this structure.
15978 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
15979 Adjust.
15980
159812001-11-19 Akim Demaille <akim@epita.fr>
15982
15983 * src/lalr.h (consistent): Removed array, whose contents is now
15984 a member of...
15985 (state_t): this structure.
15986 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
15987 Adjust.
15988
159892001-11-19 Akim Demaille <akim@epita.fr>
15990
15991 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
15992 contents are now members of...
15993 (state_t): this structure.
15994 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
15995 Adjust.
15996
159972001-11-19 Akim Demaille <akim@epita.fr>
15998
15999 * src/lalr.h (state_t): New.
16000 (state_table): Be a state_t * instead of a core **.
16001 (accessing_symbol): Remove, part of state_t.
16002 * src/lalr.c: Adjust.
16003 (set_accessing_symbol): Merge into...
16004 (set_state_table): this.
16005 * src/print_graph.c, src/conflicts.c: Adjust.
16006
160072001-11-14 Akim Demaille <akim@epita.fr>
16008
16009 * tests/calc.at, tests/output.at, tests/regression.at,
16010 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
16011 now the tests are run in private dirs, therefore AC_CLEANUP and
16012 family can be simplified to 0-ary.
16013 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
16014 use abs. path to find config.h.
16015 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
16016 stderr, there can be way too much random noise.
16017 Instead pass -Werror to GCC and rely on the exit status.
16018 Reported by Wolfram Wagner.
16019
160202001-11-14 Akim Demaille <akim@epita.fr>
16021
16022 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
16023 defined only if yyoverflow is defined, to avoid `warning: unused
16024 variable `yyvs1''.
16025 Reported by The Test Suite.
16026
160272001-11-14 Akim Demaille <akim@epita.fr>
16028
16029 * src/print.c: Include reduce.h.
16030 Reported by Hans Aberg.
16031
160322001-11-14 Akim Demaille <akim@epita.fr>
16033
16034 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
16035 Revert a previous patch: these are really const.
16036 * src/conflicts.c (conflict_report): Additional useless pair of
16037 braces to pacify GCC's warnings for `if () if () {} else {}'.
16038 * src/lex.c (parse_percent_token): Replace equal_offset with
16039 arg_offset.
16040 arg is const.
16041 Be sure to strdup `arg' when used, since there is no reason for
16042 token_buffer not to change.
16043
160442001-11-14 Akim Demaille <akim@epita.fr>
16045
16046 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
16047 definition.
16048 * src/main.c (main): Use them.
16049 Suggested by Hans Aberg.
16050
160512001-11-12 Akim Demaille <akim@epita.fr>
16052
16053 * src/system.h (ngettext): Now that we use ngettext, be sure to
16054 provide a default definition when NLS are not used.
16055
160562001-11-12 Akim Demaille <akim@epita.fr>
16057
16058 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
16059 Use @kbd to denote user input.
16060 (Language and Grammar): ANSIfy the example.
16061 Adjust its layout for info/notinfo.
16062 (Location Tracking Calc): Output error messages to stderr.
16063 Output locations in a more GNUtically correct way.
16064 Fix a couple of Englishos.
16065 Adjust @group/@end group pairs.
16066
160672001-11-12 Akim Demaille <akim@epita.fr>
16068
16069 %expect was not functioning at all.
16070
16071 * src/conflicts.c (expected_conflicts): Set to -1.
16072 (conflict_report): Use ngettext.
16073 (conflicts_print): Check %expect and make its violation an error.
16074 * doc/bison.texinfo (Expect Decl): Adjust.
16075 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
16076 * tests/regression.at (%expect not enough, %expect right)
16077 (%expect too much): New.
16078
160792001-11-12 Akim Demaille <akim@epita.fr>
16080
16081 * tests/regression.at (Conflicts): Rename as...
16082 (Unresolved SR Conflicts): this.
16083 (Solved SR Conflicts): New.
16084
160852001-11-12 Akim Demaille <akim@epita.fr>
16086
16087 * src/reduce.c (print_results): Rename as...
16088 (reduce_output): This.
16089 Output to OUT, passed as argument, instead of output_obstack.
16090 (dump_grammar): Likewise.
16091 (reduce_free): New.
16092 Also free V1.
16093 (reduce_grammar): No longer call reduce_output, since...
16094 * src/print.c (print_results): do it.
16095 * src/main.c (main): Call reduce_free;
16096
160972001-11-12 Akim Demaille <akim@epita.fr>
16098
16099 * src/conflicts.c (print_reductions): Accept OUT as argument.
16100 Output to it, not to output_obstack.
16101 * src/print.c (print_actions): Adjust.
16102
161032001-11-12 Akim Demaille <akim@epita.fr>
16104
16105 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
16106 the result instead of using...
16107 (src_total, rrc_total, src_count, rrc_count): Remove.
16108 (any_conflicts): Remove.
16109 (print_conflicts): Split into...
16110 (conflicts_print, conflicts_output): New.
16111 * src/conflicts.h: Adjust.
16112 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
16113 * src/print.c (print_grammar): Issue `\n' between two rules.
16114 * tests/regression.at (Conflicts): New.
16115 Reported by Tom Lane.
16116
161172001-11-12 Akim Demaille <akim@epita.fr>
16118
16119 * tests/regression.at (Invalid input): Remove, duplicate with
16120 ``Invalid input: 1''.
16121
161222001-11-12 Akim Demaille <akim@epita.fr>
16123
16124 * tests/torture.at (AT_DATA_STACK_TORTURE)
16125 (Exploding the Stack Size with Alloca)
16126 (Exploding the Stack Size with Malloc): New.
16127
161282001-11-12 Akim Demaille <akim@epita.fr>
16129
16130 * src/bison.simple (YYSTACK_REALLOC): New.
16131 (yyparse) [!yyoverflow]: Use it and free the old stack.
16132 Reported by Per Allansson.
16133
161342001-11-12 Pascal Bart <pascal.bart@epita.fr>
16135
16136 * src/bison.simple: Define type yystype instead of YYSTYPE, and
16137 define CPP macro, which substitute YYSTYPE by yystype.
16138 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
16139 with yyltype/YYLTYPE. This allows inclusion of the generated
16140 header within the parser if the compiler, such as GGC, accepts
16141 multiple equivalent #defines.
16142 From Akim.
16143
161442001-11-05 Akim Demaille <akim@epita.fr>
16145
16146 * src/reader.c (symbols_output): New, extracted from...
16147 (packsymbols): here.
16148 (reader): Adjust.
16149
161502001-11-05 Akim Demaille <akim@epita.fr>
16151
16152 * src/lex.c (parse_percent_token): s/quotearg/quote/.
16153
161542001-11-05 Akim Demaille <akim@epita.fr>
16155
16156 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
16157 pattern.
16158
161592001-11-05 Akim Demaille <akim@epita.fr>
16160
16161 * src/options.h (struct option_table_struct): set_flags is void*.
16162 * src/options.c (longopts): Support `--output' and `%output'.
16163 (usage): Adjust.
16164 * src/lex.h (tok_setopt): Remove, replaced with...
16165 (tok_intopt, tok_stropt): these new guys.
16166 * src/lex.c (getopt.h): Not needed.
16167 (token_buffer, unlexed_token_buffer): Not const.
16168 (percent_table): Promote `-' over `_' in directive names.
16169 Active `%name-prefix', `file-prefix', and `output'.
16170 (parse_percent_token): Accept possible arguments to directives.
16171 Promote `-' over `_' in directive names.
16172
161732001-11-04 Akim Demaille <akim@epita.fr>
16174
16175 * doc/bison.texinfo (Decl Summary): Split the list into
16176 `directives for grammars' and `directives for bison'.
16177 Sort'em.
16178 Add description of `%name-prefix', `file-prefix', and `output'.
16179 Promote `-' over `_' in directive names.
16180 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
16181 Simplify the description of `--name-prefix'.
16182 Promote `-' over `_' in directive names.
16183 Promote `--output' over `--output-file'.
16184 Fix the description of `--defines'.
16185 * tests/output.at: Exercise %file-prefix and %output.
16186
161872001-11-02 Akim Demaille <akim@epita.fr>
16188
16189 * doc/refcard.tex: Update.
16190
161912001-11-02 Akim Demaille <akim@epita.fr>
16192
16193 * src/symtab.h (SUNDEF): New.
16194 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
16195 stand for `uninitialized', instead of 0.
16196 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
16197 * src/lex.c (lex): Adjust.
16198
16199 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
16200 Number it 0.
16201 Let yylex return it instead of a plain 0.
16202 Reported by Dick Streefland.
16203
162042001-11-02 Akim Demaille <akim@epita.fr>
16205
16206 * tests/regression.at (Mixing %token styles): New test.
16207
162082001-11-02 Akim Demaille <akim@epita.fr>
16209
16210 * src/reader.c (parse_thong_decl): Formatting changes.
16211 (token_translations_init): New, extracted from...
16212 (packsymbols): Here.
16213 Adjust.
16214
162152001-11-01 Akim Demaille <akim@epita.fr>
16216
16217 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
16218 Check that `9foo.y' produces correct cpp guards.
16219 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
16220 guards.
16221 Reported by Wwp.
16222
162232001-11-01 Akim Demaille <akim@epita.fr>
16224
16225 * tests/regression.at (Invalid input: 2): New.
16226 * src/lex.c (unlexed_token_buffer): New.
16227 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
16228 too.
16229 Reported by Wwp.
16230
162312001-11-01 Akim Demaille <akim@epita.fr>
16232
16233 * tests/calc.at: Catch up with 1.30.
16234 * configure.in: Bump to 1.49a.
16235 Adjust to newer Autotest.
16236
162372001-10-19 Pascal Bart <pascal.bart@epita.fr>
16238
16239 * src/conflicts.c: Move global variables rrc_total and src_total ...
16240 (print_conflicts): here.
16241 * src/output.c (output): Free global variable user_toknums.
16242 * src/lex.c (token_obstack): Become static.
16243
162442001-10-18 Akim Demaille <akim@epita.fr>
16245
16246 * tests/atlocal.in (GCC): Add.
16247 * tests/calc.at: s/m4_match/m4_bmatch/.
16248 s/m4_patsubst/m4_bpatsubst/.
16249 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
16250 * configure.in: AC_SUBST(GCC).
16251
162522001-10-14 Marc Autret <autret_m@epita.fr>
16253
16254 * src/options.c (create_long_option_table): Fix.
16255
162562001-10-10 Akim Demaille <akim@epita.fr>
16257
16258 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
16259
162602001-10-04 Akim Demaille <akim@epita.fr>
16261
16262 * src/reader.c (parse_union_decl): Push the caracters in
16263 union_obstack, not attrs_obstack.
16264
162652001-10-04 Akim Demaille <akim@epita.fr>
16266
16267 Merge in the branch 1.29.
16268
16269 * src/reader.c (packsymbols): Use a temporary obstack for
16270 `%%tokendef', since output_stack is already used elsewhere.
16271
16272 2001-10-02 Akim Demaille <akim@epita.fr>
16273
16274 Bump 1.29d.
16275
16276 2001-10-02 Akim Demaille <akim@epita.fr>
16277
16278 Version 1.29c.
16279
16280 2001-10-02 Akim Demaille <akim@epita.fr>
16281
16282 * tests/regression.at (Invalid CPP headers): New.
16283 From Alexander Belopolsky.
16284 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
16285
16286 2001-10-02 Akim Demaille <akim@epita.fr>
16287
16288 * tests/regression.at (Invalid input): New.
16289 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
16290 Reported by Shura.
16291
16292 2001-10-02 Akim Demaille <akim@epita.fr>
16293
16294 * tests/calc.at: Now that --debug works, the tests must be adjusted.
16295
16296 2001-10-02 Akim Demaille <akim@epita.fr>
16297
16298 * src/output.c (output_parser): Assert `skeleton'.
16299 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
16300 systems.
16301 From Shura.
16302
16303 2001-10-01 Marc Autret <autret_m@epita.fr>
16304
16305 * src/lex.h: Echo modifications.
16306 * src/lex.c (unlex): Parameter is now token_t.
16307 From Hans Aberg.
16308
16309 2001-10-01 Marc Autret <autret_m@epita.fr>
16310
16311 * src/main.c: Include lex.h.
16312 From Hans Aberg.
16313
16314 2001-09-29 Akim Demaille <akim@epita.fr>
16315
16316 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
16317
16318 2001-09-28 Akim Demaille <akim@epita.fr>
16319
16320 * tests/testsuite.at: Update to newer Autotest.
16321 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
16322
16323 2001-09-27 Akim Demaille <akim@epita.fr>
16324
16325 Position independent wrapper.
16326
16327 * tests/bison: Remove.
16328 * tests/bison.in: New.
16329 * configure.in: Adjust.
16330
16331 2001-09-27 Paul Eggert <eggert@twinsun.com>
16332
16333 Port quotearg fixes from tar 1.13.24.
16334
16335 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
16336 tm to be declared.
16337 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
16338 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
16339
16340 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
16341 * m4/mbrtowc.m4: New file.
16342 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
16343 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
16344
16345 2001-09-27 Akim Demaille <akim@epita.fr>
16346
16347 Bump to 1.29c.
16348
16349 2001-09-27 Akim Demaille <akim@epita.fr>
16350
16351 Version 1.29b.
16352
16353 2001-09-25 Akim Demaille <akim@epita.fr>
16354
16355 * src/system.h: Include `xalloc.h'.
16356 Remove it from the C files.
16357 * src/files.c (output_files): Free the obstacks.
16358 * src/lex.c (init_lex): Rename as...
16359 (lex_init): this.
16360 (lex_free): New.
16361 * src/main.c (main): Use it.
16362
16363 2001-09-24 Marc Autret <autret_m@epita.fr>
16364
16365 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
16366 to output informations in fout (FILE*).
16367 (open_graph, close_graph): Likewise.
16368 (output_graph, output_edge, output_node): Likewise.
16369 * src/vcg.h: Update function prototypes.
16370 * src/print_graph.c (print_graph): Open output graph file.
16371 (print_actions): Adjust.
16372 * src/files.h: Remove extern declaration.
16373 * src/files.c: Remove graph_obstack declaration.
16374 (open_files): Remove graph_obstack initialization.
16375 (output_files): Remove graph_obstack saving.
16376
16377 2001-09-24 Marc Autret <autret_m@epita.fr>
16378
16379 * src/files.c (compute_output_file_names): Fix.
16380
16381 2001-09-24 Marc Autret <autret_m@epita.fr>,
16382 Akim Demaille <akim@epita.fr>
16383
16384 * src/reader.c (reader): Remove call to free_symtab ().
16385 * src/main.c (main): Call it here.
16386 Include symtab.h.
16387 * src/conflicts.c (initialize_conflicts): Rename as...
16388 (solve_conflicts): this.
16389 * src/print.c (print_core, print_actions, print_state)
16390 (print_grammar): Dump to a file instead a `output_obstack'.
16391 (print_results): Dump `output_obstack', and then proceed with the
16392 FILE *.
16393 * src/files.c (compute_output_file_names, close_files): New.
16394 (output_files): Adjust.
16395 * src/main.c (main): Adjust.
16396
16397 2001-09-23 Marc Autret <autret_m@epita.fr>
16398
16399 * src/files.c (compute_header_macro): Computes header macro name
16400 from spec_defines_file when given.
16401
16402 2001-09-23 Marc Autret <autret_m@epita.fr>
16403
16404 * src/files.c (output_files): Add default extensions.
16405
16406 2001-09-22 Akim Demaille <akim@epita.fr>
16407
16408 * src/conflicts.c (finalize_conflicts): Rename as...
16409 (free_conflicts): this.
16410
16411 2001-09-22 Akim Demaille <akim@epita.fr>
16412
16413 * src/gram.c (gram_free): Rename back as...
16414 (dummy): this.
16415 (output_token_translations): Free `token_translations'.
16416 * src/symtab.c (free_symtab): Free the tag field.
16417
16418 2001-09-22 Akim Demaille <akim@epita.fr>
16419
16420 Remove `translations' as it is always set to true.
16421
16422 * src/gram.h: Adjust.
16423 * src/reader.c (packsymbols, parse_token_decl): Adjust
16424 * src/print.c (print_grammar): Adjust.
16425 * src/output.c (output_token_translations): Adjust.
16426 * src/lex.c (lex): Adjust.
16427 * src/gram.c: Be sure the set pointers to NULL.
16428 (dummy): Rename as...
16429 (gram_free): this.
16430
16431 2001-09-22 Akim Demaille <akim@epita.fr>
16432
16433 * configure.in: Invoke AM_LIB_DMALLOC.
16434 * src/system.h: Use dmalloc.
16435 * src/LR0.c: Be sure to have pointers initialized to NULL.
16436 (allocate_itemsets): Allocate kernel_items only if needed.
16437
16438 2001-09-22 Akim Demaille <akim@epita.fr>
16439
16440 * configure.in: Bump to 1.29b.
16441 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
16442 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
16443 need xmalloc.c in calc.y.
16444 From Pascal Bart.
16445
16446 2001-09-21 Akim Demaille <akim@epita.fr>
16447
16448 Version 1.29a.
16449 * Makefile.maint, config/config.guess, config/config.sub,
16450 * config/missing: Update from masters.
16451 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
16452 upon package.m4.
16453 * configure.in (ALL_LINGUAS): Add `tr'.
16454
16455 2001-09-21 Akim Demaille <akim@epita.fr>
16456
16457 * tests/Makefile.am (package.m4): Move to...
16458 ($(srcdir)/$(TESTSUITE)): here.
16459
16460 2001-09-20 Akim Demaille <akim@epita.fr>
16461
16462 * src/complain.c: No longer try to be standalone: use system.h.
16463 Don't assume __STDC__ is defined to 1. Just test if it is defined.
16464 * src/complain.h: Likewise.
16465 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
16466 Remove the unused variable `n'.
16467 From Albert Chin-A-Young.
16468
16469 2001-09-18 Marc Autret <autret_m@epita.fr>
16470
16471 * doc/bison.1: Update.
16472 * doc/bison.texinfo (Bison Options): Update --defines and --graph
16473 descriptions.
16474 (Option Cross Key): Update.
16475 Add --graph.
16476
16477 2001-09-18 Marc Autret <autret_m@epita.fr>
16478
16479 * tests/regression.at: New test (comment in %union).
16480
16481 2001-09-18 Marc Autret <autret_m@epita.fr>
16482
16483 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
16484 do that.
16485 Reported by Keith Browne.
16486
16487 2001-09-18 Marc Autret <autret_m@epita.fr>
16488
16489 * tests/output.at: Add tests for --defines and --graph.
16490
16491 2001-09-18 Marc Autret <autret_m@epita.fr>
16492
16493 * tests/output.at: Removes tests of %{header,src}_extension features.
16494
16495 2001-09-18 Akim Demaille <akim@epita.fr>
16496
16497 * tests/Makefile.am (package.m4): New.
16498 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
16499 (_AT_CHECK_CALC_ERROR): Likewise.
16500 Factor the `, ' part of verbose error messages.
16501
16502 2001-09-18 Marc Autret <autret_m@epita.fr>
16503
16504 * src/getargs.c (longopts): Declare --defines and --graph as options
16505 with optional arguments.
16506 * src/files.h: Add extern declarations.
16507 * src/files.c (spec_graph_file, spec_defines_file): New.
16508 (output_files): Update.
16509 Remove CPP-outed code.
16510
16511 2001-09-18 Marc Autret <autret_m@epita.fr>
16512
16513 Turn off %{source,header}_extension feature.
16514
16515 * src/files.c (compute_exts_from_gf): Update.
16516 (compute_exts_from_src): Update.
16517 (output_files): CPP-out useless code.
16518 * src/files.h: Remove {header,source}_extension extern declarations.
16519 * src/reader.c (parse_dquoted_param): CPP-out.
16520 (parse_header_extension_decl): Remove.
16521 (parse_source_extension_decl): Remove.
16522 (read_declarations): Remove cases tok_{hdrext,srcext}.
16523 * src/lex.c (percent_table): Remove {header,source}_extension entries.
16524 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
16525
16526 2001-09-10 Akim Demaille <akim@epita.fr>
16527
16528 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
16529 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
16530 (AT_CHECK_OUTPUT): this.
16531 Merely check ls' exit status, its output is useless.
16532
16533 2001-09-10 Akim Demaille <akim@epita.fr>
16534
16535 * tests/calc.at: Use m4_match.
16536 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
16537
16538 2001-09-10 Marc Autret <autret_m@epita.fr>,
16539 Akim Demaille <akim@epita.fr>
16540
16541 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
16542 enum color_e.
16543 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
16544 to `normal'.
16545 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
16546 * src/lex.h: Adjust prototype.
16547 (token_t): Add `tok_undef'.
16548 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
16549 (parse_percent_token): Now returns token_t.
16550 Add default statement in switch.
16551 (lex): Separate `c' as an input variable, from the token_t result
16552 part.
16553 (unlexed): Is a token_t.
16554
16555 2001-09-10 Akim Demaille <akim@epita.fr>
16556
16557 * configure.in: Bump to 1.29a.
16558
16559 2001-09-07 Akim Demaille <akim@epita.fr>
16560
16561 Version 1.29.
16562
16563 2001-08-30 Akim Demaille <akim@epita.fr>
16564
16565 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
16566 * m4/atconfig.m4: Remove.
16567 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
16568 * tests/bison: New.
16569 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
16570 m4_if, m4_patsubst, and m4_regexp.
16571 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
16572 `input' file instead of echo.
16573
16574 2001-08-29 Akim Demaille <akim@epita.fr>
16575
16576 Bump to 1.28e.
16577
16578 2001-08-29 Akim Demaille <akim@epita.fr>
16579
16580 Version 1.28d.
16581
16582 2001-08-29 Paul Eggert <eggert@twinsun.com>
16583
16584 * src/bison.simple (yyparse): Don't take the address of an
16585 item before the start of an array, as that doesn't conform to
16586 the C Standard.
16587
16588 2001-08-29 Robert Anisko <anisko_r@epita.fr>
16589
16590 * doc/bison.texinfo (Location Tracking Calc): New node.
16591
16592 2001-08-29 Paul Eggert <eggert@twinsun.com>
16593
16594 * src/output.c (output): Do not define const, as this now
16595 causes more problems than it cures.
16596
16597 2001-08-29 Akim Demaille <akim@epita.fr>
16598
16599 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
16600 the nodes.
16601 Be sure to tag the `detailmenu'.
16602
16603 2001-08-29 Akim Demaille <akim@epita.fr>
16604
16605 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
16606 download in a tmp dir.
16607
16608 2001-08-28 Marc Autret <autret_m@epita.fr>
16609
16610 * config/depcomp: New file.
16611
16612 2001-08-28 Marc Autret <autret_m@epita.fr>
16613
16614 * doc/bison.1 (mandoc): Adjust.
16615 From Juan Manuel Guerrero.
16616
16617 2001-08-28 Marc Autret <autret_m@epita.fr>
16618
16619 * src/print_graph.c (print_state): Fix.
16620
16621 2001-08-27 Marc Autret <autret_m@epita.fr>
16622
16623 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
16624 char * members.
16625 Echo modifications to the functions prototypes.
16626 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
16627
16628 2001-08-27 Marc Autret <autret_m@epita.fr>
16629
16630 * src/vcg.c: Include `xalloc.h'.
16631 (add_colorentry): New.
16632 (add_classname): New.
16633 (add_infoname): New.
16634 * src/vcg.h: Add new prototypes.
16635
16636 2001-08-27 Akim Demaille <akim@epita.fr>
16637
16638 * Makefile.maint: Sync. again with CVS Autoconf.
16639
16640 2001-08-27 Akim Demaille <akim@epita.fr>
16641
16642 * Makefile.maint: Formatting changes.
16643 (po-update, cvs-update, update): New targets.
16644 (AMTAR): Remove.
16645
16646 2001-08-27 Akim Demaille <akim@epita.fr>
16647
16648 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
16649 * Makefile.maint: Sync. with CVS Autoconf.
16650
16651 2001-08-27 Marc Autret <autret_m@epita.fr>
16652
16653 * src/vcg.h (struct infoname_s): New.
16654 (struct colorentry_s): New.
16655 (graph_s): New fields {vertical,horizontal}_order in structure.
16656 Add `infoname' field.
16657 Add `colorentry' field;
16658 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
16659 (G_HORIZONTAL_ORDER): New.
16660 (G_INFONAME): New.
16661 (G_COLORENTRY): New.
16662 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
16663 Add output of `infoname'.
16664 Add output of `colorentry'.
16665
16666 2001-08-27 Marc Autret <autret_m@epita.fr>
16667
16668 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
16669 This one shadowed a global parameter.
16670
16671 2001-08-24 Marc Autret <autret_m@epita.fr>
16672
16673 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
16674 instead of `unsigned'.
16675 (print_state): Do not call obstack_object_size () in obstack_grow ()
16676 to avoid macro variables shadowing.
16677
16678 2001-08-23 Marc Autret <autret_m@epita.fr>
16679
16680 * src/lex.c (percent_table): Typo: s/naem/name/.
16681 Add graph option.
16682 Normalize new options declarations.
16683
16684 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
16685
16686 * tests/suite.at: Exercise %header_extension and %source_extension.
16687
16688 2001-08-16 Marc Autret <autret_m@epita.fr>
16689
16690 * src/reader.c (parse_dquoted_param): New.
16691 (parse_header_extension_decl): Use it.
16692 (parse_source_extension_decl): Likewise.
16693
16694 2001-08-16 Marc Autret <autret_m@epita.fr>
16695
16696 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
16697 (get_xxxx_str): Use assert () instead of complain ().
16698 Remove return invokations in default cases.
16699 (get_decision_str): Modify default behaviour. Remove second argument.
16700 Echo modifications on calls.
16701 (output_graph): Fix.
16702
16703 2001-08-16 Marc Autret <autret_m@epita.fr>
16704
16705 * src/getargs.c (usage): Update with ``-g, --graph''.
16706
16707 2001-08-16 Marc Autret <autret_m@epita.fr>
16708
16709 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
16710 (Option Cross Key): Likewise.
16711 * doc/bison.1: Update.
16712
167132001-09-25 Pascal Bart <pascal.bart@epita.fr>
16714
16715 * src/output.c (output_master_parser): Don't finish action_obstack.
16716 (output_parser): Don't care about the muscle action, here.
16717 (prepare): Copy the action_obstack in the action muscle.
16718 (output): Free action_obstack.
16719
167202001-09-23 Pascal Bart <pascal.bart@epita.fr>
16721
16722 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
16723 will contain `%union' declaration.
16724 (parse_union_decl): Delete #line directive output.
16725 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
16726 informations about %union.
16727 (parse_union_decl): Copy the union_obstack in the muscle stype.
16728 * src/bison.simple: Add new #line directive.
16729 Add typdef %%stype YYSTYPE.
16730
167312001-09-23 Pascal Bart <pascal.bart@epita.fr>
16732
16733 * src/bison.simple: Add new `#line' directive.
16734
167352001-09-22 Pascal Bart <pascal.bart@epita.fr>
16736
16737 * src/bison.simple: New `#line' directive.
16738 * src/output.c (output_parser): Support new dynamic muscle input_line.
16739
167402001-09-22 Marc Autret <autret_m@epita.fr>
16741
16742 * src/output.c (output_master_parser): New.
16743 (output_parser): Be more re-entrant.
16744
167452001-09-21 Marc Autret <autret_m@epita.fr>
16746
16747 * src/reader.c (copy_definition, parse_union_decl): Update and use
16748 `linef' muscle.
16749 (copy_action): Likewise.
16750 Use obstack_1grow ().
16751 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
16752
167532001-09-21 Marc Autret <autret_m@epita.fr>
16754
16755 * src/options.c (option_table): Adjust.
16756 * src/lex.c (parse_percent_token): Fix.
16757
167582001-09-20 Pascal Bart <pascal.bart@epita.fr>
16759
16760 * src/options.c (symtab.h): Include it, need by lex.h.
16761
167622001-09-20 Pascal Bart <pascal.bart@epita.fr>
16763
16764 * src/lex.c (parse_percent_token): Change type of variable `tx', which
16765 is now an option_table_struct*.
16766 (option_strcmp): New function option_strcmp.
16767 (parse_percent_token): Call option_strcmp.
16768 * src/getargs.c (xalloc.h, options.h): Include it.
16769 (getargs): Call create_long_option_table.
16770 (getargs): Free longopts at the end of the function.
16771 (shortopts): Move in options.c.
16772 * src/options.c (create_long_option_table): New function. Convert
16773 information from option_table to option structure.
16774 * src/reader.c (options.h): Include it.
16775
16776 * src/Makefile.am: Adjust.
16777 * src/options.c (option_table): Create from longopts and percent_table.
16778 * src/getargs.c (longopts): Delete.
16779 * src/lex.c (struct percent_table_struct): Delete.
16780 (percent_table): Delete.
16781 (options.h): Include it.
16782 * src/options.c: Create.
16783 * src/options.h: Create.
16784 Declare enum opt_access_e.
16785 Define struct option_table_struct.
16786
167872001-09-20 Marc Autret <autret_m@epita.fr>
16788
16789 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
16790 sections of Bison.
16791
167922001-09-19 Pascal Bart <pascal.bart@epita.fr>
16793
16794 * src/bison.simple: s/%%filename/%%skeleton.
16795 * src/muscle_tab.c (getargs.h): Include it.
16796 (muscle_init): Insert new muscle skeleton.
16797
167982001-09-18 Pascal Bart <pascal.bart@epita.fr>
16799
16800 * src/output.c (output_parser): Delete unused variable actions_dumped.
16801
168022001-09-07 Pascal Bart <pascal.bart@epita.fr>
16803
16804 * src/output.c (output): Delete call to reader_output_yylsp.
16805 * src/reader.c (reader): Likewise.
16806 * src/reader.h: Delete declaration of reader_output_yylsp.
16807
168082001-09-02 Marc Autret <autret_m@epita.fr>
16809
16810 * src/reader.c: Include muscle_tab.h.
16811 (parse_union_decl): Update.
16812 (parse_macro_decl): Rename parse_muscle_decl.
16813 Update to use renamed functions and variable.
16814 (read_declarations, copy_action, read_additionnal_code, : Updated
16815 with correct variables and functions names.
16816 (packsymbols, reader): Likewise.
16817
16818 * src/reader.h (muscle_obstack): Extern declaration update.
16819
16820 * src/output.c: Include muscle_tab.h
16821 In all functions using macro_insert, change by using muscle_insert ().
16822 (macro_obstack): Rename muscle_obstack.
16823 Echo modifications in the whole file.
16824 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
16825 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
16826 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
16827
16828 * src/muscle_tab.h: Update double inclusion macros.
16829 (macro_entry_s): Rename muscle_entry_s.
16830 Update prototypes.
16831
16832 * src/muscle_tab.c: Include muscle_tab.h.
16833 Rename macro_tabble to muscle_table.
16834 (mhash1, mhash2, mcmp): Use muscle_entry.
16835 (macro_init): Rename muscle_init. Update.
16836 (macro_insert): Rename muscle_insert. Update.
16837 (macro_find): Rename muscle_find. Update.
16838
16839 * src/main.c: Include muscle_tab.h.
16840 (main): Call muscle_init ().
16841 * src/Makefile.am (bison_SOURCES): Echo modifications.
16842
168432001-09-02 Marc Autret <autret_m@epita.fr>
16844
16845 Now the files macro_tab.[ch] are named muscle_tab.[ch].
16846
16847 * src/muscle_tab.c, src/muscle_tab.h: Add files.
16848
168492001-09-02 Marc Autret <autret_m@epita.fr>
16850
16851 * src/macrotab.c, src/macrotab.h: Remove.
16852
168532001-09-01 Pascal Bart <pascal.bart@epita.fr>
16854
16855 * src/reader.c (copy_guard): Use muscle to specify the `#line'
16856 filename.
16857
168582001-09-01 Marc Autret <autret_m@epita.fr>
16859
16860 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
16861 to an explicit value to activate the feature. We do it here.
16862
168632001-08-31 Pascal Bart <pascal.bart@epita.fr>
16864
16865 * src/output.c (prepare): Delete the `filename' muscule insertion.
16866 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
16867 (parse_union_decl): Likewise.
16868 * src/macrotab.c (macro_init): Initialize filename by infile.
16869
168702001-08-31 Marc Autret <autret_m@epita.fr>
16871
16872 * src/bison.simple (YYLSP_NEEDED): New definition.
16873 * src/output.c (prepare): Add macro insertion of `locations_flag'
16874
168752001-08-31 Pascal Bart <pascal.bart@epita.fr>
16876
16877 * src/output.c (prepare): Delete insertion of previous muscles,
16878 and insert the `prefix' muscles.
16879 * src/macrotab.c (macro_init): Likewise.
16880 (macro_init): Initialization prefix directive by `yy'.
16881 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
16882 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
16883 yylval, yydebug, yyerror, yynerrs and yyparse.
16884 New directive `#define' to substitute yydebug, ... with option
16885 name_prefix.
16886
168872001-08-31 Pascal Bart <pascal.bart@epita.fr>
16888
16889 * src/main.c (main): Standardize.
16890 * src/output.c (output_table_data, output_parser): Likewise.
16891 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
16892
168932001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
16894
16895 * src/reader.c (read_additionnal_code): Rename %%user_code to
16896 %%epilogue.
16897 * src/output.c (output): Rename %%declarations to %%prologue.
16898 * src/bison.simple: Echo modifications.
16899
169002001-08-31 Marc Autret <autret_m@epita.fr>
16901
16902 * src/reader.c (readgram): CleanUp.
16903 (output_token_defines): Likewise.
16904 (packsymbols): Likewise.
16905 (reader): Likewise.
16906 * src/output.c (output): CPP-out useless code.
16907
169082001-08-31 Pascal Bart <pascal.bart@epita.fr>
16909
16910 * src/reader.c (reader): Delete obsolete call to function
16911 output_trailers and output_headers.
16912 * src/output.h: Remove obsolete functions prototypes of output_headers
16913 and output_trailers.
16914
169152001-08-30 Pascal Bart <pascal.bart@epita.fr>
16916
16917 * src/main.c: Include macrotab.h.
16918 * src/macrotab.h (macro_entry_s): Constify fields.
16919 Adjust functions prototypes.
16920 * src/macrotab.c (macro_insert): Constify key and value.
16921 (macro_find): Constify key.
16922 (macro_insert): Include 'xalloc.h'
16923 (macro_insert): Use XMALLOC.
16924 (macro_find): Constify return value.
16925 * src/output.c (output_table_data): Rename table to table_data.
16926 (output_parser): Constify macro_key, macro_value.
16927
169282001-08-30 Marc Autret <autret_m@epita.fr>
16929
16930 * src/reader.c (parse_skel_decl): New.
16931 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
16932 * src/lex.h (token_t): New token `tok_skel'.
16933 * src/lex.c (percent_table): Add skeleton option entry.
16934 Standardize.
16935
169362001-08-29 Marc Autret <autret_m@epita.fr>
16937
16938 * src/bison.simple: Add %%user_code directive at the end.
16939 * src/reader.c (read_additionnal_code): New.
16940 (reader): Use it.
16941 * src/output.c (output_program): Remove.
16942 (output): Update.
16943
169442001-08-28 Marc Autret <autret_m@epita.fr>
16945
16946 * src/output.c (output_actions): Clean up.
16947 (output_gram): CPP-out useless code.
16948 * src/reader.c (reader): Clean up, CPP-out useless code.
16949
169502001-08-28 Pascal Bart <pascal.bart@epita.fr>
16951
16952 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
16953 directive.
16954 * src/bison.simple: Add `%%definitions'.
16955
169562001-08-28 Marc Autret <autret_m@epita.fr>
16957
16958 * config/depcomp: New file.
16959
169602001-08-27 Paul Eggert <eggert@twinsun.com>
16961
16962 * src/bison.simple (yyparse): Don't take the address of an
16963 item before the start of an array, as that doesn't conform to
16964 the C Standard.
16965
169662001-08-27 Robert Anisko <robert.anisko@epita.fr>
16967
16968 * src/output.c (output): Remove the initialization of the macro
16969 obstack. It was done too late here.
16970
16971 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
16972 completely wrong.
16973 (reader): Initialize the macro obstack here, since we need it to grow
16974 '%define' directives.
16975
16976 * src/reader.h: Declare the macro obstack as extern.
16977
169782001-08-27 Robert Anisko <robert.anisko@epita.fr>
16979
16980 * src/output.c (output_parser): Fix. Store single '%' characters in
16981 the output obstack instead of throwing them away.
16982
169832001-08-27 Akim Demaille <akim@epita.fr>
16984
16985 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
16986
169872001-08-25 Robert Anisko <robert.anisko@epita.fr>
16988
16989 * lib/Makefile.am: Adjust.
16990
169912001-08-25 Robert Anisko <robert.anisko@epita.fr>
16992
16993 * src/bison.simple: Update and add '%%' directives.
16994
169952001-08-25 Robert Anisko <robert.anisko@epita.fr>
16996
16997 * src/reader.c (reader): Remove calls to 'output_headers' and
16998 'output_trailers'. Remove some C output.
16999 (readgram): Disable a piece of code that was writing a default
17000 definition for 'YYSTYPE'.
17001 (reader_output_yylsp): Remove.
17002 (packsymbols): Output token defintions to a macro.
17003 (copy_definition): Disable C output.
17004
17005 * src/reader.c (parse_macro_decl): New function used to parse macro
17006 declarations.
17007 (copy_string2): Put the body of copy_string into this new function.
17008 Add a parameter to let the caller choose whether he wants to copy the
17009 string delimiters or not.
17010 (copy_string): Be a simple call to copy_string2 with the last argument
17011 bound to true.
17012 (read_declarations): Add case for macro definition.
17013 (copy_identifier): New.
17014 (parse_macro_decl): Read macro identifiers using copy_identifier
17015 rather than lex.
17016
170172001-08-25 Robert Anisko <robert.anisko@epita.fr>
17018
17019 * src/output.c (prepare): Add prefixed names.
17020 (output_parser): Output semantic actions.
17021 (output_parser): Fix bug on '%%line' directives.
17022
17023 * src/output.c (output_headers): Remove. The C code printed by this
17024 function should now be in the skeletons.
17025 (output_trailers): Remove.
17026 (output): Disable call to 'reader_output_yylsp'.
17027 (output_rule_data): Do not output tables to the table obstack.
17028
17029 * src/output.c: Remove some C dedicated output.
17030 Improve the use of macro and output obstacks.
17031 (output_defines): Remove.
17032
17033 * src/output.c (output_token_translations): Associate 'translate'
17034 table with a macro. No output to the table obstack.
17035 (output_gram): Same for 'rhs' and 'prhs'.
17036 (output_stos): Same for 'stos'.
17037 (output_rule_data): Same for 'r1' and 'r2'.
17038 (token_actions): Same for 'defact'.
17039 (goto_actions): Same for 'defgoto'.
17040 (output_base): Same for 'pact' and 'pgoto'.
17041 (output_table): Same for 'table'.
17042 (output_check): Same for 'check'.
17043
17044 * src/output.c (output_table_data): New function.
17045 (output_short_table): Remove.
17046 (output_short_or_char_table): Remove.
17047
17048 * src/output.c (output_parser): Replace most of the skeleton copy code
17049 with something new. Skeletons are now processed character by character
17050 rather than line by line, and Bison looks for '%%' macros. This is the
17051 first step in making Bison's output process (a lot) more flexible.
17052 (output_parser): Use the macro table.
17053
170542001-08-25 Robert Anisko <robert.anisko@epita.fr>
17055
17056 * src/main.c (main): Initialize the macro table.
17057
170582001-08-25 Robert Anisko <robert.anisko@epita.fr>
17059
17060 * src/lex.c (percent_table): Add tok_define.
17061 * src/lex.h: Add tok_define.
17062
170632001-08-25 Robert Anisko <robert.anisko@epita.fr>
17064
17065 * src/macrotab.c: New file.
17066 * src/macrotab.h: New file.
17067 * src/Makefile.am: Update.
17068
170692001-08-25 Robert Anisko <robert.anisko@epita.fr>
17070
17071 * lib/hash.c: New file.
17072 * lib/hash.h: New file.
17073 * lib/Makefile.am: Update.
17074
170752001-08-15 Akim Demaille <akim@epita.fr>
17076
17077 Version 1.28c.
17078
170792001-08-15 Marc Autret <autret_m@epita.fr>
17080
17081 * src/reader.c (readgram): Indent output macro YYSTYPE.
17082 (packsymbols): Likewise.
17083 (output_token_defines): Likewise.
17084 * src/files.c: Standardize.
17085 (compute_header_macro): New.
17086 (defines_obstack_save): New. Use compute_header_macro.
17087 (output_files): Update. Use defines_obstack_save.
17088
170892001-08-15 Akim Demaille <akim@epita.fr>
17090
17091 * doc/bison.texinfo (Table of Symbols): Document
17092 YYSTACK_USE_ALLOCA.
17093
170942001-08-15 Akim Demaille <akim@epita.fr>
17095
17096 * missing: Update from CVS Automake.
17097 * config/config.guess, config/config.sub, config/texinfo.tex:
17098 Update from gnu.org.
17099
171002001-08-15 Akim Demaille <akim@epita.fr>
17101
17102 * Makefile.maint: Sync with CVS Autoconf.
17103
171042001-08-14 Pascal Bart <pascal.bart@epita.fr>
17105
17106 * doc/bison.texinfo: Include GNU Free Documentation License from
17107 `fdl.texi'.
17108 * doc/fdl.texi: Add to package.
17109
171102001-08-14 Marc Autret <autret_m@epita.fr>
17111
17112 Turn on %{source,header}_extension features.
17113
17114 * src/lex.c (percent_table): Un-CPP out header_extension and
17115 source_extension.
17116 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
17117 (compute_exts_from_src): Remove conditions. It restores priorities
17118 between options.
17119
171202001-08-14 Marc Autret <autret_m@epita.fr>
17121
17122 * src/files.c (compute_base_names): Add extensions computing when
17123 `--file-prefix' used.
17124 Standardize function calls.
17125
171262001-08-13 Marc Autret <autret_m@epita.fr>
17127
17128 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
17129 defining it (defined but null disables alloca).
17130
171312001-08-13 Marc Autret <autret_m@epita.fr>
17132
17133 * src/bison.simple (_yy_memcpy): CPP reformat.
17134
171352001-08-13 Pascal Bart <pascal.bart@epita.fr>
17136
17137 * tests/atconfig.in (CPPFLAGS): Fix.
17138
171392001-08-10 Pascal Bart <pascal.bart@epita.fr>
17140
17141 * doc/bison.texinfo: Include GNU General Public License from
17142 `gpl.texi'.
17143 * doc/gpl.texi: Add to package.
17144
171452001-08-10 Marc Autret <autret_m@epita.fr>
17146
17147 * src/print_graph.h: Fix.
17148 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
17149
171502001-08-10 Akim Demaille <akim@epita.fr>
17151
17152 * src/system.h: Provide default declarations for stpcpy, strndup,
17153 and strnlen.
17154
171552001-08-10 Robert Anisko <anisko_r@epita.fr>
17156
17157 * doc/bison.texinfo (Locations): Update @$ stuff.
17158
171592001-08-09 Robert Anisko <anisko_r@epita.fr>
17160
17161 * src/bison.simple (YYLLOC_DEFAULT): Update.
17162 (yyparse): Adjust.
17163
171642001-08-08 Marc Autret <autret_m@epita.fr>
17165
17166 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
17167 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
17168 Reported by Fabrice Bauzac.
17169
171702001-08-08 Marc Autret <autret_m@epita.fr>
17171
17172 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
17173 * src/vcg.c (output_node): Fix.
17174 * src/vcg.h: Cleanup.
17175 * src/print_graph.c: Add comments.
17176 (node_output_size): New global variable. Simplify the formatting of
17177 the VCG graph output.
17178 (print_actions): Unused code is now used. It notifies the final state
17179 and no action states in the VCG graph. It also give the reduce actions.
17180 The `shift and goto' edges are red and the `go to state' edges are
17181 blue.
17182 Get the current node name and node_obstack by argument.
17183 (node_obstack): New variable.
17184 (print_state): Manage node_obstack.
17185 (print_core): Use node_obstack given by argument.
17186 A node is not only computed here but in print_actions also.
17187 (print_graph): CPP out useless code instead of commenting it.
17188
171892001-08-07 Pascal Bart <pascal.bart@epita.fr>
17190
17191 * tests/atconfig.in (CPPFLAGS): Fix.
17192
171932001-08-07 Akim Demaille <akim@epita.fr>
17194
17195 * src/print_graph.c (quote): New.
17196 (print_core): Use it.
17197
171982001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
17199
17200 * src/vcg.c (complain.h): Include it.
17201 Unepitaize `return' invocations.
17202 [NDEBUG] (main): Remove.
17203 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
17204 * src/files.c (open_files): Initialize graph_obstack.
17205 * src/print_graph.c (print_actions): CPP out useless code.
17206 (print_core): Don't output the last `\n' in labels.
17207 Use `quote'.
17208 * src/files.c (output_files): Output the VCG file.
17209 * src/main.c (main): Invoke print_graph ();
17210
172112001-08-06 Marc Autret <autret_m@epita.fr>
17212
17213 Automaton VCG graph output.
17214 Using option ``-g'' or long option ``--graph'', you can generate
17215 a gram_filename.vcg file containing a VCG description of the LALR (1)
17216 automaton of your grammar.
17217
17218 * src/main.c: Call to print_graph() function.
17219 * src/getargs.h: Update.
17220 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
17221 (graph_flag): New flag.
17222 (longopts): Update.
17223 (getargs): Add case `g'.
17224 * src/files.c (graph_obstack): New obstack struct.
17225 (open_files): Initialize new obstack.
17226 (output_files): Saves graph_obstack if required.
17227 * src/files.h (graph_obstack): New extern declaration.
17228 * src/Makefile.am: Add new source files.
17229
172302001-08-06 Marc Autret <autret_m@epita.fr>
17231
17232 * src/print_graph.c, src/print_graph.h (graph): New.
17233 * src/vcg.h: New file.
17234 * src/vcg.c: New file, VCG graph handling.
17235
172362001-08-06 Marc Autret <autret_m@epita.fr>
17237
17238 Add of %source_extension and %header_extension which specify
17239 the source or/and the header output file extension.
17240
17241 * src/files.c (compute_base_names): Remove initialisation of
17242 src_extension and header_extension.
17243 (compute_exts_from_gf): Update.
17244 (compute_exts_from_src): Update.
17245 (output_files): Update.
17246 * src/reader.c (parse_header_extension_decl): New.
17247 (parse_source_extension_decl): New.
17248 (read_declarations): New case statements for the new tokens.
17249 * src/lex.c (percent_table): Add entries for %source_extension
17250 and %header_extension.
17251 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
17252
172532001-08-06 Marc Autret <autret_m@epita.fr>
17254
17255 * configure.in: Bump to 1.28c.
17256 * doc/bison.texinfo: Texinfo thingies.
17257
172582001-08-04 Pascal Bart <pascal.bart@epita.fr>
17259
17260 * tests/atconfig.in (CPPFLAGS): Add.
17261 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
17262
172632001-08-03 Akim Demaille <akim@epita.fr>
17264
17265 Version 1.28b.
17266
172672001-08-03 Akim Demaille <akim@epita.fr>
17268
17269 * tests/Makefile.am (check-local): Ship testsuite.
17270 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
17271 Include `string.h'.
17272
172732001-08-03 Akim Demaille <akim@epita.fr>
17274
17275 * configure.in: Try using -Wformat when compiling.
17276
172772001-08-03 Akim Demaille <akim@epita.fr>
17278
17279 * configure.in: Bump to 1.28b.
17280
172812001-08-03 Akim Demaille <akim@epita.fr>
17282
17283 * src/complain.c: Adjust strerror_r portability issues.
17284
172852001-08-03 Akim Demaille <akim@epita.fr>
17286
17287 Version 1.28a.
17288
172892001-08-03 Akim Demaille <akim@epita.fr>
17290
17291 * src/getargs.c, src/getarg.h (skeleton)): Constify.
17292 * src/lex.c (literalchar): Avoid name clashes on `buf'.
17293 * src/getargs.c: Include complain.h.
17294 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
17295 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
17296
172972001-08-03 Akim Demaille <akim@epita.fr>
17298
17299 * src/reader.c (readgram): Display hidden chars in error messages.
17300
173012001-08-03 Akim Demaille <akim@epita.fr>
17302
17303 Update to gettext 0.10.39.
17304
173052001-08-03 Akim Demaille <akim@epita.fr>
17306
17307 * lib/strspn.c: New.
17308
173092001-08-01 Marc Autret <autret_m@epita.fr>
17310
17311 * doc/bison.texinfo: Update.
17312 * doc/bison.1 (mandoc): Update.
17313 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
17314 * src/files.c: Support output files extensions computing.
17315 (src_extension): New static variable.
17316 (header_extension): New static variable.
17317 (tr): New function.
17318 (get_extension_index): New function, gets the index of an extension
17319 filename in a string.
17320 (compute_exts_from_gf): New function, computes extensions from the
17321 grammar file extension.
17322 (compute_exts_from_src): New functions, computes extensions from the
17323 C source file extension, file given by ``-o'' option.
17324 (compute_base_names): Update.
17325 (output_files): Update.
17326
173272001-08-01 Robert Anisko <anisko_r@epita.fr>
17328
17329 * doc/bison.texi: Document @$.
17330 (Locations): New section.
17331
173322001-07-18 Akim Demaille <akim@epita.fr>
17333
17334 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
17335 * config/prev-version.txt, config/move-if-change: New.
17336 * Makefile.am: Adjust.
17337
173382001-07-08 Pascal Bart <pascal.bart@epita.fr>
17339
17340 * src/bison.simple (yyparse): Suppress warning `comparaison
17341 between signed and unsigned'.
17342
173432001-07-05 Pascal Bart <pascal.bart@epita.fr>
17344
17345 * src/getargs.h (raw_flag): Remove.
17346 * src/getargs.c: Die on `-r'/`--raw'.
17347 * src/lex.c (parse_percent_token): Die on `%raw'.
17348 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
17349 * tests/calc.at: Suppress test with option `--raw'.
17350
173512001-07-14 Akim Demaille <akim@epita.fr>
17352
17353 * config/: New.
17354 * configure.in: Require Autoconf 2.50.
17355 Update to gettext 0.10.38.
17356
173572001-03-16 Akim Demaille <akim@epita.fr>
17358
17359 * doc/bison.texinfo: ANSIfy the examples.
17360
173612001-03-16 Akim Demaille <akim@epita.fr>
17362
17363 * getargs.c (skeleton): New variable.
17364 (longopts): --skeleton is a new option.
17365 (shortopts, getargs): -S is a new option.
17366 * getargs.h: Declare skeleton.
17367 * output.c (output_parser): Use it.
17368
173692001-03-16 Akim Demaille <akim@epita.fr>
17370
17371 * m4/strerror_r.m4: New.
17372 * m4/error.m4: Run AC_FUNC_STRERROR_R.
17373 * lib/error.h, lib/error.c: Update.
17374
173752001-03-16 Akim Demaille <akim@epita.fr>
17376
17377 * src/getargs.c (longopts): Clean up.
17378
173792001-02-21 Akim Demaille <akim@epita.fr>
17380
17381 * src/reader.c (gensym): `gensym_count' is your own.
17382 Use a static buf to create the symbol name, as token_buffer is no
17383 longer a buffer.
17384
173852001-02-08 Akim Demaille <akim@epita.fr>
17386
17387 * src/conflicts.c (conflict_report): Be sure not to append to res
17388 between two calls, which could happen if both first sprintf were
17389 skipped, but not the first cp += strlen.
17390
173912001-02-08 Akim Demaille <akim@epita.fr>
17392
17393 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
17394 New, from fileutils 4.0.37.
17395 * configure.in: Require Autoconf 2.49c. I took some time before
17396 making this decision. This is the only way out for portability
17397 issues in Bison, it would mean way too much duplicate effort to
17398 import in Bison features implemented in 2.49c since 2.13.
17399 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
17400
174012001-02-02 Akim Demaille <akim@epita.fr>
17402
17403 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
17404 * lib/xalloc.h, lib/xmalloc.c: Update.
17405
174062001-01-19 Akim Demaille <akim@epita.fr>
17407
17408 Get rid of the ad hoc handling of token_buffer in the scanner: use
17409 the obstacks.
17410
17411 * src/lex.c (token_obstack): New.
17412 (init_lex): Initialize it. No longer call...
17413 (grow_token_buffer): this. Remove it.
17414 Adjust all the places which used it to use the obstack.
17415
174162001-01-19 Akim Demaille <akim@epita.fr>
17417
17418 * src/lex.h: Rename all the tokens:
17419 s/\bENDFILE\b/tok_eof/g;
17420 s/\bIDENTIFIER\b/tok_identifier/g;
17421 etc.
17422 Let them be enums, not #define, to ease debugging.
17423 Adjust all the code.
17424
174252001-01-18 Akim Demaille <akim@epita.fr>
17426
17427 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
17428 * src/lex.c (maxtoken, grow_token_buffer): Static.
17429
174302001-01-18 Akim Demaille <akim@epita.fr>
17431
17432 Since we now use obstacks, more % directives can be enabled.
17433
17434 * src/lex.c (percent_table): Also accept `%yacc',
17435 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
17436 `%debug'.
17437 Handle the actions for `%semantic_parser' and `%pure_parser' here,
17438 instead of returning a token.
17439 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
17440 * src/reader.c (read_declarations): Adjust.
17441 * src/files.c (open_files): Don't call `compute_base_names', don't
17442 compute `attrsfile' since they depend upon data which might be
17443 *in* the input file now.
17444 (output_files): Do it here.
17445 * src/output.c (output_headers): Document the fact that this patch
17446 introduces a guaranteed SEGV for semantic parsers.
17447 * doc/bison.texinfo: Document them.
17448 * tests/suite.at: Exercise these %options.
17449
174502000-12-20 Akim Demaille <akim@epita.fr>
17451
17452 Also handle the output file (--verbose) with obstacks.
17453
17454 * files.c (foutput): Remove.
17455 (output_obstack): New.
17456 Adjust all dependencies.
17457 * src/conflicts.c: Return a string.
17458 * src/system.h (obstack_grow_string): Rename as...
17459 (obstack_sgrow): this. Be ready to work with non literals.
17460 (obstack_fgrow4): New.
17461
174622000-12-20 Akim Demaille <akim@epita.fr>
17463
17464 * src/files.c (open_files): Fix the computation of short_base_name
17465 in the case of `-o foo.tab.c'.
17466
174672000-12-20 Akim Demaille <akim@epita.fr>
17468
17469 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
17470 (copy_dollar): Now that everything uses obstacks, get rid of the
17471 FILE * parameters.
17472
174732000-12-20 Akim Demaille <akim@epita.fr>
17474
17475 * src/files.c (open_files): Actually the `.output' file is based
17476 on the short_base_name, not base_name.
17477 * tests/suite.at (Checking output file names): Adjust.
17478
174792000-12-20 Akim Demaille <akim@epita.fr>
17480
17481 * src/bison.s1: Remove, we now use directly...
17482 * src/bison.simple: this.
17483 * src/Makefile.am: Use pkgdata instead of data.
17484
174852000-12-20 Akim Demaille <akim@epita.fr>
17486
17487 * src/files.c (guard_obstack): New.
17488 (open_files): Initialize it.
17489 (output_files): Dump it...
17490 * src/files.h: Export it.
17491 * src/reader.c (copy_guard): Use it.
17492
174932000-12-19 Akim Demaille <akim@epita.fr>
17494
17495 * src/files.c (outfile, defsfile, actfile): Removed as global
17496 vars.
17497 (open_files): Don't compute them.
17498 (output_files): Adjust.
17499 (base_name, short_base_name): Be global.
17500 Adjust dependencies.
17501
175022000-12-19 Akim Demaille <akim@epita.fr>
17503
17504 * src/files.c (strsuffix): New.
17505 (stringappend): Be just like strcat but allocate.
17506 (base_names): Eve out from open_files.
17507 Try to simplify the rather hairy computation of base_name and
17508 short_base_name.
17509 (open_files): Use it.
17510 * tests/suite.at (Checking output file names): New test.
17511
175122000-12-19 Akim Demaille <akim@epita.fr>
17513
17514 * src/system.h (obstack_grow_literal_string): Rename as...
17515 (obstack_grow_string): this.
17516 * src/output.c (output_parser): Recognize `%% actions' instead of
17517 `$'.
17518 * src/bison.s1: s/$/%% actions/.
17519 * src/bison.hairy: Likewise.
17520
175212000-12-19 Akim Demaille <akim@epita.fr>
17522
17523 * src/output.c (output_parser): Compute the `#line' lines when
17524 there are.
17525 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
17526 Suggested by Hans Aberg.
17527
175282000-12-19 Akim Demaille <akim@epita.fr>
17529
17530 Let the handling of the skeleton files be local to the procedures
17531 that use it.
17532
17533 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
17534 longer static.
17535 (fparser, open_extra_files): Remove.
17536 (open_files, output_files): Don't take care of fparser.
17537 * src/files.h: Adjust.
17538 * src/output.c (output_parser): Open and close the file to the
17539 skeleton.
17540 * src/reader.c (read_declarations): When %semantic_parser, open
17541 fguard.
17542
175432000-12-19 Akim Demaille <akim@epita.fr>
17544
17545 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
17546 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
17547
175482000-12-19 Akim Demaille <akim@epita.fr>
17549
17550 * src/files.c (open_files): Yipee! We no longer need all the code
17551 looking for `/tmp' since we have no tmp file.
17552
175532000-12-19 Akim Demaille <akim@epita.fr>
17554
17555 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
17556 New macros.
17557 * src/files.c (open_files): Less dependency on MSDOS etc.
17558
175592000-12-14 Akim Demaille <akim@epita.fr>
17560
17561 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
17562 Provide a default definition.
17563 Use it when executing the default @ action.
17564 * src/reader.c (reader_output_yylsp): No longer include
17565 `timestamp' and `text' in the default YYLTYPE.
17566
175672000-12-12 Akim Demaille <akim@epita.fr>
17568
17569 * src/reader.c (copy_definition, parse_union_decl, copy_action)
17570 (copy_guard): Quote the file names.
17571 Reported by Laurent Mascherpa.
17572
175732000-12-12 Akim Demaille <akim@epita.fr>
17574
17575 * src/output.c (output_headers, output_program, output): Be sure
17576 to escape special characters when outputting filenames.
17577 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
17578 (output_headers): Don't depend on them, Use ACTSTR.
17579
175802000-11-17 Akim Demaille <akim@epita.fr>
17581
17582 * lib/obstack.h: Formatting changes.
17583 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
17584 prevents type checking.
17585 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
17586 cast the value to (void *): assigning a `foo *' to a `void *'
17587 variable is valid.
17588 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
17589 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
17590 append characters.
17591
175922000-11-17 Akim Demaille <akim@epita.fr>
17593
17594 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
17595 as...
17596 (suite.m4, regression.m4, calc.m4): these.
17597 * tests/atgeneral.m4: Update from CVS Autoconf.
17598
175992000-11-17 Akim Demaille <akim@epita.fr>
17600
17601 * tests/regression.m4 (%union and --defines): New test,
17602 demonstrating a current bug in the obstack implementation.
17603
176042000-11-17 Akim Demaille <akim@epita.fr>
17605
17606 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
17607 macros.
17608 Use them to declare the variables which are global or local to
17609 `yyparse'.
17610
176112000-11-17 Akim Demaille <akim@epita.fr>
17612
17613 * acconfig.h: Remove, no longer used.
17614
176152000-11-07 Akim Demaille <akim@epita.fr>
17616
17617 * src: s/Copyright (C)/Copyright/g.
17618
176192000-11-07 Akim Demaille <akim@epita.fr>
17620
17621 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
17622 defining.
17623 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
17624
176252000-11-07 Akim Demaille <akim@epita.fr>
17626
17627 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
17628 Merge in a single CPP if/else.
17629
176302000-11-07 Akim Demaille <akim@epita.fr>
17631
17632 * src/output.c (output): Remove useless variables.
17633 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
17634 argument `data' for consistency with the prototypes.
17635 Qualify it `const'.
17636 (obstack_copy, obstack_copy0): Rename the second argument as
17637 `address' for consistency. Qualify it `const'.
17638 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
17639 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
17640 `const' their input argument (`data' or `address').
17641 Adjust the corresponding macros to include `const' in casts.
17642
176432000-11-03 Akim Demaille <akim@epita.fr>
17644
17645 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
17646 s/PFILE1/BISON_HAIRY/.
17647 Adjust dependencies.
17648
176492000-11-03 Akim Demaille <akim@epita.fr>
17650
17651 For some reason, this was not applied.
17652
17653 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
17654 `unlink': it's no longer used.
17655
176562000-11-03 Akim Demaille <akim@epita.fr>
17657
17658 * src/files.c (skeleton_find): New function, eved out of...
17659 (open_files, open_extra_files): here.
17660
176612000-11-03 Akim Demaille <akim@epita.fr>
17662
17663 Don't use `atexit'.
17664
17665 * src/files.c (obstack_save): New function.
17666 (done): Rename as...
17667 (output_files): this.
17668 Use `obstack_save'.
17669 * src/main.c (main): Don't use `atexit' to register `done', since
17670 it no longer has to remove tmp files, just call `output_files'
17671 when there are no errors.
17672
176732000-11-02 Akim Demaille <akim@epita.fr>
17674
17675 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
17676 `unlink': it's no longer used.
17677 * src/files.h: Formatting changes.
17678
176792000-11-02 Akim Demaille <akim@epita.fr>
17680
17681 Remove the last uses of mktemp and unlink/delete.
17682
17683 * src/files.c (fdefines, ftable): Removed.
17684 (defines_ostack, table_obstack): New.
17685 Adjust dependencies of the former into uses of the latter.
17686 * src/output.c (output_short_or_char_table, output_short_table):
17687 Convert to using obstacks.
17688 * src/reader.c (copy_comment2): Accept one FILE * and two
17689 obstacks.
17690 (output_token_defines, reader_output_yylsp): Use obstacks.
17691 * src/system.h (obstack_fgrow3): New.
17692 * po/POTFILES.in: Adjust.
17693
176942000-11-01 Akim Demaille <akim@epita.fr>
17695
17696 Change each use of `fattrs' into a use of `attrs_obstack'.
17697
17698 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
17699 * src/files.c (fattrs): Remove.
17700 (attrs_obstack): New.
17701 Adjust all dependencies.
17702 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
17703
177042000-11-01 Akim Demaille <akim@epita.fr>
17705
17706 Introduce obstacks.
17707 Change each use of `faction' into a use of `action_obstack'.
17708
17709 * lib/obstack.h, lib/obstack.c: New files.
17710 * src/files.c (faction): Remove.
17711 (action_obstack): New.
17712 Adjust all dependencies.
17713
177142000-10-20 Akim Demaille <akim@epita.fr>
17715
17716 * lib/quote.h (PARAMS): New macro. Use it.
17717
177182000-10-16 Akim Demaille <akim@epita.fr>
17719
17720 * src/output.c (output_short_or_char_table): New function.
17721 (output_short_table, output_token_translations): Use it.
17722 (goto_actions): Use output_short_table.
17723
177242000-10-16 Akim Demaille <akim@epita.fr>
17725
17726 * src/symtab.c (bucket_new): New function.
17727 (getsym): Use it.
17728
17729 * src/output.c (output_short_table): New argument to display the
17730 comment associated with the table.
17731 Adjust dependencies.
17732 (output_gram): Use it.
17733 (output_rule_data): Nicer output layout for YYTNAME.
17734
177352000-10-16 Akim Demaille <akim@epita.fr>
17736
17737 * src/lex.c (read_typename): New function.
17738 (lex): Use it.
17739 * src/reader.c (copy_dollar): Likewise.
17740
177412000-10-16 Akim Demaille <akim@epita.fr>
17742
17743 * src/reader.c (copy_comment2): Expect the input stream to be on
17744 the `/' which is suspected to open a comment, instead of being
17745 called after `//' or `/*' was read.
17746 (copy_comment, copy_definition, parse_union_decl, copy_action)
17747 (copy_guard): Adjust.
17748
177492000-10-16 Akim Demaille <akim@epita.fr>
17750
17751 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
17752 `read_signed_integer'.
17753
177542000-10-16 Akim Demaille <akim@epita.fr>
17755
17756 * src/reader.c (copy_dollar): New function.
17757 (copy_guard, copy_action): Use it.
17758
177592000-10-16 Akim Demaille <akim@epita.fr>
17760
17761 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
17762 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
17763 New files, from Fileutils 4.0.27.
17764 * src/main.c (printable_version): Remove.
17765 * src/lex.c, src/reader.c: Use `quote'.
17766
177672000-10-04 Akim Demaille <akim@epita.fr>
17768
17769 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
17770
177712000-10-04 Akim Demaille <akim@epita.fr>
17772
17773 * doc/bison.texinfo: Various typos spotted by Neil Booth.
17774
177752000-10-04 Akim Demaille <akim@epita.fr>
17776
17777 When a literal string is used to define two different tokens,
17778 `bison -v' segfaults.
17779 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
17780
17781 * tests/regression.m4: New file.
17782 Include the core of the sample provided by Piotr Gackiewicz.
17783 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
17784 properly.
17785
177862000-10-04 Akim Demaille <akim@epita.fr>
17787
17788 * src/reader.c (parse_expect_decl): Keep `count' within the size
17789 of `buffer'.
17790 From Neil Booth.
17791
177922000-10-02 Paul Eggert <eggert@twinsun.com>
17793
17794 * bison.s1 (yyparse): Assign the default value
17795 unconditionally, to avoid a GCC warning and make the parser a
17796 tad smaller.
17797
177982000-10-02 Akim Demaille <akim@epita.fr>
17799
17800 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
17801 options.
17802
178032000-10-02 Akim Demaille <akim@epita.fr>
17804
17805 * src/derives.c, src/print.c, src/reduce.c: To ease the
17806 translation, move some `\n' out of the translated strings.
17807
178082000-10-02 Akim Demaille <akim@epita.fr>
17809
17810 The location tracking mechanism is precious for parse error
17811 messages. Nevertheless, it is enabled only when `@n' is used in
17812 the grammar, which is a different issue (you can use it in error
17813 message, but not in the grammar per se). Therefore, there should
17814 be another means to enable it.
17815
17816 * src/getargs.c (getargs): Support `--locations'.
17817 (usage): Report it.
17818 * src/getargs.h (locationsflag): Export it.
17819 * src/lex.c (percent_table): Support `%locations'.
17820 * src/reader.c (yylsp_needed): Remove this variable, now replaced
17821 with `locationsflag'.
17822 * doc/bison.texinfo: Document `--locations' and `%locations'.
17823 Sort the options.
17824 * tests/calc.m4: Test it.
17825
17826 For regularity of the names, replace each
17827 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
17828 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
17829 In addition replace each `flag' with `_flag'.
17830
178312000-10-02 Akim Demaille <akim@epita.fr>
17832
17833 Also test parse error messages, including with YYERROR_VERBOSE.
17834
17835 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
17836 associative).
17837 Use it to check the computations.
17838 Use it to check `nonassoc' is honored.
17839 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
17840 `--yyerror-verbose'.
17841 (_AT_CHECK_CALC): Adjust to this option.
17842 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
17843
178442000-10-02 Akim Demaille <akim@epita.fr>
17845
17846 Test also `--verbose', `--defines' and `--name-prefix'. Testing
17847 the latter demonstrates a flaw in the handling of non debugging
17848 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
17849 was used in order to simplify:
17850
17851 #if YYDEBUG
17852 if (yydebug)
17853 {
17854 ...
17855 }
17856 #endif
17857
17858 into
17859
17860 if (yydebug)
17861 {
17862 ...
17863 }
17864
17865 unfortunately this leads to a CPP conflict when
17866 `--name-prefix=foo' is used since it produces `#define yydebug
17867 foodebug'.
17868
17869 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
17870 (YYDPRINTF): New macro.
17871 Spread its use.
17872 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
17873 the bison options.
17874 Also test `--verbose', `--defines' and `--name-prefix'.
17875
178762000-10-02 Akim Demaille <akim@epita.fr>
17877
17878 Improve the readability of the produced parsers.
17879
17880 * src/bison.s1: Formatting changes.
17881 Improve the comment related to the `$' mark.
17882 (yydefault): Don't fall through to `yyresume': `goto' there.
17883 * src/output.c (output_parser): When the `$' is met, skip the end
17884 of its line.
17885 New variable, `number_of_dollar_signs', to check there's exactly
17886 one `$' in the parser skeleton.
17887
178882000-10-02 Akim Demaille <akim@epita.fr>
17889
17890 * lib/xstrdup.c: New file, from the fileutils.
17891 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
17892 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
17893 instead of strlen + xmalloc + strcpy.
17894 * src/symtab.c (copys): Remove, use xstrdup instead.
17895
178962000-10-02 Akim Demaille <akim@epita.fr>
17897
17898 * src/gram.h (associativity): New enum type which replaces the
17899 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
17900 `right_assoc', `left_assoc' and `non_assoc'.
17901 Adjust all dependencies.
17902 * src/reader.c: Formatting changes.
17903 (LTYPESTR): Don't define it, use it as a literal in
17904 `reader_output_yylsp'.
17905 * src/symtab.h (symbol_class): New enum type which replaces the
17906 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
17907 `sunknown', `stoken and `snterm'.
17908
179092000-10-02 Akim Demaille <akim@epita.fr>
17910
17911 * src/getargs.c (fixed_outfiles): Rename as...
17912 (yaccflag): for consistency and accuracy.
17913 Adjust dependencies.
17914
179152000-10-02 Akim Demaille <akim@epita.fr>
17916
17917 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
17918 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
17919 difficult and introduced a lot of core dump. It turns out that
17920 Bison used an implementation of `xmalloc' based on `calloc', and
17921 at various places it does depend upon the initialization to 0. I
17922 have not tried to isolate the pertinent places, and all the former
17923 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
17924 someone should address this issue.
17925
17926 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
17927 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
17928 files.
17929 Adjust dependencies.
17930 * src/warshall.h: New file.
17931 Propagate.
17932
179332000-10-02 Akim Demaille <akim@epita.fr>
17934
17935 Various anti-`extern in *.c' changes.
17936
17937 * src/system.h: Include `assert.h'.
17938
179392000-10-02 Akim Demaille <akim@epita.fr>
17940
17941 * src/state.h (nstates, final_state, first_state, first_shift)
17942 (first_reduction): Move their exportation from here...
17943 * src/LR0.h: to here.
17944 Adjust dependencies.
17945 * src/getargs.c (statisticsflag): New variable.
17946 Add support for `--statistics'.
17947 Adjust dependencies.
17948
17949 Remove a lot of now useless `extern' statements in most files.
17950
179512000-10-02 Akim Demaille <akim@epita.fr>
17952
17953 * src/LR0.h: New file.
17954 Propagate its use.
17955
179562000-10-02 Akim Demaille <akim@epita.fr>
17957
17958 * src/print.h: New file.
17959 Propagate its use.
17960 * src/print.c: Formatting and ordering changes.
17961 (verbose, terse): Replace with...
17962 (print_results): this new function.
17963 Adjust dependencies.
17964
179652000-10-02 Akim Demaille <akim@epita.fr>
17966
17967 * src/conflicts.c (conflict_report): New function.
17968 (conflict_log, verbose_conflict_log): Replace with...
17969 (print_conflicts): this function.
17970 Adjust dependencies.
17971 * src/conflicts.h: New file.
17972 Propagate its inclusion.
17973
179742000-10-02 Akim Demaille <akim@epita.fr>
17975
17976 * src/nullable.h: New file.
17977 Propagate its inclusion.
17978 * src/nullable.c: Formatting changes.
17979
179802000-10-02 Akim Demaille <akim@epita.fr>
17981
17982 * src/reduce.h: New file.
17983 Propagate its inclusion.
17984 * src/reduce.c: Topological sort and other formatting changes.
17985 (bool, TRUE, FALSE): Move their definition to...
17986 * src/system.h: here.
17987
179882000-10-02 Akim Demaille <akim@epita.fr>
17989
17990 * src/files.c: Formatting changes.
17991 (tryopen, tryclose, openfiles): Rename as...
17992 (xfopen, xfclose, open_files): this.
17993 (stringappend): static.
17994 * src/files.h: Complete the list of exported symbols.
17995 Propagate its use.
17996
179972000-10-02 Akim Demaille <akim@epita.fr>
17998
17999 * src/reader.h: New file.
18000 Propagate its use instead of tedious list of `extern' and
18001 prototypes.
18002 * src/reader.c: Formatting changes, topological sort,
18003 s/register//.
18004
180052000-10-02 Akim Demaille <akim@epita.fr>
18006
18007 * src/lex.h: Prototype `lex.c' exported functions.
18008 * src/reader.c: Adjust.
18009 * src/lex.c: Formatting changes.
18010 (safegetc): Rename as...
18011 (xgetc): this.
18012
180132000-10-02 Akim Demaille <akim@epita.fr>
18014
18015 * src/lalr.h: New file.
18016 Propagate its inclusion instead of prototypes and `extern'.
18017 * src/lalr.c: Formatting changes, topological sorting etc.
18018
180192000-10-02 Akim Demaille <akim@epita.fr>
18020
18021 * src/output.c (token_actions): Introduce a temporary array,
18022 YYDEFACT, that makes it possible for this function to use
18023 output_short_table.
18024
180252000-10-02 Akim Demaille <akim@epita.fr>
18026
18027 `user_toknums' is output as a `short[]' in `output.c', while it is
18028 defined as a `int[]' in `reader.c'. For consistency with the
18029 other output tables, `user_toknums' is now defined as a table of
18030 shorts.
18031
18032 * src/reader.c (user_toknums): Be a short table instead of an int
18033 table.
18034 Adjust dependencies.
18035
18036 Factor the short table outputs.
18037
18038 * src/output.c (output_short_table): New function.
18039 * src/output.c (output_gram, output_stos, output_rule_data)
18040 (output_base, output_table, output_check): Use it.
18041
180422000-10-02 Akim Demaille <akim@epita.fr>
18043
18044 * src/output.c (output): Topological sort of the functions, in
18045 order to get rid of the `static' prototypes.
18046 No longer use `register'.
18047 * src/output.h: New file.
18048 Propagate its inclusion in files explicitly prototyping functions
18049 from output.c.
18050
180512000-09-21 Akim Demaille <akim@epita.fr>
18052
18053 * src/atgeneral.m4: Update from Autoconf.
18054
180552000-09-21 Akim Demaille <akim@epita.fr>
18056
18057 * src/closure.h: New file.
18058 * src/closure.c: Formatting changes, topological sort over the
18059 functions, use of closure.h.
18060 (initialize_closure, finalize_closure): Rename as...
18061 (new_closure, free_closure): these. Adjust dependencies.
18062 * src/LR0.c: Formatting changes, topological sort, use of
18063 cloture.h.
18064 (initialize_states): Rename as...
18065 (new_states): this.
18066 * src/Makefile.am (noinst_HEADERS): Adjust.
18067
180682000-09-20 Akim Demaille <akim@epita.fr>
18069
18070 * src/acconfig.h: Don't protect config.h against multiple
18071 inclusion.
18072 Don't define PARAMS.
18073 * src/system.h: Define PARAMS.
18074 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
18075 purpose of config.h. system.h must not try to fix wrong
18076 definitions in config.h.
18077
180782000-09-20 Akim Demaille <akim@epita.fr>
18079
18080 * src/derives.h: New file.
18081 * src/main.c, src/derives.h: Use it.
18082 Formatting changes.
18083 * src/Makefile.am (noinst_HEADERS): Adjust.
18084
180852000-09-20 Akim Demaille <akim@epita.fr>
18086
18087 * tests/atgeneral.m4: Update from Autoconf.
18088 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
18089 (AT_CHECK_CALC): New macros.
18090 Use these macros to test bison with options `', `--raw',
18091 `--debug', `--yacc', `--yacc --debug'.
18092
180932000-09-19 Akim Demaille <akim@epita.fr>
18094
18095 * src/output.c: Formatting changes.
18096 * src/machine.h: Remove, leaving its contents in...
18097 * src/system.h: here.
18098 Include stdio.h.
18099 Adjust all dependencies on stdio.h and machine.h.
18100 * src/getargs.h: New file.
18101 Let all `extern' declarations about getargs.c be replaced with
18102 inclusion of `getargs.h'.
18103 * src/Makefile.am (noinst_HEADERS): Adjust.
18104
18105 * tests/calc.m4 (yyin): Be initialized in main, not on the global
18106 scope.
18107 (yyerror): Returns void, not int.
18108 * doc/bison.texinfo: Formatting changes.
18109
181102000-09-19 Akim Demaille <akim@epita.fr>
18111
18112 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
18113 portable.
18114
181152000-09-18 Akim Demaille <akim@epita.fr>
18116
18117 * configure.in: Append WARNING_CFLAGS to CFLAGS.
18118 * src/Makefile.am (INCLUDES): Don't.
18119 Be ready to fetch headers in lib/.
18120
181212000-09-18 Akim Demaille <akim@epita.fr>
18122
18123 * doc/bison.texinfo: Update the copyright.
18124 ANSIfy and GNUify the examples.
18125 Remove the old menu.
18126
181272000-09-18 Akim Demaille <akim@epita.fr>
18128
18129 First set of tests: use the `calc' example from the documentation.
18130
18131 * src/bison.s1 (yyparse): Condition the code using `yytname' which
18132 is defined only when YYDEBUG is.
18133 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
18134 * src/files.c (tryopen, tryclose): Formatting changes.
18135 Move to the top and be static.
18136 * src/reader.c (read_signed_integer): Likewise.
18137 * tests/calc.m4: New file.
18138 * Makefile.am, suite.m4: Adjust.
18139 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
18140
181412000-09-18 Akim Demaille <akim@epita.fr>
18142
18143 Add support for an Autotest test suite for Bison.
18144
18145 * m4/m4.m4, m4/atconfig.m4: New files.
18146 * m4/Makefile.am (EXTRA_DIST): Adjust.
18147 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
18148 files.
18149 * src/getargs.c: Display a more standard --version message.
18150 * src/reader.c (reader): Formatting changes.
18151 No longer depend upon VERSION_STRING.
18152 * configure.in: No longer use `dnl'.
18153 Set up the test suite and the new directory `tests/.
18154 (VERSION_STRING): Remove.
18155
181562000-04-14 Akim Demaille <akim@epita.fr>
18157
18158 * src/reader.c (copy_comment2): New function, same as former
18159 `copy_comment', but outputs into two FILE *.
18160 (copy_comment): Use it.
18161 (parse_union_decl): Use it.
18162 (get_type, parse_start_decl): Use the same `invalid' message.
18163 (parse_start_decl, parse_union_decl): Use the same `multiple'
18164 message.
18165 (parse_union_decl, copy_guard, copy_action): Use the same
18166 `unmatched' message.
18167 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
18168
181692000-03-31 Akim Demaille <akim@epita.fr>
18170
18171 * src/files.c (tryopen, tryclose): Move to the top.
18172 Be static.
18173
181742000-03-31 Akim Demaille <akim@epita.fr>
18175
18176 * src/main.c (main): Don't call `done', exit does it.
18177
181782000-03-31 Akim Demaille <akim@epita.fr>
18179
18180 * allocate.c: s/return (foo)/return foo/.
18181 * lalr.c: Likewise.
18182 * LR0.c: Likewise.
18183 * output.c: Likewise.
18184 * reader.c: Likewise.
18185 * symtab.c: Likewise.
18186 * vmsgetargs.c: Likewise.
18187
181882000-03-31 Akim Demaille <akim@epita.fr>
18189
18190 Clean up the error reporting functions.
18191
18192 * src/report.c: New file.
18193 * src/report.h: Likewise.
18194 * src/Makefile.am: Adjust.
18195 * m4/error.m4: New file.
18196 * m4/Makefile.am: Adjust.
18197 * configure.in (jm_PREREQ_ERROR): Call it.
18198 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
18199 Remove.
18200 (fatal, fatals): Remove. All callers use complain.c::fatal.
18201 (warn, warni, warns, warnss, warnss): Remove. All callers use
18202 complain.c::complain.
18203 (toomany): Remove, use fatal instead.
18204 * src/files.c (done): No argument, use complain_message_count.
18205 * src/main.c (main): Register `done' to `atexit'.
18206
18207 * src/getargs.c (usage): More `fputs', less `fprintf'.
18208
182092000-03-28 Akim Demaille <akim@epita.fr>
18210
18211 * lib/: New directory.
18212 * Makefile.am (SUBDIRS): Adjust.
18213 * configure.in: Adjust.
18214 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
18215 useless.
18216 * src/alloca.c: Moved to lib/.
18217 * src/getopt.c: Likewise.
18218 * src/getopt1.c: Likewise.
18219 * src/getopt.h: Likewise.
18220 * src/ansi2knr.c: Likewise.
18221 * src/ansi2knr.1: Likewise.
18222 * src/Makefile.am: Adjust.
18223 * lib/Makefile.am: New file.
18224
182252000-03-28 Akim Demaille <akim@epita.fr>
18226
18227 * src/getargs.c (usage): Refresh the help message.
18228
182292000-03-17 Akim Demaille <akim@epita.fr>
18230
18231 * src/getopt1.c: Updated from textutils 2.0e
18232 * src/getopt.c: Likewise.
18233 * src/getopt.h: Likewise.
18234
182352000-03-17 Akim Demaille <akim@epita.fr>
18236
18237 * src/Makefile.am (bison.simple): Fix the awk program: quote only
18238 the file name, not the whole `#line LINE FILE'.
18239
182402000-03-17 Akim Demaille <akim@epita.fr>
18241
18242 On syntax errors, report the token on which we choked.
18243
18244 * src/bison.s1 (yyparse): In the label yyerrlab, when
18245 YYERROR_VERBOSE, add yychar in msg.
18246
182472000-03-17 Akim Demaille <akim@epita.fr>
18248
18249 * src/reader.c (copy_at): New function.
18250 (copy_guard): Use it.
18251 (copy_action): Use it.
18252
182532000-03-17 Akim Demaille <akim@epita.fr>
18254
18255 Be kind to translators, save some useless translations.
18256
18257 * src/main.c (banner): New function.
18258 (fatal_banner): Use it.
18259 (warn_banner): Use it.
18260
182612000-03-17 Akim Demaille <akim@epita.fr>
18262
18263 * src/reader.c (copy_definition): Use copy_string and
18264 copy_comment. Removed now unused `match', `ended',
18265 `cplus_comment'.
18266 (copy_comment, copy_string): Moved, to be visible from
18267 copy_definition.
18268
182692000-03-17 Akim Demaille <akim@epita.fr>
18270
18271 * src/reader.c (copy_string): Declare `static inline'. No
18272 problems with inline, since it is checked by configure.
18273 (copy_comment): Likewise.
18274
182752000-03-17 Akim Demaille <akim@epita.fr>
18276
18277 * src/reader.c (packsymbols): Formatting changes.
18278
182792000-03-17 Akim Demaille <akim@epita.fr>
18280
18281 * src/reader.c (copy_comment): New function, factored out from:
18282 (copy_action): Use it. Removed now unused `match', `ended',
18283 `cplus_comment'.
18284 (copy_guard): Likewise.
18285
182862000-03-17 Akim Demaille <akim@epita.fr>
18287
18288 * src/reader.c (copy_string): New function, factored out from:
18289 (copy_action): Use it.
18290 (copy_guard): Likewise.
18291
182922000-03-17 Akim Demaille <akim@epita.fr>
18293
18294 Change the handling of @s so that they behave exactly like $s.
18295 There is now a pseudo variable @$ (readble and writable), location
18296 of the lhs of the rule (by default ranging from the location of
18297 the first symbol of the rhs, to the location of the last symbol,
18298 or, if the rhs is empty, YYLLOC).
18299
18300 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
18301 yyval.
18302 (yyparse): When providing a default semantic action, provide a
18303 default location action.
18304 (after the $): No longer change `*YYLSP', just stack YYLOC the
18305 same way you stack YYVAL.
18306 * src/reader.c (read_declarations): Use warns.
18307 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
18308 (copy_action, case '@'): Likewise.
18309 Use a standard error message, to save useless work from
18310 translators.
18311
183122000-03-17 Akim Demaille <akim@epita.fr>
18313
18314 * src/bison.s1: Formatting and cosmetics changes.
18315 * src/reader.c: Likewise.
18316 Update the Copyright notice.
18317
183182000-03-17 Akim Demaille <akim@epita.fr>
18319
18320 * src/bison.s1 (#line): All set to `#line' only, since the
18321 Makefile now handles them.
18322
183232000-03-16 Akim Demaille <akim@epita.fr>
18324
18325 * src/output.c (output_rule_data): Output the documentation of
18326 some of the tables.
18327 (Copyright notice): Update.
18328 Formatting changes.
18329
183302000-03-16 Akim Demaille <akim@epita.fr>
18331
18332 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
18333 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
18334 One `#if YYDEBUG' remains, since it uses variables which are
18335 defined only if `YYDEBUG != 0'.
18336
183372000-03-16 Akim Demaille <akim@epita.fr>
18338
18339 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
18340 and related variables so that the similarities are highlighted.
18341
183422000-03-16 Akim Demaille <akim@epita.fr>
18343
18344 * src/bison.s1: Properly indent CPP directives.
18345
183462000-03-16 Akim Demaille <akim@epita.fr>
18347
18348 * src/bison.s1: Properly indent the `alloca' CPP section.
18349
183502000-03-16 Akim Demaille <akim@epita.fr>
18351
18352 Do not hard code values of directories in `configure.in'.
18353 Update the `configure' tool chain.
18354
18355 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
18356 src/makefile.am.
18357 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
18358 (AC_OUTPUT): Add m4/Makefile.
18359 Bump to bison 1.28a, 1.29 has never been released.
18360 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
18361 handled via src/Makefile.am.
18362 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
18363 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
18364 autoheader.
18365 * Makefile.am (SUBDIRS): Add m4.
18366 (ACLOCAL_AM_FLAGS): New variable.
18367 (AUTOMAKE_OPTIONS): Add check-news.
18368 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
18369 the proper line number and file name.
18370 (DEFS): Propagate the location of bison library files and of the
18371 locale files.
18372 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
18373 builddir.
18374 * acinclude.m4: Remove, replaced by the directory m4.
18375 * m4/Makefile.am (EXTRA_DIST): New variable.
18376 * m4/gettext.m4: New file, from the fileutils.
18377 * m4/lcmessage.m4: Likewise
18378 * m4/progtest.m4: Likewise.
18379 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
18380
183812000-03-10 Akim Demaille <akim@epita.fr>
18382
18383 * src/closure.c:
18384 Formatting changes of various comments.
18385 Respect the GNU coding standards at various places.
18386 Don't use `_()' when no translation is needed.
18387
183881999-12-13 Jesse Thilo <jthilo@gnu.org>
18389
18390 * src/files.c:
18391 OS/2 honors TMPDIR environment variable.
18392
183931999-12-13 Jesse Thilo <jthilo@gnu.org>
18394
18395 * doc/bison.texinfo: Tweaked spelling and grammar.
18396 Updated ISBN.
18397 Removed reference to price of printed copy.
18398 Mention BISON_SIMPLE and BISON_HAIRY.
18399
184001999-12-13 Jesse Thilo <jthilo@gnu.org>
18401
18402 * configure.in, NEWS:
18403 Bison 1.29 released.
18404
184051999-10-27 Jesse Thilo <jthilo@gnu.org>
18406
18407 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
18408 Added reference card.
18409
184101999-07-26 Jesse Thilo <jthilo@gnu.org>
18411
18412 * po/ru.po: Added Russian translation.
18413
184141999-07-26 Jesse Thilo <jthilo@gnu.org>
18415
18416 * configure.in: Added Russian translation.
18417
184181999-07-06 Jesse Thilo <jthilo@gnu.org>
18419
18420 * configure.in, NEWS, README:
18421 Released version 1.28.
18422
184231999-06-14 Jesse Thilo <jthilo@gnu.org>
18424
18425 * src/system.h:
18426 Squashed redefinition warning on some systems.
18427
18428 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
18429 Have configure build version string instead of relying on ANSI string
18430 concatentation.
18431
184321999-06-14 Jesse Thilo <jthilo@gnu.org>
18433
18434 * po/POTFILES.in: Got rid of version.c.
18435
184361999-06-14 Jesse Thilo <jthilo@gnu.org>
18437
18438 * acconfig.h, configure.in:
18439 Have configure build version string instead of relying on ANSI string
18440 concatentation.
18441
184421999-06-08 Jesse Thilo <jthilo@gnu.org>
18443
18444 * doc/bison.1:
18445 Dropped mention of `+' for long-named options.
18446
184471999-05-30 Jesse Thilo <jthilo@gnu.org>
18448
18449 * src/files.c: Added <unistd.h> for unlink().
18450
18451 * src/Makefile.am, src/system.h:
18452 I18n fixes.
18453
184541999-05-30 Jesse Thilo <jthilo@gnu.org>
18455
18456 * README: Added a FAQ list.
18457
18458 * configure.in, acconfig.h:
18459 I18n fixes.
18460
184611999-05-30 Jesse Thilo <jthilo@gnu.org>
18462
18463 * doc/FAQ, doc/Makefile.am:
18464 Added a FAQ list.
18465
184661999-05-19 Jesse Thilo <jthilo@gnu.org>
18467
18468 * src/alloc.h, src/symtab.h, src/version.c:
18469 Protected inclusion of "config.h" with HAVE_CONFIG_H.
18470
184711999-04-18 Jesse Thilo <jthilo@gnu.org>
18472
18473 * src/.cvsignore, src/Makefile.am:
18474 Reorganized: sources in `src', documentation in `doc'.
18475
18476 * src/lex.c (literalchar):
18477 fixed the code for escaping double quotes (thanks
18478 Jonathan Czisny.)
18479
184801999-04-18 Jesse Thilo <jthilo@gnu.org>
18481
18482 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
18483 Adjusted paths to reflect directory reorganization.
18484
184851999-04-18 Jesse Thilo <jthilo@gnu.org>
18486
18487 * doc/.cvsignore, doc/Makefile.am:
18488 Reorganized: sources in `src', documentation in `doc'.
18489
184901999-04-18 Jesse Thilo <jthilo@gnu.org>
18491
18492 * configure.in:
18493 Updated AC_INIT file to reflect directory reorganization.
18494
18495 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
18496 Reorganized: sources in `src', documentation in `doc'.
18497
184981999-04-13 Jesse Thilo <jthilo@gnu.org>
18499
18500 * src/allocate.c:
18501 Don't declare calloc() and realloc() if not necessary.
18502
185031999-04-13 Jesse Thilo <jthilo@gnu.org>
18504
18505 * configure.in, acconfig.h, acinclude.m4:
18506 Don't declare calloc() and realloc() if not necessary.
18507
185081999-03-23 Jesse Thilo <jthilo@gnu.org>
18509
18510 * po/.cvsignore: Added i18n support.
18511
185121999-03-23 Jesse Thilo <jthilo@gnu.org>
18513
18514 * acconfig.h, configure.in, Makefile.am:
18515 Added i18n support.
18516
185171999-03-22 Jesse Thilo <jthilo@gnu.org>
18518
18519 * src/bison.s1: Fixed #line numbers.
18520
185211999-03-15 Jesse Thilo <jthilo@gnu.org>
18522
18523 * po/es.po, po/fr.po, po/nl.po, po/de.po:
18524 Added PO files from Translation Project.
18525
185261999-03-03 Jesse Thilo <jthilo@gnu.org>
18527
18528 * Makefile.am:
18529 Added support for non-ANSI compilers (ansi2knr).
18530
185311999-02-16 Jesse Thilo <jthilo@gnu.org>
18532
18533 * configure.in: Bumped version number to 1.27.
18534
18535 * Makefile.am:
18536 Added `bison.simple' to list of files removed by `make distclean'.
18537
185381999-02-12 Jesse Thilo <jthilo@gnu.org>
18539
18540 * src/files.c, src/files.h:
18541 Defined locations of parser files in config.h instead of Makefile.
18542
185431999-02-12 Jesse Thilo <jthilo@gnu.org>
18544
18545 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
18546 Defined locations of parser files in config.h instead of Makefile.
18547
185481999-02-09 Jesse Thilo <jthilo@gnu.org>
18549
18550 * Makefile.am:
18551 Removed inappropriate use of $< macro.
18552
185531999-02-05 Jesse Thilo <jthilo@gnu.org>
18554
18555 * po/Makefile.in.in, po/POTFILES.in:
18556 Add `po' directory skeleton.
18557
185581999-01-27 Jesse Thilo <jthilo@gnu.org>
18559
18560 * README: Document help-bison list.
18561
18562 * configure.in: Add check for mkstemp().
18563
185641999-01-20 Jesse Thilo <jthilo@gnu.org>
18565
18566 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
18567 Hush a few compiler warnings.
18568
18569 * src/files.c:
18570 Add tryclose(), which verifies that fclose was successful.
18571 Hush a couple of compiler warnings.
18572
185731999-01-20 Jesse Thilo <jthilo@gnu.org>
18574
18575 * Makefile.am, OChangeLog:
18576 ChangeLog is now automatically generated. Include the old version as
18577 OChangeLog.
18578
185791999-01-14 Jesse Thilo <jthilo@gnu.org>
18580
18581 * 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:
18582 Update FSF address.
18583
185841999-01-14 Jesse Thilo <jthilo@gnu.org>
18585
18586 * doc/bison.texinfo: Fix formatting glitch.
18587
18588 * doc/bison.texinfo: Update FSF address.
18589
185901999-01-14 Jesse Thilo <jthilo@gnu.org>
18591
18592 * acconfig.h: Update FSF address.
18593
185941999-01-08 Jesse Thilo <jthilo@gnu.org>
18595
18596 * src/system.h:
18597 Don't define PACKAGE here, since config.h defines it.
18598
185991998-12-30 Jesse Thilo <jthilo@gnu.org>
18600
18601 * src/reader.c: Update copyright date.
18602
18603 * src/main.c:
18604 Ditch sprintf to statically-sized buffers in fatal/warn functions in
18605 favor of output directly to stderr (avoids buffer overruns).
18606
18607 * src/reader.c: Some checks for premature EOF.
18608
18609 * 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:
18610 Use prototypes if the compiler understands them.
18611
18612 * src/files.c: Honor TMPDIR on Unix hosts.
18613 Use prototypes if the compiler understands them.
18614
18615 * src/reader.c:
18616 Fix a couple of buffer overrun bugs.
18617 Use prototypes if the compiler understands them.
18618
18619 * src/system.h: Include unistd.h and ctype.h.
18620 Use #ifdef instead of #if for NLS symbols.
18621
186221998-12-30 Jesse Thilo <jthilo@gnu.org>
18623
18624 * doc/bison.texinfo:
18625 Delete comment "consider using @set for edition number, etc..." since
18626 we now are doing so.
18627
186281998-12-30 Jesse Thilo <jthilo@gnu.org>
18629
18630 * configure.in:
18631 Use prototypes if the compiler understands them.
18632
18633 * NEWS: Document 1.26 highlights.
18634
18635 * Makefile.am: Require Automake 1.3 or later.
18636
18637 * acconfig.h:
18638 Use prototypes if the compiler understands them.
18639
186401998-12-29 Jesse Thilo <jthilo@gnu.org>
18641
18642 * src/version.c:
18643 Use VERSION symbol from automake for version number.
18644
186451998-12-29 Jesse Thilo <jthilo@gnu.org>
18646
18647 * acconfig.h, configure.in, version.cin:
18648 Use VERSION symbol from automake for version number.
18649
186501998-11-28 Jesse Thilo <jthilo@gnu.org>
18651
18652 * Makefile.am:
18653 Distribute original version of simple parser (bison.s1), not built
18654 version (bison.simple).
18655
186561998-11-28 Jesse Thilo <jthilo@gnu.org>
18657
18658 * doc/bison.texinfo: Add info dir entry.
18659
18660 * doc/bison.texinfo:
18661 Let automake put version number into documentation.
18662
186631998-11-26 Jesse Thilo <jthilo@gnu.org>
18664
18665 * src/bison.cld, src/build.com, src/vmshlp.mar:
18666 Add non-RCS files from /gd/gnu/bison.
18667
186681998-11-26 Jesse Thilo <jthilo@gnu.org>
18669
18670 * doc/bison.1:
18671 Document the BISON_HAIRY and BISON_SIMPLE variables.
18672
186731998-11-25 Jesse Thilo <jthilo@gnu.org>
18674
18675 * src/version.c: Build version.c automatically.
18676
18677 * src/reader.c:
18678 Fix token numbering (used to start at 258, not 257).
18679
18680 * src/system.h: Include config.h.
18681
18682 * src/getargs.c: Update bug report address.
18683
18684 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
18685 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
18686
186871998-11-25 Jesse Thilo <jthilo@gnu.org>
18688
18689 * Makefile.am:
18690 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
18691
18692 * configure.in, version.cin:
18693 Build version.c automatically.
18694
18695 * AUTHORS: Add AUTHORS file.
18696
18697 * README: Update bug report address.
18698
18699 * bison.simple:
18700 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
18701
18702 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
18703 Add automake stuff.
18704
187051998-11-25 Jesse Thilo <jthilo@gnu.org>
18706
18707 * doc/bison.texinfo: Clean up some formatting.
18708
187091998-05-05 Richard Stallman <rms@gnu.org>
18710
18711 * doc/bison.texinfo:
18712 Explain better why to make a pure parser.
18713
187141998-01-05 Richard Stallman <rms@gnu.org>
18715
18716 * src/files.c (openfiles):
18717 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
18718 find a temporary directory, if possible. Do not unlink files while
18719 they are open.
18720
187211997-08-25 Richard Stallman <rms@gnu.org>
18722
18723 * src/reader.c (stack_offset;):
18724 Change some warni to warns.
18725
18726 * src/lex.c (literalchar): Use warns, not warni.
18727
187281997-06-28 Richard Stallman <rms@gnu.org>
18729
18730 * src/bison.s1: Add a Bison version comment.
18731
18732 * src/main.c (fatal, warn, berror):
18733 Use program_name.
18734
187351997-06-28 Richard Stallman <rms@gnu.org>
18736
18737 * Makefile.in (bison_version): New variable.
18738 (dist): Use that variable.
18739 (bison.s1): Substitute the Bison version into bison.simple.
18740
18741 * bison.simple: Add a Bison version comment.
18742
187431997-06-18 Richard Stallman <rms@gnu.org>
18744
18745 * src/main.c (fatal, warn, berror):
18746 Make error messages standard.
18747 (toomany): Improve error message text.
18748
18749 * 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:
18750 new.h renamed to alloc.h.
18751
187521997-06-18 Richard Stallman <rms@gnu.org>
18753
18754 * Makefile.in: new.h renamed to alloc.h.
18755
187561997-05-24 Richard Stallman <rms@gnu.org>
18757
18758 * src/lex.c (literalchar):
18759 Fix the code for escaping \, " and '.
18760
18761 (lex): Avoid trouble when there are many chars
18762 to discard in a char literal with just several chars in it.
18763
187641997-05-17 Richard Stallman <rms@gnu.org>
18765
18766 * src/bison.s1:
18767 Use malloc, if using alloca is troublesome.
18768 (YYSTACK_USE_ALLOCA): New flag macro.
18769 Define it for some systems and compilers.
18770 (YYSTACK_ALLOC): New macro.
18771 (yyparse): Use YYSTACK_ALLOC to allocate stack.
18772 If it was malloc'd, free it.
18773
187741997-05-17 Richard Stallman <rms@gnu.org>
18775
18776 * bison.simple:
18777 Use malloc, if using alloca is troublesome.
18778 (YYSTACK_USE_ALLOCA): New flag macro.
18779 Define it for some systems and compilers.
18780 (YYSTACK_ALLOC): New macro.
18781 (yyparse): Use YYSTACK_ALLOC to allocate stack.
18782 If it was malloc'd, free it.
18783
187841997-04-23 Richard Stallman <rms@gnu.org>
18785
18786 * src/bison.s1:
18787 (alloca) [__hpux]: Always define as __builtin_alloca.
18788
187891997-04-23 Richard Stallman <rms@gnu.org>
18790
18791 * bison.simple:
18792 (alloca) [__hpux]: Always define as __builtin_alloca.
18793
187941997-04-22 Richard Stallman <rms@gnu.org>
18795
18796 * src/bison.s1:
18797 [__hpux]: Include alloca.h (right for HPUX 10)
18798 instead of declaring alloca (right for HPUX 9).
18799
18800 * src/bison.s1 (__yy_memcpy):
18801 Declare arg `count' as unsigned int.
18802 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
18803
188041997-04-22 Richard Stallman <rms@gnu.org>
18805
18806 * bison.simple:
18807 [__hpux]: Include alloca.h (right for HPUX 10)
18808 instead of declaring alloca (right for HPUX 9).
18809
18810 * bison.simple (__yy_memcpy):
18811 Declare arg `count' as unsigned int.
18812 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
18813
188141997-01-03 Richard Stallman <rms@gnu.org>
18815
18816 * src/allocate.c: [__STDC__ or _MSC_VER]:
18817 Declare calloc and realloc to return void *.
18818
188191997-01-02 Richard Stallman <rms@gnu.org>
18820
18821 * src/system.h:
18822 [_MSC_VER]: Include stdlib.h and process.h.
18823 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
18824
18825 * src/main.c (main): Return FAILURE as a value.
18826 (printable_version): Declare arg as int, not char.
18827
188281997-01-02 Richard Stallman <rms@gnu.org>
18829
18830 * Makefile.in (dist):
18831 Explicitly check for symlinks, and copy them.
18832
188331996-12-19 Richard Stallman <rms@gnu.org>
18834
18835 * src/files.c:
18836 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
18837
188381996-12-18 Paul Eggert <eggert@gnu.org>
18839
18840 * src/bison.s1 (yyparse):
18841 If __GNUC__ and YYPARSE_PARAM are both defined,
18842 declare yyparse to have a void * argument.
18843
188441996-12-18 Paul Eggert <eggert@gnu.org>
18845
18846 * bison.simple (yyparse):
18847 If __GNUC__ and YYPARSE_PARAM are both defined,
18848 declare yyparse to have a void * argument.
18849
188501996-12-17 Richard Stallman <rms@gnu.org>
18851
18852 * src/reduce.c (nbits): Add some casts.
18853
188541996-08-12 Richard Stallman <rms@gnu.org>
18855
18856 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
18857
188581996-08-12 Richard Stallman <rms@gnu.org>
18859
18860 * bison.simple: Test _MSDOS as well as _MSDOS_.
18861
188621996-07-31 Richard Stallman <rms@gnu.org>
18863
18864 * src/bison.s1:
18865 [__sun && __i386]: Include alloca.h.
18866
188671996-07-31 Richard Stallman <rms@gnu.org>
18868
18869 * bison.simple:
18870 [__sun && __i386]: Include alloca.h.
18871
188721996-07-30 Richard Stallman <rms@gnu.org>
18873
18874 * src/bison.s1: Comment change.
18875
18876 * src/bison.s1: Test _MSDOS_, not MSDOS.
18877
188781996-07-30 Richard Stallman <rms@gnu.org>
18879
18880 * bison.simple: Comment change.
18881
18882 * bison.simple: Test _MSDOS_, not MSDOS.
18883
188841996-06-01 Richard Stallman <rms@gnu.org>
18885
18886 * 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:
18887 Insert `_' macro around many string constants.
18888
18889 * src/main.c:
18890 Insert `_' macro around many string constants.
18891
18892 (main): Call setlocale, bindtextdomain and textdomain.
18893
18894 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
18895 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
18896 [ENABLE_NLS]: Include libintl.h.
18897 [ENABLE_NLS] (gettext): Define.
18898 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
18899 (N_, PACKAGE, LOCALEDIR): New macros.
18900
189011996-06-01 Richard Stallman <rms@gnu.org>
18902
18903 * POTFILES.in: New file.
18904
18905 * Makefile.in (allocate.o):
18906 Define target explicitly.
18907
18908 * Makefile.in (CFLAGS): Set to @CFLAGS@.
18909 (LDFLAGS): Set to @LDFLAGS@.
18910 (configure): Run autoconf only if preceding `cd' succeeds.
18911 (bison.s1): Redirect output to temporary file then move the
18912 temporary to the target, rather than redirecting directly to bison.s1.
18913 (clean): Remove config.status and config.log.
18914 (distclean): Don't remove config.status here.
18915
189161996-05-12 Richard Stallman <rms@gnu.org>
18917
18918 * src/bison.s1:
18919 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
18920
189211996-05-12 Richard Stallman <rms@gnu.org>
18922
18923 * bison.simple:
18924 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
18925
189261996-05-11 Richard Stallman <rms@gnu.org>
18927
18928 * src/bison.s1 (__yy_memcpy):
18929 Really reorder the args, as was supposedly done on Feb 14 1995.
18930 (yyparse): Calls changed accordingly.
18931
189321996-05-11 Richard Stallman <rms@gnu.org>
18933
18934 * Makefile.in (dist): Don't use $(srcdir).
18935
18936 * bison.simple (__yy_memcpy):
18937 Really reorder the args, as was supposedly done on Feb 14 1995.
18938 (yyparse): Calls changed accordingly.
18939
189401996-01-27 Richard Stallman <rms@gnu.org>
18941
18942 * src/output.c (output_rule_data):
18943 Test YYERROR_VERBOSE in the conditional
18944 around the definition of ttyname.
18945
189461995-12-29 Richard Stallman <rms@gnu.org>
18947
18948 * src/bison.s1:
18949 Fix line numbers in #line commands.
18950
189511995-12-29 Richard Stallman <rms@gnu.org>
18952
18953 * bison.simple:
18954 Fix line numbers in #line commands.
18955
189561995-12-27 Richard Stallman <rms@gnu.org>
18957
18958 * src/bison.s1 (YYPARSE_PARAM_DECL):
18959 In C++, make it always null.
18960 (YYPARSE_PARAM_ARG): New macro.
18961 (yyparse): Use YYPARSE_PARAM_ARG.
18962
189631995-12-27 Richard Stallman <rms@gnu.org>
18964
18965 * bison.simple (YYPARSE_PARAM_DECL):
18966 In C++, make it always null.
18967 (YYPARSE_PARAM_ARG): New macro.
18968 (yyparse): Use YYPARSE_PARAM_ARG.
18969
189701995-11-29 Richard Stallman <rms@gnu.org>
18971
18972 * doc/bison.texinfo:
18973 Describe literal string tokens, %raw, %no_lines, %token_table.
18974
189751995-11-29 Daniel Hagerty <hag@gnu.org>
18976
18977 * doc/bison.texinfo: Fixed update date
18978
189791995-10-16 Richard Stallman <rms@gnu.org>
18980
18981 * src/version.c: Version 1.25.
18982
189831995-10-16 Richard Stallman <rms@gnu.org>
18984
18985 * NEWS: *** empty log message ***
18986
189871995-10-16 Richard Stallman <rms@gnu.org>
18988
18989 * doc/bison.1, doc/bison.rnh:
18990 Add new options.
18991
189921995-10-15 Richard Stallman <rms@gnu.org>
18993
18994 * src/vmsgetargs.c, src/getargs.c:
18995 Added -n, -k, and -raw switches.
18996 (noparserflag, toknumflag, rawtoknumflag): New variables.
18997
18998 * src/symtab.h (SALIAS):
18999 New #define for adding aliases to %token.
19000 (struct bucket): Added `alias' field.
19001
19002 * src/reduce.c (reduce_grammar):
19003 Revise error message.
19004 (print_notices): Remove final `.' from error message.
19005
19006 * src/reader.c (reader_output_yylsp):
19007 New function.
19008 (readgram): Use `#if 0' around code that accepted %command
19009 inside grammar rules: The documentation doesn't allow it,
19010 and it will fail since the %command processors scan for the next %.
19011 (parse_token_decl): Extended the %token
19012 declaration to allow a multi-character symbol as an alias.
19013 (parse_thong_decl): New function.
19014 (read_declarations): Added %thong declarations.
19015 (read_declarations): Handle NOOP to deal with allowing
19016 % declarations as another means to specify the flags.
19017 (readgram): Allow %prec prior to semantics embedded in a rule.
19018 (skip_to_char, read_declarations, copy_definition)
19019 (parse_token_decl, parse_start_decl, parse_type_decl)
19020 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
19021 (get_type_name, copy_guard, copy_action, readgram)
19022 (get_type, packsymbols): Revised most error messages.
19023 Changed `fatal' to `warnxxx' to avoid aborting for error.
19024 Revised and use multiple warnxxx functions to avoid using VARARGS1.
19025 (read_declarations): Improve the error message for
19026 an invalid character. Do not abort.
19027 (read_declarations, copy_guard, copy_action): Use
19028 printable_version to avoid unprintable characters in printed output.
19029 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
19030 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
19031 Allow the type of a non-terminal can be given
19032 more than once, as long as all specifications give the same type.
19033
19034 * src/output.c:
19035 (output_headers, output_trailers, output, output_gram)
19036 (output_rule_data): Implement noparserflag variable.
19037 Implement toknumflag variable.
19038 (output): Call reader_output_yylsp to output LTYPESTR.
19039
19040 * src/main.c (main):
19041 If reader sees an error, don't process the grammar.
19042 (fatals): Updated to not use VARARGS1.
19043 (printable_version, int_to_string, warn, warni, warns, warnss)
19044 (warnsss): New error reporting functions. Avoid abort for error.
19045
19046 * src/lex.h:
19047 Added THONG and NOOP for alias processing.
19048 Added SETOPT for the new code that allows setting options with %flags.
19049
19050 * src/lex.c:
19051 Include getopt.h. Add some extern decls.
19052 (safegetc): New function to deal with EOF gracefully.
19053 (literalchar); new function to deal with reading \ escapes.
19054 (lex): Use literalchar.
19055 (lex): Implemented "..." tokens.
19056 (literalchar, lex, parse_percent_token): Made tokenbuffer
19057 always contain the token. This includes growing the token
19058 buffer while reading an integer.
19059 (parse_percent_token): Replaced if-else statement with percent_table.
19060 (parse_percent_token): Added % declarations as another
19061 way to specify the flags -n, -l, and -r. Also added hooks for
19062 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
19063 major changes to files.c.
19064 (lex) Retain in the incoming stream a character following
19065 an incorrect '/'.
19066 (skip_white_space, lex): Revised most error messages
19067 and changed fatal to warn to avoid aborting.
19068 (percent_table): Added %thong declarations.
19069
19070 * src/gram.h: Comment changes.
19071
19072 * src/files.c (openfiles, open_extra_files, done):
19073 Add faction flag
19074 and actfile file. Handle noparserflag. Both for -n switch.
19075
19076 * src/conflicts.c (resolve_sr_conflict):
19077 Remove use of alloca.
19078
190791995-06-01 Jim Meyering <meyering@gnu.org>
19080
19081 * doc/bison.texinfo: *** empty log message ***
19082
190831995-05-06 Richard Stallman <rms@gnu.org>
19084
19085 * src/bison.s1: Comment change.
19086
190871995-05-06 Richard Stallman <rms@gnu.org>
19088
19089 * bison.simple: Comment change.
19090
190911995-05-03 Richard Stallman <rms@gnu.org>
19092
19093 * src/version.c: Version now 1.24.
19094
19095 * src/bison.s1: Change distribution terms.
19096
19097 * src/version.c: Version now 1.23.
19098
190991995-05-03 Richard Stallman <rms@gnu.org>
19100
19101 * doc/bison.texinfo:
19102 Rewrite "Conditions for Using Bison".
19103 Update version to 1.24.
19104
191051995-05-03 Richard Stallman <rms@gnu.org>
19106
19107 * bison.simple: Change distribution terms.
19108
191091995-02-23 Richard Stallman <rms@gnu.org>
19110
19111 * src/files.c: Test __VMS_POSIX as well as VMS.
19112
191131995-02-14 Jim Meyering <meyering@gnu.org>
19114
19115 * src/bison.s1 (__yy_memcpy):
19116 Renamed from __yy_bcopy to avoid
19117 confusion. Reverse FROM and TO arguments to be consistent with
19118 those of memcpy.
19119
191201995-02-14 Jim Meyering <meyering@gnu.org>
19121
19122 * bison.simple (__yy_memcpy):
19123 Renamed from __yy_bcopy to avoid
19124 confusion. Reverse FROM and TO arguments to be consistent with
19125 those of memcpy.
19126
191271994-11-10 David J. MacKenzie <djm@gnu.org>
19128
19129 * NEWS: reformat
19130
19131 * NEWS: New file.
19132
19133 * Makefile.in (DISTFILES): Include NEWS.
19134
19135 * Makefile.in (DISTFILES):
19136 Include install-sh, not install.sh.
19137
19138 * configure.in: Update to Autoconf v2 macro names.
19139
191401994-10-05 David J. MacKenzie <djm@gnu.org>
19141
19142 * Makefile.in: fix typo
19143
19144 * Makefile.in (prefix, exec_prefix):
19145 Let configure set them.
19146
191471994-09-28 David J. MacKenzie <djm@gnu.org>
19148
19149 * Makefile.in: Set datadir to $(prefix)/share.
19150
191511994-09-15 Richard Stallman <rms@gnu.org>
19152
19153 * src/bison.s1:
19154 Update copyright notice and GPL version.
19155
191561994-09-15 Richard Stallman <rms@gnu.org>
19157
19158 * bison.simple:
19159 Update copyright notice and GPL version.
19160
191611994-07-12 Richard Stallman <rms@gnu.org>
19162
19163 * src/reduce.c, src/reader.c:
19164 entered into RCS
19165
191661994-05-05 David J. MacKenzie <djm@gnu.org>
19167
19168 * Makefile.in: entered into RCS
19169
191701994-03-26 Richard Stallman <rms@gnu.org>
19171
19172 * src/bison.s1: entered into RCS
19173
191741994-03-26 Richard Stallman <rms@gnu.org>
19175
19176 * bison.simple: entered into RCS
19177
191781994-03-25 Richard Stallman <rms@gnu.org>
19179
19180 * src/main.c: entered into RCS
19181
191821994-03-24 Richard Stallman <rms@gnu.org>
19183
19184 * src/conflicts.c: entered into RCS
19185
191861994-01-02 Richard Stallman <rms@gnu.org>
19187
19188 * Makefile.in: *** empty log message ***
19189
191901993-11-21 Richard Stallman <rms@gnu.org>
19191
19192 * src/bison.s1: *** empty log message ***
19193
191941993-11-21 Richard Stallman <rms@gnu.org>
19195
19196 * doc/bison.texinfo: entered into RCS
19197
19198 * doc/bison.texinfo: *** empty log message ***
19199
192001993-11-21 Richard Stallman <rms@gnu.org>
19201
19202 * bison.simple: *** empty log message ***
19203
192041993-10-25 David J. MacKenzie <djm@gnu.org>
19205
19206 * doc/bison.texinfo: *** empty log message ***
19207
192081993-10-19 Richard Stallman <rms@gnu.org>
19209
19210 * src/bison.s1: *** empty log message ***
19211
192121993-10-19 Richard Stallman <rms@gnu.org>
19213
19214 * bison.simple: *** empty log message ***
19215
192161993-10-14 Richard Stallman <rms@gnu.org>
19217
19218 * src/bison.s1: *** empty log message ***
19219
192201993-10-14 Richard Stallman <rms@gnu.org>
19221
19222 * bison.simple: *** empty log message ***
19223
192241993-09-14 David J. MacKenzie <djm@gnu.org>
19225
19226 * doc/bison.texinfo: *** empty log message ***
19227
192281993-09-13 Noah Friedman <friedman@gnu.org>
19229
19230 * Makefile.in: *** empty log message ***
19231
192321993-09-10 Richard Stallman <rms@gnu.org>
19233
19234 * src/conflicts.c: *** empty log message ***
19235
19236 * src/system.h: entered into RCS
19237
192381993-09-10 Richard Stallman <rms@gnu.org>
19239
19240 * doc/bison.1: entered into RCS
19241
192421993-09-06 Noah Friedman <friedman@gnu.org>
19243
19244 * src/version.c: entered into RCS
19245
192461993-09-06 Noah Friedman <friedman@gnu.org>
19247
19248 * Makefile.in: *** empty log message ***
19249
192501993-07-30 David J. MacKenzie <djm@gnu.org>
19251
19252 * Makefile.in: *** empty log message ***
19253
192541993-07-24 Richard Stallman <rms@gnu.org>
19255
19256 * src/bison.s1: *** empty log message ***
19257
192581993-07-24 Richard Stallman <rms@gnu.org>
19259
19260 * bison.simple: *** empty log message ***
19261
192621993-07-08 David J. MacKenzie <djm@gnu.org>
19263
19264 * Makefile.in: *** empty log message ***
19265
192661993-07-04 Richard Stallman <rms@gnu.org>
19267
19268 * src/bison.s1: *** empty log message ***
19269
192701993-07-04 Richard Stallman <rms@gnu.org>
19271
19272 * bison.simple: *** empty log message ***
19273
192741993-06-26 David J. MacKenzie <djm@gnu.org>
19275
19276 * src/getargs.c: entered into RCS
19277
192781993-06-26 David J. MacKenzie <djm@gnu.org>
19279
19280 * doc/bison.texinfo: *** empty log message ***
19281
19282 * doc/bison.1: New file.
19283
192841993-06-25 Richard Stallman <rms@gnu.org>
19285
19286 * src/getargs.c: New file.
19287
192881993-06-16 Richard Stallman <rms@gnu.org>
19289
19290 * src/bison.s1: *** empty log message ***
19291
192921993-06-16 Richard Stallman <rms@gnu.org>
19293
19294 * bison.simple: *** empty log message ***
19295
192961993-06-03 Richard Stallman <rms@gnu.org>
19297
19298 * src/bison.s1: New file.
19299
193001993-06-03 Richard Stallman <rms@gnu.org>
19301
19302 * doc/bison.texinfo: *** empty log message ***
19303
193041993-06-03 Richard Stallman <rms@gnu.org>
19305
19306 * bison.simple: New file.
19307
193081993-05-19 Richard Stallman <rms@gnu.org>
19309
19310 * doc/bison.texinfo: New file.
19311
193121993-05-07 Noah Friedman <friedman@gnu.org>
19313
19314 * Makefile.in: *** empty log message ***
19315
193161993-04-28 Noah Friedman <friedman@gnu.org>
19317
19318 * src/reader.c: *** empty log message ***
19319
193201993-04-23 Noah Friedman <friedman@gnu.org>
19321
19322 * src/alloc.h: entered into RCS
19323
193241993-04-20 David J. MacKenzie <djm@gnu.org>
19325
19326 * src/version.c: *** empty log message ***
19327
19328 * src/files.c, src/allocate.c:
19329 entered into RCS
19330
19331 * src/reader.c: *** empty log message ***
19332
19333 * src/lex.c: entered into RCS
19334
19335 * src/conflicts.c: New file.
19336
19337 * src/symtab.c: entered into RCS
19338
19339 * src/alloc.h: New file.
19340
19341 * src/LR0.c: entered into RCS
19342
193431993-04-18 Noah Friedman <friedman@gnu.org>
19344
19345 * src/reader.c: New file.
19346
19347 * src/version.c: *** empty log message ***
19348
193491993-04-18 Noah Friedman <friedman@gnu.org>
19350
19351 * Makefile.in: *** empty log message ***
19352
193531993-04-17 Noah Friedman <friedman@gnu.org>
19354
19355 * Makefile.in: *** empty log message ***
19356
193571993-04-15 Richard Stallman <rms@gnu.org>
19358
19359 * src/main.c, src/files.c:
19360 New file.
19361
193621993-04-15 Noah Friedman <friedman@gnu.org>
19363
19364 * configure.in: entered into RCS
19365
19366 * configure.in: *** empty log message ***
19367
19368 * configure.in: New file.
19369
193701993-04-14 Richard Stallman <rms@gnu.org>
19371
19372 * Makefile.in: New file.
19373
193741993-04-13 Richard Stallman <rms@gnu.org>
19375
19376 * src/version.c: New file.
19377
193781993-03-25 Richard Stallman <rms@gnu.org>
19379
19380 * src/output.c: entered into RCS
19381
193821992-09-25 Richard Stallman <rms@gnu.org>
19383
19384 * configure.bat: entered into RCS
19385
193861992-06-22 Richard Stallman <rms@gnu.org>
19387
19388 * src/vmsgetargs.c: entered into RCS
19389
193901992-06-22 Richard Stallman <rms@gnu.org>
19391
19392 * doc/bison.rnh: entered into RCS
19393
193941992-04-20 David J. MacKenzie <djm@gnu.org>
19395
19396 * README: entered into RCS
19397
193981992-01-22 Richard Stallman <rms@gnu.org>
19399
19400 * src/machine.h: entered into RCS
19401
194021991-12-21 Richard Stallman <rms@gnu.org>
19403
19404 * src/lalr.c, src/closure.c:
19405 entered into RCS
19406
194071991-12-20 Richard Stallman <rms@gnu.org>
19408
19409 * src/state.h: entered into RCS
19410
194111991-12-18 Richard Stallman <rms@gnu.org>
19412
19413 * src/print.c, src/nullable.c, src/derives.c:
19414 entered into RCS
19415
194161991-11-03 David J. MacKenzie <djm@gnu.org>
19417
19418 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
19419 entered into RCS
19420
194211988-09-09 Richard Stallman <rms@gnu.org>
19422
19423 * src/bison.hairy: entered into RCS
19424
194251987-12-16 Richard Stallman <rms@gnu.org>
19426
19427 * REFERENCES: entered into RCS
19428
19429
19430 -----
19431
19432 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
19433 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
19434 Free Software Foundation, Inc.
19435
19436 Copying and distribution of this file, with or without
19437 modification, are permitted provided the copyright notice and this
19438 notice are preserved.
19439
19440$Id$