unmake-object [Function]
 Purpose 
 The unmake-object function undoes the indexing between a CLOS instance and its Loom concept.
 Syntax 
 unmake-object instance
 Arguments 
 The instance argument is a CLOS instance, i.e., an instance of a CLOS class that shadows a Loom concept.
 Value 
 The unmake-object function returns nil.
 Examples 
(setq i (make-object 'Lawyer)) ==> \#<Lawyer \#X213628E> 
(retrieve ?x (Lawyer ?x)) ==> (\#<Lawyer \#X213628E>) 
(unmake-object i) ==> NIL 
(retrieve ?x (Lawyer ?x)) ==> NIL
 See Also 
Last modified:  Jun 1 1995