www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit e8b0cc8cffc3bf449769b04f065ebb825d8bdd70
parent 8cd12257edd2fdb0d9a9b29be86843c3fcd74aa0
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Mon,  5 Sep 2016 23:23:32 +0200

Use phc-toolkit's compat functions for racket v6.5

Diffstat:
Mprivate/mixin.rkt | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/private/mixin.rkt b/private/mixin.rkt @@ -2,6 +2,7 @@ (require "no-order.rkt" (for-syntax syntax/parse + phc-toolkit/untyped racket/syntax)) (provide ~mixin) @@ -9,7 +10,6 @@ (define-eh-mixin-expander ~mixin (syntax-parser [(_ (~var mixin (static eh-mixin-expander? "an eh-mixin expander"))) - (with-disappeared-uses - (begin - (record-disappeared-uses #'mixin) - #'(mixin)))])) -\ No newline at end of file + (with-disappeared-uses* + (record-disappeared-uses* #'mixin) + #'(mixin))])) +\ No newline at end of file