From 35ff222c16e3c0a6a0dfd95426f9453ac182a5ed Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 27 Jun 2012 00:08:06 -0700 Subject: 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. --- lisp/eshell/em-banner.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lisp/eshell/em-banner.el') diff --git a/lisp/eshell/em-banner.el b/lisp/eshell/em-banner.el index a96a3dfe6af..82cb638a791 100644 --- a/lisp/eshell/em-banner.el +++ b/lisp/eshell/em-banner.el @@ -46,13 +46,14 @@ (require 'esh-util) ;;;###autoload -(eshell-defgroup eshell-banner nil +(progn +(defgroup eshell-banner nil "This sample module displays a welcome banner at login. It exists so that others wishing to create their own Eshell extension modules may have a simple template to begin with." :tag "Login banner" ;; :link '(info-link "(eshell)Login banner") - :group 'eshell-module) + :group 'eshell-module)) ;;; User Variables: -- cgit v1.2.3