]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/sequences/unrolled/unrolled.factor
basis: ERROR: changes.
[factor.git] / basis / sequences / unrolled / unrolled.factor
index ad28dde00dd0715fd98169dfa271a706e54f2e94..4d83294dd0f2b1812b5a2ec8d9e64e058986a48e 100644 (file)
@@ -34,11 +34,11 @@ ERROR: unrolled-2bounds-error
 
 <PRIVATE
 : unrolled-bounds-check ( seq len quot -- seq len quot )
-    2over swap length > [ 2over unrolled-bounds-error ] when ; inline
+    2over swap length > [ 2over throw-unrolled-bounds-error ] when ; inline
 
 :: unrolled-2bounds-check ( xseq yseq len quot -- xseq yseq len quot )
     { [ len xseq length > ] [ len yseq length > ] } 0||
-    [ xseq yseq len unrolled-2bounds-error ]
+    [ xseq yseq len throw-unrolled-2bounds-error ]
     [ xseq yseq len quot ] if ; inline
 
 : (unrolled-each) ( seq len quot -- len quot )