Function: ido-set-matches

ido-set-matches is a byte-compiled function defined in ido.el.gz.

Signature

(ido-set-matches)

Documentation

Set ido-matches to the list of items matching prompt.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-set-matches ()
  "Set `ido-matches' to the list of items matching prompt."
  (when ido-rescan
    (setq ido-matches (ido-set-matches-1 (reverse ido-cur-list) (not ido-rotate))
	  ido-rotate nil)))