summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-unix.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-unix.el
parentb5583b154b7ad88086090ddcf96a763b28107015 (diff)
downloademacs-3146b070694db4a74b3319f474016a351ebb0805.tar.gz
emacs-3146b070694db4a74b3319f474016a351ebb0805.tar.bz2
emacs-3146b070694db4a74b3319f474016a351ebb0805.zip
Use eshell-defgroup rather than defgroup.
Autoload the custom group. Set generated-autoload-file.
Diffstat (limited to 'lisp/eshell/em-unix.el')
-rw-r--r--lisp/eshell/em-unix.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el
index 9a30fda6b89..6d8515bc22c 100644
--- a/lisp/eshell/em-unix.el
+++ b/lisp/eshell/em-unix.el
@@ -1,7 +1,7 @@
;;; em-unix.el --- UNIX command aliases
-;; 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>
@@ -38,7 +38,8 @@
(require 'eshell)
-(defgroup eshell-unix nil
+;;;###autoload
+(eshell-defgroup eshell-unix nil
"This module defines many of the more common UNIX utilities as
aliases implemented in Lisp. These include mv, ln, cp, rm, etc. If
the user passes arguments which are too complex, or are unrecognized
@@ -1047,5 +1048,9 @@ Show wall-clock time elapsed during execution of COMMAND.")
(provide 'em-unix)
+;; Local Variables:
+;; generated-autoload-file: "esh-groups.el"
+;; End:
+
;; arch-tag: 2462edd2-a76a-4cf2-897d-92e9a82ac1c9
;;; em-unix.el ends here