Variable: c-cpp-indent-to-body-directives

c-cpp-indent-to-body-directives is a customizable variable defined in cc-vars.el.gz.

Value

("pragma")

Documentation

Preprocessor directives which will be indented as statements.

A list of Preprocessor directives which when reindented, or newly typed in, will cause the "#" introducing the directive to be indented as a statement.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-vars.el.gz
(defcustom c-cpp-indent-to-body-directives '("pragma")
  "Preprocessor directives which will be indented as statements.

A list of Preprocessor directives which when reindented, or newly
typed in, will cause the \"#\" introducing the directive to be
indented as a statement."
  :type '(repeat string)
  :group 'c)