diff --git a/collects/frtime/core/frp.rkt b/collects/frtime/core/frp.rkt index 5c50d8a503..39d1375db1 100644 --- a/collects/frtime/core/frp.rkt +++ b/collects/frtime/core/frp.rkt @@ -1,7 +1,5 @@ #lang racket -(require (only-in mzlib/etc - identity nor) - "contract.rkt" +(require "contract.rkt" "erl.rkt" "heap.rkt") @@ -410,8 +408,8 @@ sup (filter (lambda (a) (let ([v (weak-box-value a)]) - (nor (eq? v inf) - (eq? v #f)))) + (not (or (eq? v inf) + (eq? v #f))))) dependents))] [_ (void)])))