diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-01 09:02:43 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-01 09:02:43 +0000 |
| commit | e2dec40448524f842052c3826f0954be894c8429 (patch) | |
| tree | ee24f6425491973c2cc2add0a3ef78c8ac6a52bf /ext/tk/lib | |
| parent | 2d74856847723bd4333ddac72a1cf2c85cd26cce (diff) | |
| download | ruby-e2dec40448524f842052c3826f0954be894c8429.tar.gz ruby-e2dec40448524f842052c3826f0954be894c8429.tar.xz ruby-e2dec40448524f842052c3826f0954be894c8429.zip | |
* parse.y (aref_args): forgot to call NEW_SPLAT(). reported by
Dave Butcher.
* eval.c (Init_Thread): protect thgroup_default. suggested by Guy
Decoux in [ruby-talk:80623]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4474 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib')
| -rw-r--r-- | ext/tk/lib/tk.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index a03e6823b..2f4216031 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -1317,7 +1317,7 @@ module Tk def frame tk_call('wm', 'frame', path) end - def geometry(geom) + def geometry(geom=nil) if geom tk_call('wm', 'geometry', path, geom) self |
