diff --git a/src/files.c b/src/files.c index c137b093..8bb823fb 100644 --- a/src/files.c +++ b/src/files.c @@ -636,7 +636,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 && !inhelp) { + if (openfile == openfile->next) { statusbar(_("No more open file buffers")); return; } diff --git a/src/help.c b/src/help.c index 1ed50ea4..0d024e5f 100644 --- a/src/help.c +++ b/src/help.c @@ -161,7 +161,6 @@ void do_help(void) didfind = 0; bottombars(MHELP); - wnoutrefresh(bottomwin); /* Extract the title from the head of the help text. */ length = break_line(help_text, MAX_BUF_SIZE, TRUE);