projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
907380e
)
count-delta: fix counting of copied source.
author
Junio C Hamano
<junkio@cox.net>
Thu, 23 Feb 2006 10:58:37 +0000
(
02:58
-0800)
committer
Junio C Hamano
<junkio@cox.net>
Thu, 23 Feb 2006 23:50:18 +0000
(15:50 -0800)
The previous one wrongly coalesced a span with the next one
even though the span being added does not reach it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
count-delta.c
patch
|
blob
|
history
diff --git
a/count-delta.c
b/count-delta.c
index
4e4d2f4
..
3ee3a0c
100644
(file)
--- a/
count-delta.c
+++ b/
count-delta.c
@@
-26,7
+26,7
@@
static void touch_range(struct span **span,
again:
if (ofs < e->end) {
while (e->end < end) {
- if (e->next) {
+ if (e->next
&& e->next->ofs <= end
) {
e->end = e->next->ofs;
e = e->next;
}