Marcel Taeumel uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mt.1013.mcz==================== Summary ====================
Name: Kernel-mt.1013
Author: mt
Time: 6 April 2016, 10:27:04.586834 am
UUID: b0488a79-3625-4d40-8aad-1cb2b3ad4936
Ancestors: Kernel-mt.1012
Simplifies code for stopping the sound service on CMD+Dot
=============== Diff against Kernel-mt.1012 ===============
Item was changed:
----- Method: EventSensor>>userInterruptWatcher (in category 'user interrupts') -----
userInterruptWatcher
"Wait for user interrupts and open a notifier on the active process when one occurs."
[ InterruptSemaphore wait.
Display deferUpdates: false.
+ SoundService stop.
- SoundService defaultOrNil ifNotNil: [ : soundSystem | soundSystem shutDown ].
Smalltalk handleUserInterrupt ] repeat!