Function: iswitchb-toggle-regexp

iswitchb-toggle-regexp is an interactive and byte-compiled function defined in iswitchb.el.gz.

Signature

(iswitchb-toggle-regexp)

Documentation

Toggle the value of iswitchb-regexp.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defun iswitchb-toggle-regexp ()
  "Toggle the value of `iswitchb-regexp'."
  (interactive)
  (setq iswitchb-regexp (not iswitchb-regexp))
  ;; ask for list to be regenerated.
  (setq iswitchb-rescan t))