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, 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, separated by newlines."
  (let ((elems (flatten-tree args)))
    (while elems
      (eshell-printn (eshell-echo (list (car elems))))
      (setq elems (cdr elems)))))