Function: hfy-shell
hfy-shell is a byte-compiled function defined in htmlfontify.el.gz.
Signature
(hfy-shell)
Documentation
Return shell-file-name, or "/bin/sh" if it is a non-Bourne shell.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defun hfy-shell ()
"Return `shell-file-name', or \"/bin/sh\" if it is a non-Bourne shell."
(if (string-match "\\<bash\\>\\|\\<sh\\>\\|\\<dash\\>" shell-file-name)
shell-file-name
(or hfy-shell-file-name "/bin/sh")))