diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-24 16:53:11 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-24 16:53:11 +0000 |
| commit | 2f93e39970c32520f347f65d5cd7fd4453f429ab (patch) | |
| tree | af63a4163e4f225e89c36207e89d5b61c8b6947d /include/ruby | |
| parent | f4593b97334b56095e875958dcfea36152959117 (diff) | |
| download | ruby-2f93e39970c32520f347f65d5cd7fd4453f429ab.tar.gz ruby-2f93e39970c32520f347f65d5cd7fd4453f429ab.tar.xz ruby-2f93e39970c32520f347f65d5cd7fd4453f429ab.zip | |
* hash.c (rb_hash_set_default_proc): checks arity of defalt_proc
of a Hash. [ruby-core:26087]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25455 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
| -rw-r--r-- | include/ruby/intern.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index fa678a778..cece6424f 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -305,6 +305,7 @@ VALUE rb_proc_new(VALUE (*)(ANYARGS/* VALUE yieldarg[, VALUE procarg] */), VALUE VALUE rb_proc_call(VALUE, VALUE); VALUE rb_proc_call_with_block(VALUE, int argc, VALUE *argv, VALUE); int rb_proc_arity(VALUE); +VALUE rb_proc_lambda_p(VALUE); VALUE rb_binding_new(void); VALUE rb_obj_method(VALUE, VALUE); VALUE rb_method_call(int, VALUE*, VALUE); |
