diff options
| author | Jim Blandy | 1992-03-16 23:20:07 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-03-16 23:20:07 +0000 |
| commit | 8cf9a8c6208c825351c823cc7fdba7c6d91b6c43 (patch) | |
| tree | 0ddb4a1c144bfa654837eb7f47527158dfb0eece /src | |
| parent | 49116ac071969bee7f129bf7ce725c7a5b0b0fc5 (diff) | |
| download | emacs-8cf9a8c6208c825351c823cc7fdba7c6d91b6c43.tar.gz emacs-8cf9a8c6208c825351c823cc7fdba7c6d91b6c43.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 4 | ||||
| -rw-r--r-- | src/callproc.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index bbf0e297302..fbf6bb8b611 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Buffer manipulation primitives for GNU Emacs. | 1 | /* Buffer manipulation primitives for GNU Emacs. |
| 2 | Copyright (C) 1985, 1986, 1987, 1988, 1989 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -678,9 +678,7 @@ with `delete-process'.") | |||
| 678 | unlock_buffer (b); | 678 | unlock_buffer (b); |
| 679 | #endif /* CLASH_DETECTION */ | 679 | #endif /* CLASH_DETECTION */ |
| 680 | 680 | ||
| 681 | #ifdef subprocesses | ||
| 682 | kill_buffer_processes (buf); | 681 | kill_buffer_processes (buf); |
| 683 | #endif /* subprocesses */ | ||
| 684 | 682 | ||
| 685 | tem = Vinhibit_quit; | 683 | tem = Vinhibit_quit; |
| 686 | Vinhibit_quit = Qt; | 684 | Vinhibit_quit = Qt; |
diff --git a/src/callproc.c b/src/callproc.c index fff728a328a..d22393a2635 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -242,6 +242,9 @@ If you quit, the process is killed with SIGKILL.") | |||
| 242 | if (XTYPE (buffer) == Lisp_Int) | 242 | if (XTYPE (buffer) == Lisp_Int) |
| 243 | { | 243 | { |
| 244 | #ifndef subprocesses | 244 | #ifndef subprocesses |
| 245 | /* If Emacs has been built with asynchronous subprocess support, | ||
| 246 | we don't need to do this, I think because it will then have | ||
| 247 | the facilities for handling SIGCHLD. */ | ||
| 245 | wait_without_blocking (); | 248 | wait_without_blocking (); |
| 246 | #endif /* subprocesses */ | 249 | #endif /* subprocesses */ |
| 247 | return Qnil; | 250 | return Qnil; |