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