Function: todo-longest-category-name-length
todo-longest-category-name-length is a byte-compiled function defined
in todo-mode.el.gz.
Signature
(todo-longest-category-name-length CATEGORIES)
Documentation
Return the length of the longest name in list CATEGORIES.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-longest-category-name-length (categories)
"Return the length of the longest name in list CATEGORIES."
(let ((longest 0))
(dolist (c categories longest)
(setq longest (max longest (length c))))))