aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell/em-basic.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/eshell/em-basic.el')
-rw-r--r--lisp/eshell/em-basic.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-basic.el b/lisp/eshell/em-basic.el
index 5201076f485..4a99d838579 100644
--- a/lisp/eshell/em-basic.el
+++ b/lisp/eshell/em-basic.el
@@ -118,7 +118,7 @@ or `eshell-printn' for display."
118 118
119(defun eshell/printnl (&rest args) 119(defun eshell/printnl (&rest args)
120 "Print out each of the arguments, separated by newlines." 120 "Print out each of the arguments, separated by newlines."
121 (let ((elems (eshell-flatten-list args))) 121 (let ((elems (flatten-tree args)))
122 (while elems 122 (while elems
123 (eshell-printn (eshell-echo (list (car elems)))) 123 (eshell-printn (eshell-echo (list (car elems))))
124 (setq elems (cdr elems))))) 124 (setq elems (cdr elems)))))