Function: org-capture-get

org-capture-get is a byte-compiled function defined in org-capture.el.gz.

Signature

(org-capture-get PROPERTY &optional LOCAL)

Documentation

Get PROPERTY from the capture property list org-capture-plist.

When LOCAL is set, use the local variable org-capture-current-plist, this is necessary after initialization of the capture process, to avoid conflicts with other active capture processes.

Aliases

org-capture-member (obsolete since 9.2)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-capture.el.gz
(defun org-capture-get (property &optional local)
  "Get PROPERTY from the capture property list `org-capture-plist'.
When LOCAL is set, use the local variable `org-capture-current-plist',
this is necessary after initialization of the capture process,
to avoid conflicts with other active capture processes."
  (plist-get (if local org-capture-current-plist org-capture-plist) property))