]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/odbc/odbc.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / odbc / odbc.factor
index 6b6c0a706ded0608b9b1ae06bebc6610b1fb74b6..ceb2e72b05786fc8b23ea1bbc2b8daf5f788a45f 100644 (file)
@@ -243,7 +243,7 @@ C: <field> field
 
 : odbc-get-row-fields ( statement -- seq )
     [
-        dup odbc-number-of-columns iota [
+        dup odbc-number-of-columns <iota> [
             1 + odbc-get-field value>> ,
         ] with each
     ] { } make ;