From b40fec82ee0e5a14ce586544b1aeb79d53b21675 Mon Sep 17 00:00:00 2001 From: nagai Date: Wed, 2 Mar 2005 08:19:04 +0000 Subject: * ext/tcltklib/tcltklib.c (lib_eventloop_core): fix typo git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ ext/tcltklib/tcltklib.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9fe7417f9..2b05fce06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Mar 2 17:14:18 2005 Hidetoshi NAGAI + + * ext/tcltklib/tcltklib.c (lib_eventloop_core): fix typo + Wed Mar 2 16:00:02 2005 Hidetoshi NAGAI * ext/tcltklib/tcltklib.c: enforce thread-check and exception-handling diff --git a/ext/tcltklib/tcltklib.c b/ext/tcltklib/tcltklib.c index 2f94cf97f..905d96929 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); } } } -- cgit