diff lisp/mh-e/mh-gnus.el @ 66410:779be9915a30

* 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.
author Bill Wohler <wohler@newt.com>
date Mon, 24 Oct 2005 20:46:06 +0000
parents cf99ce27df54
children 3a8785724cca
line wrap: on
line diff
--- a/lisp/mh-e/mh-gnus.el	Mon Oct 24 19:37:30 2005 +0000
+++ b/lisp/mh-e/mh-gnus.el	Mon Oct 24 20:46:06 2005 +0000
@@ -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.