Function: browse-url-at-point

browse-url-at-point is an autoloaded, interactive and byte-compiled function defined in browse-url.el.gz.

Signature

(browse-url-at-point &optional ARG)

Documentation

Open URL at point using a configurable method.

See browse-url for details. Optional prefix argument ARG non-nil inverts the value of the option browse-url-new-window-flag.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
;;;###autoload
(defun browse-url-at-point (&optional arg)
  "Open URL at point using a configurable method.
See `browse-url' for details.
Optional prefix argument ARG non-nil inverts the value of the option
`browse-url-new-window-flag'."
  (interactive "P")
  (let ((url (browse-url-url-at-point)))
    (if url
	(browse-url url (if arg
			    (not browse-url-new-window-flag)
			  browse-url-new-window-flag))
      (error "No URL found"))))