Re: with-out-str assumes Unix line ends

2009-08-06 Thread ataggart
Anne, please don't threadjack. Now my original subject appears missing, since you renamed it. On Aug 6, 1:03 am, Anne Ogborn wrote: > (use 'clojure.contrib.duck-streams) > (spit "C:\\test.txt" >     (with-out-str >       (println "foo") >       (println "bar") >       (flush))) > > On my XP Tab

Re: with-out-str assumes Unix line ends

2009-08-06 Thread Mike Hinchey
What does this return on Windows? (with-out-str (.println (java.io.PrintWriter. *out*))) If it's "\r\n", then maybe (newline) should be changed to print (System/getProperty "line.separator") instead of \newline as it does now. Thoughts? -Mike On Thu, Aug 6, 2009 at 1:03 AM, Anne Ogborn wrote: