1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

Use nodelay() instead of halfdelay()

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@831 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-11-10 01:23:50 +00:00 committed by cras
parent d3250be956
commit 527aada63a

View File

@ -131,7 +131,7 @@ static int init_curses(void)
#ifdef HAVE_CURSES_IDCOK
idcok(stdscr, 1);
#endif
intrflush(stdscr, FALSE); halfdelay(1); keypad(stdscr, 1);
intrflush(stdscr, FALSE); nodelay(stdscr, TRUE); keypad(stdscr, 1);
if (has_colors())
start_color();