made opera open a new subwindow

original commit: a885a7d8887bdf05f755e27a7cefa7578d251390
This commit is contained in:
Robby Findler 2002-01-15 14:16:17 +00:00
parent 05b3a0cab1
commit 3b96f6069f

View File

@ -34,9 +34,10 @@
(lambda (browser-path)
;; opera may not return -- always open asyncronously
;; opera starts a new browser automatically, if it can't find one
(let-values ([(out in id err status) (apply
(let-values ([(out in id err status)
(apply
values
(process* browser-path "-remote" (format "openURL(~a)" str)))])
(process* browser-path "-remote" (format "openURL(~a,new-window)" str)))])
(close-output-port in)
(close-input-port out)
(close-input-port err)))]