Function: browse-url-w3
browse-url-w3 is an autoloaded, interactive and byte-compiled function
defined in browse-url.el.gz.
This command is obsolete since 29.1.
Signature
(browse-url-w3 URL &optional NEW-WINDOW)
Documentation
Ask the w3 WWW browser to load URL.
Default to the URL around or before point.
When called interactively, if variable browse-url-new-window-flag is
non-nil, load the document in a new window. A non-nil interactive
prefix argument reverses the effect of browse-url-new-window-flag.
When called non-interactively, optional second argument NEW-WINDOW is
used instead of browse-url-new-window-flag.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
;;;###autoload
(defun browse-url-w3 (url &optional new-window)
"Ask the w3 WWW browser to load URL.
Default to the URL around or before point.
When called interactively, if variable `browse-url-new-window-flag' is
non-nil, load the document in a new window. A non-nil interactive
prefix argument reverses the effect of `browse-url-new-window-flag'.
When called non-interactively, optional second argument NEW-WINDOW is
used instead of `browse-url-new-window-flag'."
(declare (obsolete nil "29.1"))
(interactive (browse-url-interactive-arg "W3 URL: "))
(require 'w3) ; w3-fetch-other-window not autoloaded
(if (browse-url-maybe-new-window new-window)
(w3-fetch-other-window url)
(w3-fetch url)))