The Trunk: Multilingual-cmm.193.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Multilingual-cmm.193.mcz

commits-2
Chris Muller uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-cmm.193.mcz

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

Name: Multilingual-cmm.193
Author: cmm
Time: 23 October 2013, 4:24:56.06 pm
UUID: 798ece4a-a4c7-4df7-ae6a-06686f8d9195
Ancestors: Multilingual-nice.192

Fix MultiByteBinaryOrTextStream>>#contents.

=============== Diff against Multilingual-nice.192 ===============

Item was changed:
  ----- Method: MultiByteBinaryOrTextStream>>contents (in category 'public') -----
  contents
-
  | ret state |
  state := converter saveStateOf: self.
+ self position: 0.
  ret := self upToEnd.
  converter restoreStateOf: self with: state.
+ ^ ret
- ^ ret.
  !