Function: tramp-fuse-handle-file-executable-p
tramp-fuse-handle-file-executable-p is a byte-compiled function
defined in tramp-fuse.el.gz.
Signature
(tramp-fuse-handle-file-executable-p FILENAME)
Documentation
Like file-executable-p for Tramp files.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-fuse.el.gz
(defun tramp-fuse-handle-file-executable-p (filename)
"Like `file-executable-p' for Tramp files."
(with-parsed-tramp-file-name (expand-file-name filename) nil
(with-tramp-file-property v localname "file-executable-p"
(file-executable-p (tramp-fuse-local-file-name filename)))))