Patch to remove blinking cursor (unclear what platforms this affects)

Gerrit Renker <renker@ualberta.ca>
This commit is contained in:
pdw
2014-01-01 14:46:30 +00:00
parent a5557a1bcf
commit 4e296cc794

1
ui.c
View File

@@ -432,6 +432,7 @@ void ui_curses_init() {
(void) nonl(); /* tell curses not to do NL->CR/NL on output */
(void) cbreak(); /* take input chars one at a time, no wait for \n */
(void) noecho(); /* don't echo input */
(void) curs_set(0); /* hide blinking cursor in ui */
halfdelay(2);
}