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 | c57f67d21148d519560bffca86c0bdd038b26a9d (patch) | |
| tree | 0a0e7a7f68ebe829a8764ce96302f13bbcc97eee | |
| parent | 7694b47f4124b216d1641ca9ca0a93926723279a (diff) | |
| download | ruby-c57f67d21148d519560bffca86c0bdd038b26a9d.tar.gz ruby-c57f67d21148d519560bffca86c0bdd038b26a9d.tar.xz ruby-c57f67d21148d519560bffca86c0bdd038b26a9d.zip | |
* ext/tk/lib/multi-tk.rb: fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@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. + Wed Jun 1 11:32:42 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * bcc32/Makefile.sub: can use single quote character in DESTDIR. 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' |
