Function: eshell-print-maybe-n

eshell-print-maybe-n is a byte-compiled function defined in esh-io.el.gz.

Signature

(eshell-print-maybe-n OBJECT)

Documentation

Output OBJECT to the standard output handle.

For any line-oriented output targets, ensure the output ends in a newline.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defsubst eshell-print-maybe-n (object)
  "Output OBJECT to the standard output handle.
For any line-oriented output targets, ensure the output ends in a
newline."
  (eshell--output-maybe-n object eshell-output-handle))