summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-28 05:10:03 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-28 05:10:03 +0000
commit35526b1b00e7c47bd0736b1d2dcaadbaea736355 (patch)
treedff9f0caeccde3b843782ce8d2d0ffc4a13b19f5 /eval.c
parent94f9fc2b6efa59a6636c25d263f09bd0964ebab9 (diff)
* eval.c (rb_call): fixed typo in cache look-up. [ruby-dev:29167]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index d9ab3826d5..3a16c2855d 100644
--- a/eval.c
+++ b/eval.c
@@ -5932,7 +5932,7 @@ rb_call(VALUE klass, VALUE recv, ID mid,
ent = NULL;
}
}
- if (!ent) {
+ if (ent) {
if (!ent->method)
return method_missing(recv, mid, argc, argv, block,
scope==CALLING_VCALL?CSTAT_VCALL:0);