]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/vocabs/platforms/platforms.factor
factor: words -> split-words, lines -> split-lines, fix errors
[factor.git] / basis / vocabs / platforms / platforms.factor
index 6b5dc5b498101c00200b7b28591bf5aefb690f69..d3cc3d83bf98348938d823d8c3ee7698ab298df1 100644 (file)
@@ -15,7 +15,7 @@ IN: vocabs.platforms
 
 : parse-platform-section ( string suffix -- )
     [
-        [ [ lines parse-lines ] curry with-nested-compilation-unit ]
+        [ [ split-lines parse-lines ] curry with-nested-compilation-unit ]
         curry
     ] dip with-vocabulary drop ; inline