diff options
Diffstat (limited to 'lisp/eshell/esh-cmd.el')
| -rw-r--r-- | lisp/eshell/esh-cmd.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el index efd85826f27..535e169bcb3 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el | |||
| @@ -1016,8 +1016,8 @@ be finished later after the completion of an asynchronous subprocess." | |||
| 1016 | ;; we can modify any `let' forms to evaluate only once. | 1016 | ;; we can modify any `let' forms to evaluate only once. |
| 1017 | (if (macrop (car form)) | 1017 | (if (macrop (car form)) |
| 1018 | (let ((exp (eshell-copy-tree (macroexpand form)))) | 1018 | (let ((exp (eshell-copy-tree (macroexpand form)))) |
| 1019 | (eshell-manipulate (format "expanding macro `%s'" | 1019 | (eshell-manipulate (format-message "expanding macro `%s'" |
| 1020 | (symbol-name (car form))) | 1020 | (symbol-name (car form))) |
| 1021 | (setcar form (car exp)) | 1021 | (setcar form (car exp)) |
| 1022 | (setcdr form (cdr exp))))) | 1022 | (setcdr form (cdr exp))))) |
| 1023 | (let ((args (cdr form))) | 1023 | (let ((args (cdr form))) |
| @@ -1095,8 +1095,8 @@ be finished later after the completion of an asynchronous subprocess." | |||
| 1095 | (t | 1095 | (t |
| 1096 | (if (and args (not (memq (car form) '(run-hooks)))) | 1096 | (if (and args (not (memq (car form) '(run-hooks)))) |
| 1097 | (eshell-manipulate | 1097 | (eshell-manipulate |
| 1098 | (format "evaluating arguments to `%s'" | 1098 | (format-message "evaluating arguments to `%s'" |
| 1099 | (symbol-name (car form))) | 1099 | (symbol-name (car form))) |
| 1100 | (while args | 1100 | (while args |
| 1101 | (setcar args (eshell-do-eval (car args) synchronous-p)) | 1101 | (setcar args (eshell-do-eval (car args) synchronous-p)) |
| 1102 | (setq args (cdr args))))) | 1102 | (setq args (cdr args))))) |