Function: ido-to-end

ido-to-end is a byte-compiled function defined in ido.el.gz.

Signature

(ido-to-end ITEMS)

Documentation

Move the elements from ITEMS to the end of ido-temp-list.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-to-end (items)
  "Move the elements from ITEMS to the end of `ido-temp-list'."
  (mapc
   (lambda (elem)
     (setq ido-temp-list (delq elem ido-temp-list)))
   items)
  (if ido-temp-list
      (nconc ido-temp-list items)
    (setq ido-temp-list items)))