Function: url-mm-url
url-mm-url is a byte-compiled function defined in url.el.gz.
Signature
(url-mm-url URL)
Documentation
Retrieve URL and pass to the appropriate viewing application.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url.el.gz
(defun url-mm-url (url)
"Retrieve URL and pass to the appropriate viewing application."
;; These requires could advantageously be moved to url-mm-callback or
;; turned into autoloads, but I suspect that it would introduce some bugs
;; because loading those files from a process sentinel or filter may
;; result in some undesirable corner cases.
(require 'mm-decode)
(require 'mm-view)
(url-retrieve url 'url-mm-callback nil))