From 31499f142cd52dc4805865706ddb863d10e8aa45 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 17 May 2001 11:24:33 +0000 Subject: [PATCH] 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 --- src/fe-text/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-text/screen.c b/src/fe-text/screen.c index 5f24dfce..4f07cfa5 100644 --- a/src/fe-text/screen.c +++ b/src/fe-text/screen.c @@ -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