Function: eshell/funcall
eshell/funcall is a byte-compiled function defined in esh-cmd.el.gz.
Signature
(eshell/funcall FUNC &rest ARGS)
Documentation
Eshell built-in command for funcall (which see).
This simply calls FUNC with the specified ARGS. FUNC may be a symbol or a string naming a Lisp function.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defun eshell/funcall (func &rest args)
"Eshell built-in command for `funcall' (which see).
This simply calls FUNC with the specified ARGS. FUNC may be a symbol or
a string naming a Lisp function."
(when (stringp func)
(setq func (intern func)))
(apply func args))