diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/ido.el | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5cd9e08d5e7..9d2142fd5f4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2010-04-06 John Wiegley <jwiegley@gmail.com> | 1 | 2010-04-06 John Wiegley <jwiegley@gmail.com> |
| 2 | 2 | ||
| 3 | * ido.el (ido-add-virtual-buffers-to-list): Fixed duplicated names | ||
| 4 | appearing in buffer list (if a live buffer name matched a recentf | ||
| 5 | file basename). Should use uniqify to offer a real solution. | ||
| 6 | |||
| 7 | 2010-04-06 John Wiegley <jwiegley@gmail.com> | ||
| 8 | |||
| 3 | * ido.el (ido-use-virtual-buffers, ido-virtual): Moved a ChangeLog | 9 | * ido.el (ido-use-virtual-buffers, ido-virtual): Moved a ChangeLog |
| 4 | comment to code, and added a :version tag. | 10 | comment to code, and added a :version tag. |
| 5 | (ido-virtual-buffers): Moved defvar to fix byte-compiler warning. | 11 | (ido-virtual-buffers): Moved defvar to fix byte-compiler warning. |
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\"." | |||
| 3408 | (and (setq name (file-name-nondirectory head)) | 3408 | (and (setq name (file-name-nondirectory head)) |
| 3409 | (null (get-file-buffer head)) | 3409 | (null (get-file-buffer head)) |
| 3410 | (not (assoc name ido-virtual-buffers)) | 3410 | (not (assoc name ido-virtual-buffers)) |
| 3411 | (not (member name ido-temp-list)) | ||
| 3411 | (not (ido-ignore-item-p name ido-ignore-buffers)) | 3412 | (not (ido-ignore-item-p name ido-ignore-buffers)) |
| 3412 | ;;(file-exists-p head) | 3413 | ;;(file-exists-p head) |
| 3413 | (push (cons name head) ido-virtual-buffers)))) | 3414 | (push (cons name head) ido-virtual-buffers)))) |