Variable: TeX-auto-global

TeX-auto-global is a customizable variable defined in tex-site.el.

Value

"~/.emacs.d/auctex/"

Documentation

Directory containing automatically generated information.

For storing automatic extracted information about the TeX macros shared by all users of a site.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-site.el
(defcustom TeX-auto-global
  (if (file-writable-p "/usr/local/var/auctex/")
      "/usr/local/var/auctex/"
    (concat user-emacs-directory "auctex/"))
  "Directory containing automatically generated information.

For storing automatic extracted information about the TeX macros
shared by all users of a site."
  :group 'TeX-file
  :type 'directory)