aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell/em-script.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-script.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-script.el')
-rw-r--r--lisp/eshell/em-script.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/eshell/em-script.el b/lisp/eshell/em-script.el
index 8acbc2644be..3b203b4856c 100644
--- a/lisp/eshell/em-script.el
+++ b/lisp/eshell/em-script.el
@@ -26,11 +26,12 @@
26(require 'eshell) 26(require 'eshell)
27 27
28;;;###autoload 28;;;###autoload
29(eshell-defgroup eshell-script nil 29(progn
30(defgroup eshell-script nil
30 "This module allows for the execution of files containing Eshell 31 "This module allows for the execution of files containing Eshell
31commands, as a script file." 32commands, as a script file."
32 :tag "Running script files." 33 :tag "Running script files."
33 :group 'eshell-module) 34 :group 'eshell-module))
34 35
35;;; User Variables: 36;;; User Variables:
36 37