From 2d13afda4084652417f3dc9e4b558a2cf5db973e Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Tue, 19 Sep 2017 20:40:20 +0200 Subject: [PATCH] display: stop the help viewer from turning on the multibuffer indicator This fixes https://savannah.gnu.org/bugs/?52060. Reported-by: David Lawrence Ramsey --- src/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/files.c b/src/files.c index 37f61e33..d2126245 100644 --- 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. */