Function: eshell-target-line-oriented-p

eshell-target-line-oriented-p is a byte-compiled function defined in esh-io.el.gz.

Signature

(eshell-target-line-oriented-p TARGET)

Documentation

Return non-nil if the specified TARGET is line-oriented.

Line-oriented targets are those that expect a newline after command output when eshell-ensure-newline-p is non-nil.

Implementations

(eshell-target-line-oriented-p (TARGET eshell-princ-target)) in `em-script.el'.

Return non-nil to indicate that the display is line-oriented.

(eshell-target-line-oriented-p (TARGET (eql t))) in `esh-io.el'.

Return non-nil to indicate that the display is line-oriented.

(eshell-target-line-oriented-p TARGET) in `esh-io.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(cl-defgeneric eshell-target-line-oriented-p (_target)
  "Return non-nil if the specified TARGET is line-oriented.
Line-oriented targets are those that expect a newline after
command output when `eshell-ensure-newline-p' is non-nil."
  nil)