* ext/tk/tkutil.c (get_eval_string_core): bug fix. [ruby-dev:23466]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6260 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2004-05-07 01:02:39 +00:00
parent 7b420c74e2
commit bb21d3d1f3
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri May 7 10:00:05 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/tkutil.c (get_eval_string_core): bug fix. [ruby-dev:23466]
Thu May 6 22:13:17 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> Thu May 6 22:13:17 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* ext/socket/socket.c (ippaddr): use NUMERICHOST if can not resolve * ext/socket/socket.c (ippaddr): use NUMERICHOST if can not resolve

View file

@ -595,7 +595,7 @@ get_eval_string_core(obj, enc_flag, self)
if (rb_respond_to(self, ID_install_cmd)) { if (rb_respond_to(self, ID_install_cmd)) {
return rb_funcall(self, ID_install_cmd, 1, obj); return rb_funcall(self, ID_install_cmd, 1, obj);
} else { } else {
return tk_install_cmd(obj); return tk_install_cmd_core(obj);
} }
} }