# HG changeset patch # User Chong Yidong # Date 1229769006 0 # Node ID e26b0f24c1e18e60ffd73db67e57a79fc35e9a72 # Parent 76cdf125b2f569f96a24e3772ad53d20d7d83993 (ido-read-internal): Handle `confirm' and `confirm-after-completion' values for the require-match argument. diff -r 76cdf125b2f5 -r e26b0f24c1e1 lisp/ido.el --- a/lisp/ido.el Sat Dec 20 10:29:46 2008 +0000 +++ b/lisp/ido.el Sat Dec 20 10:30:06 2008 +0000 @@ -1803,6 +1803,10 @@ DEFAULT if given is the default item to start with. If REQUIRE-MATCH is non-nil, an existing file must be selected. If INITIAL is non-nil, it specifies the initial input string." + ;; Ido does not implement the `confirm' and + ;; `confirm-after-completion' values of REQUIRE-MATCH. + (if (memq require-match '(confirm confirm-after-completion)) + (setq require-match nil)) (let ((ido-cur-item item) (ido-entry-buffer (current-buffer))