mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
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:
parent
5eee9e239b
commit
4fd59d0eba
1 changed files with 3 additions and 3 deletions
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue