1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 02:45:25 -04:00

cbreak() -> raw() - this fixes at least the Ctrl-4 abort.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1499 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-05-17 11:24:33 +00:00 committed by cras
parent af08857261
commit 31499f142c

View File

@ -135,7 +135,7 @@ static int init_curses(void)
act.sa_handler = sig_winch;
sigaction(SIGWINCH, &act, NULL);
#endif
cbreak(); noecho(); idlok(stdscr, 1);
raw(); noecho(); idlok(stdscr, 1);
#ifdef HAVE_CURSES_IDCOK
idcok(stdscr, 1);
#endif