[squeak-dev] The Trunk: Kernel-ul.940.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Aug 14 20:29:55 UTC 2015


Levente Uzonyi uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ul.940.mcz

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

Name: Kernel-ul.940
Author: ul
Time: 14 August 2015, 7:01:14.824 pm
UUID: 45cb01b1-52ab-40ff-ac9d-7b3334915356
Ancestors: Kernel-ul.939

#allCharacters -> #allByteCharacters

=============== Diff against Kernel-ul.939 ===============

Item was changed:
  ----- Method: InputSensor class>>installKeyDecodeTable (in category 'class initialization') -----
  installKeyDecodeTable
  	"Create a decode table that swaps some keys if 
  	Preferences swapControlAndAltKeys is set"
  	KeyDecodeTable := Dictionary new.
  	Preferences duplicateControlAndAltKeys 
  		ifTrue: [ self defaultCrossPlatformKeys do:
  				[ :c | self installDuplicateKeyEntryFor: c ] ].
  	Preferences swapControlAndAltKeys 
  		ifTrue: [ self defaultCrossPlatformKeys do:
  				[ :c | self installSwappedKeyEntryFor: c ] ].
  	Preferences duplicateAllControlAndAltKeys
+ 		ifTrue: [ (Character allByteCharacters select: [:ea | ea isAlphaNumeric]) do:
- 		ifTrue: [ (Character allCharacters select: [:ea | ea isAlphaNumeric]) do:
  				[ :c | self installDuplicateKeyEntryFor: c ] ].
  !



More information about the Squeak-dev mailing list