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

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

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

Name: Multilingual-nice.98
Author: nice
Time: 28 February 2010, 8:13:45.783 pm
UUID: b4ea43e3-dd3a-d043-b7c3-c7f882d840aa
Ancestors: Multilingual-nice.97

Remove hardcoded 255 leadingChar in Unicode value, now that Unicode leadingChar = 0.

=============== Diff against Multilingual-nice.97 ===============

Item was changed:
  ----- Method: Unicode class>>value: (in category 'instance creation') -----
  value: code
 
  | l |
  code < 256 ifTrue: [^ Character value: code].
  l := Locale currentPlatform languageEnvironment leadingChar.
- l = 0 ifTrue: [l := 255].
  ^ Character leadingChar: l code: code.
  !