emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/gnus/mm-view.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/gnus/mm-view.el
Date: Tue, 19 Oct 2004 19:03:11 -0400

Index: emacs/lisp/gnus/mm-view.el
diff -c emacs/lisp/gnus/mm-view.el:1.11 emacs/lisp/gnus/mm-view.el:1.12
*** emacs/lisp/gnus/mm-view.el:1.11     Sat Sep  4 13:13:43 2004
--- emacs/lisp/gnus/mm-view.el  Tue Oct 19 22:38:28 2004
***************
*** 199,211 ****
    (setq w3m-display-inline-images mm-inline-text-html-with-images))
  
  (defun mm-w3m-cid-retrieve-1 (url handle)
!   (if (mm-multiple-handles handle)
!       (dolist (elem handle)
!       (mm-w3m-cid-retrieve-1 url elem))
!     (when (and (listp handle)
!              (equal url (mm-handle-id handle)))
!       (mm-insert-part handle)
!       (throw 'found-handle (mm-handle-media-type handle)))))
  
  (defun mm-w3m-cid-retrieve (url &rest args)
    "Insert a content pointed by URL if it has the cid: scheme."
--- 199,212 ----
    (setq w3m-display-inline-images mm-inline-text-html-with-images))
  
  (defun mm-w3m-cid-retrieve-1 (url handle)
!   (dolist (elem handle)
!     (when (listp elem)
!       (if (equal url (mm-handle-id elem))
!         (progn
!           (mm-insert-part elem)
!           (throw 'found-handle (mm-handle-media-type elem))))
!       (if (equal "multipart" (mm-handle-media-supertype elem))
!         (mm-w3m-cid-retrieve-1 url elem)))))
  
  (defun mm-w3m-cid-retrieve (url &rest args)
    "Insert a content pointed by URL if it has the cid: scheme."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]