The Trunk: EToys-nice.374.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-nice.374.mcz

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

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

Name: EToys-nice.374
Author: nice
Time: 26 December 2019, 2:12:57.250336 pm
UUID: f68f6c42-8a72-4123-9423-62a06eb832f5
Ancestors: EToys-nice.373

Expunge macToSqueak from Input Interpreter.
There is no more macRoman encoding of (event at: 3) - aka charCode as of https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/460

=============== Diff against EToys-nice.373 ===============

Item was changed:
  ----- Method: CP1253InputInterpreter>>nextCharFrom:firstEvt: (in category 'as yet unclassified') -----
  nextCharFrom: sensor firstEvt: evtBuf
 
  | keyValue |
  keyValue := evtBuf third.
+ ^ converter toSqueak: keyValue asCharacter.
- ^ converter toSqueak: keyValue asCharacter macToSqueak.
  !