summaryrefslogtreecommitdiff
path: root/MLKLowLevelTests.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-14 16:31:50 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-14 16:31:50 +0200
commit3e30453f1714b03be1a6588e174a3f256e80cf5f (patch)
tree366849bb306e10f7a70eac65855cca2bb9b53626 /MLKLowLevelTests.m
parent206e9d65a486e7f01e9fe32b2ef66bc4b0c22798 (diff)
Call [super init] from every initialiser of every class.
Diffstat (limited to 'MLKLowLevelTests.m')
-rw-r--r--MLKLowLevelTests.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/MLKLowLevelTests.m b/MLKLowLevelTests.m
index c47fd2a..2b053a9 100644
--- a/MLKLowLevelTests.m
+++ b/MLKLowLevelTests.m
@@ -1,4 +1,4 @@
-/* Étoilisp, a Common Lisp subset for Étoilé.
+/* Étoilisp/Mulklisp, a Common Lisp subset for the Étoilé runtime.
* Copyright (C) 2008 Matthias Andreas Benkard.
*
* This program is free software: you can redistribute it and/or modify
@@ -31,6 +31,7 @@
@implementation MLKLowLevelTests
-(id) initForTest
{
+ self = [super init];
return self;
}