diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-31 05:58:20 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-31 05:58:20 +0000 |
| commit | 5f17bfeb065b217402480ea37ad75415897634b3 (patch) | |
| tree | e33b12cf771cb8d82262e6f1586a4ef2e09fd77a | |
| parent | 1c5ca7fb39c49babc0334cb55f4a262d829d0d8c (diff) | |
| download | ruby-5f17bfeb065b217402480ea37ad75415897634b3.tar.gz ruby-5f17bfeb065b217402480ea37ad75415897634b3.tar.xz ruby-5f17bfeb065b217402480ea37ad75415897634b3.zip | |
* ext/tk/lib/tkextlib/blt.rb: double dashes (--) option doesn't work
properly on some versions of BLT (wrong description on the
manual of `blt::bgexec'?).
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10807 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ext/tk/ChangeLog.tkextlib | 6 | ||||
| -rw-r--r-- | ext/tk/lib/tkextlib/blt.rb | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ext/tk/ChangeLog.tkextlib b/ext/tk/ChangeLog.tkextlib index fa5524da0..fad15e882 100644 --- a/ext/tk/ChangeLog.tkextlib +++ b/ext/tk/ChangeLog.tkextlib @@ -1,3 +1,9 @@ +2006-08-31 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * lib/tkextlib/blt.rb: double dashes (--) option doesn't work + properly on some versions of BLT (wrong description on the + manual of `blt::bgexec'?). + 2005-12-11 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * lib/tkextlib/SUPPORT_STATUS: update to support libraries in diff --git a/ext/tk/lib/tkextlib/blt.rb b/ext/tk/lib/tkextlib/blt.rb index 8ac860551..115eb927b 100644 --- a/ext/tk/lib/tkextlib/blt.rb +++ b/ext/tk/lib/tkextlib/blt.rb @@ -68,7 +68,7 @@ module Tk params.concat(hash_kv(args.shift, true)) if args[0].kind_of?(Hash) - params << '--' + params << '--' if args[0] =~ /^\s*-[^-]/ params.concat(args) tk_call('::blt::bgexec', *params) @@ -85,7 +85,7 @@ module Tk params.concat(hash_kv(args.shift, true)) if args[0].kind_of?(Hash) - params << '--' + params << '--' if args[0] =~ /^\s*-[^-]/ params.concat(args) params << '&' |
