summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}
}
}