Function: eshell-processp

eshell-processp is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell-processp PROC)

Documentation

If the processp function does not exist, PROC is not a process.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defsubst eshell-processp (proc)
  "If the `processp' function does not exist, PROC is not a process."
  (and (fboundp 'processp) (processp proc)))