Variable: TeX-insert-braces-alist

TeX-insert-braces-alist is a customizable and buffer-local variable defined in tex.el.

Documentation

Alist of macros to which braces should or should not be appended.

Each element is a cons cell, whose CAR is the macro name, and the CDR is non-nil or nil, depending on whether a pair of braces should be, respectively, appended or not to the macro.

If a macro has an element in this variable, TeX-parse-macro will use its value to decide what to do, whatever the value of the variable TeX-insert-braces(var)/TeX-insert-braces(fun).

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-insert-braces-alist nil
  "Alist of macros to which braces should or should not be appended.

Each element is a cons cell, whose CAR is the macro name, and the
CDR is non-nil or nil, depending on whether a pair of braces
should be, respectively, appended or not to the macro.

If a macro has an element in this variable, `TeX-parse-macro'
will use its value to decide what to do, whatever the value of
the variable `TeX-insert-braces'."
  :group 'TeX-macro
  :type '(repeat (cons (string :tag "Macro name")
                       (boolean :tag "Append braces?")))
  :local t)