aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2016-12-19 09:32:30 +0100
committerMichael Albinus2016-12-19 09:32:30 +0100
commit516b4c389ab7221726ac675bb7659476eae7ae35 (patch)
tree8d2a0e6db31e5968323d627e59c644ce94574ed8
parent5d1d00c34123aad92cffd913152987de05c5e713 (diff)
downloademacs-516b4c389ab7221726ac675bb7659476eae7ae35.tar.gz
emacs-516b4c389ab7221726ac675bb7659476eae7ae35.zip
Fix Bug#24980
* lisp/ido.el (ido-add-virtual-buffers-to-list): Suppress Tramp invocation. (Bug#24980)
-rw-r--r--lisp/ido.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index 9df89c9fb61..7b9cf074c92 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -3505,7 +3505,7 @@ This is to make them appear as if they were \"virtual buffers\"."
3505 (when (equal name "") 3505 (when (equal name "")
3506 (setq name head)) 3506 (setq name head))
3507 (and (not (equal name "")) 3507 (and (not (equal name ""))
3508 (null (get-file-buffer head)) 3508 (null (let (file-name-handler-alist) (get-file-buffer head)))
3509 (not (assoc name ido-virtual-buffers)) 3509 (not (assoc name ido-virtual-buffers))
3510 (not (member name ido-temp-list)) 3510 (not (member name ido-temp-list))
3511 (not (ido-ignore-item-p name ido-ignore-buffers)) 3511 (not (ido-ignore-item-p name ido-ignore-buffers))