changeset 60127:283f8f92beaa

(ido-fallback-command): Pass user input to fallback command.
author Kim F. Storm <storm@cua.dk>
date Wed, 16 Feb 2005 21:36:41 +0000
parents ad298a549d12
children d5150d6da58f
files lisp/ido.el
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ido.el	Wed Feb 16 21:36:24 2005 +0000
+++ b/lisp/ido.el	Wed Feb 16 21:36:41 2005 +0000
@@ -2280,6 +2280,9 @@
 (defun ido-fallback-command ()
   "Fallback to non-ido version of current command."
   (interactive)
+  (let ((i (length ido-text)))
+    (while (> i 0)
+      (push (aref ido-text (setq i (1- i))) unread-command-events)))
   (setq ido-exit 'fallback)
   (exit-minibuffer))