Both of these functions appear to require starting a new firefox. (??)

(defun browse-url-firefox (url &optional new-window )
  ;;new-window ignored
"Ask the firefox browser to  load URL."
 (apply 'call-process "firefox" nil
         0 nil (list url)))

;;;

(defun browse-url-firefox (url &optional new-window)
  (call-process "firefox" nil 0 nil url))



_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to