summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-10-26 21:00:03 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-10-26 21:00:03 +0200
commit2b3e01ef4ff6e72a738b4432530d35501944a695 (patch)
treeb681642aed63881788598d32516960fd51728bea
parentff172be293bb3408fceefb27ac75716878182aae (diff)
downloadorg-mode-2b3e01ef4ff6e72a738b4432530d35501944a695.tar.gz
ox-latex: Fix docstring
* lisp/ox-latex.el (org-latex-listings-options): Use correct number of backslash characters in the example. Reported-by: Thomas S. Dye <tsd@tsdye.com>
-rw-r--r--lisp/ox-latex.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index e1173ef..ea253a1 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -690,8 +690,8 @@ a list containing two strings: the name of the option, and the
value. For example,
(setq org-latex-listings-options
- '((\"basicstyle\" \"\\small\")
- (\"keywordstyle\" \"\\color{black}\\bfseries\\underbar\")))
+ '((\"basicstyle\" \"\\\\small\")
+ (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
will typeset the code in a small size font with underlined, bold
black keywords.