ObjMem.st
changeset 794 d713b6c04379
parent 759 908363ce8a32
child 797 f75979c8955c
--- a/ObjMem.st	Tue Dec 19 21:47:33 1995 +0100
+++ b/ObjMem.st	Wed Dec 20 14:17:33 1995 +0100
@@ -944,10 +944,10 @@
 dumpObject:someObject
     "low level dump an object.
      WARNING: this method is for ST/X debugging only 
-	      it will be removed without notice"
+	      it may be removed (or replaced by a noop) without notice"
 
 %{
-    dumpObject(someObject);
+    __dumpObject__(someObject);
 %}
     "
      ObjectMemory dumpObject:true
@@ -3218,6 +3218,6 @@
 !ObjectMemory class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObjMem.st,v 1.83 1995-12-15 12:47:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObjMem.st,v 1.84 1995-12-20 13:17:33 cg Exp $'
 ! !
 ObjectMemory initialize!