diff options
author | Glenn Morris <rgm@gnu.org> | 2012-06-27 00:08:06 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-06-27 00:08:06 -0700 |
commit | 35ff222c16e3c0a6a0dfd95426f9453ac182a5ed (patch) | |
tree | 2a869e0e2cf24836296fe1b632cc52eaf9b758ab /lisp/eshell/em-smart.el | |
parent | 7983050d181d2fd4020db5f3736ed94d104aea5d (diff) | |
download | emacs-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-smart.el')
-rw-r--r-- | lisp/eshell/em-smart.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/eshell/em-smart.el b/lisp/eshell/em-smart.el index cdaed9b717c..b427fe69ea4 100644 --- a/lisp/eshell/em-smart.el +++ b/lisp/eshell/em-smart.el @@ -71,7 +71,8 @@ (eval-when-compile (require 'eshell)) ;;;###autoload -(eshell-defgroup eshell-smart nil +(progn +(defgroup eshell-smart nil "This module combines the facility of normal, modern shells with some of the edit/review concepts inherent in the design of Plan 9's 9term. See the docs for more details. @@ -80,7 +81,7 @@ Most likely you will have to turn this option on and play around with it to get a real sense of how it works." :tag "Smart display of output" ;; :link '(info-link "(eshell)Smart display of output") - :group 'eshell-module) + :group 'eshell-module)) ;;; User Variables: |