Function: todo-backward-category
todo-backward-category is an interactive and byte-compiled function
defined in otodo-mode.el.gz.
Signature
(todo-backward-category)
Documentation
Go back to TODO list of previous category.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-backward-category ()
"Go back to TODO list of previous category."
(interactive)
(setq todo-category-number
(mod (1- todo-category-number) (length todo-categories)))
(todo-category-select))