Nicolas Cellier uploaded a new version of ShoutCore to project The Trunk:
http://source.squeak.org/trunk/ShoutCore-nice.6.mcz==================== Summary ====================
Name: ShoutCore-nice.6
Author: nice
Time: 26 December 2009, 9:39:23 am
UUID: 71bc2617-492a-4a14-9c44-ab93d8325290
Ancestors: ShoutCore-nice.5
Let #evaluateWithoutStyling: answer the result of evaluating the block argument
=============== Diff against ShoutCore-nice.5 ===============
Item was changed:
----- Method: SHTextStyler>>evaluateWithoutStyling: (in category 'styling') -----
evaluateWithoutStyling: aBlock
+ | t |
- |t|
t := stylingEnabled.
+ ^[stylingEnabled := false.
- [stylingEnabled := false.
aBlock value]
ensure: [stylingEnabled := t]!