Function: browse-url-gnome-moz
browse-url-gnome-moz is an autoloaded, interactive and byte-compiled
function defined in browse-url.el.gz.
This command is obsolete since 25.1.
Signature
(browse-url-gnome-moz URL &optional NEW-WINDOW)
Documentation
Ask Mozilla/Netscape to load URL via the GNOME program gnome-moz-remote.
Default to the URL around or before point. The strings in variable
browse-url-gnome-moz-arguments are also passed.
When called interactively, if variable browse-url-new-window-flag is
non-nil, load the document in a new browser window, otherwise use an
existing one. 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.
Probably introduced at or before Emacs version 21.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
;;;###autoload
(defun browse-url-gnome-moz (url &optional new-window)
"Ask Mozilla/Netscape to load URL via the GNOME program `gnome-moz-remote'.
Default to the URL around or before point. The strings in variable
`browse-url-gnome-moz-arguments' are also passed.
When called interactively, if variable `browse-url-new-window-flag' is
non-nil, load the document in a new browser window, otherwise use an
existing one. 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 "25.1"))
(interactive (browse-url-interactive-arg "URL: "))
(apply #'start-process (concat "gnome-moz-remote " url)
nil
browse-url-gnome-moz-program
(append
browse-url-gnome-moz-arguments
(if (browse-url-maybe-new-window new-window)
'("--newwin"))
(list "--raise" url))))