summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c649657)
raw | patch | inline | side by side (parent: c649657)
author | Junio C Hamano <junkio@cox.net> | |
Fri, 24 Feb 2006 07:44:15 +0000 (23:44 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 24 Feb 2006 07:44:15 +0000 (23:44 -0800) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
rev-list.c | patch | blob | history |
diff --git a/rev-list.c b/rev-list.c
index 373549e59eaf139be01520fa33719d08e0429660..b5de0759f9b1f41899b90807c44ee242d478a20e 100644 (file)
--- a/rev-list.c
+++ b/rev-list.c
if (!(parent->object.flags & UNINTERESTING))
continue;
mark_tree_uninteresting(parent->tree);
- if (edge_hint)
+ if (edge_hint && !(parent->object.flags & SHOWN)) {
+ parent->object.flags |= SHOWN;
printf("-%s\n", sha1_to_hex(parent->object.sha1));
+ }
}
}