diff options
author | ShengHuo ZHU <zsh@cs.rochester.edu> | 2002-02-19 13:30:08 +0000 |
---|---|---|
committer | ShengHuo ZHU <zsh@cs.rochester.edu> | 2002-02-19 13:30:08 +0000 |
commit | e0d31b37b9027a167f0d83a01d34e0a10ad61a06 (patch) | |
tree | 2c9978d6e51992aa261c0b7dd819ad2f413a27b5 /lisp | |
parent | 61f2ada0cab57c1d39e7855ad902453caddab8d5 (diff) | |
download | emacs-e0d31b37b9027a167f0d83a01d34e0a10ad61a06.tar.gz |
* mm-encode.el (mm-content-transfer-encoding-defaults): Set
default to base64. Add application/emacs-lisp.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/gnus/mm-encode.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 8beb9243c8f..292bebf64e0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -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. 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.") |