diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-05-18 10:50:36 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-05-18 10:51:02 -0700 |
commit | ae7056793ca78a62562b4a5c46ffbef66493ec60 (patch) | |
tree | a629dcdcb1734749f81031eab8c7ca752a1024bb /lisp/net | |
parent | 63ffb61396042f61705a9ab97fc80515d918c7e5 (diff) | |
download | emacs-ae7056793ca78a62562b4a5c46ffbef66493ec60.tar.gz |
Fix recent Tramp typo that broke the build
‘make bootstrap’ without this patch should reproduce the problem.
* lisp/net/tramp-gvfs.el (tramp-gvfs-enabled):
Autoload zeroconf-init.
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/tramp-gvfs.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el index 03870537c9a..38102318240 100644 --- a/lisp/net/tramp-gvfs.el +++ b/lisp/net/tramp-gvfs.el @@ -118,6 +118,7 @@ (defconst tramp-gvfs-enabled (ignore-errors (and (featurep 'dbusbind) + (autoload 'zeroconf-init "zeroconf") (tramp-compat-funcall 'dbus-get-unique-name :system) (tramp-compat-funcall 'dbus-get-unique-name :session) (or (tramp-compat-process-running-p "gvfs-fuse-daemon") |