diff --git a/extra/combinators/lib/lib.factor b/extra/combinators/lib/lib.factor index 410a97d90f..12f7c6c6a2 100755 --- a/extra/combinators/lib/lib.factor +++ b/extra/combinators/lib/lib.factor @@ -4,7 +4,7 @@ ! See http://factorcode.org/license.txt for BSD license. USING: kernel combinators fry namespaces quotations hashtables sequences assocs arrays stack-checker effects math math.ranges -generalizations macros continuations random locals ; +generalizations macros continuations random locals accessors ; IN: combinators.lib @@ -63,7 +63,7 @@ IN: combinators.lib ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! MACRO: preserving ( predicate -- quot ) - dup infer effect-in + dup infer in>> dup 1+ '[ , , nkeep , nrot ] ;