http://www.assembla.com/spaces/clojure/tickets/300-newline-should-output-
platform-specific-newline-sequence
Currently these functions always output ASCII 10 line feeds. I believe that
they should output the platform default line-endings as Java does, so on
Windows they would output ASCII 13 10.
http://java.sun.com/j2se/1.4.2/docs/api/java/io/BufferedWriter.html
If you are currently writing code like (println "hello world\r"), in order to
work around the situation on Windows, then you will need to remove that work-
around, but I'd think that that is pretty unlikely. The patch wouldn't affect
the behaviour of code such as (print "hello world\r\n").
Any opposition?
--
Dave