* ext/tk/lib/tk.rb,multi-tk.rb: stop freezing some classes

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2003-11-12 21:11:40 +00:00
parent 5f4778d347
commit c90fab98a2
3 changed files with 16 additions and 10 deletions

View File

@ -1,3 +1,9 @@
Thu Nov 13 06:08:54 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk.rb: stop freezing some classes
* ext/tk/lib/multi-tk.rb: ditto.
Wed Nov 12 17:32:49 2003 Nobuyoshi Nakada <nobu@ruby-lang.org> Wed Nov 12 17:32:49 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/test/unit/assertions.rb (assert_throws, assert_nothing_thrown): * lib/test/unit/assertions.rb (assert_throws, assert_nothing_thrown):

View File

@ -1352,8 +1352,8 @@ end
# end of MultiTkIp definition # end of MultiTkIp definition
# defend against modification # defend against modification
MultiTkIp.freeze #MultiTkIp.freeze
TclTkLib.freeze #TclTkLib.freeze
######################################## ########################################
# start Tk which depends on MultiTkIp # start Tk which depends on MultiTkIp

View File

@ -5819,14 +5819,14 @@ TkBindTag::ALL.bind(TkVirtualEvent.new('Destroy'), proc{|xpath|
}, 'x%W') }, 'x%W')
# freeze core modules # freeze core modules
TclTkLib.freeze #TclTkLib.freeze
TclTkIp.freeze #TclTkIp.freeze
TkUtil.freeze #TkUtil.freeze
TkKernel.freeze #TkKernel.freeze
TkComm.freeze #TkComm.freeze
TkComm::Event.freeze #TkComm::Event.freeze
TkCore.freeze #TkCore.freeze
Tk.freeze #Tk.freeze
# autoload # autoload
autoload :TkCanvas, 'tkcanvas' autoload :TkCanvas, 'tkcanvas'