From 97f6ae526702de3d3698d212a7aa9a509590c80f Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@justemail.net>
Date: Wed, 14 Sep 2016 12:40:58 +0200
Subject: [PATCH] softwrap: scroll 'enough' whenever it surpasses 'amount'

This fixes https://savannah.gnu.org/bugs/?49086.
---
 src/move.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/move.c b/src/move.c
index 36cdbdfa..bf3cfed9 100644
--- a/src/move.c
+++ b/src/move.c
@@ -482,11 +482,12 @@ void do_down(bool scroll_only)
 	/* Reduce the amount when there are overlong lines at the top. */
 	for (enough = 1; enough < amount; enough++) {
 	    amount -= strlenpt(topline->data) / COLS;
-	    if (amount <= 0) {
+	    if (amount > 0)
+		topline = topline->next;
+	    if (amount < enough) {
 		amount = enough;
 		break;
 	    }
-	    topline = topline->next;
 	}
     }
 #endif
-- 
GitLab