The Trunk: Multilingual-nice.198.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-nice.198.mcz

commits-2
Nicolas Cellier uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-nice.198.mcz

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

Name: Multilingual-nice.198
Author: nice
Time: 29 May 2014, 4:56:27.693 pm
UUID: 1229d8e0-8203-43a9-bea1-c7f155db6d21
Ancestors: Multilingual-nice.197

Oops, correct my very fresh bug in convertToUnicode:

=============== Diff against Multilingual-nice.197 ===============

Item was changed:
  ----- Method: EncodedCharSet class>>convertToUnicode: (in category 'class methods') -----
  convertToUnicode: aCode
  "Translate aCode in our encoding, into equivalent unicode encoding"
  | table v |
  (table := self ucsTable) ifNil: [^ 16rFFFD].
+ (v := table at: 1 + aCode) = -1 ifTrue: [^ 16rFFFD].
- (v := table at: 1 + self charCode) = -1 ifTrue: [^ 16rFFFD].
  ^ v!