Variable: electric-indent-functions
electric-indent-functions is a variable defined in electric.el.gz.
Value
nil
Documentation
Special hook run to decide whether to auto-indent.
This hook is used by electric-indent-mode(var)/electric-indent-mode(fun). Each function is called
with one argument (the inserted char), with point right after that char,
and it should return t to cause indentation, no-indent to prevent
indentation or nil to let other functions decide.
Probably introduced at or before Emacs version 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/electric.el.gz
(defvar electric-indent-functions nil
"Special hook run to decide whether to auto-indent.
This hook is used by `electric-indent-mode'. Each function is called
with one argument (the inserted char), with point right after that char,
and it should return t to cause indentation, `no-indent' to prevent
indentation or nil to let other functions decide.")