]> git.eshelyaron.com Git - emacs.git/commitdiff
Fixed duplicate names appearing in IDO buffer list (using virtuals)
authorJohn Wiegley <jwiegley@gmail.com>
Tue, 6 Apr 2010 07:02:57 +0000 (03:02 -0400)
committerJohn Wiegley <jwiegley@gmail.com>
Tue, 6 Apr 2010 07:02:57 +0000 (03:02 -0400)
* ido.el (ido-add-virtual-buffers-to-list): Fixed duplicated names
appearing in buffer list (if a live buffer name matched a recentf
file basename).  Should use uniqify to offer a real solution.

lisp/ChangeLog
lisp/ido.el

index 5cd9e08d5e73a17721dae6ee2aa5bb3424664855..9d2142fd5f41cdd1393421290fbf64cfdf356920 100644 (file)
@@ -1,3 +1,9 @@
+2010-04-06  John Wiegley  <jwiegley@gmail.com>
+
+       * ido.el (ido-add-virtual-buffers-to-list): Fixed duplicated names
+       appearing in buffer list (if a live buffer name matched a recentf
+       file basename).  Should use uniqify to offer a real solution.
+
 2010-04-06  John Wiegley  <jwiegley@gmail.com>
 
        * ido.el (ido-use-virtual-buffers, ido-virtual): Moved a ChangeLog
index 53b18374d1e0157f50df5865d14bf8371b8a3036..8d43dec1f65f17522eacacc825579fe921e1c028 100644 (file)
@@ -3408,6 +3408,7 @@ This is to make them appear as if they were \"virtual buffers\"."
       (and (setq name (file-name-nondirectory head))
            (null (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))
            ;;(file-exists-p head)
            (push (cons name head) ido-virtual-buffers))))