* 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-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
(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))))