[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
PRINT-OBJECT bug in 8/27 PCL
- To: commonloops.pa@Xerox.COM
- Subject: PRINT-OBJECT bug in 8/27 PCL
- From: kempf%hplabsz@hplabs.HP.COM
- Date: Sat, 21 Nov 87 19:21:10 MST
- Redistributed: commonloops.pa
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>