summaryrefslogtreecommitdiff
path: root/lisp/mh-e/mh-gnus.el
diff options
context:
space:
mode:
authorBill Wohler <wohler@newt.com>2005-10-24 20:46:06 +0000
committerBill Wohler <wohler@newt.com>2005-10-24 20:46:06 +0000
commit4a2639880bbe741d2d5a55c42f7c0ca236604752 (patch)
tree4923fd90fb2f7c2863b6150921f650c0ae89f709 /lisp/mh-e/mh-gnus.el
parente3dce51992c0d75d8f62d5b01fbcbd288af0ea0f (diff)
downloademacs-4a2639880bbe741d2d5a55c42f7c0ca236604752.tar.gz
* mh-gnus.el: Load mml.el in order to see if
mml-minibuffer-read-disposition is defined or not. * mh-mime.el: Now that mh-gnus.el loads mml, we shouldn't need the mml autoloads.
Diffstat (limited to 'lisp/mh-e/mh-gnus.el')
-rw-r--r--lisp/mh-e/mh-gnus.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/mh-e/mh-gnus.el b/lisp/mh-e/mh-gnus.el
index 9d12a54bcd1..23209275d12 100644
--- a/lisp/mh-e/mh-gnus.el
+++ b/lisp/mh-e/mh-gnus.el
@@ -30,11 +30,14 @@
;;; Code:
-(load "mm-decode" t t) ; Non-fatal dependency
-(load "mm-uu" t t) ; Non-fatal dependency
-(load "mailcap" t t) ; Non-fatal dependency
-(load "smiley" t t) ; Non-fatal dependency
+;;; Load libraries in a non-fatal way in order to see if certain functions are
+;;; pre-defined.
(load "mailabbrev" t t)
+(load "mailcap" t t)
+(load "mm-decode" t t)
+(load "mm-uu" t t)
+(load "mml" t t)
+(load "smiley" t t)
(defmacro mh-defun-compat (function arg-list &rest body)
"This is a macro to define functions which are not defined.