mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 11:50:51 -08:00
Fix Tramp support of GVFS built without FUSE
* lisp/net/tramp-gvfs.el (tramp-gvfs-enabled): Add check for running process "gvsd", since GVFS may be built without FUSE.
This commit is contained in:
parent
42ac31133e
commit
e561d14900
1 changed files with 4 additions and 1 deletions
|
|
@ -123,7 +123,10 @@
|
|||
(and (featurep 'dbusbind)
|
||||
(tramp-compat-funcall 'dbus-get-unique-name :session)
|
||||
(or (tramp-process-running-p "gvfs-fuse-daemon")
|
||||
(tramp-process-running-p "gvfsd-fuse"))))
|
||||
(tramp-process-running-p "gvfsd-fuse")
|
||||
;; Gvfs may be built without fuse
|
||||
;; (cf. https://lists.gnu.org/archive/html/tramp-devel/2025-10/msg00009.html).
|
||||
(tramp-process-running-p "gvfsd"))))
|
||||
"Non-nil when GVFS is available.")
|
||||
|
||||
;;;###tramp-autoload
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue