]> gitweb.factorcode.org Git - factor.git/blobdiff - core/slots/slots.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / core / slots / slots.factor
index d0a9459af8d8a61a9d8729d72c1d1266c7de3608..5560bdcea38eb080146e08103873093a5c5d06b6 100644 (file)
@@ -271,7 +271,7 @@ M: slot-spec make-slot
     [ make-slot ] map ;
 
 : finalize-slots ( specs base -- specs )
-    over length iota [ + ] with map [ >>offset ] 2map ;
+    over length <iota> [ + ] with map [ >>offset ] 2map ;
 
 : slot-named* ( name specs -- offset spec/f )
     [ name>> = ] with find ;