1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00

Merge from trunk.

This commit is contained in:
Paul Eggert 2011-06-22 11:18:38 -07:00
commit d231e1987e
2 changed files with 6 additions and 1 deletions

View 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

View 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)