# HG changeset patch # User Claus Gittinger # Date 843583653 -7200 # Node ID 98ce4d199c9be9e3631dd78fef251da72173c2d0 # Parent f7fed00976ab59865655f3e929e0f1c3eb8e421e scheisse diff -r f7fed00976ab -r 98ce4d199c9b Object.st --- a/Object.st Tue Sep 24 10:19:50 1996 +0200 +++ b/Object.st Tue Sep 24 18:47:33 1996 +0200 @@ -2033,7 +2033,8 @@ "DebugView cannot run without system processes" - Processor activeProcessIsSystemProcess ifTrue:[ + [Processor isNil + or:[Processor activeProcessIsSystemProcess]) ifTrue:[ ^ MiniDebugger ]. @@ -5268,6 +5269,6 @@ !Object class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.133 1996-09-23 13:25:39 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.134 1996-09-24 16:47:33 cg Exp $' ! ! Object initialize!