summaryrefslogtreecommitdiff
path: root/src/fe-text/screen.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-05-17 11:24:33 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-05-17 11:24:33 +0000
commit31499f142cd52dc4805865706ddb863d10e8aa45 (patch)
treef6899c13a7b254912a562d52720ca82ac216f824 /src/fe-text/screen.c
parentaf088572619e8e57c75e30293e223c779248f264 (diff)
downloadirssi-31499f142cd52dc4805865706ddb863d10e8aa45.zip
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
Diffstat (limited to 'src/fe-text/screen.c')
-rw-r--r--src/fe-text/screen.c2
1 files changed, 1 insertions, 1 deletions
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