*** empty log message ***
authorShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 29 Sep 1999 04:12:35 +0000 (04:12 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 29 Sep 1999 04:12:35 +0000 (04:12 +0000)
lisp/ChangeLog
lisp/mm-util.el

index f04144c..0d20755 100644 (file)
@@ -1,3 +1,7 @@
+1999-09-29  Shenghuo ZHU  <zsh@cs.rochester.edu>
+
+       * mm-util.el (mm-binary-coding-system): Try binary first.
+
 1999-09-14  Shenghuo ZHU  <zsh@cs.rochester.edu>
 
        * rfc1843.el (rfc1843-decode-article-body): Don't decode twice.
index 43c94f2..8ecdc3c 100644 (file)
 
 (defvar mm-binary-coding-system
   (cond 
-   ((mm-coding-system-p 'no-conversion) 'no-conversion)
    ((mm-coding-system-p 'binary) 'binary)
+   ((mm-coding-system-p 'no-conversion) 'no-conversion)
    (t nil))
   "100% binary coding system.")