commit 8cd12257edd2fdb0d9a9b29be86843c3fcd74aa0 parent 035f51646b31617cab9f3f7169a1ebfd055e0ed8 Author: Georges Dupéron <georges.duperon@gmail.com> Date: Mon, 5 Sep 2016 14:53:22 +0200 Fix issue with racket v6.5 Diffstat:
| M | private/mixin.rkt | | | 7 | ++++--- |
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git 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