Function: eshell-interactive-output-p
eshell-interactive-output-p is a byte-compiled function defined in
esh-io.el.gz.
Signature
(eshell-interactive-output-p)
Documentation
Return non-nil if current handles are bound for interactive display.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defun eshell-interactive-output-p ()
"Return non-nil if current handles are bound for interactive display."
(and (eq (car (aref eshell-current-handles
eshell-output-handle)) t)
(eq (car (aref eshell-current-handles
eshell-error-handle)) t)))