From: Michael Albinus Date: Thu, 16 Apr 2020 17:51:23 +0000 (+0200) Subject: Ignore D-Bus errors in tramp-gvfs.el (Bug#40655) X-Git-Tag: emacs-28.0.90~7566 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0bb3aec2675779d0e0aba12a60274aedea49086a;p=emacs.git Ignore D-Bus errors in tramp-gvfs.el (Bug#40655) * lisp/net/tramp-gvfs.el (with-tramp-dbus-call-method): Ignore D-Bus errors. (Bug#40655) --- diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el index 526c564ee33..f19e510eb67 100644 --- a/lisp/net/tramp-gvfs.el +++ b/lisp/net/tramp-gvfs.el @@ -912,7 +912,9 @@ or `dbus-call-method-asynchronously'." #'dbus-call-method #'dbus-call-method-asynchronously)) (args (append (list ,bus ,service ,path ,interface ,method) (if ,synchronous (list ,@args) (list 'ignore ,@args))))) - (tramp-dbus-function ,vec func args))) + ;; We use `dbus-ignore-errors', because this macro is also called + ;; when loading. + (dbus-ignore-errors (tramp-dbus-function ,vec func args)))) (font-lock-add-keywords 'emacs-lisp-mode '("\\"))