ruby-changes:35943
From: hsbt <ko1@a...>
Date: Sun, 19 Oct 2014 20:06:28 +0900 (JST)
Subject: [ruby-changes:35943] hsbt:r48024 (trunk): * ext/tk/lib/tkextlib/tile/treeview.rb: fix syntax error.
hsbt 2014-10-19 20:06:07 +0900 (Sun, 19 Oct 2014) New Revision: 48024 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48024 Log: * ext/tk/lib/tkextlib/tile/treeview.rb: fix syntax error. Modified files: trunk/ChangeLog trunk/ext/tk/lib/tkextlib/tile/treeview.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 48023) +++ ChangeLog (revision 48024) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Oct 19 20:05:58 2014 SHIBATA Hiroshi <shibata.hiroshi@g...> + + * ext/tk/lib/tkextlib/tile/treeview.rb: fix syntax error. + Sun Oct 19 18:39:39 2014 Martin Duerst <duerst@i...> * enc/prelude.rb: Added automatic loading of Index: ext/tk/lib/tkextlib/tile/treeview.rb =================================================================== --- ext/tk/lib/tkextlib/tile/treeview.rb (revision 48023) +++ ext/tk/lib/tkextlib/tile/treeview.rb (revision 48024) @@ -991,11 +991,11 @@ class Tk::Tile::Treeview::Tag < TkObject https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/tkextlib/tile/treeview.rb#L991 end def add(*items) - @t.tag_add(@id, *items)) + @t.tag_add(@id, *items) end def remove(*items) - @t.tag_remove(@id, *items)) + @t.tag_remove(@id, *items) end def bind(seq, *args) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/