* index-prop: Fix occasional problem when using cvs diff -p

From-SVN: r33494
This commit is contained in:
Jonathan Larmour 2000-04-28 00:15:34 +00:00 committed by Jeff Law
parent ad81223cbf
commit db6a1df0e0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-04-26 Jonathan Larmour <jlarmour@redhat.co.uk>
* index-prop: Fix occasional problem when using cvs diff -p
2000-04-18 Zack Weinberg <zack@wolery.cumb.org>
* gcc_update: Remove references to cexp.c/cexp.y.

View File

@ -14,7 +14,8 @@ while (<>)
for (1..7)
{
$_ = <>;
s/ [^\t]+\t/ $full\t/;
s/^--- [^\t]+\t/--- $full\t/;
s/^\+\+\+ [^\t]+\t/\+\+\+ $full\t/;
print;
}
}