]> gitweb.factorcode.org Git - factor.git/commitdiff
odbc: replace "1+" with "1 +"
authorAlexander Iljin <ajsoft@yandex.ru>
Sat, 29 Oct 2016 21:05:16 +0000 (00:05 +0300)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 31 Oct 2016 01:59:10 +0000 (18:59 -0700)
unmaintained/odbc/odbc.factor

index f108166faaebc3495ce2afb0f836b60813450d93..2bf7413cc512a5f7388b9f98a462357874800c59 100644 (file)
@@ -249,7 +249,7 @@ C: <field> field
 : odbc-get-row-fields ( statement -- seq )
   [
     dup odbc-number-of-columns [
-      1+ odbc-get-field value>> ,
+      1 + odbc-get-field value>> ,
     ] with each
   ] { } make ;