Function: org-make-parameter-alist
org-make-parameter-alist is a byte-compiled function defined in
org-macs.el.
Signature
(org-make-parameter-alist PLIST)
Documentation
Return alist based on PLIST.
PLIST is a property list with alternating symbol names and values.
The returned alist is a list of lists with the symbol name in car
and the value in cadr.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-make-parameter-alist (plist)
"Return alist based on PLIST.
PLIST is a property list with alternating symbol names and values.
The returned alist is a list of lists with the symbol name in `car'
and the value in `cadr'."
(when plist
(cons (list (car plist) (cadr plist))
(org-make-parameter-alist (cddr plist)))))