summaryrefslogtreecommitdiff
path: root/contrib/index-prop
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-28 00:15:34 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-28 00:15:34 +0000
commitc2f99343ee5eab9521d49d7ec7ec1ea85a6d728d (patch)
tree39b349a7bccfd8043c2a87f3c13cf958571bb396 /contrib/index-prop
parentdc8f3aa93e5d3d5ad2b0705550ad9665cb0e76c7 (diff)
downloadgcc-c2f99343ee5eab9521d49d7ec7ec1ea85a6d728d.tar.gz
* index-prop: Fix occasional problem when using cvs diff -p
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33494 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/index-prop')
-rwxr-xr-xcontrib/index-prop3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/index-prop b/contrib/index-prop
index a169b572644..285ad8c5890 100755
--- a/contrib/index-prop
+++ b/contrib/index-prop
@@ -14,7 +14,8 @@ while (<>)
for (1..7)
{
$_ = <>;
- s/ [^\t]+\t/ $full\t/;
+ s/^--- [^\t]+\t/--- $full\t/;
+ s/^\+\+\+ [^\t]+\t/\+\+\+ $full\t/;
print;
}
}