Function: eshell-funcall*

eshell-funcall* is a byte-compiled function defined in esh-cmd.el.gz.

Signature

(eshell-funcall* PRINTER ERRPRINT FUNC &rest ARGS)

Documentation

Call FUNC, with ARGS, trapping errors and return them as output.

PRINTER and ERRPRINT are functions to use for printing regular messages and errors, respectively.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defsubst eshell-funcall* (printer errprint func &rest args)
  "Call FUNC, with ARGS, trapping errors and return them as output.
PRINTER and ERRPRINT are functions to use for printing regular
messages and errors, respectively."
  (eshell-apply* printer errprint func args))