diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2023-09-21 09:21:20 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2023-09-21 09:21:20 +0200 |
commit | c966e7ec381fa32ad09dab4329d5ad27d87b5b98 (patch) | |
tree | 309b043396f9078dee8b279b90b9292fc7a9053c | |
parent | a2953ea30034e9ae5a8be8198bdd8a3d63f87777 (diff) | |
download | emacs-c966e7ec381fa32ad09dab4329d5ad27d87b5b98.tar.gz emacs-c966e7ec381fa32ad09dab4329d5ad27d87b5b98.tar.bz2 emacs-c966e7ec381fa32ad09dab4329d5ad27d87b5b98.zip |
* lisp/net/tramp.el (tramp-skeleton-write-region): Fix missing comma.
(Bug#66123)
-rw-r--r-- | lisp/net/tramp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 502ededcfb7..8ace0165ed9 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -3734,7 +3734,7 @@ BODY is the backend specific code." (let ((inhibit-file-name-handlers `(tramp-file-name-handler tramp-crypt-file-name-handler - . inhibit-file-name-handlers)) + . ,inhibit-file-name-handlers)) (inhibit-file-name-operation 'write-region)) (find-file-name-handler ,visit 'write-region)))) ;; We use this to save the value of |