diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-06-23 07:09:58 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-06-23 07:09:58 +0000 |
commit | 2f686c87436120db1131638208d2ac6a718b5c54 (patch) | |
tree | c95c1f8c512244dee3c8e6250a1f2d65582f160a /src/sysdep.c | |
parent | 666e158e382bca51630b3822a54bf51c52d41d23 (diff) | |
download | emacs-2f686c87436120db1131638208d2ac6a718b5c54.tar.gz |
(child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
conditional, it is always defined on AIX.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r-- | src/sysdep.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 221febd0d7a..028e6e40957 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -578,12 +578,6 @@ child_setup_tty (out) /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional would force it to 0377. That looks like duplicated code. */ -#ifndef SIGNALS_VIA_CHARACTERS - /* QUIT and INTR work better as signals, so disable character forms */ - s.main.c_cc[VQUIT] = CDISABLE; - s.main.c_cc[VINTR] = CDISABLE; - s.main.c_lflag &= ~ISIG; -#endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */ s.main.c_cc[VEOL] = CDISABLE; s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */ #endif /* AIX */ |