]> git.eshelyaron.com Git - emacs.git/commitdiff
* mh-gnus.el: Load mml.el in order to see if
authorBill Wohler <wohler@newt.com>
Mon, 24 Oct 2005 20:46:06 +0000 (20:46 +0000)
committerBill Wohler <wohler@newt.com>
Mon, 24 Oct 2005 20:46:06 +0000 (20:46 +0000)
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.

lisp/mh-e/ChangeLog
lisp/mh-e/mh-gnus.el
lisp/mh-e/mh-mime.el

index 352b3e9ace5b3664c97836e6dde740e38136c4e7..6c206258d79cf02de302b96961886eae590b4e01 100644 (file)
@@ -1,3 +1,11 @@
+2005-10-24  Bill Wohler  <wohler@newt.com>
+
+       * 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.
+
 2005-10-23  Miles Bader  <miles@gnu.org>
 
        * .arch-inventory: New file.
index 9d12a54bcd1f48225398b65fb1d79026c5ea0bde..23209275d12c51256626ea034703cb711a01dfe0 100644 (file)
 
 ;;; 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.
index 18a2995d7a1ca85df15e4dace13753ed904c9ff3..70cc1f261db1134bfe26a417cc8dbde2268fcdcb 100644 (file)
 (autoload 'gnus-get-buffer-create "gnus")
 (autoload 'message-options-set-recipient "message")
 (autoload 'mm-uu-dissect "mm-uu")
-(autoload 'mml-attach-file "mml")
-(autoload 'mml-insert-empty-tag "mml")
-(autoload 'mml-minibuffer-read-description "mml")
-(autoload 'mml-minibuffer-read-disposition "mml")
-(autoload 'mml-minibuffer-read-file "mml")
-(autoload 'mml-to-mime "mml")
 (autoload 'mml-unsecure-message "mml-sec")
 (autoload 'rfc2047-decode-region "rfc2047")
 (autoload 'widget-convert-button "wid-edit")