diff options
| author | Kim F. Storm | 2004-08-19 10:08:00 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-08-19 10:08:00 +0000 |
| commit | ca4313d5ab8ce1f4802a35dd35764887507e7c5e (patch) | |
| tree | a50b6e574f8d74bba35e66ef1b98590295d0786e /src/process.c | |
| parent | 2439909e48d3ad6f3cc50f9b51017401b808d817 (diff) | |
| download | emacs-ca4313d5ab8ce1f4802a35dd35764887507e7c5e.tar.gz emacs-ca4313d5ab8ce1f4802a35dd35764887507e7c5e.zip | |
(process_send_signal): Use CDISABLE.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/process.c b/src/process.c index 49fef36d41a..ae9741ac478 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5594,15 +5594,7 @@ process_send_signal (process, signo, current_group, nomsg) | |||
| 5594 | break; | 5594 | break; |
| 5595 | } | 5595 | } |
| 5596 | 5596 | ||
| 5597 | #ifndef _POSIX_VDISABLE | 5597 | if (sig_char && *sig_char != CDISABLE) |
| 5598 | #ifdef CVDISABLE | ||
| 5599 | #define _POSIX_VDISABLE CVDISABLE | ||
| 5600 | #else | ||
| 5601 | #define _POSIX_VDISABLE '\0' | ||
| 5602 | #endif | ||
| 5603 | #endif | ||
| 5604 | |||
| 5605 | if (sig_char && *sig_char != _POSIX_VDISABLE) | ||
| 5606 | send_process (proc, sig_char, 1, Qnil); | 5598 | send_process (proc, sig_char, 1, Qnil); |
| 5607 | return; | 5599 | return; |
| 5608 | #else /* ! HAVE_TERMIOS */ | 5600 | #else /* ! HAVE_TERMIOS */ |