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

commits-2
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.
  ].
  !