]> git.eshelyaron.com Git - emacs.git/commitdiff
Gnus: silence the byte compiler
authorKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 24 Mar 2014 00:35:00 +0000 (00:35 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 24 Mar 2014 00:35:00 +0000 (00:35 +0000)
* gnus-cloud.el (gnus-cloud-parse-version-1):
Use plist-get rather than CL's getf.
(gnus-activate-group, gnus-subscribe-group): Declare.
* gnus-sum.el (gnus-mime-buttonize-attachments-in-header: Declare.

lisp/gnus/ChangeLog
lisp/gnus/gnus-cloud.el
lisp/gnus/gnus-sum.el

index 99b0ccd84d16e063f491d433cd5cdd342034496e..f701998f06a695dbcdeb48cd76496335bc6bcc9f 100644 (file)
@@ -1,3 +1,11 @@
+2014-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-cloud.el (gnus-cloud-parse-version-1):
+       Use plist-get rather than CL's getf.
+       (gnus-activate-group, gnus-subscribe-group): Declare.
+
+       * gnus-sum.el (gnus-mime-buttonize-attachments-in-header: Declare.
+
 2014-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-sum.el (gnus-summary-toggle-header): Display header attachment
index 62a25d7b9e0a06bfd46e3a69d98c933a0e75e83f..c47976bdcfa851db94c72b5ff6b7d175babde027 100644 (file)
        (let ((spec (ignore-errors (read (current-buffer))))
              length)
          (when (and (consp spec)
-                    (memq (getf spec :type) '(:file :data :deleta)))
+                    (memq (plist-get spec :type) '(:file :data :deleta)))
            (setq length (plist-get spec :length))
            (push (append spec
                          (list
              (string< old timestamp))
       timestamp)))
 
+(declare-function gnus-activate-group "gnus-start"
+                 (group &optional scan dont-check method dont-sub-check))
+(declare-function gnus-subscribe-group "gnus-start"
+                 (group &optional previous method))
+
 (defun gnus-cloud-ensure-cloud-group ()
   (let ((method (if (stringp gnus-cloud-method)
                    (gnus-server-to-method gnus-cloud-method)
index dca2a2c1499154158ee52bdbd28ac9df6f8d6690..090cbede76da3421e79e0beeee945f2b67bdddbd 100644 (file)
@@ -9783,6 +9783,8 @@ If ARG is a negative number, turn header display off."
 (declare-function article-narrow-to-head "gnus-art" ())
 (declare-function gnus-article-hidden-text-p "gnus-art" (type))
 (declare-function gnus-delete-wash-type "gnus-art" (type))
+(declare-function gnus-mime-buttonize-attachments-in-header
+                 "gnus-art" (&optional interactive))
 
 (defun gnus-summary-toggle-header (&optional arg)
   "Show the headers if they are hidden, or hide them if they are shown.