Function: browse-url-webpositive

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

Signature

(browse-url-webpositive URL &optional NEW-WINDOW)

Documentation

Ask the WebPositive WWW browser to load URL.

Default to the URL around or before point. The optional argument NEW-WINDOW is not used.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
;;;###autoload
(defun browse-url-webpositive (url &optional _new-window)
  "Ask the WebPositive WWW browser to load URL.
Default to the URL around or before point.
The optional argument NEW-WINDOW is not used."
  (interactive (browse-url-interactive-arg "URL: "))
  (setq url (browse-url-encode-url url))
  (let* ((process-environment (browse-url-process-environment)))
    (start-process (concat "WebPositive " url) nil "WebPositive" url)))