summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Dokos <ndokos@gmail.com>2020-11-28 10:01:02 -0500
committerKyle Meyer <kyle@kyleam.com>2020-11-28 10:50:39 -0500
commit546b2ba26b20acb5963f8889ca67fe4b377b555d (patch)
tree9ecb4c4d746a7f6c80b6b779d087700437e951ef
parentb2717ca5a77b45643ecb54cc66a22f146f626f54 (diff)
downloadorg-mode-546b2ba26b20acb5963f8889ca67fe4b377b555d.tar.gz
org-odt-planning: Fix scheduled item output
* lisp/ox-odt.el (org-odt-planning): Use org-scheduled-string, not org-deadline-string, for scheduled items. See <https://emacs.stackexchange.com/questions/61985/org-export-to-odt-incorrectly-use-deadline-for-scheduled> for an ECM.
-rw-r--r--lisp/ox-odt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el
index 6880ad6..3b90d03 100644
--- a/lisp/ox-odt.el
+++ b/lisp/ox-odt.el
@@ -2947,7 +2947,7 @@ channel."
(when scheduled
(concat
(format "<text:span text:style-name=\"%s\">%s</text:span>"
- "OrgScheduledKeyword" org-deadline-string)
+ "OrgScheduledKeyword" org-scheduled-string)
(org-odt-timestamp scheduled contents info)))))))