]> git.eshelyaron.com Git - emacs.git/commitdiff
* mm-encode.el (mm-content-transfer-encoding-defaults): Set
authorShengHuo ZHU <zsh@cs.rochester.edu>
Tue, 19 Feb 2002 13:31:46 +0000 (13:31 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Tue, 19 Feb 2002 13:31:46 +0000 (13:31 +0000)
default to base64. Add application/emacs-lisp.

lisp/gnus/ChangeLog
lisp/gnus/mm-encode.el

index f76349469a49dc255a591112ce3ac03dca0f1df3..ef55a50ac082ccc94c088b26873cce19886c6e2a 100644 (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.
index 40a256ddf0e796e3e425428496b3d26de707b08a..165b716ec1a066ac90c0c1a53b29470abcc4d6b4 100644 (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.")