Function: todo-total-item-counts
todo-total-item-counts is a byte-compiled function defined in
todo-mode.el.gz.
Signature
(todo-total-item-counts)
Documentation
Return a list of total item counts for the current file.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-total-item-counts ()
"Return a list of total item counts for the current file."
(mapcar (lambda (i) (apply #'+ (mapcar (lambda (x) (aref (cdr x) i))
todo-categories)))
(list 0 1 2 3)))