Omit a ‘/’ from org-clock-resolve

* lisp/org/org-clock.el (org-clock-resolve): Replace (floor (/ X
60)) with (floor X 60).
This commit is contained in:
Paul Eggert 2026-06-05 18:59:25 -07:00
parent 5eee9e239b
commit 4fd59d0eba

View file

@ -1207,9 +1207,9 @@ to be CLOCKED OUT."))))
(read-number "Keep how many minutes: " default))
(and (memq ch '(?t ?T))
(floor
(/ (float-time
(time-subtract (org-read-date t t) last-valid))
60)))))
(float-time
(time-subtract (org-read-date t t) last-valid))
60))))
(gotback
(and (memq ch '(?g ?G))
(read-number "Got back how many minutes ago: " default)))