Function: eshell-errorn
eshell-errorn is a byte-compiled function defined in esh-io.el.gz.
Signature
(eshell-errorn OBJECT)
Documentation
Output OBJECT followed by a newline to the standard error handle.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defsubst eshell-errorn (object)
"Output OBJECT followed by a newline to the standard error handle."
(eshell-error object)
(eshell-error "\n"))