Function: todo-filter-diary-items
todo-filter-diary-items is an interactive and byte-compiled function
defined in todo-mode.el.gz.
Signature
(todo-filter-diary-items &optional ARG)
Documentation
Display a list of todo diary items from different categories.
The categories can be any of those in the current todo file.
Called with no prefix ARG, if a diary items file for the current
todo file has previously been saved (see
todo-save-filtered-items-buffer), visit this file; if there is
no such file, build the list of diary items. Called with a
prefix argument, build the list even if there is a saved file of
diary items.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-filter-diary-items (&optional arg)
"Display a list of todo diary items from different categories.
The categories can be any of those in the current todo file.
Called with no prefix ARG, if a diary items file for the current
todo file has previously been saved (see
`todo-save-filtered-items-buffer'), visit this file; if there is
no such file, build the list of diary items. Called with a
prefix argument, build the list even if there is a saved file of
diary items."
(interactive "P")
(todo-filter-items 'diary arg))