]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/images/images.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / images / images.factor
index a8439e5113aca3eb251c8bac17b221395fc9ed47..95b77e756e4e9b732d65170f2b81b7fdcee85599 100644 (file)
@@ -171,7 +171,7 @@ PRIVATE>
 :: each-pixel ( ... image quot: ( ... x y pixel -- ... ) -- ... )
     image dim>> first2 :> ( width height )
     image bytes-per-pixel :> n
-    height width [ iota ] bi@ [| y x |
+    height width [ <iota> ] bi@ [| y x |
         y width * x + :> start
         start n * :> from
         from n + :> to