]> git.eshelyaron.com Git - emacs.git/commitdiff
Add a comment for previous browse-url-of-dired-file change
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 7 Mar 2022 04:15:58 +0000 (05:15 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 7 Mar 2022 04:15:58 +0000 (05:15 +0100)
* lisp/net/browse-url.el (browse-url-of-dired-file): Add a comment
for previous change.

lisp/net/browse-url.el

index 55f41323ddbd0cb688c0fec2998a2fbbaacd44d0..ccfbf51e48c835e696badc1f8091b961d7e34763 100644 (file)
@@ -836,7 +836,9 @@ If optional arg TEMP-FILE-NAME is non-nil, delete it instead."
   "In Dired, ask a WWW browser to display the file named on this line."
   (interactive)
   (let ((tem (dired-get-filename t t))
-        (browse-url-default-handlers))
+        ;; Some URL handlers open files in Emacs.  We want to always
+        ;; open in a browser, so disable those.
+        (browse-url-default-handlers nil))
     (if tem
        (browse-url-of-file (expand-file-name tem))
       (error "No file on this line"))))