Function: eshell-apply*
eshell-apply* is a byte-compiled function defined in esh-cmd.el.gz.
Signature
(eshell-apply* PRINTER ERRPRINT FUNC 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-apply* (printer errprint func 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-exec-lisp printer errprint func args nil))