diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-03 20:10:28 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-03 20:10:28 +0000 |
| commit | 35b0002cc368179cdd695205102770cb3f133ba6 (patch) | |
| tree | 7af6f3af6075eb9c70f730d9df6043183425bff6 | |
| parent | d67a350d436b8c8c1ecb169ce3f02706fcdb018d (diff) | |
| download | ruby-35b0002cc368179cdd695205102770cb3f133ba6.tar.gz ruby-35b0002cc368179cdd695205102770cb3f133ba6.tar.xz ruby-35b0002cc368179cdd695205102770cb3f133ba6.zip | |
* ext/tk/lib/tk.rb: bug fix. use ::RubyVM instead of ::VM [ruby-list:45676]
* ext/tk/tcltklib.c: update RELEASE_DATE
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | ext/tk/lib/tk.rb | 4 | ||||
| -rw-r--r-- | ext/tk/tcltklib.c | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -1,3 +1,10 @@ +Thu Dec 4 05:06:47 2008 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/lib/tk.rb: bug fix. use ::RubyVM instead of ::VM + [ruby-list:45676] + + * ext/tk/tcltklib.c: update RELEASE_DATE + Thu Dec 4 01:37:47 2008 Tadayoshi Funaba <tadf@dotrb.org> * complex.c (nurat_{to_s,inspect}): provides better representation diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 67069abc3..6bc0ea63e 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -1109,7 +1109,7 @@ module TkCore include TkComm extend TkComm - WITH_RUBY_VM = Object.const_defined?(:VM) && ::VM.class == Class + WITH_RUBY_VM = Object.const_defined?(:RubyVM) && ::RubyVM.class == Class WITH_ENCODING = defined?(::Encoding.default_external) && true #WITH_ENCODING = Object.const_defined?(:Encoding) && ::Encoding.class == Class #if TclTkLib::WINDOWING_SYSTEM == 'aqua' @@ -5529,7 +5529,7 @@ TkWidget = TkWindow #Tk.freeze module Tk - RELEASE_DATE = '2008-10-20'.freeze + RELEASE_DATE = '2008-12-04'.freeze autoload :AUTO_PATH, 'tk/variable' autoload :TCL_PACKAGE_PATH, 'tk/variable' diff --git a/ext/tk/tcltklib.c b/ext/tk/tcltklib.c index dadab2f22..22287e8c6 100644 --- a/ext/tk/tcltklib.c +++ b/ext/tk/tcltklib.c @@ -4,7 +4,7 @@ * Oct. 24, 1997 Y. Matsumoto */ -#define TCLTKLIB_RELEASE_DATE "2008-10-20" +#define TCLTKLIB_RELEASE_DATE "2008-12-03" #include "ruby.h" |
