Function: org-pos-in-match-range
org-pos-in-match-range is a byte-compiled function defined in
org-macs.el.
Signature
(org-pos-in-match-range POS N)
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
;;; Regexp matching
(defsubst org-pos-in-match-range (pos n)
(and (match-beginning n)
(<= (match-beginning n) pos)
(>= (match-end n) pos)))