Function: iswitchb-next-match
iswitchb-next-match is an interactive and byte-compiled function
defined in iswitchb.el.gz.
Signature
(iswitchb-next-match)
Documentation
Put first element of iswitchb-matches at the end of the list.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defun iswitchb-next-match ()
"Put first element of `iswitchb-matches' at the end of the list."
(interactive)
(let ((next (cadr iswitchb-matches)))
(if (and (null next) iswitchb-virtual-buffers)
(setq recentf-list
(iswitchb-chop recentf-list
(cdr (cadr iswitchb-virtual-buffers))))
(setq iswitchb-buflist (iswitchb-chop iswitchb-buflist next)))
(setq iswitchb-rescan t)))