diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-28 05:10:03 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-28 05:10:03 +0000 |
commit | 35526b1b00e7c47bd0736b1d2dcaadbaea736355 (patch) | |
tree | dff9f0caeccde3b843782ce8d2d0ffc4a13b19f5 /eval.c | |
parent | 94f9fc2b6efa59a6636c25d263f09bd0964ebab9 (diff) | |
download | ruby-35526b1b00e7c47bd0736b1d2dcaadbaea736355.tar.gz |
* 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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |