emacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-commit] emacs/lisp/mh-e mh-mime.el mh-gnus.el ChangeLog


From: Bill Wohler
Subject: [Emacs-commit] emacs/lisp/mh-e mh-mime.el mh-gnus.el ChangeLog
Date: Mon, 24 Oct 2005 16:46:07 -0400

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         
Changes by:     Bill Wohler <address@hidden>    05/10/24 20:46:07

Modified files:
        lisp/mh-e      : mh-mime.el mh-gnus.el ChangeLog 

Log message:
        * 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.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/emacs/emacs/lisp/mh-e/mh-mime.el.diff?tr1=1.22&tr2=1.23&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/emacs/emacs/lisp/mh-e/mh-gnus.el.diff?tr1=1.8&tr2=1.9&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/emacs/emacs/lisp/mh-e/ChangeLog.diff?tr1=1.50&tr2=1.51&r1=text&r2=text

Patches:
Index: emacs/lisp/mh-e/ChangeLog
diff -u emacs/lisp/mh-e/ChangeLog:1.50 emacs/lisp/mh-e/ChangeLog:1.51
--- emacs/lisp/mh-e/ChangeLog:1.50      Mon Oct 24 06:00:50 2005
+++ emacs/lisp/mh-e/ChangeLog   Mon Oct 24 20:46:06 2005
@@ -1,3 +1,11 @@
+2005-10-24  Bill Wohler  <address@hidden>
+
+       * 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  <address@hidden>
 
        * .arch-inventory: New file.
Index: emacs/lisp/mh-e/mh-gnus.el
diff -u emacs/lisp/mh-e/mh-gnus.el:1.8 emacs/lisp/mh-e/mh-gnus.el:1.9
--- emacs/lisp/mh-e/mh-gnus.el:1.8      Sun Oct 23 21:26:17 2005
+++ emacs/lisp/mh-e/mh-gnus.el  Mon Oct 24 20:46:06 2005
@@ -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.
Index: emacs/lisp/mh-e/mh-mime.el
diff -u emacs/lisp/mh-e/mh-mime.el:1.22 emacs/lisp/mh-e/mh-mime.el:1.23
--- emacs/lisp/mh-e/mh-mime.el:1.22     Sun Oct 23 22:47:45 2005
+++ emacs/lisp/mh-e/mh-mime.el  Mon Oct 24 20:46:06 2005
@@ -48,12 +48,6 @@
 (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")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]