From 0bb3aec2675779d0e0aba12a60274aedea49086a Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Thu, 16 Apr 2020 19:51:23 +0200 Subject: [PATCH] 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) --- lisp/net/tramp-gvfs.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 '("\\")) -- 2.39.5