chiark / gitweb /
mdw-base: Replace (FORMAT T "~&") by (FRESH-LINE).
[lisp] / mdw-base.lisp
index a41b685ba62d601945f74d6ca798dcd0faa1b33a..95b79de744d3b6f9968f3b94808010608c2f794d 100644 (file)
@@ -66,7 +66,7 @@ (defmacro show (x)
   "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~:[#<no values>~;~:*~{~S~^ ~_~}~]"