Oops, catch Error, not Exception,.
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 25 Feb 2014 21:25:56 +0100
changeset 14054 1931f75c8318
parent 14053 08f7da1dd758
child 14055 d5de1e564e5d
Oops, catch Error, not Exception,.
Tools__BackgroundSourceProcessingService.st
--- a/Tools__BackgroundSourceProcessingService.st	Tue Feb 25 21:04:27 2014 +0100
+++ b/Tools__BackgroundSourceProcessingService.st	Tue Feb 25 21:25:56 2014 +0100
@@ -224,7 +224,7 @@
     "Process source code. If `delayed` is true, view should be updated
      asynchronously using #pushUserEvent:"
 
-    Exception , HaltInterrupt handle:[:ex|
+    Error , HaltInterrupt handle:[:ex|
         "/ Kludge...    
         (codeView topView class == DebugView) ifTrue:[
             Transcript showCR: 'Error when processing source code'.
@@ -254,10 +254,10 @@
 !BackgroundSourceProcessingService class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__BackgroundSourceProcessingService.st,v 1.5 2014-02-25 20:04:27 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__BackgroundSourceProcessingService.st,v 1.6 2014-02-25 20:25:56 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__BackgroundSourceProcessingService.st,v 1.5 2014-02-25 20:04:27 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__BackgroundSourceProcessingService.st,v 1.6 2014-02-25 20:25:56 vrany Exp $'
 ! !