diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-09-16 18:32:54 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-09-16 18:32:54 -0400 |
commit | dff0fdc364fc834651dff8ca794cd2c982bd8fa5 (patch) | |
tree | 486899f8574efe4e71125d8497bafa7028250c0f /lisp/ido.el | |
parent | c6f2191fa7697f36b95c6b440ef9b4a6184d9642 (diff) | |
download | emacs-dff0fdc364fc834651dff8ca794cd2c982bd8fa5.tar.gz |
* ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 858ee3ed5b0..2df9b8666af 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -3403,6 +3403,8 @@ for first matching file." (if default (setq ido-temp-list (cons default (delete default ido-temp-list)))) + (if ido-use-virtual-buffers + (ido-add-virtual-buffers-to-list)) (run-hooks 'ido-make-buffer-list-hook) ido-temp-list)) |