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 | 670f4eb440ac4a154c20374fd19fc05d0d830907 (patch) | |
| tree | 05ed6ec74a83847010e23aefb8aee50ca678c32d /ext/tk | |
| parent | cef9f4afffe117e3e1ecb243f52bbcee5a4b91c2 (diff) | |
| download | ruby-670f4eb440ac4a154c20374fd19fc05d0d830907.tar.gz ruby-670f4eb440ac4a154c20374fd19fc05d0d830907.tar.xz ruby-670f4eb440ac4a154c20374fd19fc05d0d830907.zip | |
* ext/tk/lib/multi-tk.rb: fix typo on MultiTkIp#bg_eval_string
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk')
| -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' |
