summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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