Function: eshell/printnl
eshell/printnl is a byte-compiled function defined in em-basic.el.gz.
Signature
(eshell/printnl &rest ARGS)
Documentation
Print out each of the arguments as strings, separated by newlines.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-basic.el.gz
(defun eshell/printnl (&rest args)
"Print out each of the arguments as strings, separated by newlines."
(let ((elems (flatten-tree args)))
(dolist (elem elems)
(eshell-printn (eshell-stringify elem)))))