# HG changeset patch # User Stefan Monnier # Date 1204517271 0 # Node ID f154591879d5ed4b4cadd480258511014a23705f # Parent a7debc43cf9a4d7edf81f0e349f14706b456feb9 (mm-decode-content-transfer-encoding): Simplify. diff -r a7debc43cf9a -r f154591879d5 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Mon Mar 03 04:06:03 2008 +0000 +++ b/lisp/gnus/ChangeLog Mon Mar 03 04:07:51 2008 +0000 @@ -1,5 +1,7 @@ 2008-03-03 Stefan Monnier + * 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 diff -r a7debc43cf9a -r f154591879d5 lisp/gnus/mm-bodies.el --- a/lisp/gnus/mm-bodies.el Mon Mar 03 04:06:03 2008 +0000 +++ b/lisp/gnus/mm-bodies.el Mon Mar 03 04:07:51 2008 +0000 @@ -203,10 +203,7 @@ (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 @@ (provide 'mm-bodies) -;;; arch-tag: 41104bb6-4443-4ca9-8d5c-ff87ecf27d8d +;; arch-tag: 41104bb6-4443-4ca9-8d5c-ff87ecf27d8d ;;; mm-bodies.el ends here