Function: eshell-funcalln

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

Signature

(eshell-funcalln FUNC &rest ARGS)

Documentation

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

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defsubst eshell-funcalln (func &rest args)
  "Call FUNC, with ARGS, trapping errors and return them as output."
  (eshell-applyn func args))