diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/net/tramp-gvfs.el | 14 |
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 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-10-25 Vincent Belaïche <vincentb1@users.sourceforge.net> | 7 | 2014-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.") | |||
| 187 | It has been changed in GVFS 1.14.") | 188 | It 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. |
| 194 | It has been changed in GVFS 1.14.") | 196 | It has been changed in GVFS 1.14.") |
| 195 | 197 | ||