'From etoys3.0 of 19 February 2008 [latest update: #1906] on 22 February 2008 at 4:14:16 pm'! "Change Set: crlfFix-bf Date: 22 February 2008 Author: Bert Freudenberg MultiByteFileStream>>nextPutAll: ignored the lineEndConversion settings"! !MultiByteFileStream methodsFor: 'public' stamp: 'bf 2/22/2008 16:08'! nextPutAll: aCollection | stream | (self isBinary or: [aCollection class == ByteArray]) ifTrue: [ ^ super nextPutAll: aCollection. ]. stream := RWBinaryOrTextStream on: (String new: aCollection size). aCollection do: [:each | self converter nextPut: each toStream: stream]. super nextPutAll: (self convertStringFromCr: stream contents)! !