* eval.c (rb_obj_is_method): indefinite return value.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-04-09 16:52:28 +00:00
parent 769610b6f0
commit ae6b9ced18
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu Apr 10 01:52:24 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (rb_obj_is_method): indefinite return value.
Thu Apr 10 00:39:32 2003 Tanaka Akira <akr@m17n.org>
* regex.c (re_compile_pattern): /[\--\-]/ was warned. warn /]/.

1
eval.c
View File

@ -7346,6 +7346,7 @@ rb_obj_is_method(m)
if (TYPE(m) == T_DATA && RDATA(m)->dmark == (RUBY_DATA_FUNC)bm_mark) {
return Qtrue;
}
return Qfalse;
}
static VALUE