# HG changeset patch # User Kim F. Storm # Date 1118232046 0 # Node ID 37a47a1de22655ce6914664c9d2101477bc5ddb2 # Parent e8e05dcc38c1a6d9555dd15536f5c866531b53a5 (ido-read-file-name): Fallback to read-file-name on C-f also when reading directory name. diff -r e8e05dcc38c1 -r 37a47a1de226 lisp/ido.el --- a/lisp/ido.el Wed Jun 08 09:49:58 2005 +0000 +++ b/lisp/ido.el Wed Jun 08 12:00:46 2005 +0000 @@ -4193,7 +4193,9 @@ (eq (get this-command 'ido) 'dir) (memq this-command ido-read-file-name-as-directory-commands)) (setq filename - (ido-read-directory-name prompt dir default-filename mustmatch initial))) + (ido-read-directory-name prompt dir default-filename mustmatch initial)) + (if (eq ido-exit 'fallback) + (setq filename 'fallback))) ((and (not (eq (get this-command 'ido) 'ignore)) (not (memq this-command ido-read-file-name-non-ido)) (or (null predicate) (eq predicate 'file-exists-p)))