nano

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

commit fb5eb4856b46fd19ea6d403ba695ba27845b529d
parent f857959b8eabeda49dee9453347ef2d3f7083fc1
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 25 May 2021 15:11:33 +0200

tweaks: drop an assignment that is already part of the called function

Diffstat:
Msrc/search.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/search.c b/src/search.c @@ -333,11 +333,8 @@ int findnextstr(const char *needle, bool whole_word_only, int modus, } #endif - /* Wipe the "Searching..." message and unsuppress cursor-position display. */ - if (feedback > 0) { + if (feedback > 0) wipe_statusbar(); - lastmessage = VACUUM; - } return 1; }