summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schwarzgruber <c.schwarzgruber.cs@gmail.com>2018-06-15 10:47:55 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-06-16 21:51:37 +0200
commit7fcceecf5d30f815d86e519569d6eabe25e54115 (patch)
treea6d1e473b604ea5996544665b84033b67729e053
parent42a2c248eb1ce1125531a688cefc01e3884f4182 (diff)
downloadorg-mode-7fcceecf5d30f815d86e519569d6eabe25e54115.tar.gz
Improve `org-log-reschedule` and `org-log-redeadline' docstrings
* lisp/org.el (org-log-reschedule): (org-log-redeadline): Improve docstring. TINYCHANGE
-rw-r--r--lisp/org.el19
1 files changed, 14 insertions, 5 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 94ff48b..27d88d8 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