[squeak-dev] The Trunk: System-nice.179.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Nov 27 21:57:27 UTC 2009


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]!




More information about the Squeak-dev mailing list