Function: tramp-fuse-mount-spec
tramp-fuse-mount-spec is a byte-compiled function defined in
tramp-fuse.el.gz.
Signature
(tramp-fuse-mount-spec VEC)
Documentation
Return local mount spec of VEC.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-fuse.el.gz
;; File name helper functions.
(defun tramp-fuse-mount-spec (vec)
"Return local mount spec of VEC."
(if-let* ((host (tramp-file-name-host vec))
(user (tramp-file-name-user vec)))
(format "%s@%s:/" user host)
(format "%s:/" host)))