]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/images/atlas/atlas.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / images / atlas / atlas.factor
index 8d03207cd59b631786025523780ce3d6174a95c5..3d0904c67a0c2b9b4093fbf19435af3023cf037b 100644 (file)
@@ -76,7 +76,7 @@ ERROR: atlas-image-formats-dont-match images ;
     image dim>> first2 :> ( w h )
     image-placement loc>> first2 :> ( x y )
 
-    h iota [| row |
+    h <iota> [| row |
         0  row      w  image pixel-row-slice-at
         x  y row +  w  atlas set-pixel-row-at
     ] each ; inline