summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-04 07:15:12 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-04 07:15:12 +0000
commit0992f6c4728112c50520e7506f4e75e1cac62206 (patch)
treeca18648c31e8b336e5ef2bd9166091ef0fb9f120 /eval.c
parent70bbad3cfd5a692c8e78ccf750eed3f1c7f186db (diff)
* eval.c (rb_exec_recursive): matched the declaration to prototype.
* ext/curses/curses.c: don't need to check HAVE_WCOLOR_SET excluding window_color_set(). * ext/tk/tcltklib.c: fixed commit mistakes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index e23f52e83f..8cbdfc3cf1 100644
--- a/eval.c
+++ b/eval.c
@@ -12992,7 +12992,7 @@ rb_throw(tag, val)
VALUE
rb_exec_recursive(func, obj, arg)
- VALUE (*func) _((VALUE, VALUE, int));
+ VALUE (*func)(ANYARGS); /* VALUE obj, VALUE arg, int flag */
VALUE obj, arg;
{
VALUE list = rb_thread_local_aref(rb_thread_current(), recursive_key);