Function: org-entry-put-multivalued-property
org-entry-put-multivalued-property is a byte-compiled function defined
in org.el.gz.
Signature
(org-entry-put-multivalued-property EPOM PROPERTY &rest VALUES)
Documentation
Set multivalued PROPERTY at EPOM to VALUES.
VALUES should be a list of strings. Spaces will be protected. EPOM is an element, marker, or buffer position.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-entry-put-multivalued-property (epom property &rest values)
"Set multivalued PROPERTY at EPOM to VALUES.
VALUES should be a list of strings. Spaces will be protected.
EPOM is an element, marker, or buffer position."
(org-entry-put epom property (mapconcat #'org-entry-protect-space values " "))
(let* ((value (org-entry-get epom property))
(values (and value (split-string value))))
(mapcar #'org-entry-restore-space values)))