summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-04-06 07:45:33 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-04-06 07:45:33 +0000
commit25622aed3c8604946d401e7a22dde2f8544e6d31 (patch)
tree4c2189524aadaee5d7b89ee0aa07744e9891c084
parent02dd7f2b29f7a14e116884ada10e08f28b649ced (diff)
downloadruby-25622aed3c8604946d401e7a22dde2f8544e6d31.tar.gz
ruby-25622aed3c8604946d401e7a22dde2f8544e6d31.tar.xz
ruby-25622aed3c8604946d401e7a22dde2f8544e6d31.zip
* intern.h (rb_obj_instance_exec, rb_mod_module_exec): add declaration.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--intern.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c40818f29..b905ceb47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Apr 6 16:43:06 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
+
+ * intern.h (rb_obj_instance_exec, rb_mod_module_exec): add declaration.
+
Thu Apr 6 11:18:37 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk/panedwindow.rb: lack of arguments. [ruby-core:7681]
diff --git a/intern.h b/intern.h
index 761eae57c..77e0dc867 100644
--- a/intern.h
+++ b/intern.h
@@ -226,7 +226,9 @@ VALUE rb_apply(VALUE, ID, VALUE);
void rb_backtrace(void);
ID rb_frame_this_func(void);
VALUE rb_obj_instance_eval(int, VALUE*, VALUE);
+VALUE rb_obj_instance_exec(int, VALUE*, VALUE);
VALUE rb_mod_module_eval(int, VALUE*, VALUE);
+VALUE rb_mod_module_exec(int, VALUE*, VALUE);
void rb_load(VALUE, int);
void rb_load_protect(VALUE, int, int*);
NORETURN(void rb_jump_tag(int));