]> code.delx.au - gnu-emacs/blobdiff - lisp/eshell/em-hist.el
* completion.el (add-completion-to-head, add-completion): Doc fixes.
[gnu-emacs] / lisp / eshell / em-hist.el
index bc50cedc53eb1d3ba53b58cd0729897031e43fa7..e672d6049f376000078445a11bdabcb9aafdeb7d 100644 (file)
@@ -1,7 +1,7 @@
 ;;; em-hist.el --- history list management
 
-;; 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,
+;;   200 Free Software Foundation, Inc.
 
 ;; Author: John Wiegley <johnw@gnu.org>
 
 
 ;;; Code:
 
+(eval-when-compile
+  (require 'cl))
+
 (require 'ring)
 (require 'esh-opt)
 (require 'em-pred)
 (require 'eshell)
 
-(defgroup eshell-hist nil
+;;;###autoload
+(eshell-defgroup eshell-hist nil
   "This module provides command history management."
   :tag "History list management"
   :group 'eshell-module)
@@ -984,5 +988,9 @@ If N is negative, search backwards for the -Nth previous match."
 
 (provide 'em-hist)
 
+;; Local Variables:
+;; generated-autoload-file: "esh-groups.el"
+;; End:
+
 ;; arch-tag: 1a847333-f864-4b96-9acd-b549d620b6c6
 ;;; em-hist.el ends here