diff options
| author | Richard M. Stallman | 1993-11-24 22:42:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-24 22:42:25 +0000 |
| commit | 6c955bcb5237b46bd76c83c06f48391897a13217 (patch) | |
| tree | be493141d9fd3314f33e718769aad13fb6bd8b57 /src/process.c | |
| parent | 3c8393fdbae9ca9d17c9edadefa4d3f342ff45b8 (diff) | |
| download | emacs-6c955bcb5237b46bd76c83c06f48391897a13217.tar.gz emacs-6c955bcb5237b46bd76c83c06f48391897a13217.zip | |
(Fdelete_process): Fix paren error.
Diffstat (limited to 'src/process.c')
| -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 6dcb2f93447..afa1651dfca 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -557,7 +557,7 @@ nil, indicating the current buffer's process.") | |||
| 557 | XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (0), Qnil)); | 557 | XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (0), Qnil)); |
| 558 | XSETINT (XPROCESS (proc)->tick, ++process_tick); | 558 | XSETINT (XPROCESS (proc)->tick, ++process_tick); |
| 559 | } | 559 | } |
| 560 | else if (XINT (XPROCESS (proc)->infd >= 0)) | 560 | else if (XINT (XPROCESS (proc)->infd) >= 0) |
| 561 | { | 561 | { |
| 562 | Fkill_process (proc, Qnil); | 562 | Fkill_process (proc, Qnil); |
| 563 | /* Do this now, since remove_process will make sigchld_handler do nothing. */ | 563 | /* Do this now, since remove_process will make sigchld_handler do nothing. */ |