monnier pushed a commit to branch externals/auctex
in repository elpa.
commit a6be7f0798830bb2c05fd14dc91a747abec8eb94
Author: Mosè Giordano <[email protected]>
Date: Tue Jul 23 21:57:58 2013 +0200
Add *.fls and *-blx.bib to suffixes to be cleaned.
* tex.el (TeX-clean-default-intermediate-suffixes): Add `.fls',
files created by TeX processors with `-recorder' option, and
`-blx.bib', files created by `bibtex' when using the `biblatex'
package.
---
ChangeLog | 5 +++++
tex.el | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 120826d..7d0af48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2013-07-23 Mos� Giordano <[email protected]>
+ * tex.el (TeX-clean-default-intermediate-suffixes): Add `.fls',
+ files created by TeX processors with `-recorder' option, and
+ `-blx.bib', files created by `bibtex' when using the `biblatex'
+ package.
+
* doc/changes.texi: Document some changes for next release.
2013-07-22 Mos� Giordano <[email protected]>
diff --git a/tex.el b/tex.el
index 7e717b7..8757517 100644
--- a/tex.el
+++ b/tex.el
@@ -1837,7 +1837,7 @@ Must be the car of an entry in `TeX-command-list'."
"\\.glo" "\\.gls" "\\.idx" "\\.ilg" "\\.ind"
"\\.lof" "\\.log" "\\.lot" "\\.nav" "\\.out"
"\\.snm" "\\.toc" "\\.url" "\\.synctex\\.gz"
- "\\.bcf" "\\.run\\.xml")
+ "\\.bcf" "\\.run\\.xml" "\\.fls" "-blx\\.bib")
"List of regexps matching suffixes of files to be cleaned.
Used as a default in TeX, LaTeX and docTeX mode.")