瀏覽代碼

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>
Rasmus 9 年之前
父節點
當前提交
18dff8d3fa
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lisp/ox-latex.el

+ 2 - 2
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"))