Titus von der Malsburg <[email protected]> writes: > (let ((org-property-separators '(("PHONE" . "X")))) > (org-entry-properties 1 "PHONE")) > > (let ((org-property-separators '(("PHONE" . "X")))) > (org-entry-properties 1))
You are probably aware, but just to be sure: (org-entry-get-multivalued-property (point) "PHONE") to simply get a list of all PHONE values. The entire family of functions: - org-entry-get-multivalued-property - org-entry-put-multivalued-property - org-entry-add-to-multivalued-property - org-entry-member-in-multivalued-property - org-entry-remove-from-multivalued-property Rudy -- “Those who cannot remember the past are condemned to repeat it.” --- George Santayana, Life of Reason: Reason in Common Sense, 1905 Rudolf Adamkovič <[email protected]> [he/him] http://adamkovic.org
