Mercurial > emacs
changeset 2120:fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
control characters to processes, don't try to return Qnil; just
return.
* process.c [! subprocesses] (wait_reading_process_input):
Remember to re-enable polling for input.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 11 Mar 1993 07:14:16 +0000 |
parents | 4077ef8ad483 |
children | ebc56bb13048 |
files | src/process.c |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Thu Mar 11 07:13:24 1993 +0000 +++ b/src/process.c Thu Mar 11 07:14:16 1993 +0000 @@ -2342,12 +2342,12 @@ case SIGINT: tcgetattr (XFASTINT (p->infd), &t); send_process (proc, &t.c_cc[VINTR], 1); - return Qnil; + return; case SIGQUIT: tcgetattr (XFASTINT (p->infd), &t); send_process (proc, &t.c_cc[VQUIT], 1); - return Qnil; + return; case SIGTSTP: tcgetattr (XFASTINT (p->infd), &t); @@ -2356,7 +2356,7 @@ #else send_process (proc, &t.c_cc[VSUSP], 1); #endif - return Qnil; + return; } #else /* ! HAVE_TERMIOS */ @@ -3167,6 +3167,8 @@ break; } + start_polling (); + return 0; }