Fix incorrect number of arguments

This commit is contained in:
Nathaniel Nicandro 2023-02-04 16:58:12 -06:00
parent 14899664b6
commit 16cbda7916

View file

@ -493,7 +493,7 @@ serializable."
(while (not sent)
(condition-case nil
(progn
(zmq-send stdin msg nil zmq-DONTWAIT)
(zmq-send stdin msg zmq-DONTWAIT)
(setq sent t))
(zmq-EAGAIN (accept-process-output nil 0)))))
(zmq-subprocess-send process args)))))