comparison lisp/gnus/mm-encode.el @ 43420:33c54ecf6602

* mm-encode.el (mm-content-transfer-encoding-defaults): Set default to base64. Add application/emacs-lisp.
author ShengHuo ZHU <zsh@cs.rochester.edu>
date Tue, 19 Feb 2002 13:30:08 +0000
parents a26d9b55abb6
children 52d99cc2e9e3
comparison
equal deleted inserted replaced
43419:afa0b133a056 43420:33c54ecf6602
33 (defvar mm-content-transfer-encoding-defaults 33 (defvar mm-content-transfer-encoding-defaults
34 '(("text/x-patch" 8bit) 34 '(("text/x-patch" 8bit)
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.
41 If the encoding is `qp-or-base64', then either quoted-printable 42 If the encoding is `qp-or-base64', then either quoted-printable
42 or base64 will be used, depending on what is more efficient.") 43 or base64 will be used, depending on what is more efficient.")
43 44
44 (defvar mm-use-ultra-safe-encoding nil 45 (defvar mm-use-ultra-safe-encoding nil