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 POM PROPERTY &rest VALUES)

Documentation

Set multivalued PROPERTY at point-or-marker POM to VALUES.

VALUES should be a list of strings. Spaces will be protected.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-entry-put-multivalued-property (pom property &rest values)
  "Set multivalued PROPERTY at point-or-marker POM to VALUES.
VALUES should be a list of strings.  Spaces will be protected."
  (org-entry-put pom property (mapconcat #'org-entry-protect-space values " "))
  (let* ((value (org-entry-get pom property))
	 (values (and value (split-string value))))
    (mapcar #'org-entry-restore-space values)))