0.7.3.1:
[sbcl.git] / src / code / describe.lisp
index 814a1b9..7ea642d 100644 (file)
 
 (in-package "SB-IMPL") ;(SB-IMPL, not SB!IMPL, since we're built in warm load.)
 \f
-(defvar *describe-indentation-step* 3
-  #+sb-doc
-  "the number of spaces that sets off each line of a recursive description")
-
 (declaim (ftype (function (t stream)) describe-object))
 (defgeneric describe-object ((x t) stream))
 
@@ -24,9 +20,9 @@
   "Print a description of the object X."
   (let ((stream (out-synonym-of stream-designator)))
     (pprint-logical-block (stream nil)
-      (fresh-line stream)
+      (pprint-newline :mandatory stream)
       (describe-object x stream)
-      (fresh-line stream)))
+      (pprint-newline :mandatory stream)))
   (values))
 \f
 ;;;; miscellaneous DESCRIBE-OBJECT methods