Variable: org-list-checkbox-radio-mode-hook
org-list-checkbox-radio-mode-hook is a customizable variable defined
in org-list.el.gz.
Value
nil
Documentation
Hook run after entering or leaving org-list-checkbox-radio-mode(var)/org-list-checkbox-radio-mode(fun).
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/org/org-list.el.gz
;;;###autoload
(define-minor-mode org-list-checkbox-radio-mode
"When turned on, use list checkboxes as radio buttons."
:lighter " CheckBoxRadio"
(unless (eq major-mode 'org-mode)
(user-error "Cannot turn this mode outside org-mode buffers")))