Variable: Texinfo-clean-output-suffixes
Texinfo-clean-output-suffixes is a customizable variable defined in
tex-info.el.
Value
("\\.info\\(-[0-9]+\\)?" "\\.dvi" "\\.pdf" "\\.ps" "\\.html" "_toc\\.html" "_fot\\.html" "_abt\\.html" "_[0-9]+\\.html" "_l2h_img.+")
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/tex-info.el
(defcustom Texinfo-clean-output-suffixes
;; See `man texi2html' for the HTML stuff.
'("\\.info\\(-[0-9]+\\)?" "\\.dvi" "\\.pdf" "\\.ps" "\\.html"
"_toc\\.html" "_fot\\.html" "_abt\\.html" "_[0-9]+\\.html" "_l2h_img.+")
"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)