Function: org-list-set-nth
org-list-set-nth is a byte-compiled function defined in
org-list.el.gz.
Signature
(org-list-set-nth N KEY STRUCT NEW)
Documentation
Set the Nth value of KEY in STRUCT to NEW.
This function modifies STRUCT.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-list-set-nth (n key struct new)
"Set the Nth value of KEY in STRUCT to NEW.
\nThis function modifies STRUCT."
(setcar (nthcdr n (assq key struct)) new))