Jan. 12, 2011
5:33 p.m.
Comment #4 on issue 3458 by siguctua: bug in the class MultiByteFileStream when Pharo running under Windows http://code.google.com/p/pharo/issues/detail?id=3458 The real bug is in TextConverted, which honors the line end convention if you using #nextPutAll:... but ignoring it, if you using #nextPut: | s | s := '' writeStream. UTF8TextConverter new installLineEndConvention: String crlf; nextPut: Character cr toStream: s; nextPutAll: String cr toStream: s. s contents