Function: org-last
org-last is a byte-compiled function defined in org-macs.el.
Signature
(org-last LIST)
Documentation
Return the last element of LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defsubst org-last (list)
"Return the last element of LIST."
(car (last list)))