Function: eshell-function-target-output-function

eshell-function-target-output-function is a byte-compiled function defined in esh-io.el.gz.

Signature

(eshell-function-target-output-function eshell-function-target-output-function X)

Documentation

Access slot "output-function" of eshell-function-target struct X.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(cl-defstruct (eshell-function-target
               (:include eshell-generic-target)
               (:constructor nil)
               (:constructor eshell-function-target-create
                             (output-function &optional close-function)))
  "An Eshell target that calls an OUTPUT-FUNCTION."
  output-function close-function)