1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

* mm-encode.el (mm-content-transfer-encoding-defaults): Set

default to base64. Add application/emacs-lisp.
This commit is contained in:
ShengHuo ZHU 2002-02-19 13:30:08 +00:00
parent f856528037
commit 5be28abc6e
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -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.")