>>>>> "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes:
Akim> * automake.in: Mying changes.
Akim> (&handle_tags): Fix a bug uncovered by the previous mying changes:
Akim> transform CONFIG into $config, not $xform.
I think this has a bug.
It is ok if you fix it though.
Akim> - local ($lex_suffix, $use_ylwrap) = @_;
Akim> - local ($c_suffix);
Akim> + my ($lex_suffix, $use_ylwrap) = @_;
Akim> +
Akim> + my $c_suffix = $lex_suffix;
Akim> + $lex_suffix =~ tr/l/c/;
This assignment is backwards from what the old code did:
Akim> - ($c_suffix = $lex_suffix) =~ tr/l/c/;
Tom