Function: region-indistinguishable-p

region-indistinguishable-p is a byte-compiled function defined in simple.el.gz.

Signature

(region-indistinguishable-p)

Documentation

Whether the current region is not denoted visually.

This holds when the region is inactive, or when the region face cannot be distinguished from the default face.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun region-indistinguishable-p ()
  "Whether the current region is not denoted visually.
This holds when the region is inactive, or when the `region' face
cannot be distinguished from the `default' face."
  (not (and (region-active-p)
            (face-differs-from-default-p 'region))))