Function: mm-w3m-cid-retrieve
mm-w3m-cid-retrieve is a byte-compiled function defined in
mm-view.el.gz.
Signature
(mm-w3m-cid-retrieve URL &rest ARGS)
Documentation
Insert a content pointed by URL if it has the cid: scheme.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mm-view.el.gz
(defun mm-w3m-cid-retrieve (url &rest _args)
"Insert a content pointed by URL if it has the cid: scheme."
(when (string-match "\\`cid:" url)
(or (catch 'found-handle
(mm-w3m-cid-retrieve-1
(setq url (concat "<" (substring url (match-end 0)) ">"))
(with-current-buffer w3m-current-buffer
gnus-article-mime-handles)))
(prog1
nil
(message "Failed to find \"Content-ID: %s\"" url)))))