Export to GitHub

wombat-ide - issue #190

Remove space before print in repl


Posted on May 15, 2012 by Quick Bird

A space is printed before the value in the repl. This throws off the first line of a trace. Could you get rid of that space?

~ (trace length) (length)

~ (length '(a b c d e)) |(length (a b c d e)) | (length (b c d e)) | |(length (c d e)) | | (length (d e)) | | |(length (e)) | | | (length ()) | | | 0 | | |1 | | 2 | |3 | 4 |5 5

~ (untrace length) (length)

~ (length '(a b c d e f)) 6

Comment #1

Posted on May 15, 2012 by Helpful Elephant

(No comment was entered for this change.)

Comment #2

Posted on May 15, 2012 by Helpful Elephant

Ironically, it's actually the change that allowed the trace to print one line at a time that broke this in the first place. Yes, it should be fixable.

Comment #3

Posted on Jan 5, 2013 by Helpful Elephant

This issue was closed by revision f69f5726fcb2.

Status: Fixed

Labels:
Type-Defect Priority-Low Difficulty-Easy Component-UI