]> code.delx.au - gnu-emacs/commitdiff
(browse-url-netscape): Fix ineffective "-noraise".
authorDave Love <fx@gnu.org>
Wed, 13 Jan 1999 12:55:54 +0000 (12:55 +0000)
committerDave Love <fx@gnu.org>
Wed, 13 Jan 1999 12:55:54 +0000 (12:55 +0000)
lisp/browse-url.el

index f7525b5a85207ce93cb229c7643f6ab8d277cd17..cc63b39c7bd0c3b7d20ab9897fded7c722c2cf37 100644 (file)
@@ -1,6 +1,6 @@
 ;;; browse-url.el --- Pass a URL to a WWW browser
 
-;; Copyright 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+;; Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 ;; Author: Denis Howe <dbh@doc.ic.ac.uk>
 ;; Maintainer: Dave Love <fx@gnu.org>
@@ -707,18 +707,20 @@ used instead of `browse-url-new-window-p'."
               (format "%%%x" (string-to-char (match-string 0 url))) t t url)))
   (let* ((process-environment (browse-url-process-environment))
          (process (apply 'start-process
-                       (concat "netscape " url) nil
-                       browse-url-netscape-program
-                       (append browse-url-netscape-arguments
-                               (if (eq window-system 'w32)
-                                   (list url)
-                                 (if new-window '("-noraise"))
-                                 (list "-remote"
-                                       (concat "openURL(" url
-                                               (if (browse-url-maybe-new-window
-                                                    new-window)
-                                                   ",new-window")
-                                               ")")))))))
+                        (concat "netscape " url) nil
+                        browse-url-netscape-program
+                        (append
+                         browse-url-netscape-arguments
+                         (if (eq window-system 'w32)
+                             (list url)
+                           (append
+                            (if new-window '("-noraise"))
+                            (list "-remote"
+                                  (concat "openURL(" url
+                                          (if (browse-url-maybe-new-window
+                                               new-window)
+                                              ",new-window")
+                                          ")"))))))))
     (set-process-sentinel process
                          (list 'lambda '(process change)
                                (list 'browse-url-netscape-sentinel 'process url)))))