+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.
(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
(provide 'browse-url)
-;; arch-tag: d2079573-5c06-4097-9598-f550fba19430
;;; browse-url.el ends here