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