Variable: TeX-token-char

TeX-token-char is a variable defined in tex.el.

Value

"\\(?:[a-zA-Z]\\|\\cj\\)"

Documentation

Regexp matching a character in a TeX macro.

Please use a shy group if you use a grouping construct, because the functions/variables which use TeX-token-char expect not to alter the numbering of any ordinary, non-shy groups.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defvar TeX-token-char
  "\\(?:[a-zA-Z]\\|\\cj\\)"
  "Regexp matching a character in a TeX macro.

Please use a shy group if you use a grouping construct, because
the functions/variables which use `TeX-token-char' expect not to
alter the numbering of any ordinary, non-shy groups.")