The Trunk: System-ct.1522.mcz

[email protected] Sat, 4 Jul 2026 22:48:12 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Christoph Thiede uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ct.1522.mcz

==================== Summary ====================

Name: System-ct.1522
Author: ct
Time: 5 July 2026, 12:48:10.913323 am
UUID: 84e72534-e47a-4693-8167-22cd07435563
Ancestors: System-eem.1521

Fixes a multi-environment slip when filing out a system organization.

=============== Diff against System-eem.1521 ===============

Item was changed:
  ----- Method: SystemOrganizer>>fileOut (in category 'fileIn/Out') -----
  fileOut  "SystemOrganization fileOut"
  
  	| internalStream |
  	internalStream := WriteStream on: (String new: 30000).
  	internalStream nextPutAll: 'SystemOrganization changeFromCategorySpecs: #('; cr;
+ 		print: self;  "ends with a cr"
- 		print: SystemOrganization;  "ends with a cr"
  		nextPutAll: ')!!'; cr.
  
  	FileStream writeSourceCodeFrom: internalStream baseName: (FileDirectory default nextNameFor: 'SystemOrganization' extension: 'st') isSt: true useHtml: false
  !

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]