From 3ece4c5e5e4399b183aecedb346b795dc9a52f34 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 28 Mar 2015 10:37:31 +0100 Subject: [PATCH] ox: Tiny fix * lisp/ox.el (org-export--get-inbuffer-options): Do not consider `quote' value as t. --- lisp/ox.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ox.el b/lisp/ox.el index 372cca65c..23698dce0 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -1477,7 +1477,7 @@ Assume buffer is in Org mode. Narrowing, if any, is ignored." (and backend (org-export-get-all-options backend)) org-export-options-alist)) (regexp (format "^[ \t]*#\\+%s:" - (regexp-opt (nconc (delq nil (mapcar 'cadr options)) + (regexp-opt (nconc (delq nil (mapcar #'cadr options)) org-export-special-keywords)))) (find-properties (lambda (keyword) @@ -1546,7 +1546,7 @@ Assume buffer is in Org mode. Narrowing, if any, is ignored." (org-trim val)))) (split `(,@(plist-get plist property) ,@(org-split-string val))) - ('t val) + ((t) val) (otherwise (if (not (plist-member plist property)) val (plist-get plist property))))))))))))))