Variable: texmathp-allow-detached-args
texmathp-allow-detached-args is a customizable variable defined in
texmathp.el.
Value
nil
Documentation
Non-nil means, allow arguments of macros to be detached by whitespace.
When this is t, aaa will be interpreted as an argument of \bbb in the
following construct: \bbb [xxx] {aaa}
This is legal in TeX. The disadvantage is that any number of braces expressions
will be considered arguments of the macro independent of its definition.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/texmathp.el
(defcustom texmathp-allow-detached-args nil
"Non-nil means, allow arguments of macros to be detached by whitespace.
When this is t, `aaa' will be interpreted as an argument of \\bbb in the
following construct: \\bbb [xxx] {aaa}
This is legal in TeX. The disadvantage is that any number of braces expressions
will be considered arguments of the macro independent of its definition."
:type 'boolean)