Variable: LaTeX-auto-length-regexp-list

LaTeX-auto-length-regexp-list is a variable defined in latex.el.

Value

(("\\\\newlength *{?\\\\\\(\\(?:[a-zA-Z]\\|\\cj\\)+\\)}?" 1 LaTeX-auto-length))

Documentation

List of regular expressions matching LaTeX lengths only.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar LaTeX-auto-length-regexp-list
  (let ((token TeX-token-char))
    `((,(concat "\\\\newlength *{?\\\\\\(" token "+\\)}?") 1 LaTeX-auto-length)))
  "List of regular expressions matching LaTeX lengths only.")