From 165dfeb6c87f933f5eafcdecc84d79835210b40e Mon Sep 17 00:00:00 2001 From: Sam Caldwell Date: Fri, 11 Dec 2020 16:38:56 -0500 Subject: [PATCH] fix bug I introduced --- racket/syndicate/core-lang.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/racket/syndicate/core-lang.rkt b/racket/syndicate/core-lang.rkt index cfabc8c..0b44c3b 100644 --- a/racket/syndicate/core-lang.rkt +++ b/racket/syndicate/core-lang.rkt @@ -76,7 +76,8 @@ (define cleaned-acts (clean-actions acts)) (for ([act (in-list cleaned-acts)] #:unless (actor? act)) - (error "only actor creation actions allowed at module level"))) + (error "only actor creation actions allowed at module level")) + cleaned-acts) (define-syntax (syndicate-module stx) (syntax-parse stx