Function: url-view-url

url-view-url is an autoloaded, interactive and byte-compiled function defined in url-util.el.gz.

Signature

(url-view-url &optional NO-SHOW)

Documentation

View the current document's URL.

Optional argument NO-SHOW means just return the URL, don't show it in the minibuffer.

This uses url-current-object, set locally to the buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-util.el.gz
;;;###autoload
(defun url-view-url (&optional no-show)
  "View the current document's URL.
Optional argument NO-SHOW means just return the URL, don't show it in
the minibuffer.

This uses `url-current-object', set locally to the buffer."
  (interactive)
  (if (not url-current-object)
      nil
    (if no-show
	(url-recreate-url url-current-object)
      (message "%s" (url-recreate-url url-current-object)))))