diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-06 13:12:12 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-06 13:12:12 +0000 |
| commit | fb019df11e175e350cfd8f108da0be427e205eb5 (patch) | |
| tree | 5001debeeefba4dd4719e7ba71d3e038e87569de | |
| parent | c4bb9c030863f1950020062af97eedbfeba68f46 (diff) | |
* ext/tk/tkutil.c (get_eval_string_core): bug fix. [ruby-dev:23466]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/tk/tkutil.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu May 6 22:09:29 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/tkutil.c (get_eval_string_core): bug fix. [ruby-dev:23466] + Thu May 6 14:22:29 2004 why the lucky stiff <why@ruby-lang.org> * lib/yaml/rubytypes.rb (to_yaml): added instance variable handling diff --git a/ext/tk/tkutil.c b/ext/tk/tkutil.c index cacc2622f0..78e666d1b1 100644 --- a/ext/tk/tkutil.c +++ b/ext/tk/tkutil.c @@ -595,7 +595,7 @@ get_eval_string_core(obj, enc_flag, self) if (rb_respond_to(self, ID_install_cmd)) { return rb_funcall(self, ID_install_cmd, 1, obj); } else { - return tk_install_cmd(obj); + return tk_install_cmd_core(obj); } } |
