diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-12 02:49:15 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-12 02:49:15 +0000 |
commit | 262bb7c6e048bf75970af115ba5927cd67febcd7 (patch) | |
tree | fd7c49980f934483d4210e4b8f7c689e0f64fbc1 /lisp | |
parent | 928cf89526dca3d63ba7e2a20f0e85fbe0298f15 (diff) | |
download | emacs-262bb7c6e048bf75970af115ba5927cd67febcd7.tar.gz emacs-262bb7c6e048bf75970af115ba5927cd67febcd7.tar.bz2 emacs-262bb7c6e048bf75970af115ba5927cd67febcd7.zip |
(shell-command): Use buffer name *Shell-Command*.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 6b7bc51dc2f..fd2e3c9fbe2 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -682,7 +682,7 @@ This cannot be done asynchronously." (unwind-protect (if (string-match "[ \t]*&[ \t]*$" command) ;; Command ending with ampersand means asynchronous. - (let ((buffer (get-buffer-create "*shell-command*")) + (let ((buffer (get-buffer-create "*Shell-Command*")) (directory default-directory) proc) ;; Remove the ampersand. |