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

Nicolas Cellier nicolas.cellier.aka.nice at gmail.com
Sat Aug 15 20:55:08 UTC 2015


+1, I had the same change rotting for months in an image...

2015-08-14 22:29 GMT+02:00 <commits at source.squeak.org>:

> 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
> ] ].
>   !
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20150815/73bf8852/attachment.htm


More information about the Squeak-dev mailing list