diff options
| author | Bill Wohler | 2005-10-24 20:46:06 +0000 |
|---|---|---|
| committer | Bill Wohler | 2005-10-24 20:46:06 +0000 |
| commit | 4a2639880bbe741d2d5a55c42f7c0ca236604752 (patch) | |
| tree | 4923fd90fb2f7c2863b6150921f650c0ae89f709 | |
| parent | e3dce51992c0d75d8f62d5b01fbcbd288af0ea0f (diff) | |
| download | emacs-4a2639880bbe741d2d5a55c42f7c0ca236604752.tar.gz emacs-4a2639880bbe741d2d5a55c42f7c0ca236604752.zip | |
* 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.
| -rw-r--r-- | lisp/mh-e/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/mh-e/mh-gnus.el | 11 | ||||
| -rw-r--r-- | lisp/mh-e/mh-mime.el | 6 |
3 files changed, 15 insertions, 10 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 352b3e9ace5..6c206258d79 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2005-10-24 Bill Wohler <wohler@newt.com> | ||
| 2 | |||
| 3 | * mh-gnus.el: Load mml.el in order to see if | ||
| 4 | mml-minibuffer-read-disposition is defined or not. | ||
| 5 | |||
| 6 | * mh-mime.el: Now that mh-gnus.el loads mml, we shouldn't need the | ||
| 7 | mml autoloads. | ||
| 8 | |||
| 1 | 2005-10-23 Miles Bader <miles@gnu.org> | 9 | 2005-10-23 Miles Bader <miles@gnu.org> |
| 2 | 10 | ||
| 3 | * .arch-inventory: New file. | 11 | * .arch-inventory: New file. |
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 @@ | |||
| 30 | 30 | ||
| 31 | ;;; Code: | 31 | ;;; Code: |
| 32 | 32 | ||
| 33 | (load "mm-decode" t t) ; Non-fatal dependency | 33 | ;;; Load libraries in a non-fatal way in order to see if certain functions are |
| 34 | (load "mm-uu" t t) ; Non-fatal dependency | 34 | ;;; pre-defined. |
| 35 | (load "mailcap" t t) ; Non-fatal dependency | ||
| 36 | (load "smiley" t t) ; Non-fatal dependency | ||
| 37 | (load "mailabbrev" t t) | 35 | (load "mailabbrev" t t) |
| 36 | (load "mailcap" t t) | ||
| 37 | (load "mm-decode" t t) | ||
| 38 | (load "mm-uu" t t) | ||
| 39 | (load "mml" t t) | ||
| 40 | (load "smiley" t t) | ||
| 38 | 41 | ||
| 39 | (defmacro mh-defun-compat (function arg-list &rest body) | 42 | (defmacro mh-defun-compat (function arg-list &rest body) |
| 40 | "This is a macro to define functions which are not defined. | 43 | "This is a macro to define functions which are not defined. |
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index 18a2995d7a1..70cc1f261db 100644 --- a/lisp/mh-e/mh-mime.el +++ b/lisp/mh-e/mh-mime.el | |||
| @@ -48,12 +48,6 @@ | |||
| 48 | (autoload 'gnus-get-buffer-create "gnus") | 48 | (autoload 'gnus-get-buffer-create "gnus") |
| 49 | (autoload 'message-options-set-recipient "message") | 49 | (autoload 'message-options-set-recipient "message") |
| 50 | (autoload 'mm-uu-dissect "mm-uu") | 50 | (autoload 'mm-uu-dissect "mm-uu") |
| 51 | (autoload 'mml-attach-file "mml") | ||
| 52 | (autoload 'mml-insert-empty-tag "mml") | ||
| 53 | (autoload 'mml-minibuffer-read-description "mml") | ||
| 54 | (autoload 'mml-minibuffer-read-disposition "mml") | ||
| 55 | (autoload 'mml-minibuffer-read-file "mml") | ||
| 56 | (autoload 'mml-to-mime "mml") | ||
| 57 | (autoload 'mml-unsecure-message "mml-sec") | 51 | (autoload 'mml-unsecure-message "mml-sec") |
| 58 | (autoload 'rfc2047-decode-region "rfc2047") | 52 | (autoload 'rfc2047-decode-region "rfc2047") |
| 59 | (autoload 'widget-convert-button "wid-edit") | 53 | (autoload 'widget-convert-button "wid-edit") |