comparison lisp/eshell/em-hist.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 f79ec7c34dc5
comparison
equal deleted inserted replaced
95151:f45f20b8625d 95152:ad5d26b1d5d1
1 ;;; em-hist.el --- history list management 1 ;;; em-hist.el --- history list management
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
58 (require 'ring) 58 (require 'ring)
59 (require 'esh-opt) 59 (require 'esh-opt)
60 (require 'em-pred) 60 (require 'em-pred)
61 (require 'eshell) 61 (require 'eshell)
62 62
63 (defgroup eshell-hist nil 63 ;;;###autoload
64 (eshell-defgroup eshell-hist nil
64 "This module provides command history management." 65 "This module provides command history management."
65 :tag "History list management" 66 :tag "History list management"
66 :group 'eshell-module) 67 :group 'eshell-module)
67 68
68 ;;; User Variables: 69 ;;; User Variables:
982 (isearch-done) 983 (isearch-done)
983 (eshell-send-input)) 984 (eshell-send-input))
984 985
985 (provide 'em-hist) 986 (provide 'em-hist)
986 987
988 ;; Local Variables:
989 ;; generated-autoload-file: "esh-groups.el"
990 ;; End:
991
987 ;; arch-tag: 1a847333-f864-4b96-9acd-b549d620b6c6 992 ;; arch-tag: 1a847333-f864-4b96-9acd-b549d620b6c6
988 ;;; em-hist.el ends here 993 ;;; em-hist.el ends here