aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/ido.el2
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7147ed85db6..525d7ffc6b0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-09-16 Chong Yidong <cyd@stupidchicken.com>
2
3 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
4
12010-09-16 Michael Albinus <michael.albinus@gmx.de> 52010-09-16 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload 7 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
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."
3403 (if default 3403 (if default
3404 (setq ido-temp-list 3404 (setq ido-temp-list
3405 (cons default (delete default ido-temp-list)))) 3405 (cons default (delete default ido-temp-list))))
3406 (if ido-use-virtual-buffers
3407 (ido-add-virtual-buffers-to-list))
3406 (run-hooks 'ido-make-buffer-list-hook) 3408 (run-hooks 'ido-make-buffer-list-hook)
3407 ido-temp-list)) 3409 ido-temp-list))
3408 3410