parse_verbatim_kbinput()
- Don't include the ability to enter a Unicode sequence via
verbatim input mode if ENABLE_UTF8 isn't defined. (DLR)
+ check_statusblank()
+ - Avoid redundant updates when statusblank is 0. (DLR)
display_string()
- Properly display double-column characters if they're past the
first virtual page and their first column is covered by the
* position display is on. */
void check_statusblank(void)
{
- if (statusblank > 0)
+ if (statusblank > 0) {
statusblank--;
- if (statusblank == 0 && !ISSET(CONST_UPDATE)) {
- blank_statusbar();
- wnoutrefresh(bottomwin);
- reset_cursor();
- wnoutrefresh(edit);
+ if (statusblank == 0 && !ISSET(CONST_UPDATE)) {
+ blank_statusbar();
+ wnoutrefresh(bottomwin);
+ reset_cursor();
+ wnoutrefresh(edit);
+ }
}
}