# HG changeset patch # User ShengHuo ZHU # Date 1014125408 0 # Node ID 33c54ecf66028d94483b59b106b2a3a65447cebc # Parent afa0b133a05611c79f3ae561078501f107b66c79 * mm-encode.el (mm-content-transfer-encoding-defaults): Set default to base64. Add application/emacs-lisp. diff -r afa0b133a056 -r 33c54ecf6602 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Tue Feb 19 11:22:16 2002 +0000 +++ b/lisp/gnus/ChangeLog Tue Feb 19 13:30:08 2002 +0000 @@ -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 -r afa0b133a056 -r 33c54ecf6602 lisp/gnus/mm-encode.el --- a/lisp/gnus/mm-encode.el Tue Feb 19 11:22:16 2002 +0000 +++ b/lisp/gnus/mm-encode.el Tue Feb 19 13:30:08 2002 +0000 @@ -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.")