Function: org-at-property-p

org-at-property-p is a byte-compiled function defined in org.el.gz.

Signature

(org-at-property-p)

Documentation

Non-nil when point is inside a property drawer.

See org-property-re for match data, if applicable.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-at-property-p ()
  "Non-nil when point is inside a property drawer.
See `org-property-re' for match data, if applicable."
  (save-excursion
    (beginning-of-line)
    (and (looking-at org-property-re)
	 (let ((property-drawer (save-match-data (org-get-property-block))))
	   (and property-drawer
		(>= (point) (car property-drawer))
		(< (point) (cdr property-drawer)))))))