Function: region-noncontiguous-p

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

Signature

(region-noncontiguous-p)

Documentation

Return non-nil if the region contains several pieces.

An example is a rectangular region handled as a list of separate contiguous regions for each line.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun region-noncontiguous-p ()
  "Return non-nil if the region contains several pieces.
An example is a rectangular region handled as a list of
separate contiguous regions for each line."
  (let ((bounds (region-bounds))) (and (cdr bounds) bounds)))