Mercurial > emacs
comparison src/process.c @ 7414:33e5afbb62bf
(process_send_signal): If PREFER_VSUSP, use VSUSP instead of VSWTCH.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 09 May 1994 03:30:55 +0000 |
| parents | ef89b78c1a92 |
| children | 8d9e41a175fa |
comparison
equal
deleted
inserted
replaced
| 7413:39ba97525390 | 7414:33e5afbb62bf |
|---|---|
| 2529 send_process (proc, &t.c_cc[VQUIT], 1); | 2529 send_process (proc, &t.c_cc[VQUIT], 1); |
| 2530 return; | 2530 return; |
| 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); |
| 2538 #endif | 2538 #endif |
| 2539 return; | 2539 return; |
