summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Sonderfeld <ruediger@c-plusplus.de>2013-10-29 17:20:20 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2013-10-29 19:51:14 +0100
commit0b7f74bcd1d2d7934d150bfc138e180c183f7722 (patch)
tree82007079cef38981947076ae708d1bda7dc99ee1
parenta7e5a74e2ce41819a342a282f62541d6e9d61c47 (diff)
downloadorg-mode-0b7f74bcd1d2d7934d150bfc138e180c183f7722.tar.gz
ox-latex: Don't quote const in defcustom
* lisp/ox-latex.el (org-latex-listings): Don't quote const value. Quoting it would set `org-export-latex' not to `minted' but `(quote minted)' and thus breaking the export. Signed-off-by: RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
-rw-r--r--lisp/ox-latex.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index ea253a1..339f5a3 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -655,7 +655,7 @@ into previewing problems, please consult
:group 'org-export-latex
:type '(choice
(const :tag "Use listings" t)
- (const :tag "Use minted" 'minted)
+ (const :tag "Use minted" minted)
(const :tag "Export verbatim" nil)))
(defcustom org-latex-listings-langs