Function: eshell-process-list-p

eshell-process-list-p is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell-process-list-p PROCS)

Documentation

Return non-nil if PROCS is a list of process objects.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defun eshell-process-list-p (procs)
  "Return non-nil if PROCS is a list of process objects."
  (and (listp procs)
       (seq-every-p #'eshell-processp procs)))