From 0b7f74bcd1d2d7934d150bfc138e180c183f7722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Sonderfeld?= Date: Tue, 29 Oct 2013 17:20:20 +0100 Subject: [PATCH] ox-latex: Don't quote const in defcustom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- lisp/ox-latex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index ea253a1b5..339f5a3fd 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