minor improvements in cursor location handling

This commit is contained in:
Bill Currie 2001-09-26 06:09:45 +00:00
parent e9e2bbf1c1
commit ca78b9ecd8

View file

@ -153,6 +153,7 @@ C_Init (void)
leaveok (status, TRUE); leaveok (status, TRUE);
scrollok (input, FALSE); scrollok (input, FALSE);
leaveok (input, FALSE);
nodelay (input, TRUE); nodelay (input, TRUE);
keypad (input, TRUE); keypad (input, TRUE);
@ -215,6 +216,7 @@ C_Print (const char *fmt, va_list args)
} }
touchwin (stdscr); touchwin (stdscr);
wrefresh (output); wrefresh (output);
wrefresh (input);
} else } else
#endif #endif
{ {