comparison lisp/gnus/gnus-agent.el @ 95820:645fb33380d6

Remove unnecessary eval-and-compile of autoloads.
author Glenn Morris <rgm@gnu.org>
date Wed, 11 Jun 2008 03:13:10 +0000
parents f42ef85caf91
children a9dc0e7c3f2b
comparison
equal deleted inserted replaced
95819:1d746ab5327f 95820:645fb33380d6
1 ;;; gnus-agent.el --- unplugged support for Gnus 1 ;;; gnus-agent.el --- unplugged support for Gnus
2 2
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
5 5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> 6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; This file is part of GNU Emacs. 7 ;; This file is part of GNU Emacs.
8 8
9 ;; GNU Emacs is free software: you can redistribute it and/or modify 9 ;; GNU Emacs is free software: you can redistribute it and/or modify
35 (if (featurep 'xemacs) 35 (if (featurep 'xemacs)
36 (require 'itimer) 36 (require 'itimer)
37 (require 'timer)) 37 (require 'timer))
38 (require 'cl)) 38 (require 'cl))
39 39
40 (eval-and-compile 40 (autoload 'gnus-server-update-server "gnus-srvr")
41 (autoload 'gnus-server-update-server "gnus-srvr") 41 (autoload 'gnus-agent-customize-category "gnus-cus")
42 (autoload 'gnus-agent-customize-category "gnus-cus")
43 )
44 42
45 (defcustom gnus-agent-directory (nnheader-concat gnus-directory "agent/") 43 (defcustom gnus-agent-directory (nnheader-concat gnus-directory "agent/")
46 "Where the Gnus agent will store its files." 44 "Where the Gnus agent will store its files."
47 :group 'gnus-agent 45 :group 'gnus-agent
48 :type 'directory) 46 :type 'directory)