]> git.eshelyaron.com Git - emacs.git/commitdiff
From Lawrence Mitchell <wence@gmx.li>: Don't hang in browse-url-xdg-open.
authorJan Djärv <jan.h.d@swipnet.se>
Wed, 22 Jun 2011 16:44:53 +0000 (18:44 +0200)
committerJan Djärv <jan.h.d@swipnet.se>
Wed, 22 Jun 2011 16:44:53 +0000 (18:44 +0200)
* net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
  BUFFER in call-process.

lisp/ChangeLog
lisp/net/browse-url.el

index 57f4608ab72d66968678109dbfc4f26ab45f6ed9..6fb8a993d5753e194a597297008c7f2f1022b21a 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-22  Lawrence Mitchell  <wence@gmx.li>
+
+       * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
+       BUFFER in call-process.
+
 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
index c1ec3f0ed138f118e0540e5d886a4f2456eecb40..d9e6827d2df0e01afc381c615ddd8508ee2c0829 100644 (file)
@@ -958,7 +958,7 @@ Galeon, Konqueror, Netscape, Mosaic, Lynx in an xterm, and then W3."
 ;;;###autoload
 (defun browse-url-xdg-open (url &optional new-window)
   (interactive (browse-url-interactive-arg "URL: "))
-  (call-process "nohup" nil nil nil "xdg-open" url))
+  (call-process "xdg-open" nil 0 nil url))
 
 ;;;###autoload
 (defun browse-url-netscape (url &optional new-window)