Levente Uzonyi uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-topa.508.mcz==================== Summary ====================
Name: Kernel-topa.508
Author: topa
Time: 25 October 2010, 10:30:52.354 am
UUID: bd68254c-b0c4-4cd5-9926-6a5caa6c82eb
Ancestors: Kernel-ul.507
added missing withAllSuperAndSubclassesDo:
=============== Diff against Kernel-ul.507 ===============
Item was added:
+ ----- Method: Behavior>>withAllSuperAndSubclassesDo: (in category 'enumerating') -----
+ withAllSuperAndSubclassesDo: aBlock
+ self allSuperclassesDo: aBlock.
+ aBlock value: self.
+ self allSubclassesDo: aBlock!