summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-01 09:02:43 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-01 09:02:43 +0000
commitb6feeb2945307a655c1a79b3ee61eafc89a7b09b (patch)
treeee24f6425491973c2cc2add0a3ef78c8ac6a52bf /ext
parent531310d20e39a0b9dea424dff6fc6640f4e9ab91 (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@4474 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/tk/lib/tk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb
index a03e6823bb..2f42160313 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