org-element: Print lower case affiliated keywords

* lisp/org-element.el (org-element--interpret-affiliated-keywords):
  Print lower case keywords.
This commit is contained in:
Nicolas Goaziou 2018-01-28 14:06:33 +01:00
parent 33a9eef11f
commit b4dda5f340
1 changed files with 1 additions and 1 deletions

View File

@ -4581,7 +4581,7 @@ If there is no affiliated keyword, return the empty string."
(let (dual)
(when (member key org-element-dual-keywords)
(setq dual (cdr value) value (car value)))
(concat "#+" key
(concat "#+" (downcase key)
(and dual
(format "[%s]" (org-element-interpret-data dual)))
": "