diff options
| author | Richard M. Stallman | 1994-05-09 03:30:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-09 03:30:55 +0000 |
| commit | d0adf46f8680b4a65f3385db8f81fd717f4107e5 (patch) | |
| tree | 94db3902b3e79701af95bda250f8502b88fe7112 /src | |
| parent | 882d80792d9193a1a86922a84598b6ae1d4d9b03 (diff) | |
| download | emacs-d0adf46f8680b4a65f3385db8f81fd717f4107e5.tar.gz emacs-d0adf46f8680b4a65f3385db8f81fd717f4107e5.zip | |
(process_send_signal): If PREFER_VSUSP, use VSUSP instead of VSWTCH.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index eff69a13c28..2636e0d2dd9 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2531,7 +2531,7 @@ process_send_signal (process, signo, current_group, nomsg) | |||
| 2531 | 2531 | ||
| 2532 | case SIGTSTP: | 2532 | case SIGTSTP: |
| 2533 | tcgetattr (XINT (p->infd), &t); | 2533 | tcgetattr (XINT (p->infd), &t); |
| 2534 | #if defined (VSWTCH) && !defined (IRIX5) | 2534 | #if defined (VSWTCH) && !defined (PREFER_VSUSP) |
| 2535 | send_process (proc, &t.c_cc[VSWTCH], 1); | 2535 | send_process (proc, &t.c_cc[VSWTCH], 1); |
| 2536 | #else | 2536 | #else |
| 2537 | send_process (proc, &t.c_cc[VSUSP], 1); | 2537 | send_process (proc, &t.c_cc[VSUSP], 1); |