From 4118e3306b85390d0564960b92c9f56e202898d0 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 8 Dec 2016 15:29:58 -0600 Subject: [PATCH] agenda: Remove debugging statements. * 8sync/agenda.scm (wait-for-readable, wait-for-writable): Removed debug statments. --- 8sync/agenda.scm | 2 -- 1 file changed, 2 deletions(-) diff --git a/8sync/agenda.scm b/8sync/agenda.scm index f22134d..8847dc9 100644 --- a/8sync/agenda.scm +++ b/8sync/agenda.scm @@ -768,14 +768,12 @@ on suspendable ports." (begin body ...))) (define (wait-for-readable port) - (display "Waiting to read\n") (8sync-abort-to-prompt (make-async-request (lambda (kont) (make-read-request port (wrap (kont #f))))))) (define (wait-for-writable port) - (display "Waiting to write\n") (8sync-abort-to-prompt (make-async-request (lambda (kont) -- 2.31.1