Prevent mode-line timers from being duplicated

(org-clock-in): Before creating `org-clock-mode-line-timer', check to
make sure an older timer is not currently running.
This commit is contained in:
John Wiegley 2009-10-16 22:06:09 -04:00
parent e673507f69
commit b6594a03df
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,9 @@
2009-10-17 John Wiegley <johnw@newartisans.com>
* org-clock.el (org-clock-in): Before creating
`org-clock-mode-line-timer', check to make sure an older timer is
not currently running.
* org.el (org-files-list): New utility function for returning a
list of all open org-mode buffers, plus all files used to build
the agenda buffer. Note that not all the files will necessarily

View File

@ -616,6 +616,9 @@ the clocking selection, associated with the letter `d'."
(setq global-mode-string
(append global-mode-string '(org-mode-line-string))))
(org-clock-update-mode-line)
(when org-clock-mode-line-timer
(cancel-timer org-clock-mode-line-timer)
(setq org-clock-mode-line-timer nil))
(setq org-clock-mode-line-timer
(run-with-timer 60 60 'org-clock-update-mode-line))
(message "Clock starts at %s - %s" ts msg-extra)