aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-03-03 04:07:51 +0000
committerStefan Monnier2008-03-03 04:07:51 +0000
commita88fd51a1fe1f5a89e428269a4761d84912e57c2 (patch)
tree8956c710b50b61eaf1edfd6a5b921aa773cbf86d
parentc7a91ce13240d429d2187d5b494594e3e4b7efc8 (diff)
downloademacs-a88fd51a1fe1f5a89e428269a4761d84912e57c2.tar.gz
emacs-a88fd51a1fe1f5a89e428269a4761d84912e57c2.zip
(mm-decode-content-transfer-encoding): Simplify.
-rw-r--r--lisp/gnus/ChangeLog2
-rw-r--r--lisp/gnus/mm-bodies.el7
2 files changed, 4 insertions, 5 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 44d6de5be07..2440a735b15 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,5 +1,7 @@
12008-03-03 Stefan Monnier <monnier@iro.umontreal.ca> 12008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
4
3 * gnus-sum.el: Use inhibit-read-only and with-current-buffer. 5 * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
4 (gnus-summary-jump-to-group): Consider windows on other displayed frames as 6 (gnus-summary-jump-to-group): Consider windows on other displayed frames as
5 well. Similar changes might be needed elsewhere, but that's the one I've 7 well. Similar changes might be needed elsewhere, but that's the one I've
diff --git a/lisp/gnus/mm-bodies.el b/lisp/gnus/mm-bodies.el
index 90d4acbdcd7..208c35f72bc 100644
--- a/lisp/gnus/mm-bodies.el
+++ b/lisp/gnus/mm-bodies.el
@@ -203,10 +203,7 @@ If TYPE is `text/plain' CRLF->LF translation may occur."
203 (when (re-search-backward "^[A-Za-z0-9+/]+=*[\t ]*$" nil t) 203 (when (re-search-backward "^[A-Za-z0-9+/]+=*[\t ]*$" nil t)
204 (forward-line)) 204 (forward-line))
205 (point)))) 205 (point))))
206 ((memq encoding '(7bit 8bit binary)) 206 ((memq encoding '(nil 7bit 8bit binary))
207 ;; Do nothing.
208 t)
209 ((null encoding)
210 ;; Do nothing. 207 ;; Do nothing.
211 t) 208 t)
212 ((memq encoding '(x-uuencode x-uue)) 209 ((memq encoding '(x-uuencode x-uue))
@@ -307,5 +304,5 @@ decoding. If it is nil, default to `mail-parse-charset'."
307 304
308(provide 'mm-bodies) 305(provide 'mm-bodies)
309 306
310;;; arch-tag: 41104bb6-4443-4ca9-8d5c-ff87ecf27d8d 307;; arch-tag: 41104bb6-4443-4ca9-8d5c-ff87ecf27d8d
311;;; mm-bodies.el ends here 308;;; mm-bodies.el ends here