summaryrefslogtreecommitdiff
path: root/globals.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-10-04 17:10:07 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-10-04 17:10:07 +0200
commit881d313eb2688c7d6abefcbb7e060d9009842cca (patch)
treedd4a99a9d379243b574d84f3a454c1f5b3df0fd9 /globals.m
parent1644a54365a21931e53a0a917984c67bc0c460d3 (diff)
Revert "Add class MLKContinuation."
This reverts commit 7e5a799a46f6aca1525efa2df38026a1917f3edd. Conflicts: MLKContinuation.m Toilet Lisp.xcodeproj/project.pbxproj
Diffstat (limited to 'globals.m')
-rw-r--r--globals.m4
1 files changed, 1 insertions, 3 deletions
diff --git a/globals.m b/globals.m
index e97ff56..8781620 100644
--- a/globals.m
+++ b/globals.m
@@ -20,8 +20,8 @@
#import <Foundation/NSObject.h>
+
id MLKEndOfArgumentsMarker;
-CONTINUATION *MLKRootContinuation;
id MLKDefaultCompiler = nil;
BOOL MLKLoadCompilesP = NO;
@@ -34,8 +34,6 @@ BOOL MLKLoadCompilesP = NO;
@implementation MLKGlobalManager
+(void) load
{
- STACKITEM i;
MLKEndOfArgumentsMarker = [[NSObject alloc] init];
- MLKRootContinuation = make_root_continuation (&i);
}
@end