]> git.eshelyaron.com Git - emacs.git/commitdiff
(mm-decode-content-transfer-encoding): Simplify.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Mar 2008 04:07:51 +0000 (04:07 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Mar 2008 04:07:51 +0000 (04:07 +0000)
lisp/gnus/ChangeLog
lisp/gnus/mm-bodies.el

index 44d6de5be079cf8054d4aa1a08c14e6d52699980..2440a735b158337f03778fa6bd150eacfc204217 100644 (file)
@@ -1,5 +1,7 @@
 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
+
        * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
        (gnus-summary-jump-to-group): Consider windows on other displayed frames as
        well.  Similar changes might be needed elsewhere, but that's the one I've
index 90d4acbdcd77cf98888a4f7959c0099076507445..208c35f72bc891514c3e750c98612f6682da519f 100644 (file)
@@ -203,10 +203,7 @@ If TYPE is `text/plain' CRLF->LF translation may occur."
               (when (re-search-backward "^[A-Za-z0-9+/]+=*[\t ]*$" nil t)
                 (forward-line))
               (point))))
-          ((memq encoding '(7bit 8bit binary))
-           ;; Do nothing.
-           t)
-          ((null encoding)
+          ((memq encoding '(nil 7bit 8bit binary))
            ;; Do nothing.
            t)
           ((memq encoding '(x-uuencode x-uue))
@@ -307,5 +304,5 @@ decoding.  If it is nil, default to `mail-parse-charset'."
 
 (provide 'mm-bodies)
 
-;;; arch-tag: 41104bb6-4443-4ca9-8d5c-ff87ecf27d8d
+;; arch-tag: 41104bb6-4443-4ca9-8d5c-ff87ecf27d8d
 ;;; mm-bodies.el ends here