With the adoption of the clojure.main at SVN r1127, the print behavior
of the REPL changed from prn-style to println-style, e.g.

;r1126
user=> (list "hey" 'hey)
("hey" hey)

;r1127 & on
user=> (list "hey" 'hey)
(hey hey)

I missed it when looking over Stephen's clojure.main code when
proposed, but I think the prior behavior is pretty clearly preferable.
Others?

(To make the change, the docstring on line 73 & the default function
on line 85 would both be changed from println to prn.)

Perry
--~--~---------~--~----~------------~-------~--~----~
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
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to