summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-xtra.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-05-21 03:51:08 +0000
committerGlenn Morris <rgm@gnu.org>2008-05-21 03:51:08 +0000
commit3146b070694db4a74b3319f474016a351ebb0805 (patch)
tree00de9ff19fd7d6cfb18df7564bb3feb04ca1e73a /lisp/eshell/em-xtra.el
parentb5583b154b7ad88086090ddcf96a763b28107015 (diff)
downloademacs-3146b070694db4a74b3319f474016a351ebb0805.tar.gz
Use eshell-defgroup rather than defgroup.
Autoload the custom group. Set generated-autoload-file.
Diffstat (limited to 'lisp/eshell/em-xtra.el')
-rw-r--r--lisp/eshell/em-xtra.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/eshell/em-xtra.el b/lisp/eshell/em-xtra.el
index b3c3d1b43a8..c9b2e051d51 100644
--- a/lisp/eshell/em-xtra.el
+++ b/lisp/eshell/em-xtra.el
@@ -1,7 +1,7 @@
;;; em-xtra.el --- extra alias functions
-;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
-;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+;; 2008 Free Software Foundation, Inc.
;; Author: John Wiegley <johnw@gnu.org>
@@ -29,7 +29,8 @@
(require 'pcomplete))
(require 'compile)
-(defgroup eshell-xtra nil
+;;;###autoload
+(eshell-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' behavior more
@@ -118,5 +119,9 @@ naturally accessible within Emacs."
(provide 'em-xtra)
+;; Local Variables:
+;; generated-autoload-file: "esh-groups.el"
+;; End:
+
;; arch-tag: f944cfda-a118-470c-a0d6-b41a3a5c99c7
;;; em-xtra.el ends here