diff options
| -rw-r--r-- | lisp/net/tramp-gvfs.el | 4 |
1 files changed, 3 insertions, 1 deletions
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'." | |||
| 912 | #'dbus-call-method #'dbus-call-method-asynchronously)) | 912 | #'dbus-call-method #'dbus-call-method-asynchronously)) |
| 913 | (args (append (list ,bus ,service ,path ,interface ,method) | 913 | (args (append (list ,bus ,service ,path ,interface ,method) |
| 914 | (if ,synchronous (list ,@args) (list 'ignore ,@args))))) | 914 | (if ,synchronous (list ,@args) (list 'ignore ,@args))))) |
| 915 | (tramp-dbus-function ,vec func args))) | 915 | ;; We use `dbus-ignore-errors', because this macro is also called |
| 916 | ;; when loading. | ||
| 917 | (dbus-ignore-errors (tramp-dbus-function ,vec func args)))) | ||
| 916 | 918 | ||
| 917 | (font-lock-add-keywords 'emacs-lisp-mode '("\\<with-tramp-dbus-call-method\\>")) | 919 | (font-lock-add-keywords 'emacs-lisp-mode '("\\<with-tramp-dbus-call-method\\>")) |
| 918 | 920 | ||