summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2014-03-22 15:15:25 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2014-03-22 15:15:35 +0100
commit95eeefa9bca1b6c57fe62c248a0a35302cd7374d (patch)
tree4e9bb418d5411aefda73cc10399028517c1744b3
parentcb53665e553b6d8b644b2e166d97be2bab753a98 (diff)
downloadorg-mode-95eeefa9bca1b6c57fe62c248a0a35302cd7374d.tar.gz
Revert "LaTeX: Use \ul (from the "soul" package) instead of \uline"
This reverts commit b399ff0cba2382bf52d5bb6ef2b4a776fe0ac902.
-rw-r--r--lisp/org.el1
-rw-r--r--lisp/ox-latex.el2
2 files changed, 1 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 4bddb7c..70bf19e 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -3843,7 +3843,6 @@ header, or they will be appended."
("" "wrapfig" nil)
("" "rotating" nil)
("normalem" "ulem" t)
- ("" "soul" t)
("" "amsmath" t)
("" "textcomp" t)
("" "marvosym" t)
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 3d51ce5..e8f9474 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -533,7 +533,7 @@ When nil, no transformation is made."
(code . verb)
(italic . "\\emph{%s}")
(strike-through . "\\sout{%s}")
- (underline . "\\ul{%s}")
+ (underline . "\\uline{%s}")
(verbatim . protectedtexttt))
"Alist of LaTeX expressions to convert text markup.