Alexander Lazarević uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-laza.429.mcz==================== Summary ====================
Name: Kernel-laza.429
Author: laza
Time: 22 March 2010, 12:12:33.305 pm
UUID: 5fceae69-95bb-4c8a-a95b-97006acf3086
Ancestors: Kernel-laza.428
reverting last change
=============== Diff against Kernel-laza.428 ===============
Item was changed:
----- Method: Object>>longPrintOn:limitedTo:indent: (in category 'printing') -----
longPrintOn: aStream limitedTo: sizeLimit indent: indent
"Append to the argument, aStream, the names and values of all of the receiver's instance variables. Limit is the length limit for each inst var."
+ self class allInstVarNames doWithIndex:
- self class allInstVarNames asSortedArray doWithIndex:
[:title :index |
indent timesRepeat: [aStream tab].
aStream nextPutAll: title;
nextPut: $:;
space;
tab;
nextPutAll:
((self instVarAt: index) printStringLimitedTo: (sizeLimit -3 -title size max: 1));
cr]!