From 8cd12257edd2fdb0d9a9b29be86843c3fcd74aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Mon, 5 Sep 2016 14:53:22 +0200 Subject: [PATCH] Fix issue with racket v6.5 --- private/mixin.rkt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/private/mixin.rkt b/private/mixin.rkt index 7b6834a..b2eaf41 100644 --- a/private/mixin.rkt +++ b/private/mixin.rkt @@ -10,5 +10,6 @@ (syntax-parser [(_ (~var mixin (static eh-mixin-expander? "an eh-mixin expander"))) (with-disappeared-uses - (record-disappeared-uses #'mixin) - #'(mixin))])) \ No newline at end of file + (begin + (record-disappeared-uses #'mixin) + #'(mixin)))])) \ No newline at end of file