commit ab14df074fb374d43584a01ff5ab20b71e9e16cb
parent 5198c1f1390b336a4952f49bf810a8c6ab350da8
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Mon, 13 Nov 2017 19:22:21 +0100
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.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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;
}