Function: org-list-get-nth

org-list-get-nth is a byte-compiled function defined in org-list.el.gz.

Signature

(org-list-get-nth N KEY STRUCT)

Documentation

Return the Nth value of KEY in STRUCT.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
;;; Accessors

(defsubst org-list-get-nth (n key struct)
  "Return the Nth value of KEY in STRUCT."
  (nth n (assq key struct)))