nano

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

commit 1d3a4df3b3595e1c2786343cc8e1841b99413250
parent afbaf8ae2d458635169bae59e829443a2a61ba6b
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sat, 18 May 2019 19:58:18 +0200

browser: don't show a mistaken message when exiting from help viewer

This fixes https://savannah.gnu.org/bugs/?56346.

Bug existed since version 3.0, commit 8d6b205e.

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

diff --git a/src/files.c b/src/files.c @@ -626,7 +626,7 @@ void mention_name_and_linecount(void) void switch_to_adjacent_buffer(bool to_next) { /* If only one file buffer is open, say so and get out. */ - if (openfile == openfile->next) { + if (openfile == openfile->next && !inhelp) { statusbar(_("No more open file buffers")); return; }