From 2b3e01ef4ff6e72a738b4432530d35501944a695 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 26 Oct 2013 21:00:03 +0200 Subject: [PATCH] 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 --- lisp/ox-latex.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index e1173efa8..ea253a1b5 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. -- 2.11.4.GIT