diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2022-02-13 20:50:51 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2022-02-13 20:50:51 +0100 |
commit | bd07d4fac9da40cecf6a5936fd4b4c8ebb751586 (patch) | |
tree | 0acd5ceaa96eed064d242d5a23bd28f9731becfc /lisp/net/tramp-smb.el | |
parent | fc44bc6255733fa99e00932ca515f400b9c67aec (diff) | |
download | emacs-bd07d4fac9da40cecf6a5936fd4b4c8ebb751586.tar.gz emacs-bd07d4fac9da40cecf6a5936fd4b4c8ebb751586.tar.bz2 emacs-bd07d4fac9da40cecf6a5936fd4b4c8ebb751586.zip |
Improve Tramp's process-file implementations
* lisp/net/tramp-adb.el (tramp-adb-handle-process-file)
* lisp/net/tramp-sh.el (tramp-sh-handle-process-file):
* lisp/net/tramp-smb.el (tramp-smb-handle-process-file):
* lisp/net/tramp-sshfs.el (tramp-sshfs-handle-process-file):
Improve implementation. (Bug#53854)
* test/lisp/net/tramp-tests.el (tramp-test28-process-file)
(tramp--test-check-files, tramp-test47-unload): Extend tests.
Diffstat (limited to 'lisp/net/tramp-smb.el')
-rw-r--r-- | lisp/net/tramp-smb.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-smb.el b/lisp/net/tramp-smb.el index 6515519680c..f52fa0a93be 100644 --- a/lisp/net/tramp-smb.el +++ b/lisp/net/tramp-smb.el @@ -1284,7 +1284,7 @@ component is used as the target of the symlink." (setq infile (tramp-compat-file-name-unquote (expand-file-name infile))) (if (tramp-equal-remote default-directory infile) ;; INFILE is on the same remote host. - (setq input (tramp-file-local-name infile)) + (setq input (tramp-unquote-file-local-name infile)) ;; INFILE must be copied to remote host. (setq input (tramp-make-tramp-temp-file v) tmpinput (tramp-make-tramp-file-name v input)) |