From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?R=FCdiger?= Sonderfeld Subject: [PATCH] ox-latex: Don't quote const in defcustom. Date: Tue, 29 Oct 2013 17:20:20 +0100 Message-ID: <4155801.pG1hJsBqrn@descartes> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbC29-0001zp-76 for emacs-orgmode@gnu.org; Tue, 29 Oct 2013 12:20:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VbC23-0006v3-3j for emacs-orgmode@gnu.org; Tue, 29 Oct 2013 12:20:45 -0400 Received: from ptmx.org ([178.63.28.110]:38875) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbC22-0006uc-L0 for emacs-orgmode@gnu.org; Tue, 29 Oct 2013 12:20:38 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Quoting it would set `org-export-latex' not to `minted' but `(quote minted)' and thus breaking the export. * lisp/ox-latex.el (org-latex-listings): Don't quote const value. Signed-off-by: R=C3=BCdiger 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 2af5de6..87c503c 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -655,7 +655,7 @@ (defcustom org-latex-listings nil :group 'org-export-latex :type '(choice =09 (const :tag "Use listings" t) -=09 (const :tag "Use minted" 'minted) +=09 (const :tag "Use minted" minted) =09 (const :tag "Export verbatim" nil))) =20 (defcustom org-latex-listings-langs --=20 1.8.4.1