Commit 1fb3218a authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

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.
No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment