From eda7653e2df1eea979c4da0ac2d6f253832e9924 Mon Sep 17 00:00:00 2001 From: eban Date: Sat, 3 Jul 2004 08:28:05 +0000 Subject: * ext/tk/lib/tkextlib/tkDND.rb: fix syntax error. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ ext/tk/lib/tkextlib/tkDND.rb | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 63852bb44..c354758f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Jul 3 17:19:44 2004 WATANABE Hirofumi + + * ext/tk/lib/tkextlib/tkDND.rb: fix syntax error. + Thu Jul 1 23:15:29 2004 Nobuyoshi Nakada * lib/pstore.rb (transaction): safer backup scheme. [ruby-list:39102] diff --git a/ext/tk/lib/tkextlib/tkDND.rb b/ext/tk/lib/tkextlib/tkDND.rb index ba5b23b53..260769df7 100644 --- a/ext/tk/lib/tkextlib/tkDND.rb +++ b/ext/tk/lib/tkextlib/tkDND.rb @@ -17,9 +17,9 @@ module Tk module TkDND dir = File.expand_path(__FILE__).sub(/#{File.extname(__FILE__)}$/, '') - #autoload :DND 'tkextlib/tkDND/tkdnd' - #autoload :Shape 'tkextlib/tkDND/shape' - autoload :DND File.join(dir, 'tkdnd') - autoload :Shape File.join(dir, 'shape') + #autoload :DND, 'tkextlib/tkDND/tkdnd' + #autoload :Shape, 'tkextlib/tkDND/shape' + autoload :DND, File.join(dir, 'tkdnd') + autoload :Shape, File.join(dir, 'shape') end end -- cgit