Function: org-capture-put
org-capture-put is a byte-compiled function defined in
org-capture.el.gz.
Signature
(org-capture-put &rest ELEMENTS)
Documentation
Add ELEMENTS to the capture property list org-capture-plist.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-capture.el.gz
(defun org-capture-put (&rest elements)
"Add ELEMENTS to the capture property list `org-capture-plist'."
(while elements
(setq org-capture-plist (plist-put org-capture-plist
(pop elements) (pop elements)))))