#DOCUMENTATION by stefan
authorStefan Vogel <sv@exept.de>
Fri, 24 Feb 2017 11:55:20 +0100
changeset 21565 26083269801c
parent 21564 8e4d7d44dc2a
child 21566 6155a813c686
#DOCUMENTATION by stefan class: Signal comment/format in: #ignoreIn:
Signal.st
--- a/Signal.st	Fri Feb 24 11:42:16 2017 +0100
+++ b/Signal.st	Fri Feb 24 11:55:20 2017 +0100
@@ -987,16 +987,18 @@
     "evaluate the argument, aBlock.
      Ignore the receiver-signal during evaluation - i.e. simply continue.
      This makes only sense for some signals, such as UserInterrupt
-     or AbortSignal, because continuing after an exception without any cleanup
+     or AbortOperationRequest, because continuing after an exception without any cleanup
      often leads to followup-errors."
 
      ^ self handle:[:ex | ex proceedWith:nil] do:aBlock.
 
      "
       Object messageNotUnderstoodSignal ignoreIn:[
-	 123 size open
+         123 size open
       ]
      "
+
+    "Modified (comment): / 24-02-2017 / 11:15:55 / stefan"
 ! !
 
 !Signal class methodsFor:'documentation'!