diff options
Diffstat (limited to 'lisp/eshell/em-basic.el')
-rw-r--r-- | lisp/eshell/em-basic.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/eshell/em-basic.el b/lisp/eshell/em-basic.el index 6cfc89cce62..e54eab50fc9 100644 --- a/lisp/eshell/em-basic.el +++ b/lisp/eshell/em-basic.el @@ -90,11 +90,10 @@ or `eshell-printn' for display." (car args)) (t (mapcar - (function - (lambda (arg) - (if (stringp arg) - (set-text-properties 0 (length arg) nil arg)) - arg)) + (lambda (arg) + (if (stringp arg) + (set-text-properties 0 (length arg) nil arg)) + arg) args))))) (if output-newline (cond |