On Tue Jan 30, 2007 at 03:04:01PM +0530, Madhu wrote:
The printing of repl results seems to have changed recently:
CL-USER> (format *standard-output* "foo") NIL CL-USER> foo
CL-USER> (format *standard-output* "foo~%") NIL CL-USER> foo
i.e. The result is printed and the prompt is printed before the command's output.
Do other people get this same behaviour?
Is this backend/interaction mode specific? (I'm using cmucl).
I'm not getting it with SBCL 1.0.1 + SLIME 2007-01-24
CL-USER> (format *standard-output* "foo") foo NIL
--Jeff