tweaks: fold a special case into the general one

master
Benno Schulenberg 2021-11-23 10:10:23 +01:00
parent 3eda0135bc
commit 3be4ea0dc1
2 changed files with 1 additions and 5 deletions

View File

@ -2548,7 +2548,7 @@ int main(int argc, char **argv)
as_an_at = TRUE;
if (refresh_needed && (LINES > 1 || lastmessage == VACUUM))
if ((refresh_needed && LINES > 1) || (LINES == 1 && lastmessage <= HUSH))
edit_refresh();
else
place_the_cursor();

View File

@ -182,10 +182,6 @@ void read_keys_from(WINDOW *win)
bool timed = FALSE;
#endif
/* On a one-row terminal, overwrite an unimportant message. */
if (LINES == 1 && currmenu == MMAIN && lastmessage == HUSH)
edit_refresh();
/* Before reading the first keycode, display any pending screen updates. */
doupdate();