From caee8076f86d4b407158787f3269b61e2e679219 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 30 Oct 2012 16:28:14 +0100 Subject: [PATCH] org-export: Fix docstring * contrib/lisp/org-export.el (org-export-with-tasks): Fix docstring. --- contrib/lisp/org-export.el | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 6b3a5c540..710b9514d 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) -- 2.11.4.GIT