diff options
author | Glenn Morris <rgm@gnu.org> | 2008-05-21 03:51:08 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-05-21 03:51:08 +0000 |
commit | 3146b070694db4a74b3319f474016a351ebb0805 (patch) | |
tree | 00de9ff19fd7d6cfb18df7564bb3feb04ca1e73a /lisp/eshell/em-pred.el | |
parent | b5583b154b7ad88086090ddcf96a763b28107015 (diff) | |
download | emacs-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-pred.el')
-rw-r--r-- | lisp/eshell/em-pred.el | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/eshell/em-pred.el b/lisp/eshell/em-pred.el index c594a91649a..f2b5d7b6a56 100644 --- a/lisp/eshell/em-pred.el +++ b/lisp/eshell/em-pred.el @@ -1,7 +1,7 @@ ;;; em-pred.el --- argument predicates and modifiers (ala zsh) -;; 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> @@ -49,7 +49,8 @@ (eval-when-compile (require 'eshell)) -(defgroup eshell-pred nil +;;;###autoload +(eshell-defgroup eshell-pred nil "This module allows for predicates to be applied to globbing patterns (similar to zsh), in addition to string modifiers which can be applied either to globbing results, variable references, or just @@ -600,5 +601,9 @@ that 'ls -l' will show in the first column of its display. " (provide 'em-pred) +;; Local Variables: +;; generated-autoload-file: "esh-groups.el" +;; End: + ;; arch-tag: 8b5ce022-17f3-4c40-93c7-5faafaa63f31 ;;; em-pred.el ends here |