Variable: auto-composition-mode-hook
auto-composition-mode-hook is a customizable variable defined in
composite.el.gz.
Value
nil
Documentation
Hook run after entering or leaving auto-composition-mode(var)/auto-composition-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/composite.el.gz
;;;###autoload
(define-minor-mode auto-composition-mode
"Toggle Auto Composition mode.
When Auto Composition mode is enabled, text characters are
automatically composed by functions registered in
`composition-function-table'.
You can use `global-auto-composition-mode' to turn on
Auto Composition mode in all buffers (this is the default)."
;; It's defined in C, this stops the d-m-m macro defining it again.
:variable auto-composition-mode)