From d9fdd576a7c1b72999845f86d3cc38a8e6053c49 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 8 Dec 2016 15:37:43 -0600 Subject: [PATCH] agenda: Remove call to deprecated agenda-except-port-map procedure. * 8sync/agenda.scm (update-agenda-from-select!): Remove call to deprecated agenda-except-port-map procedure. --- 8sync/agenda.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/8sync/agenda.scm b/8sync/agenda.scm index 8847dc9..28df8be 100644 --- a/8sync/agenda.scm +++ b/8sync/agenda.scm @@ -27,7 +27,7 @@ #:export ( make-agenda agenda? agenda-queue agenda-prompt-tag - agenda-read-port-map agenda-write-port-map agenda-except-port-map + agenda-read-port-map agenda-write-port-map agenda-schedule make-async-prompt-tag @@ -650,8 +650,7 @@ Also handles sleeping when all we have to do is wait on the schedule." (selector agenda)) 0))) (or (has-items? agenda-read-port-map) - (has-items? agenda-write-port-map) - (has-items? agenda-except-port-map))) + (has-items? agenda-write-port-map))) (if (or (ports-to-select?) ;; select doubles as sleep... -- 2.31.1