From: John Wiegley Date: Tue, 6 Apr 2010 07:02:57 +0000 (-0400) Subject: Fixed duplicate names appearing in IDO buffer list (using virtuals) X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~579 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a07afc5fe9acb37ed00a65463357b61da8c5cb1;p=emacs.git Fixed duplicate names appearing in IDO buffer list (using virtuals) * 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. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5cd9e08d5e7..9d2142fd5f4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2010-04-06 John Wiegley + + * 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 * ido.el (ido-use-virtual-buffers, ido-virtual): Moved a ChangeLog diff --git a/lisp/ido.el b/lisp/ido.el index 53b18374d1e..8d43dec1f65 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -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))))