# HG changeset patch # User Claus Gittinger # Date 1063963759 -7200 # Node ID 5a2d612e1adbb4459036b08271670e8ea3ac51d8 # Parent ddcfae28cbad14ab84504135cda9c877c9a4ac60 oops - skip was always disabled diff -r ddcfae28cbad -r 5a2d612e1adb 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!