From cce317faf6550e7ff48fe8bccbb084c64914a549 Mon Sep 17 00:00:00 2001 From: Aaron Ecay Date: Fri, 6 Nov 2015 19:11:07 +0000 Subject: [PATCH] Fix bug in 95e2777 --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index eb1af9b65..3578b3648 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -347,7 +347,7 @@ e.g. \"arch:nil\"." (const :tag "Not at all" nil) (const :tag "Headline only" headline) (const :tag "Entirely" t)) - :safe (lambda (x) (memq x 't nil headline))) + :safe (lambda (x) (memq x '(t nil headline)))) (defcustom org-export-with-author t "Non-nil means insert author name into the exported file.