diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-02 08:19:04 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-02 08:19:04 +0000 |
| commit | 874e86497c945ffc03aab2eedb3758b668b707e7 (patch) | |
| tree | f092e4e61eacb22ef8e2700907b5ce54dfb47df8 | |
| parent | a2428b70c52b7ffccdf38383538257f80d9a8b83 (diff) | |
* ext/tcltklib/tcltklib.c (lib_eventloop_core): fix typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/tcltklib/tcltklib.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Wed Mar 2 17:14:18 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tcltklib/tcltklib.c (lib_eventloop_core): fix typo + Wed Mar 2 16:00:02 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tcltklib/tcltklib.c: enforce thread-check and exception-handling diff --git a/ext/tcltklib/tcltklib.c b/ext/tcltklib/tcltklib.c index 2f94cf97fd..905d96929f 100644 --- a/ext/tcltklib/tcltklib.c +++ b/ext/tcltklib/tcltklib.c @@ -1087,7 +1087,7 @@ lib_eventloop_core(check_root, update_flag, check_var) if (NIL_P(ruby_errinfo)) { rb_exc_raise(rb_exc_new2(rb_eFatal, "FATAL")); } else { - rb_exc_faise(ruby_errinfo); + rb_exc_raise(ruby_errinfo); } } } |
