aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMichael Albinus2014-10-25 15:29:15 +0200
committerMichael Albinus2014-10-25 15:29:15 +0200
commitb5ea86d124f5282992303b0d6d7146659da34026 (patch)
treecac2b61b0e416095b9769900aee494356b824500 /lisp
parentc286a3e0afe3bca989d3a8cfc22ad005eec253a1 (diff)
downloademacs-b5ea86d124f5282992303b0d6d7146659da34026.tar.gz
emacs-b5ea86d124f5282992303b0d6d7146659da34026.zip
* net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
(tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled' during initialization. Fixes: debbugs:18774
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/tramp-gvfs.el14
2 files changed, 14 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cd535eafafa..7d198ddd5d1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12014-10-25 Michael Albinus <michael.albinus@gmx.de>
2
3 * net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
4 (tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
5 during initialization. (Bug#18774)
6
12014-10-25 Vincent Belaïche <vincentb1@users.sourceforge.net> 72014-10-25 Vincent Belaïche <vincentb1@users.sourceforge.net>
2 8
3 * ses.el (macroexp): add require for this package, so that 9 * ses.el (macroexp): add require for this package, so that
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el
index 569fb684144..1b4c1694a92 100644
--- a/lisp/net/tramp-gvfs.el
+++ b/lisp/net/tramp-gvfs.el
@@ -167,9 +167,10 @@
167;; Introspection data exist since GVFS 1.14. If there are no such 167;; Introspection data exist since GVFS 1.14. If there are no such
168;; data, we expect an earlier interface. 168;; data, we expect an earlier interface.
169(defconst tramp-gvfs-methods-mounttracker 169(defconst tramp-gvfs-methods-mounttracker
170 (dbus-introspect-get-method-names 170 (and tramp-gvfs-enabled
171 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker 171 (dbus-introspect-get-method-names
172 tramp-gvfs-interface-mounttracker) 172 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
173 tramp-gvfs-interface-mounttracker))
173 "The list of supported methods of the mount tracking interface.") 174 "The list of supported methods of the mount tracking interface.")
174 175
175(defconst tramp-gvfs-listmounts 176(defconst tramp-gvfs-listmounts
@@ -187,9 +188,10 @@ It has been changed in GVFS 1.14.")
187It has been changed in GVFS 1.14.") 188It has been changed in GVFS 1.14.")
188 189
189(defconst tramp-gvfs-mountlocation-signature 190(defconst tramp-gvfs-mountlocation-signature
190 (dbus-introspect-get-signature 191 (and tramp-gvfs-enabled
191 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker 192 (dbus-introspect-get-signature
192 tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation) 193 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
194 tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation))
193 "The D-Bus signature of the \"mountLocation\" method. 195 "The D-Bus signature of the \"mountLocation\" method.
194It has been changed in GVFS 1.14.") 196It has been changed in GVFS 1.14.")
195 197