demon: remove autoloads
authorJulien Danjou <julien@danjou.info>
Mon, 6 Aug 2012 11:15:32 +0000 (13:15 +0200)
committerJulien Danjou <julien@danjou.info>
Mon, 6 Aug 2012 11:17:35 +0000 (13:17 +0200)
Signed-off-by: Julien Danjou <julien@danjou.info>
lisp/ChangeLog
lisp/gnus-demon.el

index 8c75efa..a26b88e 100644 (file)
@@ -1,5 +1,8 @@
 2012-08-06  Julien Danjou  <julien@danjou.info>
 
+       * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
+       Remove autoload, already handled by gnus.el.
+
        * nnimap.el (nnimap-request-head): Remove to-buffer argument.
 
        * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
index 81529b7..115c577 100644 (file)
@@ -77,7 +77,6 @@ Emacs has been idle for IDLE `gnus-demon-timestep's."
 
 ;;; Functions.
 
-;;;###autoload
 (defun gnus-demon-add-handler (function time idle)
   "Add the handler FUNCTION to be run at TIME and IDLE."
   ;; First remove any old handlers that use this function.
@@ -86,7 +85,6 @@ Emacs has been idle for IDLE `gnus-demon-timestep's."
   (push (list function time idle) gnus-demon-handlers)
   (gnus-demon-init))
 
-;;;###autoload
 (defun gnus-demon-remove-handler (function &optional no-init)
   "Remove the handler FUNCTION from the list of handlers."
   (gnus-alist-pull function gnus-demon-handlers)