emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] [Accepted] [Orgmode, 4/4] org: use org-today in habits auto re


From: Carsten Dominik
Subject: [Orgmode] [Accepted] [Orgmode, 4/4] org: use org-today in habits auto repeat
Date: Wed, 1 Dec 2010 00:49:22 +0100 (CET)

Patch 417 (http://patchwork.newartisans.com/patch/417/) is now "Accepted".

Maintainer comment: No comment

This relates to the following submission:

http://mid.gmane.org/%3C1291040314-1884-4-git-send-email-julien%40danjou.info%3E

Here is the original message containing the patch:

> Content-Type: text/plain; charset="utf-8"
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> Subject: [Orgmode,4/4] org: use org-today in habits auto repeat
> Date: Mon, 29 Nov 2010 19:18:34 -0000
> From: Julien Danjou <address@hidden>
> X-Patchwork-Id: 417
> Message-Id: <address@hidden>
> To: address@hidden
> Cc: Julien Danjou <address@hidden>
> 
> * org.el (org-auto-repeat-maybe): Use org-today.
> 
> Signed-off-by: Julien Danjou <address@hidden>
> 
> ---
> lisp/org.el |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/lisp/org.el b/lisp/org.el
> index 6c4c433..7a76559 100644
> --- a/lisp/org.el
> +++ b/lisp/org.el
> @@ -11393,13 +11393,13 @@ This function is run automatically after each state 
> change to a DONE state."
>            ((equal (match-string 1 ts) ".")
>             ;; Shift starting date to today
>             (org-timestamp-change
> -            (- (time-to-days (current-time)) (time-to-days time))
> +            (- (org-today) (time-to-days time))
>              'day))
>            ((equal (match-string 1 ts) "+")
>             (let ((nshiftmax 10) (nshift 0))
>               (while (or (= nshift 0)
>                          (<= (time-to-days time)
> -                            (time-to-days (current-time))))
> +                            (org-today)))
>                 (when (= (incf nshift) nshiftmax)
>                   (or (y-or-n-p (message "%d repeater intervals were not 
> enough to shift date past today.  Continue? " nshift))
>                       (error "Abort")))
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]