Function: TeX-style-check
TeX-style-check is a byte-compiled function defined in tex.el.
Signature
(TeX-style-check STYLES)
Documentation
Check STYLES compared to the current style options.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-style-check (styles)
"Check STYLES compared to the current style options."
(let ((files (TeX-style-list)))
(while (and styles
(not (TeX-member (car (car styles)) files #'string-match)))
(setq styles (cdr styles))))
(if styles
(nth 1 (car styles))
""))