From e1b88a44bb0974fed567738df40239fcab673781 Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Mon, 18 Apr 2005 23:15:01 +0000 Subject: [PATCH] Autoload dnd when compiling. --- lisp/ChangeLog | 4 ++++ lisp/mml.el | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cecf62d59..f9cdaf44f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2005-04-18 Katsumi Yamaoka + + * mml.el: Autoload dnd when compiling. + 2005-04-18 Reiner Steib * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of diff --git a/lisp/mml.el b/lisp/mml.el index 5fedc8041..b016845b8 100644 --- a/lisp/mml.el +++ b/lisp/mml.el @@ -38,8 +38,10 @@ (autoload 'message-fetch-field "message") (autoload 'message-mark-active-p "message") (autoload 'fill-flowed-encode "flow-fill") - (autoload 'message-posting-charset "message") - (autoload 'x-dnd-get-local-file-name "x-dnd")) + (autoload 'message-posting-charset "message")) + +(eval-when-compile + (autoload 'dnd-get-local-file-name "dnd")) (defcustom mml-content-type-parameters '(name access-type expiration size permission format) -- 2.25.1