From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: [patch, ox-latex] org-latex-logfiles-extensions Date: Mon, 23 Jun 2014 00:53:43 +0200 Message-ID: <87ha3ck13c.fsf@gmx.us> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52479) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WyqeG-0006Ej-Qk for emacs-orgmode@gnu.org; Sun, 22 Jun 2014 18:54:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WyqeA-0007V5-W7 for emacs-orgmode@gnu.org; Sun, 22 Jun 2014 18:54:08 -0400 Received: from plane.gmane.org ([80.91.229.3]:52614) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WyqeA-0007Uh-PB for emacs-orgmode@gnu.org; Sun, 22 Jun 2014 18:54:02 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wyqe9-0002QZ-Lg for emacs-orgmode@gnu.org; Mon, 23 Jun 2014 00:54:01 +0200 Received: from dynamic-adsl-94-34-159-29.clienti.tiscali.it ([94.34.159.29]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jun 2014 00:54:01 +0200 Received: from rasmus by dynamic-adsl-94-34-159-29.clienti.tiscali.it with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jun 2014 00:54:01 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: aaronecay@gmail.com --=-=-= Content-Type: text/plain Hi, The attached patch adds more extensions to `org-latex-logfiles-extensiosn' that shows up when using latexmk and beamer. Also: Aaron, is there are reason why you did not include "bbl" in your previous patch? Note: while I personally very much like this feature the default non-nil value of org-latex-remove-logfiles may slow down compilation-time. Since we have ox async export it's probably OK to ignore this, but when not using async it could be annoying since Emacs is locked. Thanks, Rasmus -- And I faced endless streams of vendor-approved Ikea furniture. . . --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-ox-latex.el-extends-org-latex-logfiles-extensions.patch >From a0a216af13ae16388bb49141c598811ea8848987 Mon Sep 17 00:00:00 2001 From: Rasmus Date: Mon, 23 Jun 2014 00:40:12 +0200 Subject: [PATCH] ox-latex.el: extends org-latex-logfiles-extensions ox-latex.el (org-latex-logfiles-extensions): add more extensions --- lisp/ox-latex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index ee207a3..e7789a4 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -962,7 +962,7 @@ file name as its single argument." (function))) (defcustom org-latex-logfiles-extensions - '("aux" "bcf" "blg" "figlist" "idx" "log" "nav" "out" "run.xml" + '("aux" "bcf" "blg" "fdb_latexmk" "fls" "figlist" "idx" "log" "nav" "out" "run.xml" "snm" "toc" "vrb" "xdv") "The list of file extensions to consider as LaTeX logfiles. The logfiles will be remove if `org-latex-remove-logfiles' is -- 2.0.0 --=-=-=--