org-export: Fix docstring

* contrib/lisp/org-export.el (org-export-with-tasks): Fix docstring.
This commit is contained in:
Nicolas Goaziou 2012-10-30 16:28:14 +01:00
parent 1a7610ed98
commit caee8076f8
1 changed files with 8 additions and 4 deletions

View File

@ -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)