Skip to content

Commit e8095a4

Browse files
committed
TO-SQUASH
1 parent 5a11363 commit e8095a4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sequencer.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1480,10 +1480,10 @@ static int is_final_fixup(struct todo_list *todo_list)
14801480
return 0;
14811481

14821482
while (++i < todo_list->nr)
1483-
if (todo_list->items[i].command == TODO_NOOP)
1484-
continue;
1485-
else if (is_fixup(todo_list->items[i].command))
1483+
if (is_fixup(todo_list->items[i].command))
14861484
return 0;
1485+
else if (todo_list->items[i].command < TODO_NOOP)
1486+
break;
14871487
return 1;
14881488
}
14891489

0 commit comments

Comments
 (0)