Variable: c-special-indent-hook

c-special-indent-hook is a customizable variable defined in cc-vars.el.gz.

Value

nil

Documentation

Hook for user defined special indentation adjustments.

This hook gets called after each line is indented by the mode. It is only called when c-syntactic-indentation is non-nil.

Probably introduced at or before Emacs version 19.23.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-vars.el.gz
(defcustom c-special-indent-hook nil
  "Hook for user defined special indentation adjustments.
This hook gets called after each line is indented by the mode.  It is only
called when `c-syntactic-indentation' is non-nil."
  :type 'hook
  :group 'c)