aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShengHuo ZHU2002-02-19 13:30:08 +0000
committerShengHuo ZHU2002-02-19 13:30:08 +0000
commit5be28abc6ec3c75766ecc6f4e9054fe8c3c3a230 (patch)
treea0c888721021fc03f5433e06116540727f866771
parentf8565280371147cbc1555b546500d961c3b8c921 (diff)
downloademacs-5be28abc6ec3c75766ecc6f4e9054fe8c3c3a230.tar.gz
emacs-5be28abc6ec3c75766ecc6f4e9054fe8c3c3a230.zip
* mm-encode.el (mm-content-transfer-encoding-defaults): Set
default to base64. Add application/emacs-lisp.
-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 8beb9243c8f..292bebf64e0 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12002-02-19 ShengHuo ZHU <zsh@cs.rochester.edu>
2
3 * mm-encode.el (mm-content-transfer-encoding-defaults): Set
4 default to base64. Add application/emacs-lisp.
5
12002-02-16 ShengHuo ZHU <zsh@cs.rochester.edu> 62002-02-16 ShengHuo ZHU <zsh@cs.rochester.edu>
2 7
3 * gnus-msg.el (gnus-post-method): Fix doc. 8 * 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 @@
35 ("text/.*" qp-or-base64) 35 ("text/.*" qp-or-base64)
36 ("message/rfc822" 8bit) 36 ("message/rfc822" 8bit)
37 ("application/emacs-lisp" 8bit) 37 ("application/emacs-lisp" 8bit)
38 ("application/x-emacs-lisp" 8bit)
38 ("application/x-patch" 8bit) 39 ("application/x-patch" 8bit)
39 (".*" qp-or-base64)) 40 (".*" base64))
40 "Alist of regexps that match MIME types and their encodings. 41 "Alist of regexps that match MIME types and their encodings.
41If the encoding is `qp-or-base64', then either quoted-printable 42If the encoding is `qp-or-base64', then either quoted-printable
42or base64 will be used, depending on what is more efficient.") 43or base64 will be used, depending on what is more efficient.")