Variable: todo-archive-mode-hook
todo-archive-mode-hook is a variable defined in todo-mode.el.gz.
Value
nil
Documentation
Hook run after entering Todo-Arch mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
;; If todo-mode is parent, all todo-mode key bindings appear to be
;; available in todo-archive-mode (e.g. shown by C-h m).
;;;###autoload
(define-derived-mode todo-archive-mode special-mode "Todo-Arch"
"Major mode for archived todo categories.
\\{todo-archive-mode-map}"
(todo-modes-set-1)
(todo-modes-set-2)
(todo-modes-set-3)
(setq-local todo-current-todo-file (file-truename (buffer-file-name)))
(setq-local todo-show-done-only t))