Variable: font-latex-syntax-alist

font-latex-syntax-alist is a variable defined in font-latex.el.

Value

((40 . ".") (41 . ".") (64 . "w") (48 . ".") (49 . ".") (50 . ".")
 (51 . ".") (52 . ".") (53 . ".") (54 . ".") (55 . ".") (56 . ".")
 (57 . "."))

Documentation

List of specifiers for the syntax alist of font-lock-defaults.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/font-latex.el
;;; Setup

(defvar font-latex-syntax-alist
  '((?\( . ".") (?\) . ".")
    ;; Use word syntax for @ because we use \> for matching macros and
    ;; we don't want \foo@bar to be found if we search for \foo.
    (?@ . "w")
    ;; Use punctuation syntax for numbers for the same reason, so things
    ;; like \LaTeX3 are fontified correctly.  (Bug#79587)
    (?0 . ".") (?1 . ".") (?2 . ".") (?3 . ".") (?4 . ".")
    (?5 . ".") (?6 . ".") (?7 . ".") (?8 . ".") (?9 . "."))
  "List of specifiers for the syntax alist of `font-lock-defaults'.")