Process.st
changeset 23258 1d65d1a0af5d
parent 23050 7a2a7db8aca6
child 24058 5ae2c27577c1
--- a/Process.st	Fri Aug 03 11:27:19 2018 +0200
+++ b/Process.st	Fri Aug 03 12:57:24 2018 +0200
@@ -588,14 +588,16 @@
 
 exceptionHandlerSet
     "retrieve the exceptionHandlerSet, which includes the set of
-     exceptionHandlers which are caught by the process.
+     exceptions which are caught by the process.
      Initially being empty, this allows for default handlers to be
      dynamically added/removed from the set of handled exceptions/queries."
 
     exceptionHandlerSet isNil ifTrue:[
-	exceptionHandlerSet := ExceptionHandlerSet new.
+        exceptionHandlerSet := ExceptionHandlerSet new.
     ].
     ^ exceptionHandlerSet
+
+    "Modified (comment): / 03-08-2018 / 08:48:38 / Claus Gittinger"
 !
 
 id