bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#15144: 24.3.50; browse-url silently fails


From: Thierry Volpiatto
Subject: bug#15144: 24.3.50; browse-url silently fails
Date: Tue, 20 Aug 2013 19:22:01 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

Sam Steingold <sds@gnu.org> writes:

> browse-url silently fails:
>
> $ emacs -Q
> M-x browse-url RET http://gnu.org RET
>
> the *Messages* buffer now has this:
>
> Waiting for process to die...done
>
> The google chrome (the default browser) does not display anyting.

Looks that xdg-open actually returns an error:

xdg-open http://www.google.fr
Error: No running window found

So it is more a bug in xdg-open than a bug in Emacs.
Though the function calling it should use `start-process` instead of
`call-process` IMO.

The other functions calling directly a browser seem to works.
Bypassing xdg-open function work around this bug:

(defvar browse-url-never-use-xdg-open t)
(defadvice browse-url-can-use-xdg-open (around no-xdg-open activate)
  (unless browse-url-never-use-xdg-open
    ad-do-it))
 
-- 
Thierry
Get my Gnupg key:
gpg --keyserver pgp.mit.edu --recv-keys 59F29997 






reply via email to

[Prev in Thread] Current Thread [Next in Thread]