Function: todo-check-filtered-items-file
todo-check-filtered-items-file is a byte-compiled function defined in
todo-mode.el.gz.
Signature
(todo-check-filtered-items-file)
Documentation
Check if filtered items file is up to date and a show suitable message.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-check-filtered-items-file ()
"Check if filtered items file is up to date and a show suitable message."
;; (catch 'old
(let ((count 0))
(while (not (eobp))
(let* ((item (todo-item-string))
(found (car (todo-find-item item))))
(unless (eq (cdr found) 'same)
(save-excursion
(overlay-put (make-overlay (todo-item-start) (todo-item-end))
'face 'todo-search))
(setq count (1+ count))))
;; (throw 'old (message "The marked item is not up to date.")))
(todo-forward-item))
(if (zerop count)
(message "Filtered items file is up to date.")
(message (concat "The highlighted item" (if (= count 1) " is " "s are ")
"not up to date."
;; "\nType <return> on item for details."
)))))