]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Bug#24980
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 19 Dec 2016 08:32:30 +0000 (09:32 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 19 Dec 2016 08:32:30 +0000 (09:32 +0100)
* lisp/ido.el (ido-add-virtual-buffers-to-list):
Suppress Tramp invocation.  (Bug#24980)

lisp/ido.el

index 9df89c9fb61b47ab3058a59dfa3f8555a509c784..7b9cf074c92551e1cc6e93e7dcb71cf31b470592 100644 (file)
@@ -3505,7 +3505,7 @@ This is to make them appear as if they were \"virtual buffers\"."
       (when (equal name "")
        (setq name head))
       (and (not (equal name ""))
-          (null (get-file-buffer head))
+           (null (let (file-name-handler-alist) (get-file-buffer head)))
            (not (assoc name ido-virtual-buffers))
            (not (member name ido-temp-list))
            (not (ido-ignore-item-p name ido-ignore-buffers))