~ chicken-core (chicken-5) a8a32200ab3aad090ab9b4d61fcb0b6da7b518ad
commit a8a32200ab3aad090ab9b4d61fcb0b6da7b518ad Author: Peter Bex <peter@more-magic.net> AuthorDate: Sat Aug 22 18:16:53 2015 +0200 Commit: Peter Bex <peter@more-magic.net> CommitDate: Sat Aug 22 19:37:27 2015 +0200 "manyargs" may be considered available diff --git a/runtime.c b/runtime.c index c28dcf74..a829aa98 100644 --- a/runtime.c +++ b/runtime.c @@ -4759,8 +4759,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