diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-03 05:08:40 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-03 05:08:40 +0000 |
| commit | 6e26f96ac87cb1ae3a84ec25a4c4e01b55ae4d29 (patch) | |
| tree | b6b29597692baee09b2ddf2ced61f42d797141e2 | |
| parent | 9a7701234369c1ea3753809d0d3c9f33076392d5 (diff) | |
| download | ruby-6e26f96ac87cb1ae3a84ec25a4c4e01b55ae4d29.tar.gz ruby-6e26f96ac87cb1ae3a84ec25a4c4e01b55ae4d29.tar.xz ruby-6e26f96ac87cb1ae3a84ec25a4c4e01b55ae4d29.zip | |
* ext/tk/lib/multi-tk.rb: fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/tk/lib/multi-tk.rb | 4 | ||||
| -rw-r--r-- | ext/tk/lib/tk.rb | 2 |
3 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Fri Jun 3 14:06:12 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/lib/multi-tk.rb: fix typo. + Thu Jun 2 23:42:57 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * parse.y: pragma support on ripper. [ruby-dev:26266] diff --git a/ext/tk/lib/multi-tk.rb b/ext/tk/lib/multi-tk.rb index dcbd37703..b5519af3c 100644 --- a/ext/tk/lib/multi-tk.rb +++ b/ext/tk/lib/multi-tk.rb @@ -734,7 +734,7 @@ class MultiTkIp else begin pathname = @interp._invoke('winfo', 'pathname', new_keys['use']) - assco_display = @interp._invoke('winfo', 'screen', pathname) + assoc_display = @interp._invoke('winfo', 'screen', pathname) rescue assoc_display = new_keys['display'] end @@ -742,7 +742,7 @@ class MultiTkIp # match display? if assoc_display != new_keys['display'] - if optkeys.keys?(:display) || optkeys.keys?('display') + if optkeys.key?(:display) || optkeys.key?('display') fail RuntimeError, "conflicting 'display'=>#{new_keys['display']} " + "and display '#{assoc_display}' on 'use'=>#{new_keys['use']}" diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index e60b4c15f..6a66a2eb2 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -4130,7 +4130,7 @@ end #Tk.freeze module Tk - RELEASE_DATE = '2005-05-30'.freeze + RELEASE_DATE = '2005-06-03'.freeze autoload :AUTO_PATH, 'tk/variable' autoload :TCL_PACKAGE_PATH, 'tk/variable' |
