diff options
author | Glenn Morris <rgm@gnu.org> | 2009-02-14 03:35:37 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-02-14 03:35:37 +0000 |
commit | fe1f089f30f80680ae22c916d9076c6caf5d3692 (patch) | |
tree | f56dfe00e21fed581bc353d13b79ebba81f205bf /lisp/gnus/gnus.el | |
parent | 18a56945f6bb8dc2604f991e8d049e24fcdbd7df (diff) | |
download | emacs-fe1f089f30f80680ae22c916d9076c6caf5d3692.tar.gz |
(rmail-default-rmail-file): Remove declaration of deleted
variable (only used in gnus-util, which declares it anyway).
(rmail-output-to-rmail-file): Move autoload to gnus-art, the only place
that uses it.
(rmail-insert-rmail-file-header): Remove autoload of deleted function,
only used in gnus-util, which autoloads it itself.
(rmail-update-summary): Fix autoload.
Diffstat (limited to 'lisp/gnus/gnus.el')
-rw-r--r-- | lisp/gnus/gnus.el | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 45d94494753..0fae8db4f76 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -2802,9 +2802,6 @@ gnus-registry.el will populate this if it's loaded.") (defvar gnus-reffed-article-number nil) -;;; Let the byte-compiler know that we know about this variable. -(defvar rmail-default-rmail-file) - (defvar gnus-dead-summary nil) (defvar gnus-invalid-group-regexp "[: `'\"/]\\|^$" @@ -2843,10 +2840,14 @@ gnus-registry.el will populate this if it's loaded.") ("babel" babel-as-string) ("nnmail" nnmail-split-fancy nnmail-article-group) ("nnvirtual" nnvirtual-catchup-group nnvirtual-convert-headers) - ("rmailout" rmail-output rmail-output-to-rmail-file) - ("rmail" rmail-insert-rmail-file-header rmail-count-new-messages - rmail-show-message rmail-summary-exists - rmail-select-summary rmail-update-summary) + ;; This is only used in message.el, which has an autoload. + ("rmailout" rmail-output) + ;; Next two used in gnus-util, which has autoloads, and contrib/sendmail. + ("rmail" rmail-count-new-messages rmail-show-message + ;; Next two only used in gnus-util. + rmail-summary-exists rmail-select-summary) + ;; Only used in gnus-util, which has an autoload. + ("rmailsum" rmail-update-summary) ("gnus-audio" :interactive t gnus-audio-play) ("gnus-xmas" gnus-xmas-splash) ("gnus-soup" :interactive t |