'From etoys3.0 of 24 February 2008 [latest update: #1924] on 18 March 2008 at 1:51:29 pm'! "Change Set: unixLatin1Input-yo Date: 18 March 2008 Author: Yoshiki Ohshima Simply use UTF32InputInterpreter on unix."! !Latin1Environment class methodsFor: 'subclass responsibilities' stamp: 'yo 3/18/2008 13:50'! inputInterpreterClass | platformName osVersion | platformName := SmalltalkImage current platformName. osVersion := SmalltalkImage current getSystemAttribute: 1002. (platformName = 'Win32' and: [osVersion ~= 'CE']) ifTrue: [^ (self win32VMUsesUnicode) ifTrue: [UTF32InputInterpreter] ifFalse: [MacRomanInputInterpreter]]. platformName = 'Mac OS' ifTrue: [^ MacRomanInputInterpreter]. platformName = 'unix' ifTrue: [^ UTF32InputInterpreter]. ^ MacRomanInputInterpreter! !