oops - skip was always disabled
authorClaus Gittinger <cg@exept.de>
Fri, 19 Sep 2003 11:29:19 +0200
changeset 5195 5a2d612e1adb
parent 5194 ddcfae28cbad
child 5196 13f6e4eaac91
oops - skip was always disabled
DebugView.st
--- a/DebugView.st	Fri Sep 19 11:17:18 2003 +0200
+++ b/DebugView.st	Fri Sep 19 11:29:19 2003 +0200
@@ -1046,7 +1046,7 @@
 
         m := contextView middleButtonMenu.
         m notNil ifTrue:[
-            m disableAll:#(showMore skip skipForReturn inspectContext).
+            m disableAll:#(showMore "skip skipForReturn" inspectContext).
         ].
         verboseBacktrace 
             ifTrue:[self showVerboseWalkback]
@@ -1095,7 +1095,7 @@
             m enable:#doTerminate.
         ].
         iAmNew ifFalse:[
-            m disableAll:#(showMore skip skipForReturn inspectContext).
+            m disableAll:#(showMore "skip skipForReturn" inspectContext).
         ].
     ].
 
@@ -5774,7 +5774,7 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.349 2003-09-11 12:54:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.350 2003-09-19 09:29:19 cg Exp $'
 ! !
 
 DebugView initialize!