commit 917a23a3659efa22556a382b067e2b13738e2633 from: Stefan Sperling date: Sun May 20 12:06:43 2018 UTC fix previous: make page-down key move selection on last page commit - 9a6bf2a51049ad50a420483392c3dd7c8557dcaa commit + 917a23a3659efa22556a382b067e2b13738e2633 blob - a0d98d2298f5a84183a354cb1c94c48d3a2cdce9 blob + ba91b30bb5e0d8adac6432dd7a58cbf9c3ee8f1d --- tog/tog.c +++ tog/tog.c @@ -532,8 +532,7 @@ scroll_down(struct commit_queue_entry **first_displaye if (pentry) { TAILQ_INSERT_TAIL(commits, pentry, entry); last_displayed_entry = pentry; - } else - break; + } } } while (++nscrolled < maxscroll);