diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-28 00:15:34 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-28 00:15:34 +0000 |
commit | c2f99343ee5eab9521d49d7ec7ec1ea85a6d728d (patch) | |
tree | 39b349a7bccfd8043c2a87f3c13cf958571bb396 /contrib | |
parent | dc8f3aa93e5d3d5ad2b0705550ad9665cb0e76c7 (diff) | |
download | gcc-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')
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/index-prop | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 4321ff25c31..1957b3940c0 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -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. 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; } } |