+2002-07-01 Paul Eggert <eggert@twinsun.com>
+
+ * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
+ char, so that negative chars don't collide with $.
+
+2002-06-30 Akim Demaille <akim@epita.fr>
+
+ Have the GLR tests be `warning' checked, and fix the warnings.
+
+ * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
+ (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
+ (yyremoveDeletes): `yyi' and `yyj' are size_t.
+ Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
+ (yyaddDeferredAction): static.
+ (yyglrReduce): yyi, yyk, amd yyposn are size_t.
+ (yyreportParseError): yyprefix is const.
+ yytokenp is used only when verbose.
+ (yy__GNUC__): Replace with __GNUC__.
+ (yypdumpstack): yyi is size_t.
+ (yypreference): Un-yy local variables and arguments, to avoid
+ clashes with `yyr1'. Anyway, we are not in the user name space.
+ (yytname_size): be an int, as is compared with ints.
+ * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
+ Use them.
+ * tests/cxx-gram.at: Use quotation to protect $1.
+ Use AT_COMPILE to enable warnings hunts.
+ Prototype yylex and yyerror.
+ `Use' argc.
+ Include `string.h', not `strings.h'.
+ Produce and prototype stmtMerge only when used.
+ yylex takes a location.
+
+2002-06-30 Akim Demaille <akim@epita.fr>
+
+ We spend a lot of time in quotearg, in particular when --verbose.
+
+ * src/symtab.c (symbol_get): Store a quoted version of the key.
+ (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
+ Adjust all callers.
+
+2002-06-30 Akim Demaille <akim@epita.fr>
+
+ * src/state.h (reductions_t): Rename member `nreds' as num.
+ (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
+ * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
+
+2002-06-30 Akim Demaille <akim@epita.fr>
+
+ * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
+ (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
+ (shifts_to): Rename as...
+ (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
+ (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
+ (TRANSITION_IS_DISABLED, transitions_to): these.
+
+2002-06-30 Akim Demaille <akim@epita.fr>
+
+ * src/print.c (print_shifts, print_gotos): Merge into...
+ (print_transitions): this.
+ (print_transitions, print_errs, print_reductions): Align the
+ lookaheads columns.
+ (print_core, print_transitions, print_errs, print_state,
+ print_grammar): Output empty lines separator before, not after.
+ (state_default_rule_compute): Rename as...
+ (state_default_rule): this.
+ * tests/conflicts.at (Defaulted Conflicted Reduction),
+ (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
+ * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
+