We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a11363 commit e8095a4Copy full SHA for e8095a4
1 file changed
sequencer.c
@@ -1480,10 +1480,10 @@ static int is_final_fixup(struct todo_list *todo_list)
1480
return 0;
1481
1482
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))
+ if (is_fixup(todo_list->items[i].command))
1486
+ else if (todo_list->items[i].command < TODO_NOOP)
+ break;
1487
return 1;
1488
}
1489
0 commit comments