mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@20475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ef38a43c50
commit
57746bb6fa
3 changed files with 10 additions and 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>
|
Thu Dec 4 01:37:47 2008 Tadayoshi Funaba <tadf@dotrb.org>
|
||||||
|
|
||||||
* complex.c (nurat_{to_s,inspect}): provides better representation
|
* complex.c (nurat_{to_s,inspect}): provides better representation
|
||||||
|
|
|
@ -1109,7 +1109,7 @@ module TkCore
|
||||||
include TkComm
|
include TkComm
|
||||||
extend 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 = defined?(::Encoding.default_external) && true
|
||||||
#WITH_ENCODING = Object.const_defined?(:Encoding) && ::Encoding.class == Class
|
#WITH_ENCODING = Object.const_defined?(:Encoding) && ::Encoding.class == Class
|
||||||
#if TclTkLib::WINDOWING_SYSTEM == 'aqua'
|
#if TclTkLib::WINDOWING_SYSTEM == 'aqua'
|
||||||
|
@ -5529,7 +5529,7 @@ TkWidget = TkWindow
|
||||||
#Tk.freeze
|
#Tk.freeze
|
||||||
|
|
||||||
module Tk
|
module Tk
|
||||||
RELEASE_DATE = '2008-10-20'.freeze
|
RELEASE_DATE = '2008-12-04'.freeze
|
||||||
|
|
||||||
autoload :AUTO_PATH, 'tk/variable'
|
autoload :AUTO_PATH, 'tk/variable'
|
||||||
autoload :TCL_PACKAGE_PATH, 'tk/variable'
|
autoload :TCL_PACKAGE_PATH, 'tk/variable'
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Oct. 24, 1997 Y. Matsumoto
|
* Oct. 24, 1997 Y. Matsumoto
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define TCLTKLIB_RELEASE_DATE "2008-10-20"
|
#define TCLTKLIB_RELEASE_DATE "2008-12-03"
|
||||||
|
|
||||||
#include "ruby.h"
|
#include "ruby.h"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue