summaryrefslogtreecommitdiffstats
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
commitef1d1c93d9f3157b98c09cbe2ded5096c2cc19d3 (patch)
treeff640bbe18a58774c10f7c855b5a1724a7c94416
parent026b3d8248aaaa504b94a8fa699eabc23183047d (diff)
downloadruby-ef1d1c93d9f3157b98c09cbe2ded5096c2cc19d3.tar.gz
ruby-ef1d1c93d9f3157b98c09cbe2ded5096c2cc19d3.tar.xz
ruby-ef1d1c93d9f3157b98c09cbe2ded5096c2cc19d3.zip
* ext/tk/lib/tk.rb: change permition of TkObject#tk_send from private to public
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@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 d5767e2b8..ac6fc1a2e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed May 19 11:09:00 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
+
+ * ext/tk/lib/tk.rb: change permition of TkObject#tk_send from
+ private to public
+
Tue May 18 14:00:46 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* node.h (NEW_DSTR): adjust list length.
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb
index 36a9e54f2..f337bbb8b 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