Function: org-clock-sum-custom
org-clock-sum-custom is a byte-compiled function defined in
org-clock.el.gz.
Signature
(org-clock-sum-custom &optional HEADLINE-FILTER RANGE PROPNAME)
Documentation
Sum the times for each subtree for today.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defun org-clock-sum-custom (&optional headline-filter range propname)
"Sum the times for each subtree for today."
(let ((r (or (and (symbolp range) (org-clock-special-range range))
(org-clock-special-range
(intern (completing-read
"Range: "
'("today" "yesterday" "thisweek" "lastweek"
"thismonth" "lastmonth" "thisyear" "lastyear"
"interactive")
nil t))))))
(org-clock-sum (car r) (cadr r)
headline-filter (or propname :org-clock-minutes-custom))))