[squeak-dev] The Inbox: Multilingual-cbc.200.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 14 20:32:57 UTC 2014


A new version of Multilingual was added to project The Inbox:
http://source.squeak.org/inbox/Multilingual-cbc.200.mcz

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

Name: Multilingual-cbc.200
Author: cbc
Time: 14 August 2014, 1:32:39.389 pm
UUID: 82f3111f-cca2-2941-9d64-1a9132c45dae
Ancestors: Multilingual-ul.199

Set the variable wantsLineEndConversions to true (in MultiByteFileStream initialize) if the platform line endings are no #cr.
This results in default file writing to convert all #cr to whatever the default is for that platform.  On platforms where #cr is the default, it does no conversions.

=============== Diff against Multilingual-ul.199 ===============

Item was changed:
  ----- Method: MultiByteFileStream>>initialize (in category 'initialize-release') -----
  initialize
  
  	super initialize.
+ 	wantsLineEndConversion := (LineEndDefault = #cr) not.
- 	wantsLineEndConversion := false.
  	self initializeConverter!



More information about the Squeak-dev mailing list