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.
master
Benno Schulenberg 2019-05-18 19:58:18 +02:00
parent afbaf8ae2d
commit 1d3a4df3b3
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}