aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell/em-basic.el
diff options
context:
space:
mode:
authorGlenn Morris2012-06-27 00:08:06 -0700
committerGlenn Morris2012-06-27 00:08:06 -0700
commit35ff222c16e3c0a6a0dfd95426f9453ac182a5ed (patch)
tree2a869e0e2cf24836296fe1b632cc52eaf9b758ab /lisp/eshell/em-basic.el
parent7983050d181d2fd4020db5f3736ed94d104aea5d (diff)
downloademacs-35ff222c16e3c0a6a0dfd95426f9453ac182a5ed.tar.gz
emacs-35ff222c16e3c0a6a0dfd95426f9453ac182a5ed.zip
Replace eshell-defgroup with plain defgroup
Borrowing a trick from vc-sccs.el, wrap the defgroup in a progn so that the whole thing ends up in the generated autoload file, esh-groups.el. * em-alias.el, em-banner.el, em-basic.el, em-cmpl.el, em-dirs.el: * em-glob.el, em-hist.el, em-ls.el, em-pred.el, em-prompt.el: * em-rebind.el, em-script.el, em-smart.el, em-term.el, em-unix.el: * em-xtra.el: Replace eshell-defgroup with (progn (defgroup. * eshell.el (eshell-defgroup): Remove alias.
Diffstat (limited to 'lisp/eshell/em-basic.el')
-rw-r--r--lisp/eshell/em-basic.el5
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
71are traditionally considered shell builtins. Since all of the 72are traditionally considered shell builtins. Since all of the
72functionality provided by them is accessible through Lisp, they are 73functionality provided by them is accessible through Lisp, they are
73not really builtins at all, but offer a command-oriented way to do the 74not really builtins at all, but offer a command-oriented way to do the
74same thing." 75same 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.