Function: tramp-sshfs-file-name-handler
tramp-sshfs-file-name-handler is an autoloaded and byte-compiled
function defined in tramp-sshfs.el.gz.
Signature
(tramp-sshfs-file-name-handler OPERATION &rest ARGS)
Documentation
Invoke the sshfs handler for OPERATION and ARGS.
First arg specifies the OPERATION, second arg is a list of arguments to pass to the OPERATION.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-sshfs.el.gz
;;;###tramp-autoload
(defun tramp-sshfs-file-name-handler (operation &rest args)
"Invoke the sshfs handler for OPERATION and ARGS.
First arg specifies the OPERATION, second arg is a list of
arguments to pass to the OPERATION."
(if-let* ((fn (assoc operation tramp-sshfs-file-name-handler-alist)))
(prog1 (save-match-data (apply (cdr fn) args))
(setq tramp-debug-message-fnh-function (cdr fn)))
(prog1 (tramp-run-real-handler operation args)
(setq tramp-debug-message-fnh-function operation))))