diff options
| author | Lars Ingebrigtsen | 2016-02-23 20:01:06 +1100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-02-23 20:01:06 +1100 |
| commit | ed91405a07f694b0061ff5ebf9972a726cb1cb6e (patch) | |
| tree | cfe749b393275630face76d9088bcdccd0b1dbc9 | |
| parent | ad99299f400d348026d0a6cca7551ad6371014b9 (diff) | |
| download | emacs-ed91405a07f694b0061ff5ebf9972a726cb1cb6e.tar.gz emacs-ed91405a07f694b0061ff5ebf9972a726cb1cb6e.zip | |
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).
| -rw-r--r-- | lisp/eshell/esh-mode.el | 2 | ||||
| -rw-r--r-- | lisp/eshell/eshell.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 388bc747367..074b94cc75d 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el | |||
| @@ -296,7 +296,7 @@ and the hook `eshell-exit-hook'." | |||
| 296 | (run-hooks 'eshell-exit-hook)) | 296 | (run-hooks 'eshell-exit-hook)) |
| 297 | 297 | ||
| 298 | ;;;###autoload | 298 | ;;;###autoload |
| 299 | (define-derived-mode eshell-mode fundamental-mode "EShell" | 299 | (define-derived-mode eshell-mode fundamental-mode "Eshell" |
| 300 | "Emacs shell interactive mode." | 300 | "Emacs shell interactive mode." |
| 301 | (setq-local eshell-mode t) | 301 | (setq-local eshell-mode t) |
| 302 | 302 | ||
diff --git a/lisp/eshell/eshell.el b/lisp/eshell/eshell.el index 8b21730ef33..54281a72c7a 100644 --- a/lisp/eshell/eshell.el +++ b/lisp/eshell/eshell.el | |||
| @@ -308,9 +308,9 @@ With prefix ARG, insert output into the current buffer at point." | |||
| 308 | (eshell-parse-command command)))) | 308 | (eshell-parse-command command)))) |
| 309 | intr | 309 | intr |
| 310 | (bufname (if (and proc (listp proc)) | 310 | (bufname (if (and proc (listp proc)) |
| 311 | "*EShell Async Command Output*" | 311 | "*Eshell Async Command Output*" |
| 312 | (setq intr t) | 312 | (setq intr t) |
| 313 | "*EShell Command Output*"))) | 313 | "*Eshell Command Output*"))) |
| 314 | (if (buffer-live-p (get-buffer bufname)) | 314 | (if (buffer-live-p (get-buffer bufname)) |
| 315 | (kill-buffer bufname)) | 315 | (kill-buffer bufname)) |
| 316 | (rename-buffer bufname) | 316 | (rename-buffer bufname) |