aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-10-31 18:45:47 -0700
committerGlenn Morris2010-10-31 18:45:47 -0700
commite116c1eb0f04078ad53bb3225c5e8861d0423c65 (patch)
tree0cdb5bf6e49cef44c840be9e183020255e034a79
parentf979f37ee3baba1fb1d55d6ff860aaa98a678e55 (diff)
downloademacs-e116c1eb0f04078ad53bb3225c5e8861d0423c65.tar.gz
emacs-e116c1eb0f04078ad53bb3225c5e8861d0423c65.zip
Silence mm-decode.el compilation.
* lisp/gnus/mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
-rw-r--r--lisp/gnus/ChangeLog2
-rw-r--r--lisp/gnus/mm-decode.el7
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 8bd3f83b860..e829914dcb5 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,5 +1,7 @@
12010-11-01 Glenn Morris <rgm@gnu.org> 12010-11-01 Glenn Morris <rgm@gnu.org>
2 2
3 * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
4
3 * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use. 5 * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
4 6
5 * sieve-manage.el: Require 'cl when compiling. 7 * sieve-manage.el: Require 'cl when compiling.
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el
index 531206c538e..f3c04cee4f8 100644
--- a/lisp/gnus/mm-decode.el
+++ b/lisp/gnus/mm-decode.el
@@ -1,7 +1,7 @@
1;;; mm-decode.el --- Functions for decoding MIME things 1;;; mm-decode.el --- Functions for decoding MIME things
2 2
3;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 3;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 5
6;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> 6;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7;; MORIOKA Tomohiko <morioka@jaist.ac.jp> 7;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
@@ -1324,6 +1324,8 @@ Use CMD as the process."
1324 (let ((coding-system-for-write 'binary)) 1324 (let ((coding-system-for-write 'binary))
1325 (shell-command-on-region (point-min) (point-max) command nil))))) 1325 (shell-command-on-region (point-min) (point-max) command nil)))))
1326 1326
1327(autoload 'gnus-completing-read "gnus-util")
1328
1327(defun mm-interactively-view-part (handle) 1329(defun mm-interactively-view-part (handle)
1328 "Display HANDLE using METHOD." 1330 "Display HANDLE using METHOD."
1329 (let* ((type (mm-handle-media-type handle)) 1331 (let* ((type (mm-handle-media-type handle))
@@ -1683,6 +1685,7 @@ If RECURSIVE, search recursively."
1683 (start end &optional base-url)) 1685 (start end &optional base-url))
1684(declare-function shr-insert-document "shr" (dom)) 1686(declare-function shr-insert-document "shr" (dom))
1685(defvar shr-blocked-images) 1687(defvar shr-blocked-images)
1688(autoload 'gnus-blocked-images "gnus-art")
1686 1689
1687(defun mm-shr (handle) 1690(defun mm-shr (handle)
1688 ;; Require since we bind its variables. 1691 ;; Require since we bind its variables.