Function: org-property-inherit-p

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

Signature

(org-property-inherit-p PROPERTY)

Documentation

Return a non-nil value if PROPERTY should be inherited.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-property-inherit-p (property)
  "Return a non-nil value if PROPERTY should be inherited."
  (cond
   ((eq org-use-property-inheritance t) t)
   ((not org-use-property-inheritance) nil)
   ((stringp org-use-property-inheritance)
    (string-match org-use-property-inheritance property))
   ((listp org-use-property-inheritance)
    (member-ignore-case property org-use-property-inheritance))
   (t (error "Invalid setting of `org-use-property-inheritance'"))))