Variable: LaTeX-indent-begin-exceptions-list
LaTeX-indent-begin-exceptions-list is a buffer-local variable defined
in latex.el.
Documentation
List of macros which shouldn't increase the indentation.
Each item in this list is a string without a backslash and will
mostly start with "if". These macros should not increase
indentation although they start with "if", for example the
"ifthenelse" macro provided by the ifthen package. AUCTeX
styles should add their macros to this variable and then run
LaTeX-indent-commands-regexp-make.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar-local LaTeX-indent-begin-exceptions-list nil
"List of macros which shouldn't increase the indentation.
Each item in this list is a string without a backslash and will
mostly start with \"if\". These macros should not increase
indentation although they start with \"if\", for example the
\"ifthenelse\" macro provided by the ifthen package. AUCTeX
styles should add their macros to this variable and then run
`LaTeX-indent-commands-regexp-make'.")