diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-09-22 04:05:11 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-09-22 04:05:11 +0000 |
commit | 56173249ef486db321c8aa01a680966f921f5201 (patch) | |
tree | 33fa7d5921460cf7b10591da999779938585efd6 | |
parent | 6904429af3edf6b2cff8a87abf65f8cc09788318 (diff) | |
download | bundler-56173249ef486db321c8aa01a680966f921f5201.tar.gz |
* win32/win32.c (rb_w32_call_handler): workaround for Ctrl-C.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | win32/win32.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Wed Sep 22 13:02:02 2004 NAKAMURA Usaku <usa@ruby-lang.org> + + * win32/win32.c (rb_w32_call_handler): workaround for Ctrl-C. + Wed Sep 22 09:04:41 2004 Yukihiro Matsumoto <matz@ruby-lang.org> * parse.y: remove global variables ruby_eval_tree and diff --git a/win32/win32.c b/win32/win32.c index 55c807c901..1363d78710 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -3012,7 +3012,7 @@ rb_w32_call_handler(struct handler_arg_t* h) rb_jump_tag(status); } h->finished = 1; - Sleep(INFINITE); /* safe on Win95? */ + yield_until(0); } static struct handler_arg_t * |