Function: todo-time-string-matcher
todo-time-string-matcher is a byte-compiled function defined in
todo-mode.el.gz.
Signature
(todo-time-string-matcher LIM)
Documentation
Search for todo item time string within LIM for font-locking.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-time-string-matcher (lim)
"Search for todo item time string within LIM for font-locking."
(re-search-forward (concat todo-date-string-start todo-date-pattern
" \\(?1:" diary-time-regexp "\\)")
lim t))