aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-19 02:10:02 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-19 02:10:02 +0000
commit3011f45158a7b8bb9d0a4b4af44a010f0bb30e45 (patch)
treeebe4800003512eb2e4017c03d7ec10a58791c8a2
parent36d86893c47c005d9f3d350236afce12100b25d6 (diff)
downloadruby-3011f45158a7b8bb9d0a4b4af44a010f0bb30e45.tar.gz
* ext/tk/lib/tk.rb: change permition of TkObject#tk_send from private to public
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/tk/lib/tk.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f774b47b48..e778433726 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed May 19 11:08:10 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
+
+ * ext/tk/lib/tk.rb: change permition of TkObject#tk_send from
+ private to public
+
Wed May 19 02:29:36 2004 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb: support TRACE.
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb
index 36a9e54f2e..f337bbb8b6 100644
--- a/ext/tk/lib/tk.rb
+++ b/ext/tk/lib/tk.rb
@@ -2007,7 +2007,7 @@ class TkObject<TkKernel
def tk_send_with_enc(cmd, *rest)
tk_call_with_enc(path, cmd, *rest)
end
- private :tk_send, :tk_send_without_enc, :tk_send_with_enc
+ # private :tk_send, :tk_send_without_enc, :tk_send_with_enc
def method_missing(id, *args)
name = id.id2name