Andreas Raab uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ar.127.mcz==================== Summary ====================
Name: Tools-ar.127
Author: ar
Time: 18 September 2009, 10:47:45 am
UUID: 94bd8aae-939a-be4b-9de6-ec0117983a4a
Ancestors: Tools-ar.126, Tools-tfel.126
Merge Tools-tfel.126, Tools-ar.126.
=============== Diff against Tools-ar.126 ===============
Item was changed:
----- Method: Debugger>>selectedMessageName (in category 'context stack (message list)') -----
selectedMessageName
"Answer the message selector of the currently selected context.
If the method is unbound we can still usefully answer its old selector."
| selector |
+ selector := self selectedContext selector.
- selector := self selectedContext methodSelector.
^(selector ~~ self selectedContext method selector
and: [selector beginsWith: 'DoIt'])
ifTrue: [self selectedContext method selector]
ifFalse: [selector]!