comparison 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
comparison
equal deleted inserted replaced
66409:5a25cc5e524a 66410:779be9915a30
28 28
29 ;;; Change Log: 29 ;;; Change Log:
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.
41 It is used for Gnus utility functions which were added recently. If FUNCTION 44 It is used for Gnus utility functions which were added recently. If FUNCTION
42 is not defined then it is defined to have argument list, ARG-LIST and body, 45 is not defined then it is defined to have argument list, ARG-LIST and body,