summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-02 08:19:04 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-02 08:19:04 +0000
commitb40fec82ee0e5a14ce586544b1aeb79d53b21675 (patch)
treef092e4e61eacb22ef8e2700907b5ce54dfb47df8
parente9df405e5cae3a84453c1bd6e8f323d688634a44 (diff)
downloadruby-b40fec82ee0e5a14ce586544b1aeb79d53b21675.tar.gz
ruby-b40fec82ee0e5a14ce586544b1aeb79d53b21675.tar.xz
ruby-b40fec82ee0e5a14ce586544b1aeb79d53b21675.zip
* 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
-rw-r--r--ChangeLog4
-rw-r--r--ext/tcltklib/tcltklib.c2
2 files changed, 5 insertions, 1 deletions
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 <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 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);
}
}
}