Browse Source

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 năm trước cách đây
mục cha
commit
18dff8d3fa
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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"))