From: Mark Wooding Date: Mon, 10 Nov 2008 11:41:13 +0000 (+0000) Subject: mdw-base: Replace (FORMAT T "~&") by (FRESH-LINE). X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/commitdiff_plain/f36fbd9c42e8c151fc55de3efa1cb0520ba20927 mdw-base: Replace (FORMAT T "~&") by (FRESH-LINE). No idea why I wrote it like that in the first place. --- diff --git a/mdw-base.lisp b/mdw-base.lisp index a41b685..95b79de 100644 --- a/mdw-base.lisp +++ b/mdw-base.lisp @@ -66,7 +66,7 @@ "Debugging tool: print the expression X and its values." (let ((tmp (gensym))) `(let ((,tmp (multiple-value-list ,x))) - (format t "~&") + (fresh-line) (pprint-logical-block (*standard-output* nil :per-line-prefix ";; ") (format t "~S = ~@_~:I~:[#~;~:*~{~S~^ ~_~}~]"