diff options
| -rw-r--r-- | lisp/eshell/eshell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/eshell.el b/lisp/eshell/eshell.el index 19701c03f70..4f682b5a314 100644 --- a/lisp/eshell/eshell.el +++ b/lisp/eshell/eshell.el | |||
| @@ -389,7 +389,7 @@ With prefix ARG, insert output into the current buffer at point." | |||
| 389 | (message "(There was no command output)") | 389 | (message "(There was no command output)") |
| 390 | (kill-buffer buf)) | 390 | (kill-buffer buf)) |
| 391 | ((= len 1) | 391 | ((= len 1) |
| 392 | (message (buffer-string)) | 392 | (message "%s" (buffer-string)) |
| 393 | (kill-buffer buf)) | 393 | (kill-buffer buf)) |
| 394 | (t | 394 | (t |
| 395 | (save-selected-window | 395 | (save-selected-window |