diff options
Diffstat (limited to 'lisp/eshell/em-basic.el')
| -rw-r--r-- | lisp/eshell/em-basic.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/eshell/em-basic.el b/lisp/eshell/em-basic.el index ece029c39f2..e07bc75f89a 100644 --- a/lisp/eshell/em-basic.el +++ b/lisp/eshell/em-basic.el | |||
| @@ -66,14 +66,15 @@ | |||
| 66 | (require 'esh-opt) | 66 | (require 'esh-opt) |
| 67 | 67 | ||
| 68 | ;;;###autoload | 68 | ;;;###autoload |
| 69 | (eshell-defgroup eshell-basic nil | 69 | (progn |
| 70 | (defgroup eshell-basic nil | ||
| 70 | "The \"basic\" code provides a set of convenience functions which | 71 | "The \"basic\" code provides a set of convenience functions which |
| 71 | are traditionally considered shell builtins. Since all of the | 72 | are traditionally considered shell builtins. Since all of the |
| 72 | functionality provided by them is accessible through Lisp, they are | 73 | functionality provided by them is accessible through Lisp, they are |
| 73 | not really builtins at all, but offer a command-oriented way to do the | 74 | not really builtins at all, but offer a command-oriented way to do the |
| 74 | same thing." | 75 | same thing." |
| 75 | :tag "Basic shell commands" | 76 | :tag "Basic shell commands" |
| 76 | :group 'eshell-module) | 77 | :group 'eshell-module)) |
| 77 | 78 | ||
| 78 | (defcustom eshell-plain-echo-behavior nil | 79 | (defcustom eshell-plain-echo-behavior nil |
| 79 | "If non-nil, `echo' tries to behave like an ordinary shell echo. | 80 | "If non-nil, `echo' tries to behave like an ordinary shell echo. |