summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2019-02-28 19:40:19 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2019-02-28 19:40:19 +0100
commitf330259c5bafd76fde30759515a47cf65ec34095 (patch)
tree08d4fb0d4b09d9a05ec2cb2dda648c996bbd4280
parentcf13dc58c062960c975d49f0568902705f83a26c (diff)
parent92c3b76dd8856265a2efd75540fcf7e7e79c596a (diff)
downloadorg-mode-f330259c5bafd76fde30759515a47cf65ec34095.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/ox.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ox.el b/lisp/ox.el
index d9473af..ee121e0 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -3216,7 +3216,7 @@ locally for the subtree through node properties."
(org-entry-put
node "EXPORT_OPTIONS" (mapconcat 'identity items " "))
(while items
- (insert "#+OPTIONS:")
+ (insert "#+options:")
(let ((width 10))
(while (and items
(< (+ width (length (car items)) 1) fill-column))
@@ -3242,7 +3242,7 @@ locally for the subtree through node properties."
(if subtreep (org-entry-put node (concat "EXPORT_" (car key)) val)
(insert
(format "#+%s:%s\n"
- (car key)
+ (downcase (car key))
(if (org-string-nw-p val) (format " %s" val) ""))))))))
(defun org-export-expand-include-keyword (&optional included dir footnotes)