~ chicken-core (chicken-5) ae04d33f15906fd029f2b8afd8cf978dd6488fb0
commit ae04d33f15906fd029f2b8afd8cf978dd6488fb0
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Sun Jul 19 22:30:28 2015 +0200
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Sun Jul 19 22:30:28 2015 +0200
"manyargs" may be considered available
diff --git a/runtime.c b/runtime.c
index a6bdf204..d92b5ab9 100644
--- a/runtime.c
+++ b/runtime.c
@@ -4344,8 +4344,8 @@ C_regparm C_word C_fcall C_fudge(C_word fudge_factor)
return C_SCHEME_FALSE;
#endif
- case C_fix(40): /* assembly stub for "apply" available? */
- return C_SCHEME_FALSE;
+ case C_fix(40): /* many arguments supported? */
+ return C_SCHEME_TRUE;
case C_fix(41): /* major CHICKEN version */
return C_fix(C_MAJOR_VERSION);
Trap