diff options
| author | John Wiegley | 2001-04-09 23:34:16 +0000 |
|---|---|---|
| committer | John Wiegley | 2001-04-09 23:34:16 +0000 |
| commit | ed942deb7bfec7fbe251a9cc1a5171ebbbe2977b (patch) | |
| tree | ab623735f87f59cdd6ed3dd829f3275fde5dc933 /lisp/eshell | |
| parent | 9170e5d4affb4e77ad9d266e0dc82eaea5657ae1 (diff) | |
| download | emacs-ed942deb7bfec7fbe251a9cc1a5171ebbbe2977b.tar.gz emacs-ed942deb7bfec7fbe251a9cc1a5171ebbbe2977b.zip | |
(eshell-command): Needed a "%s" format specifier, in case the buffer
contains percent characters.
Diffstat (limited to 'lisp/eshell')
| -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 |