X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpcl%2Fprint-object.lisp;h=f3a896011a23a0be47013a248f43688782783643;hb=1c2d2fa984c9d0bf07b5a1e5eeae2eade5cc4cb4;hp=5dd716256bc9da1825ba62e4c442d176a8c9debb;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/pcl/print-object.lisp b/src/pcl/print-object.lisp index 5dd7162..f3a8960 100644 --- a/src/pcl/print-object.lisp +++ b/src/pcl/print-object.lisp @@ -29,16 +29,16 @@ ;;;; the PRINT-OBJECT generic function -;;; Blow away the old non-generic function placeholder which was used by the -;;; printer doing bootstrapping, and immediately replace it with some new -;;; printing logic, so that the Lisp printer stays crippled only for the -;;; shortest necessary time. +;;; Blow away the old non-generic function placeholder which was used +;;; by the printer doing bootstrapping, and immediately replace it +;;; with some new printing logic, so that the Lisp printer stays +;;; crippled only for the shortest necessary time. (let (;; (If we don't suppress /SHOW printing while the printer is ;; crippled here, it becomes really easy to crash the bootstrap ;; sequence by adding /SHOW statements e.g. to the compiler, ;; which kinda defeats the purpose of /SHOW being a harmless ;; tracing-style statement.) - #+sb-show (sb-int:*/show* nil)) + #+sb-show (*/show* nil)) (fmakunbound 'print-object) (defgeneric print-object (object stream)) (defmethod print-object ((x t) stream)