summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2012-10-30 16:28:14 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2012-10-30 16:28:33 +0100
commitcaee8076f86d4b407158787f3269b61e2e679219 (patch)
tree5cbdc3adda4941b20fed89357d0a007832d11353
parent1a7610ed98c65e49eac287e9ede0341b3ad618ae (diff)
downloadorg-mode-caee8076f86d4b407158787f3269b61e2e679219.tar.gz
org-export: Fix docstring
* contrib/lisp/org-export.el (org-export-with-tasks): Fix docstring.
-rw-r--r--contrib/lisp/org-export.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el
index 6b3a5c5..710b951 100644
--- a/contrib/lisp/org-export.el
+++ b/contrib/lisp/org-export.el
@@ -580,12 +580,16 @@ e.g. \"tags:nil\"."
(defcustom org-export-with-tasks t
"Non-nil means include TODO items for export.
+
This may have the following values:
t include tasks independent of state.
-todo include only tasks that are not yet done.
-done include only tasks that are already done.
-nil remove all tasks before export
-list of keywords keep only tasks with these keywords"
+`todo' include only tasks that are not yet done.
+`done' include only tasks that are already done.
+nil ignore all tasks.
+list of keywords include tasks with these keywords.
+
+This option can also be set with the #+OPTIONS line,
+e.g. \"tasks:nil\"."
:group 'org-export-general
:type '(choice
(const :tag "All tasks" t)