mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-27 07:41:28 -08:00
(Faccept_process_output): Check validity of PROCESS.
This commit is contained in:
parent
a4bb8336f9
commit
0748d150ec
1 changed files with 3 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue