Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
78cfc6ad
Commit
78cfc6ad
authored
Apr 02, 2004
by
David Kastrup
Browse files
(browse-url-generic): Use call-process
instead of start-process to allow browsers that fork and detach.
parent
6555a8dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/net/browse-url.el
lisp/net/browse-url.el
+3
-3
No files found.
lisp/net/browse-url.el
View file @
78cfc6ad
;;; browse-url.el --- pass a URL to a WWW browser
;; Copyright (C) 1995, 96, 97, 98, 99, 2000, 2001
;; Copyright (C) 1995, 96, 97, 98, 99, 2000, 2001
, 2004
;; Free Software Foundation, Inc.
;; Author: Denis Howe <dbh@doc.ic.ac.uk>
...
...
@@ -1352,8 +1352,8 @@ don't offer a form of remote control."
(
interactive
(
browse-url-interactive-arg
"URL: "
))
(
if
(
not
browse-url-generic-program
)
(
error
"No browser defined (`browse-url-generic-program')"
))
(
apply
'
start
-process
(
concat
browse-url-generic-program
url
)
nil
browse-url-generic-program
(
apply
'
call
-process
browse-url-generic-program
nil
0
nil
(
append
browse-url-generic-args
(
list
url
))))
;;;###autoload
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment