Function: eshell-function-target-create
eshell-function-target-create is a byte-compiled function defined in
esh-io.el.gz.
Signature
(eshell-function-target-create OUTPUT-FUNCTION &optional CLOSE-FUNCTION)
Documentation
Constructor for objects of type eshell-function-target.
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)