Function: eshell-eval*

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

Signature

(eshell-eval* PRINTER ERRPRINT FORM)

Documentation

Evaluate FORM, trapping errors and returning them.

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-eval* (printer errprint form)
  "Evaluate FORM, trapping errors and returning them.
PRINTER and ERRPRINT are functions to use for printing regular
messages and errors, respectively."
  (eshell-exec-lisp printer errprint form nil t))