* [PATCH] Update all ++ repeaters in an entry (loop variables weren't getting reset)
@ 2010-10-21 12:28 Andrew J. Korty
2010-10-22 7:59 ` Carsten Dominik
0 siblings, 1 reply; 2+ messages in thread
From: Andrew J. Korty @ 2010-10-21 12:28 UTC (permalink / raw)
To: emacs-orgmode
See http://www.mail-archive.com/emacs-orgmode@gnu.org/msg30284.html.
This patch is against release_7.01h.
ajk
---
lisp/org.el | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/lisp/org.el b/lisp/org.el
index d33bf4e..52e501e 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -11369,7 +11369,6 @@ This function is run automatically after each state change to a DONE state."
(msg "Entry repeats: ")
(org-log-done nil)
(org-todo-log-states nil)
- (nshiftmax 10) (nshift 0)
re type n what ts time to-state)
(when repeat
(if (eq org-log-repeat t) (setq org-log-repeat 'state))
@@ -11416,15 +11415,16 @@ This function is run automatically after each state change to a DONE state."
(- (time-to-days (current-time)) (time-to-days time))
'day))
((equal (match-string 1 ts) "+")
- (while (or (= nshift 0)
- (<= (time-to-days time) (time-to-days (current-time))))
- (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")))
- (org-timestamp-change n (cdr (assoc what whata)))
- (org-at-timestamp-p t)
- (setq ts (match-string 1))
- (setq time (save-match-data (org-time-string-to-time ts))))
+ (let ((nshiftmax 10) (nshift 0))
+ (while (or (= nshift 0)
+ (<= (time-to-days time) (time-to-days (current-time))))
+ (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")))
+ (org-timestamp-change n (cdr (assoc what whata)))
+ (org-at-timestamp-p t)
+ (setq ts (match-string 1))
+ (setq time (save-match-data (org-time-string-to-time ts)))))
(org-timestamp-change (- n) (cdr (assoc what whata)))
;; rematch, so that we have everything in place for the real shift
(org-at-timestamp-p t)
--
1.7.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Update all ++ repeaters in an entry (loop variables weren't getting reset)
2010-10-21 12:28 [PATCH] Update all ++ repeaters in an entry (loop variables weren't getting reset) Andrew J. Korty
@ 2010-10-22 7:59 ` Carsten Dominik
0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2010-10-22 7:59 UTC (permalink / raw)
To: Andrew J. Korty; +Cc: emacs-orgmode
Applied, thanks.
- Carsten
On Oct 21, 2010, at 2:28 PM, Andrew J. Korty wrote:
> See http://www.mail-archive.com/emacs-orgmode@gnu.org/msg30284.html.
> This patch is against release_7.01h.
>
> ajk
>
> ---
> lisp/org.el | 20 ++++++++++----------
> 1 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/lisp/org.el b/lisp/org.el
> index d33bf4e..52e501e 100644
> --- a/lisp/org.el
> +++ b/lisp/org.el
> @@ -11369,7 +11369,6 @@ This function is run automatically after
> each state change to a DONE state."
> (msg "Entry repeats: ")
> (org-log-done nil)
> (org-todo-log-states nil)
> - (nshiftmax 10) (nshift 0)
> re type n what ts time to-state)
> (when repeat
> (if (eq org-log-repeat t) (setq org-log-repeat 'state))
> @@ -11416,15 +11415,16 @@ This function is run automatically after
> each state change to a DONE state."
> (- (time-to-days (current-time)) (time-to-days time))
> 'day))
> ((equal (match-string 1 ts) "+")
> - (while (or (= nshift 0)
> - (<= (time-to-days time) (time-to-days
> (current-time))))
> - (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")))
> - (org-timestamp-change n (cdr (assoc what whata)))
> - (org-at-timestamp-p t)
> - (setq ts (match-string 1))
> - (setq time (save-match-data (org-time-string-to-time
> ts))))
> + (let ((nshiftmax 10) (nshift 0))
> + (while (or (= nshift 0)
> + (<= (time-to-days time) (time-to-days
> (current-time))))
> + (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")))
> + (org-timestamp-change n (cdr (assoc what whata)))
> + (org-at-timestamp-p t)
> + (setq ts (match-string 1))
> + (setq time (save-match-data (org-time-string-to-
> time ts)))))
> (org-timestamp-change (- n) (cdr (assoc what whata)))
> ;; rematch, so that we have everything in place for the
> real shift
> (org-at-timestamp-p t)
> --
> 1.7.3.1
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
- Carsten
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-10-22 8:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-21 12:28 [PATCH] Update all ++ repeaters in an entry (loop variables weren't getting reset) Andrew J. Korty
2010-10-22 7:59 ` Carsten Dominik
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.