summaryrefslogtreecommitdiffstats
path: root/lib/xmlrpc/utils.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-14 17:20:14 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-14 17:20:14 +0000
commit487a1d4148e4fca357f89128240de41aec2a150e (patch)
treeef0eacfd67e503e34658cc9b21e7797b96f1132b /lib/xmlrpc/utils.rb
parentf325780d650d10795c8223540f35b7a69e01d4ce (diff)
downloadruby-487a1d4148e4fca357f89128240de41aec2a150e.tar.gz
ruby-487a1d4148e4fca357f89128240de41aec2a150e.tar.xz
ruby-487a1d4148e4fca357f89128240de41aec2a150e.zip
* gc.c (id2ref): recycle check should be done by klass == 0.
[ruby-core:01408] * eval.c (Init_Thread): Continuation#[] added. [ruby-talk:79028] * parse.y (mlhs_node): should allow "::Foo" (colon3) as lhs. * parse.y (lhs): ditto. * parse.y (yylex): should return tCOLON3 right after kCLASS. [ruby-talk:78918] * error.c (exc_initialize): was converting argument to string too eagerly. Only check was needed. [ruby-talk:78958] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4390 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/xmlrpc/utils.rb')
-rw-r--r--lib/xmlrpc/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmlrpc/utils.rb b/lib/xmlrpc/utils.rb
index 675f23275..14dd08b21 100644
--- a/lib/xmlrpc/utils.rb
+++ b/lib/xmlrpc/utils.rb
@@ -113,7 +113,7 @@ module XMLRPC
def initialize(prefix, &p)
raise "No interface specified" if p.nil?
super(prefix)
- instance_eval &p
+ instance_eval(&p)
end
def get_methods(obj, delim=".")