Set variables org-timer-timer[123] correctly.
Patch by Stephan Schmitt
This commit is contained in:
parent
f90f96bc29
commit
1962a53c80
|
@ -1,5 +1,9 @@
|
||||||
2009-11-05 Carsten Dominik <carsten.dominik@gmail.com>
|
2009-11-05 Carsten Dominik <carsten.dominik@gmail.com>
|
||||||
|
|
||||||
|
* org-timer.el (org-timer-set-timer): Set variables
|
||||||
|
org-timer-timer[123] correctly.
|
||||||
|
|
||||||
|
|
||||||
* org-mobile.el (org-mobile-files-alist): Make it work when
|
* org-mobile.el (org-mobile-files-alist): Make it work when
|
||||||
`agenda-archives' is included in
|
`agenda-archives' is included in
|
||||||
`org-agenda-text-search-extra-files'.
|
`org-agenda-text-search-extra-files'.
|
||||||
|
|
|
@ -312,12 +312,12 @@ VALUE can be `on', `off', or `pause'."
|
||||||
(t (error "Not in an Org buffer"))))
|
(t (error "Not in an Org buffer"))))
|
||||||
timer-set)
|
timer-set)
|
||||||
(mapcar (lambda(timer)
|
(mapcar (lambda(timer)
|
||||||
(if (not (or (eval timer) timer-set))
|
(when (not (or (eval timer) timer-set))
|
||||||
(setq timer-set t
|
(setq timer-set t)
|
||||||
timer
|
(setq org-timer-last-timer
|
||||||
(run-with-timer
|
(run-with-timer
|
||||||
secs nil 'org-notify (format "%s: time out" hl) t)
|
secs nil 'org-notify (format "%s: time out" hl) t))
|
||||||
org-timer-last-timer timer)))
|
(set timer org-timer-last-timer)))
|
||||||
'(org-timer-timer1
|
'(org-timer-timer1
|
||||||
org-timer-timer2
|
org-timer-timer2
|
||||||
org-timer-timer3)))))
|
org-timer-timer3)))))
|
||||||
|
|
Loading…
Reference in New Issue