Function: iswitchb-case

iswitchb-case is a byte-compiled function defined in iswitchb.el.gz.

Signature

(iswitchb-case)

Documentation

Return non-nil if we should ignore case when matching.

See the variable iswitchb-case(var)/iswitchb-case(fun) for details.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defun iswitchb-case ()
  "Return non-nil if we should ignore case when matching.
See the variable `iswitchb-case' for details."
  (if iswitchb-case
      (if (featurep 'xemacs)
	  (isearch-no-upper-case-p iswitchb-text)
	(isearch-no-upper-case-p iswitchb-text t))))