Mercurial > emacs
changeset 43420:33c54ecf6602
* mm-encode.el (mm-content-transfer-encoding-defaults): Set
default to base64. Add application/emacs-lisp.
author | ShengHuo ZHU <zsh@cs.rochester.edu> |
---|---|
date | Tue, 19 Feb 2002 13:30:08 +0000 |
parents | afa0b133a056 |
children | a949c187ce13 |
files | lisp/gnus/ChangeLog lisp/gnus/mm-encode.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <zsh@cs.rochester.edu> + + * mm-encode.el (mm-content-transfer-encoding-defaults): Set + default to base64. Add application/emacs-lisp. + 2002-02-16 ShengHuo ZHU <zsh@cs.rochester.edu> * gnus-msg.el (gnus-post-method): Fix doc.
--- 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.")