tuse more distinguishable +/- - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit e0405f4c8b602257759ebfd11b9df3f146f3469c
DIR parent 1cab7105bdf836219f10a6a25c6ef248b004df31
HTML Author: rsc <devnull@localhost>
Date: Wed, 13 Jul 2005 03:53:49 +0000
use more distinguishable +/-
Diffstat:
M src/cmd/diff/diffio.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/src/cmd/diff/diffio.c b/src/cmd/diff/diffio.c
t@@ -377,8 +377,8 @@ flushchanges(void)
at = a;
for(; i<j; i++){
fetch(ixold, at, changes[i].a-1, input[0], " ");
- fetch(ixold, changes[i].a, changes[i].b, input[0], "< ");
- fetch(ixnew, changes[i].c, changes[i].d, input[1], "> ");
+ fetch(ixold, changes[i].a, changes[i].b, input[0], "- ");
+ fetch(ixnew, changes[i].c, changes[i].d, input[1], "+ ");
at = changes[i].b+1;
}
fetch(ixold, at, b, input[0], " ");