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

commits at source.squeak.org commits at source.squeak.org
Tue Jun 18 20:40:17 UTC 2013


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

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

Name: Multilingual-nice.161
Author: nice
Time: 18 June 2013, 10:39:44.246 pm
UUID: c60bf0fa-0618-4c77-b8c7-2de799e340ea
Ancestors: Multilingual-nice.160

Invoke Character escape by name rather than by value.

=============== Diff against Multilingual-nice.160 ===============

Item was changed:
  ----- Method: JISX0208 class>>initialize (in category 'class initialization') -----
  initialize
  "
  	self initialize
  "
  
  	CompoundTextSequence := String streamContents: [:s |
+ 		s nextPut: Character escape.
- 		s nextPut: (Character value: 27).
  		s nextPut: $$.
  		s nextPut: $B
  	].
  !

Item was changed:
  ----- Method: Latin1 class>>initialize (in category 'class initialization') -----
  initialize
  "
  	self initialize
  "
  
  
  	CompoundTextSequence := String streamContents: [:s |
+ 		s nextPut: Character escape.
- 		s nextPut: (Character value: 27).
  		s nextPut: $(.
  		s nextPut: $B.
  	].
  
  	RightHalfSequence := String streamContents: [:s |
+ 		s nextPut: Character escape.
- 		s nextPut: (Character value: 27).
  		s nextPut: $-.
  		s nextPut: $A.
  	].
  !



More information about the Squeak-dev mailing list