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
e4adf61e
Commit
e4adf61e
authored
Oct 07, 2010
by
Glenn Morris
Browse files
* lisp/net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
parent
360ac530
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/net/browse-url.el
lisp/net/browse-url.el
+1
-2
No files found.
lisp/ChangeLog
View file @
e4adf61e
2010-10-08 Glenn Morris <rgm@gnu.org>
* net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
2010-10-07 Chong Yidong <cyd@stupidchicken.com>
* cus-edit.el (custom-variable, custom-face): Doc fix.
...
...
lisp/net/browse-url.el
View file @
e4adf61e
...
...
@@ -939,7 +939,7 @@ Galeon, Konqueror, Netscape, Mosaic, Lynx in an xterm, and then W3."
(
interactive
(
browse-url-interactive-arg
"URL: "
))
(
call-process
"/bin/sh"
nil
nil
nil
"-c"
(
concat
"nohup xdg-open "
url
(
concat
"nohup xdg-open "
(
shell-quote-argument
url
)
">/dev/null 2>&1 </dev/null"
)))
;;;###autoload
...
...
@@ -1571,5 +1571,4 @@ from `browse-url-elinks-wrapper'."
(
provide
'browse-url
)
;; arch-tag: d2079573-5c06-4097-9598-f550fba19430
;;; browse-url.el ends here
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