Function: org-list-get-bottom-point
org-list-get-bottom-point is a byte-compiled function defined in
org-list.el.gz.
Signature
(org-list-get-bottom-point STRUCT)
Documentation
Return point at bottom of list.
STRUCT is the list structure.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-list-get-bottom-point (struct)
"Return point at bottom of list.
STRUCT is the list structure."
(apply #'max
(mapcar (lambda (e) (org-list-get-item-end (car e) struct)) struct)))