commit 596de3980450cf45f184c8d2efa1f98d424210fd from: Stefan Sperling date: Sun May 20 13:09:16 2018 UTC remove redundant check in scroll_down() commit - 15c91275cb1765c8d827541b27b006c076084816 commit + 596de3980450cf45f184c8d2efa1f98d424210fd blob - 578958a9db4c74df3861502ee2ce3112d207d1ee blob + ae7b25aca7edd7a5963f1cca7aac5f98b854d92e --- tog/tog.c +++ tog/tog.c @@ -505,9 +505,6 @@ scroll_down(struct commit_queue_entry **first_displaye struct commit_queue_entry *pentry; int nscrolled = 0; - if (last_displayed_entry->commit->nparents == 0) - return NULL; - do { pentry = TAILQ_NEXT(last_displayed_entry, entry); if (pentry == NULL) {