Variable: TeX-style-path
TeX-style-path is a customizable variable defined in tex.el.
Value
("~/.emacs.d/auctex/" "/root/.emacs.d/elpa/auctex-14.1.2/style"
"/root/.emacs.d/auctex/auto" "/root/.emacs.d/auctex/style" "auto"
"style")
Documentation
List of directories to search for AUCTeX style files.
Per default the list is built from the values of the variables
TeX-auto-global, TeX-style-global, TeX-auto-private,
TeX-style-private, TeX-auto-local, and TeX-style-local.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-style-path
(let ((path))
;; Put directories in an order where the more local files can
;; override the more global ones.
(mapc (lambda (file)
(when (and file (not (member file path)))
(setq path (cons file path))))
(append (list TeX-auto-global TeX-style-global)
TeX-auto-private TeX-style-private
(list TeX-auto-local TeX-style-local)))
(nreverse path))
"List of directories to search for AUCTeX style files.
Per default the list is built from the values of the variables
`TeX-auto-global', `TeX-style-global', `TeX-auto-private',
`TeX-style-private', `TeX-auto-local', and `TeX-style-local'."
:group 'TeX-file
:type '(repeat (file :format "%v")))