could you try with the stackVM? http://pharo.gforge.inria.fr/ci/vm/stack/ with cog I have similar issues that often I cannot interrupt, whereas it works with the stack VM... On 2012-11-29, at 09:15, Torsten Bergmann <astares@gmx.de> wrote:
On Win32 (german locale) I can not interrupt
(Delay forSeconds: 10) wait. 1 inspect
when using NBCog.exe as a VM.
Even when I set a new key like ";" (without ALT) I can not interrupt the delay.
|handler| handler := UserInterruptHandler new setInterruptKeyValue: ($; asciiValue). handler registerIn: InputEventFetcher default. (Delay forSeconds: 10) wait. 1 inspect
I can not interrupt with ";" while the delay is waiting. But it interrupts aftewards when I hit ";".
I'm not sure it is really a locale problem as described in
http://code.google.com/p/pharo/issues/detail?id=6688
When I try 1.4 one click I have the same problem - the delay is not interruptable.
When I try 1.3 one click I can interrupt. Can it be related to switching to Cog VM starting from 1.4?
Bye T.