From f7d5a82a5d3ddc7102e7795eddc6defb06036212 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 10 Aug 2019 13:07:04 +0200 Subject: [PATCH] search: wipe the status bar before searching again (M-W / M-Q) So that any message that is on the status bar after the search will be a response to this search and not some leftover. This fixes https://savannah.gnu.org/bugs/?56737. --- src/search.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/search.c b/src/search.c index 54a5b893..99626b41 100644 --- a/src/search.c +++ b/src/search.c @@ -359,6 +359,8 @@ void do_research(void) /* Use the search-menu key bindings, to allow cancelling. */ currmenu = MWHEREIS; + wipe_statusbar(); + go_looking(); tidy_up_after_search();