* 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
This commit is contained in:
nagai 2004-11-05 04:19:16 +00:00
parent 28d67a0bfe
commit 91192d19a9
2 changed files with 6 additions and 2 deletions

View File

@ -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).

View File

@ -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)