[squeak-dev] The Inbox: Multilingual-xw.283.mcz

commits at source.squeak.org commits at source.squeak.org
Tue May 3 08:08:04 UTC 2022


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

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

Name: Multilingual-xw.283
Author: xw
Time: 3 May 2022, 4:05:10.27391 pm
UUID: 6e259051-8b8f-404e-bac7-33faa625e3b4
Ancestors: Multilingual-xw.282

Add MultiByteFileStream>>readOnlyCopy to respect converter configuration while copying

Fix https://github.com/squeak-smalltalk/squeak-object-memory/issues/16

=============== Diff against Multilingual-xw.282 ===============

Item was added:
+ ----- Method: MultiByteFileStream>>readOnlyCopy (in category 'read, write, position') -----
+ readOnlyCopy
+ 	|copy|
+ 	copy := super readOnlyCopy.
+ 	converter ifNotNil: [copy converter: converter].
+ 	^ copy.!



More information about the Squeak-dev mailing list