Function: org-property-values

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

Signature

(org-property-values KEY)

Documentation

List all non-nil values of property KEY in current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-property-values (key)
  "List all non-nil values of property KEY in current buffer."
  (org-with-wide-buffer
   (goto-char (point-min))
   (let ((case-fold-search t)
	 (re (org-re-property key))
	 values)
     (while (re-search-forward re nil t)
       (push (org-entry-get (point) key) values))
     (delete-dups values))))