From ab14df074fb374d43584a01ff5ab20b71e9e16cb Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@telfort.nl>
Date: Mon, 13 Nov 2017 19:22:21 +0100
Subject: [PATCH] search: wipe reassuring feedback as soon as searching has
 finished

When there are no help lines, there won't be any call to update the
actual contents of the bottom window, so... do it immediately after
blanking the row.

This fixes https://savannah.gnu.org/bugs/?52377.
---
 src/search.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/search.c b/src/search.c
index 9058a4de..5b7d7b08 100644
--- a/src/search.c
+++ b/src/search.c
@@ -348,6 +348,7 @@ int findnextstr(const char *needle, bool whole_word_only, int modus,
     /* Wipe the "Searching..." message and unset the suppression flag. */
     if (feedback > 0) {
 	blank_statusbar();
+	wrefresh(bottomwin);
 	suppress_cursorpos = FALSE;
     }
 
-- 
GitLab