April 12, 2011
8:25 a.m.
Updates: Status: FixProposed Comment #1 on issue 3995 by damien.c...@gmail.com: alt+k when no window is open throws a debugger http://code.google.com/p/pharo/issues/detail?id=3995 Ok, 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)