From 7fcceecf5d30f815d86e519569d6eabe25e54115 Mon Sep 17 00:00:00 2001 From: Christian Schwarzgruber Date: Fri, 15 Jun 2018 10:47:55 +0200 Subject: [PATCH] Improve `org-log-reschedule` and `org-log-redeadline' docstrings * lisp/org.el (org-log-reschedule): (org-log-redeadline): Improve docstring. TINYCHANGE --- lisp/org.el | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 94ff48be4..27d88d836 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -2900,7 +2900,7 @@ property to one or more of these keywords." (setq org-log-done 'note))) (defcustom org-log-reschedule nil - "Information to record when the scheduling date of a tasks is modified. + "Information to record when the scheduling date of a task is modified. Possible values are: @@ -2912,16 +2912,22 @@ This option can also be set with on a per-file-basis with #+STARTUP: nologreschedule #+STARTUP: logreschedule - #+STARTUP: lognotereschedule" + #+STARTUP: lognotereschedule + +You can have local logging settings for a subtree by setting the LOGGING +property to one or more of these keywords. + +This variable has an effect when calling `org-schedule' or +`org-agenda-schedule' only." :group 'org-todo :group 'org-progress :type '(choice (const :tag "No logging" nil) (const :tag "Record timestamp" time) - (const :tag "Record timestamp with note." note))) + (const :tag "Record timestamp with note" note))) (defcustom org-log-redeadline nil - "Information to record when the deadline date of a tasks is modified. + "Information to record when the deadline date of a task is modified. Possible values are: @@ -2936,7 +2942,10 @@ This option can also be set with on a per-file-basis with #+STARTUP: lognoteredeadline You can have local logging settings for a subtree by setting the LOGGING -property to one or more of these keywords." +property to one or more of these keywords. + +This variable has an effect when calling `org-deadline' or +`org-agenda-deadline' only." :group 'org-todo :group 'org-progress :type '(choice