Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!ames!ucbcad!ucbvax!hplabs!hp-pcd!orstcs!dhelaan From: dhelaan@orstcs.UUCP Newsgroups: comp.lang.smalltalk Subject: Re: Smalltalk/V question Message-ID: <245100002@orstcs> Date: Wed, 25-Feb-87 04:43:00 EST Article-I.D.: orstcs.245100002 Posted: Wed Feb 25 04:43:00 1987 Date-Received: Mon, 2-Mar-87 03:54:17 EST References: <3060@gitpyr> Lines: 16 Nf-ID: #R:gitpyr:-306000:orstcs:245100002:000:533 Nf-From: orstcs.cs.ORST.EDU!dhelaan Feb 25 01:43:00 1987 There is a class called SystemDictionary, that keeps track of everything in the system, of which there is one instance called Smalltalk all the time. To remove a class or change its variables you need to remove all its instances first. To know all the defined instances in the system just execute the following statement. "Smalltalk keys" which will display a set of all the defined instances in the system. then either remove it or redefined it. Try also using the Inspector.