summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus <rasmus@gmx.us>2016-02-06 15:52:29 +0100
committerRasmus <rasmus@gmx.us>2016-02-06 15:52:29 +0100
commit18dff8d3fa9d42089077c3f1bef52996bc1a593c (patch)
treecdc9e2f9345ebd777cb56c43a8fccdaafa7779cf
parent504071894532125b93064c8e67ff6c4a6149ef47 (diff)
downloadorg-mode-18dff8d3fa9d42089077c3f1bef52996bc1a593c.tar.gz
ox-latex: Fix typo
* lisp/ox-latex.el (org-latex-compiler-file-string): Fix typo. Reported-by: Julien Cubizolles <j.cubizolles@free.fr> <http://permalink.gmane.org/gmane.emacs.orgmode/104836>
-rw-r--r--lisp/ox-latex.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 5879e40..9285aac 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -1074,12 +1074,12 @@ will produce
;;;; Compilation
-(defcustom org-latex-compiler-file-string "%% Indented LaTeX compiler: %s\n"
+(defcustom org-latex-compiler-file-string "%% Intended LaTeX compiler: %s\n"
"LaTeX compiler format-string.
See also `org-latex-compiler'."
:group 'org-export-latex
:type '(choice
- (const :tag "Comment" "%% Indented LaTeX compiler: %s\n")
+ (const :tag "Comment" "%% Intended LaTeX compiler: %s\n")
(const :tag "latex-mode file variable" "%% -*- latex-run-command: %s -*-\n")
(const :tag "AUCTeX file variable" "%% -*- LaTeX-command: %s -*-\n")
(string :tag "custom format" "%% %s"))