I raised a ticket a while ago regarding newline and println on Windows.

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

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to