]> git.eshelyaron.com Git - emacs.git/commitdiff
gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler): Remove autoload
authorJulien Danjou <julien@danjou.info>
Mon, 6 Aug 2012 11:56:36 +0000 (11:56 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 6 Aug 2012 11:56:36 +0000 (11:56 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-demon.el

index e011396263c31fe333f61fafc308cc10d3bee1be..f18dcaf92612335bf7f5b331445dee34b3cc3f53 100644 (file)
@@ -1,3 +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.
+
 2012-08-05  Julien Danjou  <julien@danjou.info>
 
        * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
index 81529b7f6befb09a34636a546bf38c9fbcb6bd17..115c57774481a563c1913d01c9128e73fad2a5f5 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)