X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=epoch.c;h=db44f5ca9f73a75cc266d9b45eda0aca56dd1ede;hb=4ddba79db76bd6425f00e99ceb1d82d179319aec;hp=abfd594bb9c9cb0abc427dd35c29a0a6bc929978;hpb=f755494cec27fed8c9693bb91c26762061518b0b;p=git.git diff --git a/epoch.c b/epoch.c index abfd594b..db44f5ca 100644 --- a/epoch.c +++ b/epoch.c @@ -499,7 +499,7 @@ static int emit_stack(struct commit_list **stack, emitter_func emitter, int incl if (*stack || include_last) { if (!*stack) next->object.flags |= BOUNDARY; - action = (*emitter) (next); + action = emitter(next); } } @@ -545,7 +545,7 @@ static int sort_in_merge_order(struct commit *head_of_epoch, emitter_func emitte if (next->object.flags & UNINTERESTING) { action = STOP; } else { - action = (*emitter) (next); + action = emitter(next); } if (action != STOP) { next = next->parents->item; @@ -562,7 +562,7 @@ static int sort_in_merge_order(struct commit *head_of_epoch, emitter_func emitte } if (next && (action != STOP) && !ret) { - (*emitter) (next); + emitter(next); } return ret; @@ -582,14 +582,8 @@ int sort_list_in_merge_order(struct commit_list *list, emitter_func emitter) int action = CONTINUE; struct commit_list *reversed = NULL; - for (; list; list = list->next) { - struct commit *next = list->item; - - if (!(next->object.flags & DUPCHECK)) { - next->object.flags |= DUPCHECK; - commit_list_insert(list->item, &reversed); - } - } + for (; list; list = list->next) + commit_list_insert(list->item, &reversed); if (!reversed) return ret; @@ -612,7 +606,7 @@ int sort_list_in_merge_order(struct commit_list *list, emitter_func emitter) while (reversed) { struct commit * next = pop_commit(&reversed); - if (!(next->object.flags & VISITED)) { + if (!(next->object.flags & VISITED) && next!=base) { sort_first_epoch(next, &stack); if (reversed) { /*