From: ShengHuo ZHU Date: Tue, 19 Feb 2002 13:31:46 +0000 (+0000) Subject: * mm-encode.el (mm-content-transfer-encoding-defaults): Set X-Git-Tag: emacs-21.2~69 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f8693286f0fc38328ce9f0979cdfa61ac62eda54;p=emacs.git * mm-encode.el (mm-content-transfer-encoding-defaults): Set default to base64. Add application/emacs-lisp. --- diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index f76349469a4..ef55a50ac08 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2002-02-19 ShengHuo ZHU + + * mm-encode.el (mm-content-transfer-encoding-defaults): Set + default to base64. Add application/emacs-lisp. + 2002-02-16 ShengHuo ZHU * gnus-msg.el (gnus-post-method): Fix doc. diff --git a/lisp/gnus/mm-encode.el b/lisp/gnus/mm-encode.el index 40a256ddf0e..165b716ec1a 100644 --- a/lisp/gnus/mm-encode.el +++ b/lisp/gnus/mm-encode.el @@ -35,8 +35,9 @@ ("text/.*" qp-or-base64) ("message/rfc822" 8bit) ("application/emacs-lisp" 8bit) + ("application/x-emacs-lisp" 8bit) ("application/x-patch" 8bit) - (".*" qp-or-base64)) + (".*" base64)) "Alist of regexps that match MIME types and their encodings. If the encoding is `qp-or-base64', then either quoted-printable or base64 will be used, depending on what is more efficient.")