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 | 5be28abc6ec3c75766ecc6f4e9054fe8c3c3a230 (patch) | |
tree | a0c888721021fc03f5433e06116540727f866771 /lisp/gnus/mm-encode.el | |
parent | f8565280371147cbc1555b546500d961c3b8c921 (diff) | |
download | emacs-5be28abc6ec3c75766ecc6f4e9054fe8c3c3a230.tar.gz |
* mm-encode.el (mm-content-transfer-encoding-defaults): Set
default to base64. Add application/emacs-lisp.
Diffstat (limited to 'lisp/gnus/mm-encode.el')
-rw-r--r-- | lisp/gnus/mm-encode.el | 3 |
1 files changed, 2 insertions, 1 deletions
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.") |