From 4ba1e40cff58f47c69bc62b108b48ba9f40507c1 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 28 Feb 2013 08:41:57 +0100 Subject: [PATCH] ox-latex.el: Improve two docstrings * ox-latex.el (org-latex-logfiles-extensions) (org-latex-remove-logfiles): Improve docstrings. --- lisp/ox-latex.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index eadb47e0f..7bb44fe99 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -875,13 +875,17 @@ file name as its single argument." (defcustom org-latex-logfiles-extensions '("aux" "idx" "log" "out" "toc" "nav" "snm" "vrb") - "The list of file extensions to consider as LaTeX logfiles." + "The list of file extensions to consider as LaTeX logfiles. +The logfiles will be remove if `org-latex-remove-logfiles' is +non-nil." :group 'org-export-latex :type '(repeat (string :tag "Extension"))) (defcustom org-latex-remove-logfiles t "Non-nil means remove the logfiles produced by PDF production. -These are the .aux, .log, .out, and .toc files." +By default, logfiles are files with these extensions: .aux, .idx, +.log, .out, .toc, .nav, .snm and .vrb. To define the set of +logfiles to remove, set `org-latex-logfiles-extensions'." :group 'org-export-latex :type 'boolean) -- 2.11.4.GIT