diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-05 04:19:16 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-05 04:19:16 +0000 |
commit | 9767f507e89ac46cfcc0b57b5f7f25db6960e65a (patch) | |
tree | 54f56fdd987db809d35ddab68216f6b22ced7caa | |
parent | b63996ba915ca494b4aba4090d8291bc89de597d (diff) | |
download | ruby-9767f507e89ac46cfcc0b57b5f7f25db6960e65a.tar.gz ruby-9767f507e89ac46cfcc0b57b5f7f25db6960e65a.tar.xz ruby-9767f507e89ac46cfcc0b57b5f7f25db6960e65a.zip |
* ext/tk/lib/tk/text.rb: bug fix
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/tk/lib/tk/text.rb | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -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 a0af64237..158d5461e 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) |