[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

PRINT-OBJECT bug in 8/27 PCL



The default print-object method seems to have a bug.  Instead of printing
the class name followed by a unique id (as it used to) it now simply prints
"Standard-Instance":

(defclass foo () (bar))
#<Class FOO #x93858C>
(setq f (make-instance 'foo))
#<Standard-Instance #x93B86C>

This should be:

#<Foo #x93B86C>