diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-16 14:12:35 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-16 14:12:35 +0000 |
commit | 717c6bdeb56c7ef7f2a935873688209bf338a3a9 (patch) | |
tree | 93c77607379cbd6b66f7346a0363e09f6bd65852 /lisp/url/url.el | |
parent | a73db543bf9c04d1f5438461fa6b4fb52f1af85a (diff) | |
download | emacs-717c6bdeb56c7ef7f2a935873688209bf338a3a9.tar.gz emacs-717c6bdeb56c7ef7f2a935873688209bf338a3a9.tar.bz2 emacs-717c6bdeb56c7ef7f2a935873688209bf338a3a9.zip |
*** empty log message ***
Diffstat (limited to 'lisp/url/url.el')
-rw-r--r-- | lisp/url/url.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/url/url.el b/lisp/url/url.el index 03bf4218af9..4a1e157e59d 100644 --- a/lisp/url/url.el +++ b/lisp/url/url.el @@ -226,6 +226,10 @@ no further processing). URL is either a string or a parsed URL." (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 carner cases. (require 'mm-decode) (require 'mm-view) (url-retrieve url 'url-mm-callback nil)) |