projects
/
8sync.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d1cf1e
)
Oops, removing (pk)
author
Christopher Allan Webber
<cwebber@dustycloud.org>
Fri, 20 Nov 2015 04:07:57 +0000
(22:07 -0600)
committer
Christopher Allan Webber
<cwebber@dustycloud.org>
Fri, 20 Nov 2015 04:07:57 +0000
(22:07 -0600)
loopy.scm
patch
|
blob
|
history
diff --git
a/loopy.scm
b/loopy.scm
index ee1bc8121319943f49271b47b17e495ac92821de..3113f82d94aa23f584c54fce89770b06f1915ffe 100644
(file)
--- a/
loopy.scm
+++ b/
loopy.scm
@@
-356,11
+356,11
@@
Will produce (0 . 0) instead of a negative number, if needed."
(cons 0 0))
(soonest-time ; ie, the agenda is non-empty
(let* ((current-time (agenda-time agenda)))
- (if (time<=
(pk 'soonest-time soonest-time) (pk 'current-time current-time)
)
+ (if (time<=
soonest-time current-time
)
;; Well there's something due so let's select
;; (this avoids a (possible?) race condition chance)
(cons 0 0)
- (
pk 'time-minus (time-minus soonest-time current-time)
))))
+ (
time-minus soonest-time current-time
))))
(else
(cons #f #f)))))
(define (do-select)