Function: org-make-parameter-alist

org-make-parameter-alist is a byte-compiled function defined in org-macs.el.gz.

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 /usr/src/emacs/lisp/org/org-macs.el.gz
(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)))))