diff options
| -rw-r--r-- | lisp/org/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/org/org.el | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 8c06c22c4af..618d5753a46 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-04-03 Bastien Guerry <bzg@gnu.org> | ||
| 2 | |||
| 3 | * org.el (org-todo): Fix regression: rename `state' to | ||
| 4 | `org-state'. | ||
| 5 | (org-use-effective-time): Fix group and type. | ||
| 6 | |||
| 1 | 2012-04-02 Bastien Guerry <bzg@gnu.org> | 7 | 2012-04-02 Bastien Guerry <bzg@gnu.org> |
| 2 | 8 | ||
| 3 | * org-clock.el (org-clock-out-if-current): Fix regression: rename | 9 | * org-clock.el (org-clock-out-if-current): Fix regression: rename |
diff --git a/lisp/org/org.el b/lisp/org/org.el index 59b8e3f0391..38d4f705742 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el | |||
| @@ -2816,8 +2816,8 @@ be the favorite working time of John Wiegley :-)" | |||
| 2816 | For example, if `org-extend-today-until' is 8, and it's 4am, then the | 2816 | For example, if `org-extend-today-until' is 8, and it's 4am, then the |
| 2817 | \"effective time\" of any timestamps between midnight and 8am will be | 2817 | \"effective time\" of any timestamps between midnight and 8am will be |
| 2818 | 23:59 of the previous day." | 2818 | 23:59 of the previous day." |
| 2819 | :group 'boolean | 2819 | :group 'org-time |
| 2820 | :type 'integer) | 2820 | :type 'boolean) |
| 2821 | 2821 | ||
| 2822 | (defcustom org-edit-timestamp-down-means-later nil | 2822 | (defcustom org-edit-timestamp-down-means-later nil |
| 2823 | "Non-nil means S-down will increase the time in a time stamp. | 2823 | "Non-nil means S-down will increase the time in a time stamp. |
| @@ -11380,7 +11380,7 @@ For calling through lisp, arg is also interpreted in the following way: | |||
| 11380 | ;; It is now done, and it was not done before | 11380 | ;; It is now done, and it was not done before |
| 11381 | (org-add-planning-info 'closed (org-current-effective-time)) | 11381 | (org-add-planning-info 'closed (org-current-effective-time)) |
| 11382 | (if (and (not dolog) (eq 'note org-log-done)) | 11382 | (if (and (not dolog) (eq 'note org-log-done)) |
| 11383 | (org-add-log-setup 'done state this 'findpos 'note))) | 11383 | (org-add-log-setup 'done org-state this 'findpos 'note))) |
| 11384 | (when (and org-state dolog) | 11384 | (when (and org-state dolog) |
| 11385 | ;; This is a non-nil state, and we need to log it | 11385 | ;; This is a non-nil state, and we need to log it |
| 11386 | (org-add-log-setup 'state org-state this 'findpos dolog))) | 11386 | (org-add-log-setup 'state org-state this 'findpos dolog))) |