summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-xtra.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-06-27 00:08:06 -0700
committerGlenn Morris <rgm@gnu.org>2012-06-27 00:08:06 -0700
commit35ff222c16e3c0a6a0dfd95426f9453ac182a5ed (patch)
tree2a869e0e2cf24836296fe1b632cc52eaf9b758ab /lisp/eshell/em-xtra.el
parent7983050d181d2fd4020db5f3736ed94d104aea5d (diff)
downloademacs-35ff222c16e3c0a6a0dfd95426f9453ac182a5ed.tar.gz
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-xtra.el')
-rw-r--r--lisp/eshell/em-xtra.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/eshell/em-xtra.el b/lisp/eshell/em-xtra.el
index 3dfb33d37e3..2e7a813cb75 100644
--- a/lisp/eshell/em-xtra.el
+++ b/lisp/eshell/em-xtra.el
@@ -29,13 +29,14 @@
(require 'compile)
;;;###autoload
-(eshell-defgroup eshell-xtra nil
+(progn
+(defgroup eshell-xtra nil
"This module defines some extra alias functions which are entirely
optional. They can be viewed as samples for how to write Eshell alias
functions, or as aliases which make some of Emacs's behavior more
naturally accessible within Emacs."
:tag "Extra alias functions"
- :group 'eshell-module)
+ :group 'eshell-module))
;;; Functions: