changeset 24598:078d53377010

(Faccept_process_output): Check validity of PROCESS.
author Richard M. Stallman <rms@gnu.org>
date Thu, 08 Apr 1999 16:50:04 +0000
parents a40067a8696b
children 04a29f9f6a22
files src/process.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Thu Apr 08 16:46:15 1999 +0000
+++ b/src/process.c	Thu Apr 08 16:50:04 1999 +0000
@@ -2157,6 +2157,9 @@
   int seconds;
   int useconds;
 
+  if (! NILP (process))
+    CHECK_PROCESS (process, 0);
+
   if (! NILP (timeout_msecs))
     {
       CHECK_NUMBER (timeout_msecs, 2);