Hi, On Mon, 26 Jun 2006, Junio C Hamano wrote: > diff --git a/commit.c b/commit.c > index 946615d..69fbc41 100644 > --- a/commit.c > +++ b/commit.c > @@ -397,8 +397,7 @@ void clear_commit_marks(struct commit *c > commit->object.flags &= ~mark; > while (parents) { > struct commit *parent = parents->item; > - if (parent && parent->object.parsed && > - (parent->object.flags & mark)) > + if (parent && (parent->object.flags & mark)) This is probably not necessary for existing users, but it's a good change for the future: new users might be surprised to learn that there are unparsed objects, which still want to be handled. Ciao, Dscho - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html