Function: browse-url-of-region
browse-url-of-region is an autoloaded, interactive and byte-compiled
function defined in browse-url.el.gz.
Signature
(browse-url-of-region MIN MAX)
Documentation
Use a web browser to display the current region.
See browse-url for details.
Probably introduced at or before Emacs version 20.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
;;;###autoload
(defun browse-url-of-region (min max)
"Use a web browser to display the current region.
See `browse-url' for details."
(interactive "r")
(save-excursion
(save-restriction
(narrow-to-region min max)
(browse-url-of-buffer))))