aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2017-03-18 17:44:27 +0100
committerMichael Albinus2017-03-18 17:44:27 +0100
commite0eb1af55f7b6d0b41e6f0180438f8317628894b (patch)
tree7ff0dce03d101bbead4718de9c2da5b6ed02b4a7
parentcfb5f7e6ac3c8236a97b75fe87de585bd1f45075 (diff)
downloademacs-e0eb1af55f7b6d0b41e6f0180438f8317628894b.tar.gz
emacs-e0eb1af55f7b6d0b41e6f0180438f8317628894b.zip
Fix Bug#26156
* lisp/net/tramp.el (tramp-completion-file-name-handler-alist): <expand-file-name>: Remove handler. (Bug#26156)
-rw-r--r--lisp/net/tramp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index aadf09e48fe..969092f517f 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -1052,7 +1052,7 @@ means to use always cached values for the directory contents."
1052 1052
1053;;;###autoload 1053;;;###autoload
1054(defconst tramp-completion-file-name-handler-alist 1054(defconst tramp-completion-file-name-handler-alist
1055 '((expand-file-name . tramp-completion-handle-expand-file-name) 1055 '(;(expand-file-name . tramp-completion-handle-expand-file-name)
1056 (file-name-all-completions 1056 (file-name-all-completions
1057 . tramp-completion-handle-file-name-all-completions) 1057 . tramp-completion-handle-file-name-all-completions)
1058 (file-name-completion . tramp-completion-handle-file-name-completion)) 1058 (file-name-completion . tramp-completion-handle-file-name-completion))