diff options
| author | Julien Danjou | 2012-08-06 11:56:36 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2012-08-06 11:56:36 +0000 |
| commit | 16ac6eb63b0597c2bed61702ad56fb202c55c869 (patch) | |
| tree | cbe6bfb4b6cee99dc462583f432bf68d0816a483 | |
| parent | 21238f117336d2a3f1e7970832ba05da14d44a03 (diff) | |
| download | emacs-16ac6eb63b0597c2bed61702ad56fb202c55c869.tar.gz emacs-16ac6eb63b0597c2bed61702ad56fb202c55c869.zip | |
gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler): Remove autoload
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-demon.el | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index e011396263c..f18dcaf9261 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-08-06 Julien Danjou <julien@danjou.info> | ||
| 2 | |||
| 3 | * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler): | ||
| 4 | Remove autoload, already handled by gnus.el. | ||
| 5 | |||
| 1 | 2012-08-05 Julien Danjou <julien@danjou.info> | 6 | 2012-08-05 Julien Danjou <julien@danjou.info> |
| 2 | 7 | ||
| 3 | * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler): | 8 | * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler): |
diff --git a/lisp/gnus/gnus-demon.el b/lisp/gnus/gnus-demon.el index 81529b7f6be..115c5777448 100644 --- a/lisp/gnus/gnus-demon.el +++ b/lisp/gnus/gnus-demon.el | |||
| @@ -77,7 +77,6 @@ Emacs has been idle for IDLE `gnus-demon-timestep's." | |||
| 77 | 77 | ||
| 78 | ;;; Functions. | 78 | ;;; Functions. |
| 79 | 79 | ||
| 80 | ;;;###autoload | ||
| 81 | (defun gnus-demon-add-handler (function time idle) | 80 | (defun gnus-demon-add-handler (function time idle) |
| 82 | "Add the handler FUNCTION to be run at TIME and IDLE." | 81 | "Add the handler FUNCTION to be run at TIME and IDLE." |
| 83 | ;; First remove any old handlers that use this function. | 82 | ;; First remove any old handlers that use this function. |
| @@ -86,7 +85,6 @@ Emacs has been idle for IDLE `gnus-demon-timestep's." | |||
| 86 | (push (list function time idle) gnus-demon-handlers) | 85 | (push (list function time idle) gnus-demon-handlers) |
| 87 | (gnus-demon-init)) | 86 | (gnus-demon-init)) |
| 88 | 87 | ||
| 89 | ;;;###autoload | ||
| 90 | (defun gnus-demon-remove-handler (function &optional no-init) | 88 | (defun gnus-demon-remove-handler (function &optional no-init) |
| 91 | "Remove the handler FUNCTION from the list of handlers." | 89 | "Remove the handler FUNCTION from the list of handlers." |
| 92 | (gnus-alist-pull function gnus-demon-handlers) | 90 | (gnus-alist-pull function gnus-demon-handlers) |