ignore syntaxHighlighter errors
authorClaus Gittinger <cg@exept.de>
Fri, 27 Oct 2006 14:32:21 +0200
changeset 7481 11c16a700dcf
parent 7480 33930379ab27
child 7482 11f79a53e3e8
ignore syntaxHighlighter errors
DebugView.st
--- a/DebugView.st	Fri Oct 27 11:13:31 2006 +0200
+++ b/DebugView.st	Fri Oct 27 14:32:21 2006 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libtool' }"
 
 StandardSystemView subclass:#DebugView
@@ -5846,7 +5845,10 @@
                     implementorClass notNil ifTrue:[
                         (highlighter := implementorClass syntaxHighlighterClass) notNil ifTrue:[
                             code size < 100000 ifTrue:[
-                                code := highlighter formatMethod:code in:implementorClass.
+                                Error handle:[:ex |
+                                ] do:[
+                                    code := highlighter formatMethod:code in:implementorClass.
+                                ]
                             ]
                         ]
                     ]
@@ -5943,7 +5945,7 @@
     self updateMenuItems
 
     "Created: / 14-08-1997 / 20:15:00 / cg"
-    "Modified: / 06-08-2006 / 15:33:35 / cg"
+    "Modified: / 27-10-2006 / 14:19:32 / cg"
 !
 
 updateMenuItems
@@ -5997,7 +5999,7 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.405 2006-09-21 14:25:51 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.406 2006-10-27 12:32:21 cg Exp $'
 ! !
 
 DebugView initialize!