From e64c20d79ffdb43f1d96ddd38aa46a1b443e5132 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Tue, 21 Aug 2012 19:50:23 -0400 Subject: [PATCH] require racket async-channel instead of scheme --- collects/frtime/core/mailbox.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/frtime/core/mailbox.rkt b/collects/frtime/core/mailbox.rkt index 5f375d16f4..228fd94360 100644 --- a/collects/frtime/core/mailbox.rkt +++ b/collects/frtime/core/mailbox.rkt @@ -1,7 +1,7 @@ #lang racket (require "contract.rkt" "match.rkt" - scheme/async-channel) + racket/async-channel) ; XXX More efficient structure (define (snoc x l) (append l (list x)))