Nicolas Cellier uploaded a new version of EToys to project The Inbox:
http://source.squeak.org/inbox/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.
!