From 6c955bcb5237b46bd76c83c06f48391897a13217 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 24 Nov 1993 22:42:25 +0000 Subject: [PATCH] (Fdelete_process): Fix paren error. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.") XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (0), Qnil)); XSETINT (XPROCESS (proc)->tick, ++process_tick); } - else if (XINT (XPROCESS (proc)->infd >= 0)) + else if (XINT (XPROCESS (proc)->infd) >= 0) { Fkill_process (proc, Qnil); /* Do this now, since remove_process will make sigchld_handler do nothing. */ -- 2.39.5