From 1fb3218a1485a5e84a15217a4a91c71c09abd418 Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@telfort.nl>
Date: Fri, 9 Mar 2018 12:03:48 +0100
Subject: [PATCH] help: do not reserve space for line numbers, as they are
 absent

Help texts are shown without any line numbers, so the full width
of the screen should be used to display the text.

This fixes https://savannah.gnu.org/bugs/?53308.
---
 src/help.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/help.c b/src/help.c
index 5bae93ee..ba659a37 100644
--- a/src/help.c
+++ b/src/help.c
@@ -146,6 +146,7 @@ void do_help(void)
 
 #ifdef ENABLE_LINENUMBERS
 	UNSET(LINE_NUMBERS);
+	editwincols = COLS;
 	margin = 0;
 #endif
 	tabsize = 8;
@@ -253,6 +254,7 @@ void do_help(void)
 
 #ifdef ENABLE_LINENUMBERS
 	margin = was_margin;
+	editwincols = COLS - margin;
 #endif
 	tabsize = was_tabsize;
 #ifdef ENABLE_COLOR
-- 
GitLab