Process.st
branchjv
changeset 20342 219a5a47e8b1
parent 20244 20922299fd44
parent 20251 449ecd831246
child 20728 83c74234945e
child 23071 77ad9497363c
--- a/Process.st	Sat Aug 13 06:52:18 2016 +0200
+++ b/Process.st	Tue Aug 23 09:54:28 2016 +0100
@@ -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'!