diff options
| author | Jim Blandy | 1993-06-12 17:46:44 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-12 17:46:44 +0000 |
| commit | a6d570c63744de993bd15eb3fddb0205d04a163b (patch) | |
| tree | b09be9d27ab02b521558b9ec642b99a12a6b9e69 | |
| parent | 1d7cc616b8d8648c0faa5fe58bb492d4e22e44e0 (diff) | |
| download | emacs-a6d570c63744de993bd15eb3fddb0205d04a163b.tar.gz emacs-a6d570c63744de993bd15eb3fddb0205d04a163b.zip | |
* sysdep.c (child_setup_tty): Remove duplicate settings for VQUIT
and VINTR.
| -rw-r--r-- | src/sysdep.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 247b9b2314f..194ec0cea50 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -466,7 +466,6 @@ child_setup_tty (out) | |||
| 466 | s.main.c_iflag &= ~IGNBRK; | 466 | s.main.c_iflag &= ~IGNBRK; |
| 467 | s.main.c_iflag &= ~BRKINT; | 467 | s.main.c_iflag &= ~BRKINT; |
| 468 | /* QUIT and INTR work better as signals, so disable character forms */ | 468 | /* QUIT and INTR work better as signals, so disable character forms */ |
| 469 | s.main.c_cc[VQUIT] = 0377; | ||
| 470 | s.main.c_cc[VINTR] = 0377; | 469 | s.main.c_cc[VINTR] = 0377; |
| 471 | #ifdef SIGNALS_VIA_CHARACTERS | 470 | #ifdef SIGNALS_VIA_CHARACTERS |
| 472 | /* the QUIT and INTR character are used in process_send_signal | 471 | /* the QUIT and INTR character are used in process_send_signal |