Function: eshell-error-maybe-n

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

Signature

(eshell-error-maybe-n OBJECT)

Documentation

Output OBJECT to the standard error 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-error-maybe-n (object)
  "Output OBJECT to the standard error handle.
For any line-oriented output targets, ensure the output ends in a
newline."
  (eshell--output-maybe-n object eshell-error-handle))