Function: org--property-get-separator
org--property-get-separator is a byte-compiled function defined in
org.el.gz.
Signature
(org--property-get-separator PROPERTY)
Documentation
Get the separator to use for combining PROPERTY.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org--property-get-separator (property)
"Get the separator to use for combining PROPERTY."
(or
(catch 'separator
(dolist (spec org-property-separators)
(if (listp (car spec))
(if (member property (car spec))
(throw 'separator (cdr spec)))
(if (string-match-p (car spec) property)
(throw 'separator (cdr spec))))))
" "))