Nicolas Cellier uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-nice.179.mcz==================== Summary ====================
Name: System-nice.179
Author: nice
Time: 27 November 2009, 10:56:47 am
UUID: 6d19f2f9-3c0c-46f9-8ca0-369096a00f76
Ancestors: System-nice.178
Print Smalltalk with isSelfEvaluating style
BEFORE: a SystemDictionary(lots of globals)
AFTER: Smalltalk "a SystemDictionary with lots of globals"
=============== Diff against System-nice.178 ===============
Item was added:
+ ----- Method: SystemDictionary>>printOn: (in category 'printing') -----
+ printOn: aStream
+ self == Smalltalk
+ ifTrue: [aStream nextPutAll: #Smalltalk.
+ aStream nextPutAll:' "a SystemDictionary with lots of globals"']
+ ifFalse: [super printOn: aStream]!