summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2014-07-28 15:25:50 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2014-07-28 15:25:50 +0200
commitd83bf0e80080b349492ad8ce3ba15fad91384ad3 (patch)
treec49d1b59b64d685335a8ecc7ef628d8b414baa2a
parentd8a0ee7aadd7e7bf986184d4597f6cfa30fa2205 (diff)
downloadorg-mode-d83bf0e80080b349492ad8ce3ba15fad91384ad3.tar.gz
ox-latex: Fix defcustoms
* lisp/ox-latex.el (org-latex-table-scientific-notation): Set appropriate value. (org-latex-listings-options): Fix docstring.
-rw-r--r--lisp/ox-latex.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 2c0152b..5f171da 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -524,7 +524,7 @@ When nil, no transformation is made."
:package-version '(Org . "8.0")
:type '(choice
(string :tag "Format string")
- (const :tag "No formatting")))
+ (const :tag "No formatting" nil)))
;;;; Text markup
@@ -689,9 +689,9 @@ These options are supplied as a comma-separated list to the
a list containing two strings: the name of the option, and the
value. For example,
- (setq org-latex-listings-options
+ \(setq org-latex-listings-options
'((\"basicstyle\" \"\\\\small\")
- (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
+ \(\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
will typeset the code in a small size font with underlined, bold
black keywords.