Function: mh-file-command-p
mh-file-command-p is a byte-compiled function defined in mh-e.el.gz.
Signature
(mh-file-command-p FILE)
Documentation
Return t if file FILE is the name of an executable regular file.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defun mh-file-command-p (file)
"Return t if file FILE is the name of an executable regular file."
(and (file-regular-p file) (file-executable-p file)))