diff --git a/basis/grouping/grouping.factor b/basis/grouping/grouping.factor index 4a1b8c7b90..0fa20b41fc 100644 --- a/basis/grouping/grouping.factor +++ b/basis/grouping/grouping.factor @@ -11,7 +11,7 @@ TUPLE: chunking-seq { seq read-only } { n read-only } ; : check-groups dup 0 <= [ "Invalid group count" throw ] when ; inline : new-groups ( seq n class -- groups ) - >r check-groups r> boa ; inline + [ check-groups ] dip boa ; inline GENERIC: group@ ( n groups -- from to seq )