Skip to content

Commit

Permalink
* eval.c (rb_call): fixed typo in cache look-up. [ruby-dev:29167]
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Jul 28, 2006
1 parent 94f9fc2 commit 35526b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Fri Jul 28 14:09:14 2006 Yukihiro Matsumoto <matz@ruby-lang.org>

* eval.c (rb_call): fixed typo in cache look-up. [ruby-dev:29167]

Fri Jul 28 10:41:35 2006 Yukihiro Matsumoto <matz@ruby-lang.org>

* eval.c (rb_call): a bug in method cache look-up.
Expand Down
2 changes: 1 addition & 1 deletion eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 35526b1

Please sign in to comment.