Hi, 

From: email55555 email55555 <email55555 / gmail.com>
Subject: [Tk] Bug on TkBindTag.new_by_name ?
Date: Wed, 15 Dec 2004 10:02:11 +0900
Message-ID: <91b08b8a0412141702e8bc791 / mail.gmail.com>
> It seems to me that there is a bug on TkBindTag.new_by_name.
> Here is an example:
   (snip)
> This seems a bug ?

Yes. You are right. 
Please replace TkBindTag.new_by_name to the following. 
-----------------------------------------------------
  def TkBindTag.new_by_name(name, *args, &b)
    return BTagID_TBL[name] if BTagID_TBL[name]
    self.new.instance_eval{
      BTagID_TBL.delete @id
      @id = name
      BTagID_TBL[@id] = self
      bind(*args, &b) if args != []
    }
  end
-----------------------------------------------------
Thank you for your report.
-- 
Hidetoshi NAGAI (nagai / ai.kyutech.ac.jp)