Variable: latex-indent-within-escaped-parens
latex-indent-within-escaped-parens is a customizable variable defined
in tex-mode.el.gz.
Value
nil
Documentation
Non-nil means add extra indent to text within escaped parens.
When this is non-nil, text within matching pairs of escaped parens is indented at the column following the open paren. The default value does not add any extra indent thus providing the behavior of Emacs 22 and earlier.
This variable was added, or its default value changed, in Emacs 23.1.
Probably introduced at or before Emacs version 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defcustom latex-indent-within-escaped-parens nil
"Non-nil means add extra indent to text within escaped parens.
When this is non-nil, text within matching pairs of escaped
parens is indented at the column following the open paren. The
default value does not add any extra indent thus providing the
behavior of Emacs 22 and earlier."
:type 'boolean
:group 'tex
:version "23.1")