Function: iswitchb-toggle-case

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

Signature

(iswitchb-toggle-case)

Documentation

Toggle the value of variable iswitchb-case(var)/iswitchb-case(fun).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
;;; TOGGLE FUNCTIONS

(defun iswitchb-toggle-case ()
  "Toggle the value of variable `iswitchb-case'."
  (interactive)
  (setq iswitchb-case (not iswitchb-case))
  ;; ask for list to be regenerated.
  (setq iswitchb-rescan t))