Browse Source

ox-latex: Fix typo

* lisp/ox-latex.el (org-latex--text-markup): Fix typo.
Nicolas Goaziou 8 years ago
parent
commit
64a2f6e22d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ox-latex.el

+ 1 - 1
lisp/ox-latex.el

@@ -1515,7 +1515,7 @@ INFO is a plist used as a communication channel.  See
 			((equal m "\\") "\\textbackslash{}")
 			((equal m "~") "\\textasciitilde{}")
 			((equal m "^") "\\textasciicircum{}")
-			(t (org-latext--protect-text m))))
+			(t (org-latex--protect-text m))))
 		text nil t)))
       ;; Else use format string.
       (t (format fmt text)))))