diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-12 23:42:28 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-12 23:42:28 (GMT) |
commit | d7b68021ceb241fed4c082bc7a6585a987c0aab4 (patch) | |
tree | 1e2a1dfc456220693b747fdff62c7068928c9ce0 /Mac | |
parent | 8e0ee7761de7c9e4831f8f3118030c92ab4eb35f (diff) | |
download | cpython-d7b68021ceb241fed4c082bc7a6585a987c0aab4.zip cpython-d7b68021ceb241fed4c082bc7a6585a987c0aab4.tar.gz cpython-d7b68021ceb241fed4c082bc7a6585a987c0aab4.tar.bz2 |
Fixed Carbon command-dot handling. There is still a problem, though, and you may have to hit it repeatedly.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Python/macglue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index bcfe09e..8fdbc23 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -482,8 +482,8 @@ scan_event_queue(flush) int flush; { #if TARGET_API_MAC_CARBON - /* CARBONXXXX To be implemented */ - return; + if ( CheckEventQueueForUserCancel() ) + interrupted = 1; #else register EvQElPtr q; |