tweaks: shorten two comments, and fold two statements together

master
Benno Schulenberg 2021-11-11 12:35:38 +01:00
parent affca9b523
commit f3fab1440f
1 changed files with 3 additions and 7 deletions

View File

@ -1691,20 +1691,16 @@ void blank_bottombars(void)
} }
} }
/* Check if the number of keystrokes needed to blank the status bar has /* When some number of keystrokes has been reached, wipe the status bar. */
* been pressed. If so, blank the status bar, unless constant cursor
* position display is on and we are in the editing screen. */
void check_statusblank(void) void check_statusblank(void)
{ {
if (statusblank == 0) if (statusblank == 0)
return; return;
statusblank--; if (--statusblank == 0)
if (statusblank == 0)
wipe_statusbar(); wipe_statusbar();
/* If the subwindows overlap, make sure to show the edit window now. */ /* When windows overlap, make sure to show the edit window now. */
if (currmenu == MMAIN && (ISSET(ZERO) || LINES == 1)) if (currmenu == MMAIN && (ISSET(ZERO) || LINES == 1))
edit_refresh(); edit_refresh();
} }