Variable: LaTeX-clean-intermediate-suffixes
LaTeX-clean-intermediate-suffixes is a customizable variable defined
in latex.el.
Value
("\\.aux" "\\.bbl" "\\.blg" "\\.brf" "\\.fot" "\\.glo" "\\.gls" "\\.idx" "\\.ilg" "\\.ind" "\\.lof" "\\.log" "\\.lot" "\\.nav" "\\.out" "\\.snm" "\\.toc" "\\.url" "\\.synctex\\.gz" "\\.bcf" "\\.run\\.xml" "\\.fls" "-blx\\.bib" "\\.fdb_latexmk" "\\.atfi" "\\.acn" "\\.acr" "\\.alg" "\\.glg" "\\.ist")
Documentation
List of regexps matching suffixes of files to be deleted.
The regexps will be anchored at the end of the file name to be matched, that is, you do _not_ have to cater for this yourself by adding \\' or $.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-clean-intermediate-suffixes
(append TeX-clean-default-intermediate-suffixes
;; These are extensions of files created by makeglossaries.
'("\\.acn" "\\.acr" "\\.alg" "\\.glg" "\\.ist"))
"List of regexps matching suffixes of files to be deleted.
The regexps will be anchored at the end of the file name to be matched,
that is, you do _not_ have to cater for this yourself by adding \\\\\\=' or $."
:type '(repeat regexp)
:group 'TeX-command)