1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2025-01-05 11:45:52 +00:00

ox-latex: Fix typo

* lisp/ox-latex.el (org-latex--text-markup): Fix typo.
This commit is contained in:
Nicolas Goaziou 2016-12-13 14:15:07 +01:00
parent 8fec3d5f03
commit 64a2f6e22d

View File

@ -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)))))