emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [PATCH] ox-latex: Don't quote const in defcustom.


From: Nicolas Goaziou
Subject: Re: [O] [PATCH] ox-latex: Don't quote const in defcustom.
Date: Tue, 29 Oct 2013 20:34:04 +0100

Hello,

Rüdiger Sonderfeld <address@hidden> writes:

> 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üdiger Sonderfeld <address@hidden>
> ---
>  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
>         (const :tag "Use listings" t)
> -       (const :tag "Use minted" 'minted)
> +       (const :tag "Use minted" minted)
>         (const :tag "Export verbatim" nil)))

Good catch. Thank you.

Have you signed FSF papers? If you haven't, you need to add TINYCHANGE
at the end of the commit message so I can apply the patch.


Regards,

-- 
Nicolas Goaziou



reply via email to

[Prev in Thread] Current Thread [Next in Thread]