diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-16 05:50:56 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-16 05:50:56 +0000 |
| commit | 38044b8dbcaef0433ceaa453d69039449c560513 (patch) | |
| tree | a61aae6877476eda78c1a238aa640b2ac5f0976b /ext | |
| parent | 63cfc6ddb759c4c614f9fccaca11a47b8f091b70 (diff) | |
| download | ruby-38044b8dbcaef0433ceaa453d69039449c560513.tar.gz ruby-38044b8dbcaef0433ceaa453d69039449c560513.tar.xz ruby-38044b8dbcaef0433ceaa453d69039449c560513.zip | |
* ext/tk/lib/multi-tk.rb: fix typo on MultiTkIp#bg_eval_string
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/tk/lib/multi-tk.rb | 2 | ||||
| -rw-r--r-- | ext/tk/lib/tk.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/lib/multi-tk.rb b/ext/tk/lib/multi-tk.rb index 02beb8c67..fd1b511e0 100644 --- a/ext/tk/lib/multi-tk.rb +++ b/ext/tk/lib/multi-tk.rb @@ -1583,7 +1583,7 @@ class MultiTkIp end alias eval_str eval_string - def bg_eval_string(*args) + def bg_eval_string(cmd, *eval_args) # cmd string ==> proc unless cmd.kind_of?(String) raise RuntimeError, "A String object is expected for the 'cmd' argument" diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 5bde46007..0c88b0ac8 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -4437,7 +4437,7 @@ end #Tk.freeze module Tk - RELEASE_DATE = '2005-09-15'.freeze + RELEASE_DATE = '2005-09-16'.freeze autoload :AUTO_PATH, 'tk/variable' autoload :TCL_PACKAGE_PATH, 'tk/variable' |
