From: nagai@... Date: 2003-02-05T01:05:13+09:00 Subject: Re: problem with tk Hi, From: MENON Jean-Francois Subject: problem with tk Date: Wed, 5 Feb 2003 00:34:05 +0900 Message-ID: <3E3FDB13.80E1A070@meteo.fr> > am I doing something wrong, or is there a problem with tktext.rb ? Sorry. It is a shameful bug. --- tktext.rb~ Tue Feb 4 23:35:10 2003 +++ tktext.rb Wed Feb 5 00:59:15 2003 @@ -173,15 +173,15 @@ end def tag_bind(tag, seq, cmd=Proc.new, args=nil) - _bind(['tag', 'bind', tag], seq, cmd, args) + _bind([@path, 'tag', 'bind', tag], seq, cmd, args) end def tag_bind_append(tag, seq, cmd=Proc.new, args=nil) - _bind_append(['tag', 'bind', tag], seq, cmd, args) + _bind_append([@path, 'tag', 'bind', tag], seq, cmd, args) end def tag_bindinfo(tag, context=nil) - _bindinfo(['tag', 'bind', tag], context) + _bindinfo([@path, 'tag', 'bind', tag], context) end def tag_cget(tag, key) -- Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)