mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-28 07:45:00 +00:00
Make spelling of "Eshell" consistent
* lisp/eshell/esh-mode.el (eshell-mode): Spell it "Eshell". * lisp/eshell/eshell.el (eshell-command): Spell it "Eshell" (bug#21678).
This commit is contained in:
parent
ad99299f40
commit
ed91405a07
@ -296,7 +296,7 @@ and the hook `eshell-exit-hook'."
|
||||
(run-hooks 'eshell-exit-hook))
|
||||
|
||||
;;;###autoload
|
||||
(define-derived-mode eshell-mode fundamental-mode "EShell"
|
||||
(define-derived-mode eshell-mode fundamental-mode "Eshell"
|
||||
"Emacs shell interactive mode."
|
||||
(setq-local eshell-mode t)
|
||||
|
||||
|
@ -308,9 +308,9 @@ With prefix ARG, insert output into the current buffer at point."
|
||||
(eshell-parse-command command))))
|
||||
intr
|
||||
(bufname (if (and proc (listp proc))
|
||||
"*EShell Async Command Output*"
|
||||
"*Eshell Async Command Output*"
|
||||
(setq intr t)
|
||||
"*EShell Command Output*")))
|
||||
"*Eshell Command Output*")))
|
||||
(if (buffer-live-p (get-buffer bufname))
|
||||
(kill-buffer bufname))
|
||||
(rename-buffer bufname)
|
||||
|
Loading…
Reference in New Issue
Block a user