From: Julien Danjou Date: Mon, 6 Aug 2012 11:15:32 +0000 (+0200) Subject: demon: remove autoloads X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=411b37cd34fdedd9925b257c494b9ff898be9035 demon: remove autoloads Signed-off-by: Julien Danjou --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8c75efa41..a26b88ef2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2012-08-06 Julien Danjou + * 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 diff --git a/lisp/gnus-demon.el b/lisp/gnus-demon.el index 81529b7f6..115c57774 100644 --- a/lisp/gnus-demon.el +++ b/lisp/gnus-demon.el @@ -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)