Function: eshell-set-all-output-handles
eshell-set-all-output-handles is a byte-compiled function defined in
esh-io.el.gz.
Signature
(eshell-set-all-output-handles MODE &optional TARGET HANDLES)
Documentation
Set output and error HANDLES to point to TARGET using MODE.
If HANDLES is nil, use eshell-current-handles.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defun eshell-set-all-output-handles (mode &optional target handles)
"Set output and error HANDLES to point to TARGET using MODE.
If HANDLES is nil, use `eshell-current-handles'."
(eshell-set-output-handle eshell-output-handle mode target handles)
(eshell-copy-output-handle eshell-error-handle eshell-output-handle handles))