Function: org-get-packages-alist

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

Signature

(org-get-packages-alist VAR)

Documentation

Get the packages alist and make sure it has 3 elements per entry.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-get-packages-alist (var)
  "Get the packages alist and make sure it has 3 elements per entry."
  (mapcar (lambda (x)
	    (if (and (consp x) (= (length x) 2))
		(list (car x) (nth 1 x) t)
	      x))
	  (default-value var)))