aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMichael Albinus2021-03-12 16:09:42 +0100
committerMichael Albinus2021-03-12 16:09:42 +0100
commite609bf59ebb23c10f0e9f56df38f64be37de06dd (patch)
treeac27e8e49185bee006cb5bc8a16ca1e8c3ee7b75 /lisp
parenta0854f939ce3a1de2c8cbc5e38b106a8df4480f6 (diff)
downloademacs-e609bf59ebb23c10f0e9f56df38f64be37de06dd.tar.gz
emacs-e609bf59ebb23c10f0e9f56df38f64be37de06dd.zip
Tramp sshfs fixes
* doc/misc/tramp.texi (FUSE setup): Fix typo. * lisp/net/tramp-sshfs.el (tramp-sshfs-handle-set-file-modes): Use `tramp-compat-set-file-modes'. * test/lisp/net/tramp-tests.el (tramp-test43-asynchronous-requests): Don't run for tramp-sshfs.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/net/tramp-sshfs.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/net/tramp-sshfs.el b/lisp/net/tramp-sshfs.el
index ce9412c0bea..2a00d5ce678 100644
--- a/lisp/net/tramp-sshfs.el
+++ b/lisp/net/tramp-sshfs.el
@@ -276,7 +276,8 @@ arguments to pass to the OPERATION."
276 (with-parsed-tramp-file-name filename nil 276 (with-parsed-tramp-file-name filename nil
277 (unless (and (eq flag 'nofollow) (file-symlink-p filename)) 277 (unless (and (eq flag 'nofollow) (file-symlink-p filename))
278 (tramp-flush-file-properties v localname) 278 (tramp-flush-file-properties v localname)
279 (set-file-modes (tramp-fuse-local-file-name filename) mode flag)))) 279 (tramp-compat-set-file-modes
280 (tramp-fuse-local-file-name filename) mode flag))))
280 281
281(defun tramp-sshfs-handle-write-region 282(defun tramp-sshfs-handle-write-region
282 (start end filename &optional append visit lockname mustbenew) 283 (start end filename &optional append visit lockname mustbenew)