aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-06 12:48:43 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-06 12:48:43 +0000
commit84c2dc95de2fd6b41b374b1a2659707377929cff (patch)
tree46cdca6a62aeabab789bba9d5ae5e2084ca1a738 /ext
parent556a7ac35fb1e64c35c56d9c09f2c6f6ee0a1209 (diff)
downloadruby-84c2dc95de2fd6b41b374b1a2659707377929cff.tar.gz
* ext/tk/stubs.c (ruby_tcl_create_ip_and_stubs_init): should touch
interpreter after initialization is done. [ruby-dev:27638] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/tk/stubs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/stubs.c b/ext/tk/stubs.c
index 050333cf63..3fb3e5f2f3 100644
--- a/ext/tk/stubs.c
+++ b/ext/tk/stubs.c
@@ -237,14 +237,14 @@ ruby_tcl_create_ip_and_stubs_init(st)
return (Tcl_Interp*)NULL;
}
- _nativethread_consistency_check(tcl_ip);
-
if (!Tcl_InitStubs(tcl_ip, "8.1", 0)) {
if (st) *st = FAIL_Tcl_InitStubs;
(*p_Tcl_DeleteInterp)(tcl_ip);
return (Tcl_Interp*)NULL;
}
+ _nativethread_consistency_check(tcl_ip);
+
return tcl_ip;
}
}