1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 08:11:05 -08:00

* net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)

(tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
during initialization.

Fixes: debbugs:18774
This commit is contained in:
Michael Albinus 2014-10-25 15:29:15 +02:00
parent c286a3e0af
commit b5ea86d124
2 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2014-10-25 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
(tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
during initialization. (Bug#18774)
2014-10-25 Vincent Belaïche <vincentb1@users.sourceforge.net>
* ses.el (macroexp): add require for this package, so that

View file

@ -167,9 +167,10 @@
;; Introspection data exist since GVFS 1.14. If there are no such
;; data, we expect an earlier interface.
(defconst tramp-gvfs-methods-mounttracker
(dbus-introspect-get-method-names
:session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
tramp-gvfs-interface-mounttracker)
(and tramp-gvfs-enabled
(dbus-introspect-get-method-names
:session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
tramp-gvfs-interface-mounttracker))
"The list of supported methods of the mount tracking interface.")
(defconst tramp-gvfs-listmounts
@ -187,9 +188,10 @@ It has been changed in GVFS 1.14.")
It has been changed in GVFS 1.14.")
(defconst tramp-gvfs-mountlocation-signature
(dbus-introspect-get-signature
:session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation)
(and tramp-gvfs-enabled
(dbus-introspect-get-signature
:session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation))
"The D-Bus signature of the \"mountLocation\" method.
It has been changed in GVFS 1.14.")