aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus
diff options
context:
space:
mode:
authorShengHuo ZHU <[email protected]>2002-02-19 13:30:08 +0000
committerShengHuo ZHU <[email protected]>2002-02-19 13:30:08 +0000
commit5be28abc6ec3c75766ecc6f4e9054fe8c3c3a230 (patch)
treea0c888721021fc03f5433e06116540727f866771 /lisp/gnus
parentf8565280371147cbc1555b546500d961c3b8c921 (diff)
* mm-encode.el (mm-content-transfer-encoding-defaults): Set
default to base64. Add application/emacs-lisp.
Diffstat (limited to 'lisp/gnus')
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/mm-encode.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 8beb9243c8..292bebf64e 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-19 ShengHuo ZHU <[email protected]>
+
+ * mm-encode.el (mm-content-transfer-encoding-defaults): Set
+ default to base64. Add application/emacs-lisp.
+
2002-02-16 ShengHuo ZHU <[email protected]>
* gnus-msg.el (gnus-post-method): Fix doc.
diff --git a/lisp/gnus/mm-encode.el b/lisp/gnus/mm-encode.el
index 40a256ddf0..165b716ec1 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.")