diff options
| author | Bill Wohler | 2012-11-24 19:43:02 -0800 |
|---|---|---|
| committer | Bill Wohler | 2012-11-24 19:43:02 -0800 |
| commit | 5244bc019bf7376caff3bb198ff674e0ad9fb0e6 (patch) | |
| tree | 02ee1615e904771f692ec2957c79a08ae029a13d /lisp/eshell/em-basic.el | |
| parent | 9f7e719509474e92f85955e22e57ffeebd4e96f3 (diff) | |
| parent | c07a6ded1df2f4156badc9add2953579622c3722 (diff) | |
| download | emacs-5244bc019bf7376caff3bb198ff674e0ad9fb0e6.tar.gz emacs-5244bc019bf7376caff3bb198ff674e0ad9fb0e6.zip | |
Merge from trunk.
Diffstat (limited to 'lisp/eshell/em-basic.el')
| -rw-r--r-- | lisp/eshell/em-basic.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/eshell/em-basic.el b/lisp/eshell/em-basic.el index df1987e13ee..e07bc75f89a 100644 --- a/lisp/eshell/em-basic.el +++ b/lisp/eshell/em-basic.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-basic.el --- basic shell builtin commands | 1 | ;;; em-basic.el --- basic shell builtin commands |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999-2011 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999-2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -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. |