]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/farkup/farkup.factor
core: Add words/unwords/unwords-as and use them.
[factor.git] / basis / farkup / farkup.factor
index 3d4587b76293f609ff012daf521435f391591b85..879fab36ed0cd5242cf9066eb7db9eb2fec7786b 100644 (file)
@@ -108,7 +108,7 @@ DEFER: (parse-paragraph)
     [ cut-slice ] [ f ] if* swap ;
 
 :: (take-until) ( state delimiter accum -- string/f state' )
-    state empty? [ accum "\n" join f ] [
+    state empty? [ accum unlines f ] [
         state unclip-slice :> ( rest first )
         first delimiter split1 :> ( before after )
         before accum push