nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit f7d5a82a5d3ddc7102e7795eddc6defb06036212
parent 63e04ac31e6bf2d9aa409d4141e5a1794c630221
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sat, 10 Aug 2019 13:07:04 +0200

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.

Diffstat:
Msrc/search.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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();