summaryrefslogtreecommitdiffstats
path: root/include/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-23 06:22:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-23 06:22:48 +0000
commitbcf67b862b44ea3b0ddb453895983915f80981fe (patch)
tree4383f15d23bc96dc0dd2fd4e5b529db2297617cc /include/ruby
parent26fcd231081b7fa9fc31fb0ab317467c3f22243b (diff)
downloadruby-bcf67b862b44ea3b0ddb453895983915f80981fe.tar.gz
ruby-bcf67b862b44ea3b0ddb453895983915f80981fe.tar.xz
ruby-bcf67b862b44ea3b0ddb453895983915f80981fe.zip
* iseq.c (iseq_s_disasm): return nil for native methods.
[ruby-core:27226], [Bug#2499] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/intern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index 91551079d..14e23b857 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -303,6 +303,7 @@ VALUE rb_class_new_instance(int, VALUE*, VALUE);
VALUE rb_block_proc(void);
VALUE rb_f_lambda(void);
VALUE rb_proc_new(VALUE (*)(ANYARGS/* VALUE yieldarg[, VALUE procarg] */), VALUE);
+VALUE rb_obj_is_proc(VALUE);
VALUE rb_proc_call(VALUE, VALUE);
VALUE rb_proc_call_with_block(VALUE, int argc, VALUE *argv, VALUE);
int rb_proc_arity(VALUE);