In the latest version of SLIME from CVS for Lispworks, I receive the following error when I attempt to inspect the values for a slot in an object:
The slot #<STANDARD-EFFECTIVE-SLOT-DEFINITION A-METHOD 21C8CD0C> is missing from #<A-CLASS 21C8D174> (of class #<STANDARD-CLASS A-CLASS 21C4734C>), when reading the value. <<
This is for the following:
CL-USER> (defclass a-class () ((a-method :accessor a-method))) #<STANDARD-CLASS A-CLASS 21C4734C> CL-USER> (make-instance 'a-class) #<A-CLASS 21C8D174>
This used to work in the SLIME CVS version of perhaps a month or so ago.
-Luke