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

master
Benno Schulenberg 2021-05-25 15:11:33 +02:00
parent f857959b8e
commit fb5eb4856b
1 changed files with 1 additions and 4 deletions

View File

@ -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;
}