Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 368099 | Differences between
and this patch

Collapse All | Expand All

(-)a/ChangeLog (+6 lines)
Line 0 Link Here
1
2009-11-28  Jim Meyering  <meyering@redhat.com>
2
3
	avoid a warning from perl-5.11
4
	* lib/Automake/Wrap.pm (_tab_length): Remove useless use of tr's
5
	"/d" modifier.
6
(-)a/lib/Automake/Wrap.pm (-1 / +1 lines)
Lines 57-63 sub tab_length($) Link Here
57
{
57
{
58
  my ($txt) = @_;
58
  my ($txt) = @_;
59
  my $len = length ($txt);
59
  my $len = length ($txt);
60
  $len += 7 * ($txt =~ tr/\t/\t/d);
60
  $len += 7 * ($txt =~ tr/\t/\t/);
61
  return $len;
61
  return $len;
62
}
62
}
63
63

Return to bug 368099