Bug: clocking and rounding [9.3.7 (9.3.7-16-g521d7f-elpa @ c:/Users/maiers/AppData/Roaming/.emacs.d/elpa/org-20200803/)]

2020-08-07 Thread Siegmar Maier
Hi,
I'm using clocking within org mode.
I feel the rounding of the clock-in/out is not working correctly.

E.g. if I'm clocked-in in one task and the time is 9:29
Then I clock in to another task
The clock-in time of the new taks will jump to 9:25 (rounding-down)
The clock-out time of the old task will jump to 9:30 (rounding-up)
So I get an overlap

I use the rounding of 5 minutes

Regards
Siegmar

Emacs  : GNU Emacs 26.3 (build 1, x86_64-w64-mingw32)
 of 2019-08-29
Package: Org mode version 9.3.7 (9.3.7-16-g521d7f-elpa @ 
c:/Users/maiers/AppData/Roaming/.emacs.d/elpa/org-20200803/)




bug report org mode

2020-01-21 Thread Siegmar Maier
Hi,
I found following strange behaviour:
with
windwos 10
emacs-version: GNU Emacs 26.3 (build 1, x86_64-mingw32) of 2019-08-29
org-version: 9.3.1-elpaplus

if I use following sequence the coloring of the keywords is not working:
(org-id-update-id-locations)
(setq org-id-link-to-org-use-id t)
(setq org-agenda-deadline-leaders '("!D!" "D%02d:   " "D-%02d:  
"))
(setq org-agenda-scheduled-leaders '("   " "S%02d:   "))
(setq org-todo-keywords
  '((type
 "TODO(t!)"
 "STARTED(s@)"
 "WAITING(w@)"
 "DELEGATED(g@)"
 "MEET(m!)"
 "SOMEDAY(s!)"
 "PROJECT"
 "|"
 "DONE(d!)"
 "CANCELED(c!)")))
(setq org-todo-keyword-faces
  '(
("TODO" :foreground "medium blue" :weight bold)
("MEET" :foreground "deep sky blue" :weight bold)
("STARTED" :foreground "dark orange" :weight bold)
("WAITING" :foreground "red" :weight bold)
("SOMEDAY" :foreground "dark blue" :weight bold)
("DELEGATED" :foreground "dark orange" :weight bold)
("CANCELED" :foreground "forest green" :weight bold)
("PROJECT" :foreground "#088e8e" :weight bold)))
According to my examination the problem is with org-id-update-id-locations. 
Removeing that column makes it work again.
If I put that line behind it works also again