summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/screen.c b/src/screen.c
index 9cf46aa..ee9cf0c 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -1495,25 +1495,9 @@ SigHup (int sigsig)
static sigret_t
SigInt (int sigsig)
{
-#if HAZARDOUS
- char ibuf;
-
- debug("SigInt()\n");
- if (fore && displays)
- {
-# if defined(TERMIO) || defined(POSIX)
- ibuf = displays->d_OldMode.tio.c_cc[VINTR];
-# else
- ibuf = displays->d_OldMode.m_tchars.t_intrc;
-# endif
- fore->w_inlen = 0;
- write(fore->w_ptyfd, &ibuf, 1);
- }
-#else
signal(SIGINT, SigInt);
debug("SigInt() careful\n");
InterruptPlease = 1;
-#endif
SIGRETURN;
}