Function: org-pos-in-match-range

org-pos-in-match-range is a byte-compiled function defined in org-macs.el.gz.

Signature

(org-pos-in-match-range POS N)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
;;; Regexp matching

(defsubst org-pos-in-match-range (pos n)
  (and (match-beginning n)
       (<= (match-beginning n) pos)
       (>= (match-end n) pos)))