Function: org-agenda--split-plist

org-agenda--split-plist is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda--split-plist PLIST)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda--split-plist (plist)
  ;; We could/should arguably use `map-keys' and `map-values'.
  (let (keys vals)
    (while plist
      (push (pop plist) keys)
      (push (pop plist) vals))
    (cons (nreverse keys) (nreverse vals))))