Function: browse-url-w3-gnudoit
browse-url-w3-gnudoit is an autoloaded, interactive and byte-compiled
function defined in browse-url.el.gz.
This command is obsolete since 25.1.
Signature
(browse-url-w3-gnudoit URL &optional NEW-WINDOW)
Documentation
Ask another Emacs running emacsclient to load the URL using the W3 browser.
The browse-url-gnudoit-program program is used with options given by
browse-url-gnudoit-args. Default to the URL around or before point.
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-w3-gnudoit (url &optional _new-window)
"Ask another Emacs running emacsclient to load the URL using the W3 browser.
The `browse-url-gnudoit-program' program is used with options given by
`browse-url-gnudoit-args'. Default to the URL around or before point."
(declare (obsolete nil "25.1"))
(interactive (browse-url-interactive-arg "W3 URL: "))
(apply #'start-process (concat "gnudoit:" url) nil
browse-url-gnudoit-program
(append browse-url-gnudoit-args
(list (concat "(w3-fetch \"" url "\")")
"(raise-frame)"))))