]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/tr/tr.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / tr / tr.factor
index b937b25b932357e5981928c395241b10680106b9..2de706bb14fec64aa27a2bfc77d7058b40d7c6d2 100644 (file)
@@ -18,7 +18,7 @@ M: bad-tr summary
     [ [ ascii? ] all? ] both? [ bad-tr ] unless ;
 
 : compute-tr ( quot from to -- mapping )
-    [ 128 iota ] 3dip zip
+    [ 128 <iota> ] 3dip zip
     '[ [ _ call( x -- y ) _ at ] keep or ] B{ } map-as ; inline
 
 : tr-hints ( word -- )