[squeak-dev] The Trunk: Multilingual-nice.98.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Feb 28 19:14:04 UTC 2010


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.
  !




More information about the Squeak-dev mailing list