diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/tk/tcltklib.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Mon Mar 7 00:01:55 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/tcltklib.c: fail to call TclTkLib.mainloop when $SAFE==4 + Sun Mar 6 13:04:10 2005 Dee Zsombor <zsombor@ruby-lang.org> * misc/ruby-electric.el: added. diff --git a/ext/tk/tcltklib.c b/ext/tk/tcltklib.c index 14e8199d8..6bc8c3185 100644 --- a/ext/tk/tcltklib.c +++ b/ext/tk/tcltklib.c @@ -8394,6 +8394,7 @@ Init_tcltklib() #define DEFAULT_EVENTLOOP_DEPTH 7 #endif eventloop_stack = rb_ary_new2(DEFAULT_EVENTLOOP_DEPTH); + OBJ_TAINT(eventloop_stack); watchdog_thread = Qnil; |