#OTHER by mawalch
authormawalch
Mon, 15 Aug 2016 12:50:25 +0200
changeset 20251 449ecd831246
parent 20250 514a91a6742f
child 20252 17b9880f243e
#OTHER by mawalch occure -> occur occurence -> occurrence occures -> occurs occured -> occurred
Process.st
--- a/Process.st	Mon Aug 15 12:49:59 2016 +0200
+++ b/Process.st	Mon Aug 15 12:50:25 2016 +0200
@@ -741,7 +741,7 @@
 suspendedContext
     "return the processes suspended context
      - this is the context from which a process switch into the scheduler
-     or another process occured.
+     or another process occurred.
      For the active process, a dead process, or one which
      had no chance to run yet, nil is returned.
      Typically, only the debugger is interested in this one."
@@ -750,14 +750,10 @@
     OBJ i;
 
     if (__isSmallInteger(i = __INST(id))) {
-	RETURN (__threadContext(__intVal(i)));
+        RETURN (__threadContext(__intVal(i)));
     }
 %}.
     ^ nil
-
-
-
-
 ! !
 
 !Process methodsFor:'accessing-change notifications'!