diff options
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/gnus/mm-encode.el | 1 | ||||
| -rw-r--r-- | lisp/gnus/mml.el | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index b989314557f..010070526ef 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,10 @@ +2011-09-10 Eli Zaretskii <eliz@gnu.org> + + Add autoload cookies for functions used by sendmail.el. + * mm-encode.el (mm-default-file-encoding): Add autoload cookie. + + * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies. + 2011-09-09 Katsumi Yamaoka <yamaoka@jpl.org> * gnus-art.el (article-date-ut): Work properly even when there are diff --git a/lisp/gnus/mm-encode.el b/lisp/gnus/mm-encode.el index 055ba475b8e..0fb0e7a0795 100644 --- a/lisp/gnus/mm-encode.el +++ b/lisp/gnus/mm-encode.el @@ -97,6 +97,7 @@ This variable should never be set directly, but bound before a call to (insert "Content-Type: multipart/mixed; boundary=\"" boundary "\"\n") boundary)) +;;;###autoload (defun mm-default-file-encoding (file) "Return a default encoding for FILE." (if (not (string-match "\\.[^.]+$" file)) diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el index 8b196fa26fc..e3939188a7b 100644 --- a/lisp/gnus/mml.el +++ b/lisp/gnus/mml.el @@ -897,6 +897,7 @@ If HANDLES is non-nil, use it instead reparsing the buffer." (autoload 'message-encode-message-body "message") (declare-function message-narrow-to-headers-or-head "message" ()) +;;;###autoload (defun mml-to-mime () "Translate the current buffer from MML to MIME." ;; `message-encode-message-body' will insert an encoded Content-Description @@ -1294,6 +1295,7 @@ to specify options." :version "22.1" ;; Gnus 5.10.9 :group 'message) +;;;###autoload (defun mml-attach-file (file &optional type description disposition) "Attach a file to the outgoing MIME message. The file is not inserted or encoded until you send the message with |
