Переглянути джерело

Remove also the .idx file when cleaning up after PDF export

Carsten Dominik 15 роки тому
батько
коміт
fdd40ea46f
2 змінених файлів з 3 додано та 1 видалено
  1. 2 0
      lisp/ChangeLog
  2. 1 1
      lisp/org-latex.el

+ 2 - 0
lisp/ChangeLog

@@ -1,5 +1,7 @@
 2009-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
 
+	* org-latex.el (org-export-as-pdf): Remove also the .idx file.
+
 	* org-mouse.el (org-mouse-end-headline, org-mouse-insert-item)
 	(org-mouse-context-menu): Use `org-looking-back'.
 

+ 1 - 1
lisp/org-latex.el

@@ -720,7 +720,7 @@ when PUB-DIR is set, use this as the publishing directory."
 	(error "PDF file was not produced")
       (set-window-configuration wconfig)
       (when org-export-pdf-remove-logfiles
-	(dolist (ext '("aux" "log" "out" "toc"))
+	(dolist (ext '("aux" "idx" "log" "out" "toc"))
 	  (setq file (concat base "." ext))
 	  (and (file-exists-p file) (delete-file file))))
       (message "Exporting to PDF...done")