Function: org-region-active-p

org-region-active-p is a byte-compiled function defined in org-compat.el.

Signature

(org-region-active-p)

Documentation

Non-nil when the region active.

Unlike to use-region-p, this function also checks org-ignore-region.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(defun org-region-active-p ()
  "Non-nil when the region active.
Unlike to `use-region-p', this function also checks
`org-ignore-region'."
  (and (not org-ignore-region) (use-region-p)))