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." | |||
| 90 | (car args)) | 90 | (car args)) |
| 91 | (t | 91 | (t |
| 92 | (mapcar | 92 | (mapcar |
| 93 | (function | 93 | (lambda (arg) |
| 94 | (lambda (arg) | 94 | (if (stringp arg) |
| 95 | (if (stringp arg) | 95 | (set-text-properties 0 (length arg) nil arg)) |
| 96 | (set-text-properties 0 (length arg) nil arg)) | 96 | arg) |
| 97 | arg)) | ||
| 98 | args))))) | 97 | args))))) |
| 99 | (if output-newline | 98 | (if output-newline |
| 100 | (cond | 99 | (cond |