Variable: LaTeX-auto-minimal-regexp-list
LaTeX-auto-minimal-regexp-list is a variable defined in latex.el.
Value
(("\\\\document\\(style\\|class\\)\\(?:\\[\\(\\(?:[^#\\%]\\|%[^\n
]*[\n
]\\)*\\)\\]\\)?{\\([^#\\.\n
]+?\\)}"
(2 3 1) LaTeX-auto-style)
("\\\\use\\(package\\)\\(?:\\[\\([^]]*\\)\\]\\)?{\\(\\([^#}\\.%]\\|%[^\n
]*[\n
]\\)+?\\)}"
(2 3 1) LaTeX-auto-style))
Documentation
Minimal list of regular expressions matching LaTeX macro definitions.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar LaTeX-auto-minimal-regexp-list
'(("\\\\document\\(style\\|class\\)\
\\(?:\\[\\(\\(?:[^#\\%]\\|%[^\n\r]*[\n\r]\\)*\\)\\]\\)?\
{\\([^#\\.\n\r]+?\\)}"
(2 3 1) LaTeX-auto-style)
("\\\\use\\(package\\)\\(?:\\[\\([^]]*\\)\\]\\)?\
{\\(\\([^#}\\.%]\\|%[^\n\r]*[\n\r]\\)+?\\)}"
(2 3 1) LaTeX-auto-style))
"Minimal list of regular expressions matching LaTeX macro definitions.")