Function: filesets-which-command-p
filesets-which-command-p is a byte-compiled function defined in
filesets.el.gz.
Signature
(filesets-which-command-p CMD)
Documentation
Call "which CMD" and return non-nil if the command was found.
Source Code
;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-which-command-p (cmd)
"Call \"which CMD\" and return non-nil if the command was found."
(when (string-match-p (format "\\(/[^/]+\\)?/%s" cmd)
(filesets-which-command cmd))
cmd))