Hi all

I tried to modify TeX-clean so that the bbl files are not deleted.

I tried out either 


(with-eval-after-load 'tex
  (setq TeX-clean-default-intermediate-suffixes
        (remove "\\.bbl"
                TeX-clean-default-intermediate-suffixes)))

Or 


(with-eval-after-load 'tex
  (setq TeX-clean-default-intermediate-suffixes
        (delete "\\.bbl"
                TeX-clean-default-intermediate-suffixes)))

I obtain
--8<---------------cut here---------------start------------->8---

TeX-clean-default-intermediate-suffixes is a variable defined in ‘tex.el’.

Its value is
("\\.aux" "\\.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")

--8<---------------cut here---------------end--------------->8---

However when running TeX-clean the function still wants to delete the
bbl file!

What do I miss

Thanks 

Uwe Brauer 

Reply via email to