Function: org-clock-get-last-clock-out-time
org-clock-get-last-clock-out-time is a byte-compiled function defined
in org-clock.el.gz.
Signature
(org-clock-get-last-clock-out-time)
Documentation
Get the last clock-out time for the current subtree.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defun org-clock-get-last-clock-out-time ()
"Get the last clock-out time for the current subtree."
(save-excursion
(let ((end (save-excursion (org-end-of-subtree))))
(when (re-search-forward (concat org-clock-string
".*\\]--\\(\\[[^]]+\\]\\)")
end t)
(org-time-string-to-time (match-string 1))))))