build: exclude a workaround for VTE/Konsole when using a recent ncurses
The workaround was for https://savannah.gnu.org/bugs/?51335 (a cursor-misplacement bug), but both an recent Xfce Terminal and a recent Konsole appear unaffected by the issue. So, drop the workaround for modern systems.master
parent
0c87a4ba41
commit
fe22da6b2a
|
@ -2131,9 +2131,11 @@ void statusline(message_type importance, const char *msg, ...)
|
||||||
waddstr(bottomwin, " ]");
|
waddstr(bottomwin, " ]");
|
||||||
wattroff(bottomwin, colorpair);
|
wattroff(bottomwin, colorpair);
|
||||||
|
|
||||||
|
#ifdef USING_OLDER_LIBVTE
|
||||||
/* Defeat a VTE/Konsole bug, where the cursor can go off-limits. */
|
/* Defeat a VTE/Konsole bug, where the cursor can go off-limits. */
|
||||||
if (ISSET(CONSTANT_SHOW) && ISSET(NO_HELP))
|
if (ISSET(CONSTANT_SHOW) && ISSET(NO_HELP))
|
||||||
wmove(bottomwin, 0, 0);
|
wmove(bottomwin, 0, 0);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Push the message to the screen straightaway. */
|
/* Push the message to the screen straightaway. */
|
||||||
wrefresh(bottomwin);
|
wrefresh(bottomwin);
|
||||||
|
|
Loading…
Reference in New Issue