trptcolin / reply

REPL-y: A fitter, happier, more productive REPL for Clojure.
Eclipse Public License 1.0
337 stars 44 forks source link

Standalone REPL: don't print a spurious newline after an exception #141

Closed ivan closed 10 years ago

ivan commented 10 years ago

The output was originally:

user=> (/ 1 0)
#<ArithmeticException java.lang.ArithmeticException: Divide by zero>

user=>
ivan commented 10 years ago

Actually, let me rethink this; I'm guessing it should match lein repl's output instead:

user=> (/ 1 0)

ArithmeticException Divide by zero  clojure.lang.Numbers.divide (Numbers.java:156)
trptcolin commented 10 years ago

I'd love to get rid of the unnecessary newlines in both places if it's possible.