comparison lisp/eshell/em-ls.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 45dbb3c749a6
comparison
equal deleted inserted replaced
95151:f45f20b8625d 95152:ad5d26b1d5d1
1 ;;; em-ls.el --- implementation of ls in Lisp 1 ;;; em-ls.el --- implementation of ls in Lisp
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
29 29
30 (eval-when-compile (require 'eshell)) 30 (eval-when-compile (require 'eshell))
31 (require 'esh-util) 31 (require 'esh-util)
32 (require 'esh-opt) 32 (require 'esh-opt)
33 33
34 (defgroup eshell-ls nil 34 ;;;###autoload
35 (eshell-defgroup eshell-ls nil
35 "This module implements the \"ls\" utility fully in Lisp. If it is 36 "This module implements the \"ls\" utility fully in Lisp. If it is
36 passed any unrecognized command switches, it will revert to the 37 passed any unrecognized command switches, it will revert to the
37 operating system's version. This version of \"ls\" uses text 38 operating system's version. This version of \"ls\" uses text
38 properties to colorize its output based on the setting of 39 properties to colorize its output based on the setting of
39 `eshell-ls-use-colors'." 40 `eshell-ls-use-colors'."
919 (car file))))) 920 (car file)))))
920 (car file)) 921 (car file))
921 922
922 (provide 'em-ls) 923 (provide 'em-ls)
923 924
925 ;; Local Variables:
926 ;; generated-autoload-file: "esh-groups.el"
927 ;; End:
928
924 ;; arch-tag: 9295181c-0cb2-499c-999b-89f5359842cb 929 ;; arch-tag: 9295181c-0cb2-499c-999b-89f5359842cb
925 ;;; em-ls.el ends here 930 ;;; em-ls.el ends here