1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

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.
This commit is contained in:
Glenn Morris 2012-06-27 00:08:06 -07:00
parent 7983050d18
commit 35ff222c16
19 changed files with 61 additions and 37 deletions

View file

@ -29,11 +29,12 @@
(eval-when-compile (require 'eshell))
;;;###autoload
(eshell-defgroup eshell-prompt nil
(progn
(defgroup eshell-prompt nil
"This module provides command prompts, and navigation between them,
as is common with most shells."
:tag "Command prompts"
:group 'eshell-module)
:group 'eshell-module))
;;; User Variables: