nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 2d13afda4084652417f3dc9e4b558a2cf5db973e
parent fd8669665826bc1b776c1d9a9ed1f10ec5feca2d
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 19 Sep 2017 20:40:20 +0200

display: stop the help viewer from turning on the multibuffer indicator

This fixes https://savannah.gnu.org/bugs/?52060.
Reported-by: David Lawrence Ramsey <pooka109@gmail.com>

Diffstat:
Msrc/files.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/files.c b/src/files.c @@ -78,7 +78,7 @@ void make_new_buffer(void) /* There is more than one file open: show "Close" in help lines. */ exitfunc->desc = close_tag; - more_than_one = TRUE; + more_than_one = !inhelp || more_than_one; } /* Make the new buffer the current one, and start initializing it. */