Updates:
Status: FixProposed
Comment #1 on issue 3995 by
[hidden email]: alt+k when no window is
open throws a debugger
http://code.google.com/p/pharo/issues/detail?id=3995Ok, it looks like the World #commandKeySelectors property is not properly
initialized:
(World valueOfProperty: #commandKeySelectors) at: $k
==> MessageSend (#open -> nil)
and sending #open to nil is likely to open the debugger :-). This can
easily be fixed by executing the dedicated initialize method:
World initializeDesktopCommandKeySelectors.
(World valueOfProperty: #commandKeySelectors) at: $k
==> MessageSend(#open -> StringHolder)