comparison lisp/eshell/em-xtra.el @ 95152:ad5d26b1d5d1

Use eshell-defgroup rather than defgroup. Autoload the custom group. Set generated-autoload-file.
author Glenn Morris <rgm@gnu.org>
date Wed, 21 May 2008 03:51:08 +0000
parents b5b0801a7637
children a9dc0e7c3f2b
comparison
equal deleted inserted replaced
95151:f45f20b8625d 95152:ad5d26b1d5d1
1 ;;; em-xtra.el --- extra alias functions 1 ;;; em-xtra.el --- extra alias functions
2 2
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 4 ;; 2008 Free Software Foundation, Inc.
5 5
6 ;; Author: John Wiegley <johnw@gnu.org> 6 ;; Author: John Wiegley <johnw@gnu.org>
7 7
8 ;; This file is part of GNU Emacs. 8 ;; This file is part of GNU Emacs.
9 9
27 (eval-when-compile 27 (eval-when-compile
28 (require 'eshell) 28 (require 'eshell)
29 (require 'pcomplete)) 29 (require 'pcomplete))
30 (require 'compile) 30 (require 'compile)
31 31
32 (defgroup eshell-xtra nil 32 ;;;###autoload
33 (eshell-defgroup eshell-xtra nil
33 "This module defines some extra alias functions which are entirely 34 "This module defines some extra alias functions which are entirely
34 optional. They can be viewed as samples for how to write Eshell alias 35 optional. They can be viewed as samples for how to write Eshell alias
35 functions, or as aliases which make some of Emacs' behavior more 36 functions, or as aliases which make some of Emacs' behavior more
36 naturally accessible within Emacs." 37 naturally accessible within Emacs."
37 :tag "Extra alias functions" 38 :tag "Extra alias functions"
116 117
117 (defalias 'pcomplete/bcc 'pcomplete/bcc32) 118 (defalias 'pcomplete/bcc 'pcomplete/bcc32)
118 119
119 (provide 'em-xtra) 120 (provide 'em-xtra)
120 121
122 ;; Local Variables:
123 ;; generated-autoload-file: "esh-groups.el"
124 ;; End:
125
121 ;; arch-tag: f944cfda-a118-470c-a0d6-b41a3a5c99c7 126 ;; arch-tag: f944cfda-a118-470c-a0d6-b41a3a5c99c7
122 ;;; em-xtra.el ends here 127 ;;; em-xtra.el ends here