aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-05 04:19:16 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-05 04:19:16 +0000
commit91192d19a9c76de20dd5e48bfcf30fa39799c0ef (patch)
tree54f56fdd987db809d35ddab68216f6b22ced7caa
parent28d67a0bfebaeeb61f436a6d1f38909f823061c7 (diff)
downloadruby-91192d19a9c76de20dd5e48bfcf30fa39799c0ef.tar.gz
* ext/tk/lib/tk/text.rb: bug fix
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/tk/lib/tk/text.rb4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 13d851eb94..c695032a87 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Nov 5 13:17:54 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
+
+ * ext/tk/lib/tk/text.rb: bug fix
+
Fri Nov 5 08:34:43 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (str_gsub): should have removed rb_str_unlocktmp(str).
diff --git a/ext/tk/lib/tk/text.rb b/ext/tk/lib/tk/text.rb
index a0af642376..158d5461ef 100644
--- a/ext/tk/lib/tk/text.rb
+++ b/ext/tk/lib/tk/text.rb
@@ -83,8 +83,8 @@ class TkText<TkTextWin
end
def __destroy_hook__
- TTagID_TBL.delete(@path)
- TMarkID_TBL.delete(@path)
+ TkTextTag::TTagID_TBL.delete(@path)
+ TkTextTag::TMarkID_TBL.delete(@path)
end
def create_self(keys)