Function: iswitchb-exit-minibuffer
iswitchb-exit-minibuffer is an interactive and byte-compiled function
defined in iswitchb.el.gz.
Signature
(iswitchb-exit-minibuffer)
Documentation
Exit minibuffer, but make sure we have a match if one is needed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defun iswitchb-exit-minibuffer ()
"Exit minibuffer, but make sure we have a match if one is needed."
(interactive)
(if (or (not iswitchb-require-match)
(iswitchb-existing-buffer-p))
(progn
(setq iswitchb-exit 'usefirst)
(throw 'exit nil))))