Signal.st
changeset 4486 f84def7aaf3f
parent 4476 696ac99f2a52
child 4491 5041cae5651c
equal deleted inserted replaced
4485:21615534e0fb 4486:f84def7aaf3f
   821       continue. 
   821       continue. 
   822       This makes only sense for some signals, such as UserInterrupt
   822       This makes only sense for some signals, such as UserInterrupt
   823       or AbortSignal, because continuing after an exception without any cleanup
   823       or AbortSignal, because continuing after an exception without any cleanup
   824       often leads to followup-errors."
   824       often leads to followup-errors."
   825 
   825 
   826       ^ self handle:[:ex | ex proceed] do:aBlock.
   826       ^ self handle:[:ex | ex proceedWith:nil] do:aBlock.
   827 
   827 
   828       "
   828       "
   829        Object messageNotUnderstoodSignal ignoreIn:[
   829        Object messageNotUnderstoodSignal ignoreIn:[
   830 	  123 size open   
   830           123 size open   
   831        ]
   831        ]
   832       "
   832       "
   833 ! !
   833 ! !
   834 
   834 
   835 !Signal class methodsFor:'documentation'!
   835 !Signal class methodsFor:'documentation'!
   836 
   836 
   837 version
   837 version
   838     ^ '$Header: /cvs/stx/stx/libbasic/Signal.st,v 1.57 1999-07-31 13:54:28 cg Exp $'
   838     ^ '$Header: /cvs/stx/stx/libbasic/Signal.st,v 1.58 1999-08-02 08:57:09 cg Exp $'
   839 ! !
   839 ! !
   840 Signal initialize!
   840 Signal initialize!