Function: org-entry-member-in-multivalued-property

org-entry-member-in-multivalued-property is a byte-compiled function defined in org.el.gz.

Signature

(org-entry-member-in-multivalued-property EPOM PROPERTY VALUE)

Documentation

Is VALUE one of the words in the PROPERTY in EPOM? EPOM is an element, marker, or buffer position.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-entry-member-in-multivalued-property (epom property value)
  "Is VALUE one of the words in the PROPERTY in EPOM?
EPOM is an element, marker, or buffer position."
  (let* ((old (org-entry-get epom property))
	 (values (and old (split-string old))))
    (setq value (org-entry-protect-space value))
    (member value values)))