Function: org-set-property-function

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

Signature

(org-set-property-function PROPERTY)

Documentation

Get the function that should be used to set PROPERTY.

This is computed according to org-property-set-functions-alist.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-set-property-function (property)
  "Get the function that should be used to set PROPERTY.
This is computed according to `org-property-set-functions-alist'."
  (or (cdr (assoc property org-property-set-functions-alist))
      'org-completing-read))