From cdc80ff2e3ca3411123ee143c03af82bfced69c1 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 26 Nov 2009 08:09:22 +0000 Subject: [PATCH] Cache system as 'system' instead of Function. --- Execute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Execute.cpp b/Execute.cpp index 806fd39..b781a39 100644 --- a/Execute.cpp +++ b/Execute.cpp @@ -1429,7 +1429,7 @@ extern "C" void CYSetupContext(JSGlobalContextRef context) { CYSetProperty(context, global, CYJSString("$cyq"), &$cyq); JSObjectRef System(JSObjectMake(context, NULL, NULL)); - CYSetProperty(context, cy, CYJSString("System"), Function); + CYSetProperty(context, cy, CYJSString("System"), System); CYSetProperty(context, global, CYJSString("system"), System); CYSetProperty(context, System, CYJSString("args"), CYJSNull(context)); -- 2.49.0