diff options
| author | Richard M. Stallman <rms@gnu.org> | 1999-04-08 16:50:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1999-04-08 16:50:04 +0000 |
| commit | 0748d150ecff495c4abda3d24e5b814eeb77ee70 (patch) | |
| tree | 8b6c4548923d38693aa1614a82ff6abf45fe67a5 /src | |
| parent | a4bb8336f90a47a99d6c779bbef2e500edb63083 (diff) | |
(Faccept_process_output): Check validity of PROCESS.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index 7bd40ad685e..e210cd4aa2a 100644 --- a/src/process.c +++ b/src/process.c @@ -2157,6 +2157,9 @@ Return non-nil iff we received any output before the timeout expired.") int seconds; int useconds; + if (! NILP (process)) + CHECK_PROCESS (process, 0); + if (! NILP (timeout_msecs)) { CHECK_NUMBER (timeout_msecs, 2); |
