ox: Tiny fix
* lisp/ox.el (org-export--get-inbuffer-options): Do not consider `quote' value as t.
This commit is contained in:
parent
a0f2293405
commit
3ece4c5e5e
|
@ -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))))))))))))))
|
||||
|
|
Loading…
Reference in New Issue