aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-24 22:42:25 +0000
committerRichard M. Stallman1993-11-24 22:42:25 +0000
commit6c955bcb5237b46bd76c83c06f48391897a13217 (patch)
treebe493141d9fd3314f33e718769aad13fb6bd8b57 /src/process.c
parent3c8393fdbae9ca9d17c9edadefa4d3f342ff45b8 (diff)
downloademacs-6c955bcb5237b46bd76c83c06f48391897a13217.tar.gz
emacs-6c955bcb5237b46bd76c83c06f48391897a13217.zip
(Fdelete_process): Fix paren error.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
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. */