aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus
diff options
context:
space:
mode:
authorKatsumi Yamaoka2014-01-05 23:38:42 +0000
committerKatsumi Yamaoka2014-01-05 23:38:42 +0000
commitd1e12aefa680dced77cd2b1c93a9a818a8bf0160 (patch)
treec0d55922a40f5cc38c7ad97814234b19383602e2 /lisp/gnus
parent81c7d631e9a46662d02e09cae74e24f4bb6cb20c (diff)
downloademacs-d1e12aefa680dced77cd2b1c93a9a818a8bf0160.tar.gz
emacs-d1e12aefa680dced77cd2b1c93a9a818a8bf0160.zip
Gnus: Silence the byte compiler
Diffstat (limited to 'lisp/gnus')
-rw-r--r--lisp/gnus/ChangeLog7
-rw-r--r--lisp/gnus/gnus-sum.el5
-rw-r--r--lisp/gnus/mm-util.el2
3 files changed, 13 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 351e66cab1e..bcf26ac9f9c 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,10 @@
12014-01-05 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * gnus-sum.el (gnus-article-stop-animations): Declare it before using.
4 (nnimap-split-fancy, nnimap-split-methods): Declare.
5
6 * mm-util.el (help-function-arglist): Declare.
7
12013-12-28 Glenn Morris <rgm@gnu.org> 82013-12-28 Glenn Morris <rgm@gnu.org>
2 9
3 * gnus-sieve.el (gnus-sieve-select-method): 10 * gnus-sieve.el (gnus-sieve-select-method):
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 38a77c6f487..a1c0a0abdbf 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -7216,6 +7216,7 @@ If FORCE (the prefix), also save the .newsrc file(s)."
7216 (gnus-dribble-save))) 7216 (gnus-dribble-save)))
7217 7217
7218(declare-function gnus-cache-write-active "gnus-cache" (&optional force)) 7218(declare-function gnus-cache-write-active "gnus-cache" (&optional force))
7219(declare-function gnus-article-stop-animations "gnus-art" ())
7219 7220
7220(defun gnus-summary-exit (&optional temporary leave-hidden) 7221(defun gnus-summary-exit (&optional temporary leave-hidden)
7221 "Exit reading current newsgroup, and then return to group selection mode. 7222 "Exit reading current newsgroup, and then return to group selection mode.
@@ -7320,7 +7321,6 @@ If FORCE (the prefix), also save the .newsrc file(s)."
7320 (unless quit-config 7321 (unless quit-config
7321 (setq gnus-newsgroup-name nil))))) 7322 (setq gnus-newsgroup-name nil)))))
7322 7323
7323(declare-function gnus-article-stop-animations "gnus-art" ())
7324(declare-function gnus-stop-downloads "gnus-art" ()) 7324(declare-function gnus-stop-downloads "gnus-art" ())
7325 7325
7326(defalias 'gnus-summary-quit 'gnus-summary-exit-no-update) 7326(defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
@@ -10659,6 +10659,9 @@ groups."
10659 10659
10660;;; Respooling 10660;;; Respooling
10661 10661
10662(defvar nnimap-split-fancy)
10663(defvar nnimap-split-methods)
10664
10662(defun gnus-summary-respool-query (&optional silent trace) 10665(defun gnus-summary-respool-query (&optional silent trace)
10663 "Query where the respool algorithm would put this article." 10666 "Query where the respool algorithm would put this article."
10664 (interactive) 10667 (interactive)
diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el
index 6433ec96938..38ee8a563e5 100644
--- a/lisp/gnus/mm-util.el
+++ b/lisp/gnus/mm-util.el
@@ -1378,6 +1378,8 @@ If INHIBIT is non-nil, inhibit `mm-inhibit-file-name-handlers'."
1378 (write-region start end filename append visit lockname))) 1378 (write-region start end filename append visit lockname)))
1379 1379
1380(autoload 'gmm-write-region "gmm-utils") 1380(autoload 'gmm-write-region "gmm-utils")
1381(declare-function help-function-arglist "help-fns"
1382 (def &optional preserve-names))
1381 1383
1382;; It is not a MIME function, but some MIME functions use it. 1384;; It is not a MIME function, but some MIME functions use it.
1383(if (and (fboundp 'make-temp-file) 1385(if (and (fboundp 'make-temp-file)