]> git.saurik.com Git - cycript.git/commitdiff
Cache system as 'system' instead of Function.
authorJay Freeman (saurik) <saurik@saurik.com>
Thu, 26 Nov 2009 08:09:22 +0000 (08:09 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 26 Nov 2009 08:09:22 +0000 (08:09 +0000)
Execute.cpp

index 806fd39f7478e0ef227e5344ffbd1a4f63c4a39f..b781a397ecd18725f8fde8261edfd8a8e8497a2e 100644 (file)
@@ -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));